/* Banner CTA — an inset rounded image card that floats over the seam between
   the green section band (top) and a full-width white band (bottom), matching
   the overlapping "card" effect in the design. Heading/button are shared
   .circla-* classes (see style.css).

   NOTE: the white bottom band assumes the following section is white. */

.banner-cta-block {
    position: relative;
    background-color: #f3f8ea;   /* green band (continues the section above) */
    padding: 48px 88px 40px;     /* top green / bottom reveals the white band */
}

/* Full-width white band behind the lower part of the card. */
.banner-cta-block::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 176px;
    background-color: #fff;
    z-index: 0;
}

.banner-cta-block__card {
    position: relative;
    z-index: 1;
    max-width: 1264px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 24px;
    padding: 96px 32px;
    border-radius: 16px;
    overflow: hidden;
    background-color: #233129;
    background-size: cover;
    background-position: center;
    color: #fff;
}

/* Dim overlay so the white text stays legible over any photo. */
.banner-cta-block__card::before {
    content: "";
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.33);
    pointer-events: none;
}

.banner-cta-block__inner {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    max-width: 912px;
}

.banner-cta-block__subtag {
    padding: 6px 13px;
    background-color: #233129;
    border-radius: 32px;
    font-family: "Neue Augenblick Bold", "Neue Augenblick", sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.3px;
    text-transform: uppercase;
    color: #fff;
}

/* Banner heading is Extra Bold with a soft shadow in the design. */
.banner-cta-block__heading {
    font-family: "Neue Augenblick Extra Bold", "Neue Augenblick", sans-serif !important;
    font-size: 40px !important;
    text-shadow: 0 4px 36px rgba(0, 0, 0, 0.15);
}

.banner-cta-block__cta {
    margin-top: 16px;
    box-shadow: 0 10px 7.5px rgba(0, 0, 0, 0.1), 0 4px 3px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    .banner-cta-block {
        padding: 32px 16px;
    }
    .banner-cta-block::after {
        height: 96px;
    }
    .banner-cta-block__card {
        padding: 56px 24px;
        border-radius: 12px;
        min-height: 361px;
        justify-content: center;
    }
    .banner-cta-block__heading {
        font-size: 28px !important;
    }
}
