/* Hero Banner Block
------------------------------------- */
.hero-banner-block {
    position: relative;
    height: 60vh;
    min-height: 430px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4vh 4vw;
    border-bottom: 11px solid #fdad2f;
}

/* Full-height variant (toggled via ACF field) */
.hero-banner-block.hero-banner--full {
    height: 94vh;
    min-height: 560px;
}

/* Slides container */
.hero-banner-block .hero-banner-slides {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1;
}

.hero-banner-block .single-slide {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: 0;
    opacity: 0;
    transition: opacity 1s ease;
}

.hero-banner-block .single-slide.active {
    opacity: 1;
    z-index: 2;
}

/* Content overlay */
.hero-banner-block .banner_logo {
    position: relative;
    z-index: 3;
}

.hero-banner-block .hero-banner-text {
    font-family: 'helvetica-neue-lt-pro-cond', 'helvetica-lt-pro', helvetica, arial, sans-serif;
    font-size: 100px;
    font-weight: 900;
    margin: 35px 0;
    color: #fff;
    text-shadow: 2.264px 1.968px 8px rgba(0, 0, 0, 1);
}

.hero-banner-block .hero-buttons {
    display: flex;
    flex-direction: row;
    column-gap: 20px;
    row-gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-banner-block .hero-button-link {
    border: none;
    border-radius: 30px;
    color: #fff !important;
    background-color: #fdad2f;
    font-family: 'helvetica-neue-lt-pro-cond', 'helvetica-lt-pro', helvetica, arial, sans-serif;
    font-size: 21px;
    line-height: 1.14;
    font-weight: 600;
    padding: .3em 2.1em;
    width: fit-content;
    text-transform: uppercase;
    text-align: center;
}

.hero-banner-block .hero-button-link:hover {
    text-decoration: none;
    background-color: #fbc97a !important;
}

.internal-page .hero-banner-block .hero-banner-text {
    font-size: 70px;
    margin: 20px 0;
}

/* Responsive
----------------------------------------------- */
@media screen and (max-width: 1460px) {
    .hero-banner-block .hero-banner-text {
        font-size: 70px;
    }
}

@media screen and (min-width: 1026px) and (max-width: 1200px) {
    .hero-banner-block .hero-banner-text {
        font-size: 70px;
    }
}

@media (max-width: 1025px) {
    .hero-banner-block.hero-banner--full {
        min-height: 100vh;
    }
    .hero-banner-block {
        height: 48vh;
        min-height: 460px;
        padding: 20px;
    }
}

@media only screen and (max-width: 768px) {
    .hero-banner-block {
        height: 50vh;
        align-items: center;
        min-height: 300px;
    }
}

@media (max-width: 600px) {
    .hero-banner-block {
        height: 60vh;
        min-height: 460px;
    }
}
