/* ── Finais Felizes ───────────────────────────────────────────────── */

.happy-header {
    margin-bottom: 2.5rem;
}

.happy-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.happy-story {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 2.5rem;
    align-items: center;
    padding: 2.5rem 0;
    border-bottom: 1px solid var(--line);
}

.happy-story:first-child {
    padding-top: 0;
}

.happy-story:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

.happy-story:nth-child(even) .happy-figure {
    order: 2;
}

.happy-figure {
    margin: 0;
    aspect-ratio: 4 / 3;
    border-radius: 1.25rem;
    overflow: hidden;
}

.happy-figure img,
.happy-figure .img-placeholder {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.happy-copy h3 {
    margin: 0 0 0.8rem;
    font-size: clamp(1.4rem, 2.4vw, 1.8rem);
    font-weight: 800;
}

.happy-copy p {
    margin: 0;
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--muted);
}

@media (max-width: 860px) {
    .happy-story {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }

    .happy-story .happy-figure {
        order: -1;
    }

    .happy-figure {
        aspect-ratio: 16 / 10;
    }
}
