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

/* ── Hero image ── */
.page-hero-img {
    width: 100%;
    height: 0;
    padding-bottom: 47.773%; /* = (image height / image width) × 100 */
    background-size: contain;
    background-position: center top;
    background-repeat: no-repeat;
}

@media (max-width: 767px) {
    .page-hero-img {
        padding-bottom: 131.667%;
    }
}