.hero-banner {
    position: relative;
    background-color: var(--wp--preset--color--primary, #006179);
    color: #fff;
    overflow: hidden;
    display: flex;
    align-items: flex-start;
    min-height: 891px;
    /* Override .alignfull positioning — full width, then constrain inner content */
    width: 100%;
    max-width: 100%;
    left: auto;
    right: auto;
    margin-left: 0;
    margin-right: 0;
}

/* Diagonal stripes - only when no background image */
.hero-banner__stripes {
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    background: repeating-linear-gradient(
        -55deg,
        transparent,
        transparent 30px,
        rgba(255, 255, 255, 0.05) 30px,
        rgba(255, 255, 255, 0.05) 60px
    );
    pointer-events: none;
}

/* Gradient overlay - only when background image is set */
.hero-banner--has-image {
    background-image: var(--hero-bg);
    background-size: cover;
    background-position: center;
    background-color: transparent;
}

@media (max-width: 768px) {
    .hero-banner--has-image {
        background-image: var(--hero-bg-mobile);
    }
}

@media (min-width: 993px) {
    .hero-banner--has-image {
        background-image: var(--hero-bg-lg);
    }
}

.hero-banner__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        rgba(7, 87, 107, 0.7644) 37.12%,
        rgba(41, 128, 128, 0.2574) 62.18%,
        rgba(41, 128, 128, 0.2574) 100%
    );
    pointer-events: none;
}

.hero-banner__content {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: var(--container-max, 1200px);
    margin-left: auto;
    margin-right: auto;
    padding: 5rem var(--container-padding, 1.5rem);
}

.hero-banner__content > * {
    max-width: 821px;
}

.hero-banner__heading {
    font-family: 'Nunito', sans-serif;
    font-size: 72px;
    font-weight: 700;
    color: #FBFCFC;
    line-height: 98.2px;
    letter-spacing: 0;
    margin-bottom: 1.25rem;
}

.hero-banner__subheading {
    font-family: 'Nunito', sans-serif;
    font-size: 40px;
    font-weight: 700;
    color: #FBFCFC;
    line-height: 54.6px;
    letter-spacing: 0;
    opacity: 1;
    margin-bottom: 96px;
}

.hero-banner__buttons {
    display: flex;
    gap: 42px;
    flex-wrap: wrap;
}

@media (max-width: 992px) {
    .hero-banner__buttons {
        gap: 24px;
    }
}

.hero-banner__buttons .btn {
    width: 220px;
    height: 58px;
    border-radius: 50px;
    background: #ACEDD9;
    border-color: #ACEDD9;
    color: #006179;
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    font-size: 20px;
    line-height: 27.3px;
    letter-spacing: 0.02em;
    text-align: center;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.hero-banner__buttons .btn:hover {
    background: #FBFCFC;
    border-color: #FBFCFC;
    color: #006179;
}

.hero-banner__buttons .btn:active {
    background: #EAFAF5;
    border-color: #EAFAF5;
    color: #006179;
}

.hero-banner__buttons .btn:disabled,
.hero-banner__buttons .btn[aria-disabled="true"],
.hero-banner__buttons .btn.is-disabled {
    background: #F0F1F1;
    border-color: #F0F1F1;
    color: #006179;
    cursor: not-allowed;
    pointer-events: none;
}

@media (max-width: 768px) {
    .hero-banner {
        min-height: 500px;
    }

    .hero-banner__overlay {
        background: linear-gradient(0.37deg, rgba(7, 87, 107, 0.7644) 27.96%, rgba(41, 128, 128, 0.2808) 60.36%);
    }

    .hero-banner__content {
        padding: 157px 25px 72px;
    }

    .hero-banner__heading {
        font-family: 'Nunito', sans-serif;
        font-weight: 700;
        font-size: 50px;
        line-height: 68.2px;
        letter-spacing: 0;
        padding-left: 11px;
        padding-right: 11px;
    }

    .hero-banner__subheading {
        font-family: 'Nunito', sans-serif;
        font-weight: 600;
        font-size: 24px;
        line-height: 33px;
        letter-spacing: 0;
        margin-bottom: 56px;
        padding-left: 11px;
        padding-right: 11px;
    }

    .hero-banner__buttons {
        flex-direction: column;
    }

    .hero-banner__buttons .btn {
        width: 100%;
        font-size: 16px;
    }
}
