/* 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;
    }
}

/* Bed bug radio interview audio player */
.audio-player__toggle {
    width: 3rem;
    height: 3rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

.audio-player__waveform {
    min-height: 64px;
}

.transcript p {
    margin-bottom: 0.85rem;
}

.transcript hr {
    margin: 1.5rem 0;
}

.transcript em {
    color: var(--bs-secondary-color);
}

/* Process step number badge */
.process-step__number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background-color: var(--bs-secondary);
    color: #fff;
    font-weight: 700;
    font-size: 1.1rem;
}
