/* Hero banner (edge-to-edge full-bleed image + ribbon) */
.hero-banner {
    position: relative;
    height: 65vh;
    min-height: 420px;
    max-height: 900px;
    overflow: hidden;
}

.hero-banner__img {
    position: absolute;
    inset: 0;
    object-position: center;
}

.hero-banner__ribbon {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 18%;
    padding: 1rem 0;
    background-color: rgba(var(--bs-primary-rgb), 0.44);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-top: 1px solid rgba(255, 255, 255, 0.25);
    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
}

.hero-banner__headline {
    font-size: clamp(1.25rem, 4.5vw, 2.25rem);
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.hero-banner__subhead {
    font-size: clamp(0.875rem, 2.5vw, 1.125rem);
    max-width: 40rem;
}

@media (min-width: 576px) {
    .hero-banner__ribbon {
        padding: 1.5rem 0;
    }
}

@media (min-width: 768px) {
    .hero-banner {
        height: 70vh;
    }

    .hero-banner__ribbon {
        padding: 2rem 0;
        bottom: 22%;
    }
}

@media (min-width: 1200px) {
    .hero-banner {
        height: 75vh;
    }
}

@media (max-width: 420px) {
    .hero-banner {
        height: 60vh;
        min-height: 360px;
    }
}

/* Client logo teaser grid (duplicated from clients.css, matching the
   site's existing per-page CSS convention) */
.client-logo-card {
    min-height: 110px;
    transition: box-shadow .15s ease-in-out;
}

.client-logo-card:hover {
    box-shadow: 0 .5rem 1rem rgba(var(--bs-primary-rgb), .15) !important;
}

.client-logo-card__img {
    max-width: 100%;
    max-height: 70px;
    object-fit: contain;
}

/* Dewpoint membership logo (duplicated from about.css, same convention) */
.dewpoint-logo {
    max-width: 260px;
    height: auto;
}
