/* Dynamic admin-managed banners (home + gender listing pages) */
.site-banner {
    position: relative;
    display: block;
    width: 100%;
    min-height: 320px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
    text-decoration: none;
}

.site-banner + .site-banner {
    margin-top: 4px;
}

.site-banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0.45) 100%);
    pointer-events: none;
}

.site-banner-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 320px;
    padding: 2.5rem 1.5rem;
    color: #fff;
}

.site-banner-title {
    font-size: 2.75rem;
    font-weight: 500;
    margin-bottom: 0.75rem;
    text-shadow: 0 4px 20px rgba(0,0,0,0.35);
}

.site-banner-subtitle {
    font-size: 1.15rem;
    max-width: 600px;
    opacity: 0.95;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

@media (max-width: 768px) {
    .site-banner,
    .site-banner-content {
        min-height: 220px;
    }
    .site-banner-title {
        font-size: 1.9rem;
    }
    .site-banner-subtitle {
        font-size: 1rem;
    }
}
