/* =========================================================
   VERTRAUENSBEREICH
========================================================= */

.nh-section-ourvalues {
    padding: 100px 20px;
    background: #fafafa;
    position: relative;
}

/* optional leichter Übergang von oben */
.nh-section-ourvalues::before {
    content: "";
    position: absolute;
    top: -70px;
    left: 0;
    width: 100%;
    height: 70px;

    background: linear-gradient(
        to bottom,
        rgba(250,250,250,0) 0%,
        #fafafa 100%
    );
}


/* =========================================================
   WRAPPER
========================================================= */

.nh-vertrauen-wrapper {
    max-width: 1200px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;

    align-items: center;
}


/* =========================================================
   BILD
========================================================= */

.nh-vertrauen-image {
    position: relative;
    overflow: hidden;
    border-radius: 22px;
}

.nh-vertrauen-image img {
    width: 100%;
    height: 100%;
    display: block;

    object-fit: cover;
    border-radius: 22px;

    transition: transform 0.5s ease;
}

.nh-vertrauen-image:hover img {
    transform: scale(1.02);
}


/* =========================================================
   CONTENT
========================================================= */

.nh-vertrauen-content {
    max-width: 520px;
}


/* kleine Label-Zeile */
.nh-vertrauen-label {
    display: inline-block;

    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;

    color: #568c11;

    margin-bottom: 18px;
}


/* Headline */
.nh-vertrauen-title {
    font-size: 42px;
    line-height: 1.2;
    color: #222;

    margin: 0 0 25px;
}


/* Text */
.nh-vertrauen-text {
    font-size: 17px;
    line-height: 1.8;
    color: #555;

    margin-bottom: 35px;
}


/* =========================================================
   VERTRAUENSPUNKTE
========================================================= */

.nh-vertrauen-points {
    display: flex;
    flex-direction: column;
    gap: 16px;
}


/* einzelner Punkt */
.nh-vertrauen-point {
    position: relative;

    padding-left: 18px;

    font-size: 15px;
    color: #333;

    line-height: 1.6;
}


/* grüne Linie links */
.nh-vertrauen-point::before {
    content: "";

    position: absolute;
    left: 0;
    top: 4px;

    width: 3px;
    height: 16px;

    border-radius: 999px;

    background: #9cc900;
}


/* =========================================================
   HOVER (dezent)
========================================================= */

.nh-vertrauen-wrapper:hover .nh-vertrauen-image img {
    transform: scale(1.015);
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 900px) {

    .nh-vertrauen-wrapper {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .nh-vertrauen-content {
        max-width: 100%;
    }

    .nh-vertrauen-title {
        font-size: 32px;
    }

    .nh-vertrauen-section {
        padding: 80px 20px;
    }

}


/* =========================================================
   KLEINE MOBILES
========================================================= */

@media (max-width: 600px) {

    .nh-vertrauen-title {
        font-size: 28px;
    }

    .nh-vertrauen-text {
        font-size: 16px;
        line-height: 1.7;
    }

    .nh-vertrauen-wrapper {
        gap: 35px;
    }

}