.hero-met-icons {
height: 456px;
background-size: cover;
background-position: center;
background-repeat: no-repeat;
position: relative;
display: flex;
align-items: center;
justify-content: start;
text-align: left;
color: white;
padding: 100px 20px;
}

/* Fade overlay */
.hero-met-icons::before {
content: "";
position: absolute;
inset: 0;
background: linear-gradient(to right,
rgba(0, 0, 0, 1) 0%,
rgba(0, 0, 0, 1) 25%,
rgba(0, 0, 0, 0) 100%);
z-index: 2;
pointer-events: none;
}

.hero-met-icons::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 120px;
    background: linear-gradient(to bottom,
        rgba(0, 0, 0, 0) 0%,
        rgba(0, 0, 0, 1) 100%);
    z-index: 2;
    pointer-events: none;
}

.hero-met-icons .hero-content {
    z-index: 3;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    padding-left: 20px;
    padding: 180px 35px 35px;
}


.hero-met-icons .hero-titel {
font-size: 84px;
font-weight: 400;
font-family: 'Josefin Sans', sans-serif;
line-height: 1.2;
display: inline-block;
position: relative;
}

/* underline als pseudo-element */
.hero-met-icons .hero-titel::after {
content: "";
display: block;
width: 120px;
height: 2px;
background-color: #4F7046;
margin-top: 10px;
}

/* Container voor icon + tekst */
.hero-icons-container {
padding-top: 30px;
display: flex;
flex-direction: column;
gap: 20px;
}

/* Elk item: afbeelding en tekst naast elkaar */
.hero-icon-item {
display: flex;
align-items: center;
gap: 20px;
}

/* icon-afbeelding */
.hero-icon {
width: 30px; /* pas aan naar wens */
height: 30px;
object-fit: contain;
}

/* tekst naast icon */
.hero-icon-tekst {
font-size: 24px;
font-weight: 400;
text-transform: uppercase;
font-family: 'Josefin Sans', sans-serif;
}


@media (max-width: 599px) {
    .hero-met-icons .hero-titel {
        font-size: 60px;
    }

    .hero-icon-tekst {
        font-size: 20px !important;
    }
}

.hero-icon-tekst {
    color: #fff;
    font-size: 24px;
    font-weight: 400;
    text-transform: uppercase;
    font-family: 'Josefin Sans', sans-serif;
}

a.hero-icon-link {
    color: #fff;
}


.onder-gradient {
    position: relative;
    top: 0;
    left: 0;
    right: 0;
    height: 120px;
    background: linear-gradient(to bottom,
        rgba(0, 0, 0, 1) 0%,
        rgba(0, 0, 0, 0) 100%);
    z-index: 2;
}

@media (max-width: 799px) {
    .onder-gradient {
        height: 60px;
    }
}