.sub-header.hero-banner {
    position: relative;
    width: 100%;
    margin: 0 0 2rem;
}

.sub-header.hero-banner .hero-container {
    position: relative;
    min-height: 320px;
    overflow: hidden;
    background: #0f172a;
}

.sub-header.hero-banner .hero-media {
    display: block;
    width: 100%;
    height: 100%;
}

.sub-header.hero-banner .hero-media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sub-header.hero-banner .hero-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.2) 100%);
}

.sub-header.hero-banner .hero-title {
    margin: 0;
    color: #ffffff;
    font-size: clamp(1.75rem, 3vw, 2.75rem);
    font-weight: 700;
    line-height: 1.2;
    text-align: center;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.45);
}

@media (max-width: 768px) {
    .sub-header.hero-banner .hero-container {
        min-height: 240px;
    }

    .sub-header.hero-banner .hero-title {
        font-size: 1.5rem;
    }
}
