/* ── Two equal cards side by side ── */
.two-col-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 24px;
    align-items: stretch;
}

.card--white {
    background: #ffffff;
    border: 1px solid black;
}

.card--grey {
    background: #f0f0ec;
    border: 1px solid black;
}

.card--grey .card-sub-heading {
    font-family: 'Fraunces', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 20px 0 10px;
}

.card--grey p {
    font-size: 1rem;
    color: var(--text-mid);
    line-height: 1.65;
}

.photo-banner {
    width: 100%;
    height: 480px;
    border-radius: var(--radius);
    overflow: hidden;
    margin-bottom: 32px;
}

.photo-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
    display: block;
}

.cta-buttons--center {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    padding-bottom: 20px;
}

.srTitle {
    font-weight: 400;
    font-size: 3.5rem;
}

.srCardHeading {
    font-weight: 400;
    font-size: 2rem;
}

@media (max-width: 768px) {
    .two-col-cards {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .photo-banner {
        height: 260px;
    }

    .srTitle {
        font-size: 2.4rem;
        max-width: 100%;
    }

    .header p {
        font-size: 1.1rem;
    }

    .card {
        padding: 32px 28px;
    }

    .srCardHeading {
        font-size: 1.6rem;
    }

    .card--grey .card-sub-heading {
        font-size: 1.3rem;
        margin: 16px 0 8px;
    }

    .card--grey p,
    .key-areas-list li {
        font-size: 1.05rem;
    }

    .cta-buttons--center {
        flex-direction: column;
        align-items: stretch;
    }

    .cta-buttons--center .btn {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .srTitle {
        font-size: 1.9rem;
    }

    .header p {
        font-size: 1rem;
    }

    .card {
        padding: 24px 20px;
    }

    .srCardHeading {
        font-size: 1.4rem;
    }

    .card .age-tag {
        font-size: 0.9rem;
    }

    .card--grey .card-sub-heading {
        font-size: 1.15rem;
    }

    .card--grey p,
    .key-areas-list li {
        font-size: 0.95rem;
    }

    .photo-banner {
        height: 200px;
    }

    .btn {
        font-size: 1rem;
        padding: 11px 18px;
    }
}