/* hero is one block INCLUDING the wave */
.hero-bg {
    position: relative;
    background: var(--c-hero);
    min-height: 630px;
    overflow: hidden;
    background-image: url("/static/img/index-hero-bg.jpg");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.hero-bg::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: rgba(0, 122, 61, 0.3);
    z-index: 0;
}

.hero-bg > * {
    position: relative;
    z-index: 2;
}

.hero-bg::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
}

@media (max-width: 1024px) {
    .hero-bg {
        min-height: 460px;
    }
}
