/**
 * ST landings — QUICK FACTS component ("Коротко об Ауре").
 * Compact fact grid: label + short description, two columns on desktop.
 */

.st-quick-facts {
    padding: 60px 24px;
    background: var(--st-white);
}

.st-quick-facts .st-section-sub {
    margin-bottom: 24px;
}

.st-qf-definition {
    max-width: 860px;
    margin: 0 auto 40px;
    padding: 22px 26px;
    border-left: 4px solid var(--st-primary);
    border-radius: 0 16px 16px 0;
    background: var(--st-cream);
    color: var(--st-text);
    font-size: 18px;
    line-height: 1.7;
}

.st-qf-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    max-width: 900px;
    margin: 0 auto;
}

.st-qf-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 24px 26px;
    background: var(--st-cream);
    border: 1px solid var(--st-border);
    border-radius: 18px;
}

/* Last item spans both columns when the count is odd. */
.st-qf-item:last-child:nth-child(odd) {
    grid-column: 1 / -1;
}

.st-qf-q {
    font-size: 16px;
    font-weight: 700;
    color: var(--st-primary);
    margin: 0;
    line-height: 1.4;
}

.st-qf-a {
    font-size: 16px;
    color: var(--st-text-md);
    margin: 0;
    line-height: 1.65;
}

@media (max-width: 768px) {
    .st-quick-facts {
        padding: 50px 20px;
    }

    .st-qf-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .st-qf-item {
        padding: 20px 22px;
    }

    .st-qf-definition {
        padding: 18px 20px;
        font-size: 16px;
    }

    .st-qf-q,
    .st-qf-a {
        font-size: 15px;
    }
}
