/* Page hero container */
.page-hero {
    position: relative;
    width: 100%;
    display: flex;
    align-items: flex-end;
    padding: 3rem 1.5rem;
    height: auto;
}

@media (max-width: 767px) {
    
}

@media (min-width: 768px) {
    .page-hero {
        padding: 3.5rem 2rem;
    }
}

@media (min-width: 1024px) {
    .page-hero {
        padding: 4rem 2rem;
        min-height: 400px;
    }
}

@media (min-width: 1440px) {
    .page-hero {
        
    }
}

/* Image container */
.page-hero__image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: -1;
}

/* overlay on image container */
.page-hero__image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background-color: rgb(from #09213f r g b / 30%); */
    /* background: rgba(0, 0, 0, 0.3); */
    background: linear-gradient(75deg, rgba(58, 55, 39, 0.35) 38%, rgba(255, 255, 255, 0.0) 64%, rgba(240, 191, 43, 0.15) 89%);
    /* background: linear-gradient(107deg, rgba(33, 68, 137, 0.4) 0%, rgba(2, 221, 255, 0.4) 30%, rgba(33, 68, 137, 0.4) 60%); */
    z-index: 1;
}

/* Image */
.page-hero__image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Content */
.page-hero__content {
    width: 100%;
    max-width: 1320px;
    margin: 0 auto;
}

.page-hero__content-wrapper {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
    margin: 0;
}

.page-hero__content .page-hero__heading {
    color: #fff;
    margin: 0;
    text-shadow: -1px 2px 10px rgb(23, 28, 66, 0.3);
}

.page-hero__body-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 1rem;
}

.page-hero__content .body-text * {
    color: #fff;
    margin: 0;
    text-shadow: -1px 2px 10px rgb(23, 28, 66, 0.3);
}

.page-hero__content .body-text * + * {
    margin-top: 1rem;
}

@media (min-width: 768px) {
    .page-hero__content-wrapper,
    .page-hero__body-wrapper {
        gap: 1.5rem;
    }

    .page-hero__content-wrapper {
        max-width: 66%;
    }
}

@media (min-width: 1024px) {
    .page-hero__content-wrapper {
        max-width: 50%;
    }

    .page-hero__content-wrapper,
    .page-hero__body-wrapper {
        gap: 2rem;
    }
}

@media (min-width: 1440px) {
    /* .page-hero__content-wrapper {
        max-width: 40%;
    } */
}

{# Promotional Banners #}
.hero__promo-top,
.hero__promo-bottom {
    text-align: center;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, .2);
}

.hero__promo-top *,
.hero__promo-bottom * {
    margin: 0;
}

.hero__promo-top * + *,
.hero__promo-bottom * + * {
    margin-top: 0.5rem;
}

.hero__promo-top {
    padding: 1rem;
}

.hero__promo-bottom {
    position: relative;
    padding: 1rem;
    padding-bottom: 3rem; /* adjust for arc space */
}

.hero__promo-bottom::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 2rem;
    background-color: white;
    clip-path: ellipse(55% 100% at 50% 100%);
    z-index: 1;
}

@media (max-width: 767px) {
    .hero__promo-bottom {
        padding-bottom: 2.5rem;
    }

    .hero__promo-bottom::after {
        height: 1.5rem;
    }
}