/* Banner/Hero Section Styles */
.site-banner {
    width: 100%;
    margin-bottom: var(--spacing-xl);
    position: relative;
    overflow: hidden;
}

.site-banner img {
    width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: cover;
    display: block;
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.3) 100%);
}

@media (max-width: 768px) {
    .site-banner img {
        max-height: 250px;
    }
}

@media (max-width: 480px) {
    .site-banner img {
        max-height: 180px;
    }
}