/* Inner pages — clear spacing below hero, no overlap with footer */

.page-hero-premium {
    padding-bottom: clamp(3.25rem, 6vw, 4.75rem);
}

/* Replace zero top padding — content must sit below hero, not on it */
.section-padding.pt-0,
.section-luxury.pt-0 {
    padding-top: clamp(2.5rem, 5vw, 3.75rem) !important;
    padding-bottom: clamp(3.5rem, 7vw, 5.5rem) !important;
    background: var(--light, #f7f8fc);
    position: relative;
    z-index: 2;
}

.section-padding.pt-0 .container,
.section-luxury.pt-0 .container {
    position: relative;
    z-index: 1;
}

/* Minimum content height so footer does not dominate sparse pages */
main > .section-padding.pt-0:last-child,
main > .section-luxury.pt-0:last-child {
    min-height: min(42vh, 480px);
}

/* Card lists — no pull-up into hero */
.academic-exams__list,
.disclosure-list {
    margin-top: 0;
}

/* Overlap variant — use only when explicitly needed */
.content-prose--overlap {
    margin-top: 0;
    position: relative;
    z-index: 2;
}

.content-prose--float {
    margin-top: -2.5rem;
    position: relative;
    z-index: 3;
}

@media (max-width: 767px) {
    .page-hero-premium {
        padding-bottom: clamp(2.5rem, 8vw, 3.5rem);
    }

    .section-padding.pt-0,
    .section-luxury.pt-0 {
        padding-top: clamp(2rem, 6vw, 2.75rem) !important;
        min-height: auto;
    }

    .content-prose--float {
        margin-top: -1.25rem;
    }
}
