/* ========================================
   Home Page Banner Responsive Styles
   ======================================== */

/* Banner Container - Responsive Heights */
.home-banner-container {
    position: relative;
    min-height: 400px;
    border-radius: 10px;
    overflow: hidden;
}

.home-banner-container .bg-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.home-banner-container .banner-link {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    cursor: pointer;
}

/* Responsive Heights */
@media (max-width: 1200px) {
    .home-banner-container {
        min-height: 350px;
    }
}

@media (max-width: 991px) {
    .home-banner-container {
        min-height: 300px;
    }
}

@media (max-width: 767px) {
    .home-banner-container {
        min-height: 250px;
    }
}

@media (max-width: 575px) {
    .home-banner-container {
        min-height: 200px;
    }
}

@media (max-width: 480px) {
    .home-banner-container {
        min-height: 180px;
    }
}