/* ── Page Hero wrapper ── */
.page-hero-block {
    width: 100%;
    display: flex;
    flex-direction: column;
    margin-bottom: -150px;

    @media (max-width: 700px) {
        margin-bottom: -200px;
    }
}

/* ── Hero image ── */
.page-hero-img {
    width: 100%;
    min-height: 360px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: flex-end;
}

.page-hero-overlay {
    width: 100%;
    padding: 40px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.5), transparent);
}

.page-hero-title {
    color: #fff;
    font-size: 42px;
    font-weight: 900;
    margin: 0;
    text-transform: uppercase;
}

/* ── Gray zone — wraps orange band, open area, bottom pattern ── */
.page-hero-gray {
    background-color: #eeebea;
    display: flex;
    flex-direction: column;
    font-size: 0;
    /* kill whitespace gaps */
}

/* ── Orange pattern band ── */
.page-hero-band {
    margin-top: -2px !important;
    padding-top: 0px;
    background-image: url(/dona-maria/wp-content/themes/maria-theme/inc/assets/img/text-under-banner-2.png);
    background-repeat: repeat-x;
    background-size: auto 80px;
    background-position: top center;
    height: 80px;
    margin-bottom: 40px;
}

.page-hero-band img {
    width: 100%;
    display: block;
    object-fit: fill;
    margin-top: -2px;
}

/* ── Open gray area — navigator sits here ── */
.page-hero-gray-body {
    height: 300px;

    @media (max-width: 700px) {
        height: 350px;
    }
}

/* ── Bottom pattern ── */
.page-hero-pat-bottom {
    margin-top: -2px !important;
    padding-top: 0px;
    background-image: url(/dona-maria/wp-content/themes/maria-theme/inc/assets/img/product-pattern-bottom.png);
    background-repeat: repeat-x;
    background-size: auto 80px;
    background-position: top center;
    height: 80px;
    margin-bottom: -250px;
}

.page-hero-pat-bottom img {
    width: 100%;
    display: block;
    object-fit: fill;
}