/* Hero Slider Image Full Width Fix */
.hero_area_inner {
    width: 100% !important;
    overflow: hidden !important;
    /* Set fixed container heights */
    height: 600px !important; /* Default height */
}

.hero_area_inner img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center center !important;
    /* Remove the fixed aspect ratio to allow natural scaling */
    aspect-ratio: unset !important;
    display: block !important;
    /* Additional centering properties */
    vertical-align: middle !important;
}

/* Responsive container heights */
@media only screen and (min-width: 992px) {
    .hero_area_inner {
        height: 700px !important;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .hero_area_inner {
        height: 500px !important;
    }
}

@media only screen and (max-width: 767px) {
    .hero_area_inner {
        height: 400px !important;
        margin-top: 54px;
    }
}

/* Make sure the link takes full width too */
.hero_area_inner a {
    display: block !important;
    width: 100% !important;
}