/*
 * Value Propositions section styles (Phase W2.4).
 * Mobile-first. Brand tokens only -- no raw hex.
 *
 * Option (a): no section H2. Section padding alone provides the top space
 * above the cards. If a future copy revision adds a locked H2, add a
 * .vp-headline rule mirroring .problem-headline / .how-headline.
 */

.value-props {
    background-color: var(--color-white);
    padding: 64px 24px;
}

.vp-inner {
    max-width: 1200px;
    margin: 0 auto;
}

/* Card list */
.vp-cards {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

/* Individual card */
.vp-card {
    display: flex;
    flex-direction: column;
    padding: 32px 28px;
    background-color: var(--color-bg);
    border-radius: 12px;
    border-top: 4px solid var(--color-primary);
}

.vp-card-tag {
    margin: 0 0 16px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-primary);
}

.vp-card-headline {
    margin: 0 0 16px;
    font-size: 1.25rem;
    line-height: 1.3;
    font-weight: 600;
    color: var(--color-text);
}

.vp-card-body {
    margin: 0;
    font-size: 0.9375rem;
    line-height: 1.6;
    color: var(--color-text);
    opacity: 0.85;
}

/* ---------- Desktop (>= 768px) ---------- */

@media (min-width: 768px) {
    .value-props {
        padding: 96px 24px;
    }

    .vp-cards {
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
    }
}
