/* Explain: Section layout helpers for the clinic landing page */
.proof-line {
    position: relative;
}

@media (min-width: 1024px) {
    .proof-line::before {
        content: "";
        position: absolute;
        left: 8%;
        right: 8%;
        top: 3.5rem;
        height: 1px;
        background: linear-gradient(90deg, transparent, color-mix(in srgb, var(--primary-color) 42%, transparent), transparent);
    }

    .proof-line > article {
        z-index: 1;
    }
}

@media (max-width: 640px) {
    .hero-cinematic h1 {
        text-wrap: balance;
    }

    .treatment-card,
    .choice-card {
        min-height: auto;
    }
}
