/* Hero Banner Block Styles */
.hero-banner-block {
    width: 100%;
    margin: 0;
    padding: 0;
}

.hero-banner-wrapper {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    overflow: hidden;
}

.hero-banner-link {
    display: block;
    width: 100%;
    text-decoration: none;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.hero-banner-link:hover {
    transform: scale(1.02);
}

.hero-banner-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    max-width: 100%;
}

.hero-banner-desktop {
    display: block;
}

.hero-banner-mobile {
    display: none;
}

/* Mobile styles */
@media (max-width: 768px) {
    .hero-banner-desktop {
        display: none;
    }
    
    .hero-banner-mobile {
        display: block;
    }
}

/* Tablet styles */
@media (max-width: 1024px) and (min-width: 769px) {
    .hero-banner-link:hover {
        transform: scale(1.01);
    }
}

/* Ensure full width on all screen sizes */
@media (min-width: 1200px) {
    .hero-banner-wrapper {
        width: 100vw;
        max-width: none;
    }
}
