.mm-home-intents {
    padding-top: 8px;
}

.mm-home-intent-head {
    align-items: flex-end;
}

.mm-home-intent-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.mm-home-intent-card {
    display: flex;
    flex-direction: column;
    gap: 12px;
    min-height: 168px;
    padding: 24px;
    border: 1px solid rgba(191, 219, 254, 0.6);
    border-radius: 26px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 250, 252, 0.96));
    box-shadow: 0 18px 42px rgba(15, 23, 42, 0.05);
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.mm-home-intent-card:hover,
.mm-home-intent-card:focus {
    color: #0f172a;
    transform: translateY(-2px);
    border-color: #93c5fd;
    box-shadow: 0 24px 56px rgba(37, 99, 235, 0.10);
}

.mm-home-intent-kicker {
    color: #2563eb;
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.mm-home-intent-title {
    color: #0f172a;
    font-size: 1.16rem;
    font-weight: 700;
    line-height: 1.2;
}

.mm-home-intent-description {
    color: #64748b;
    font-size: 0.94rem;
    line-height: 1.65;
}

@media (max-width: 991px) {
    .mm-home-intent-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 600px) {
    .mm-home-intent-grid {
        grid-template-columns: 1fr;
    }

    .mm-home-intent-card {
        min-height: 0;
    }
}
