/* =========================================
   NST TOURDATEN
   ========================================= */

.nst-tourdaten {
    --nst-green: #59815B;
    --nst-grey: #d9d9d9;
    --nst-text: #222222;

    width: 100%;
    max-width: 1180px;
    margin: 55px auto 20px;
    color: var(--nst-text);
    font-family: inherit;
}


/* =========================================
   ÜBERSCHRIFT
   ========================================= */

.nst-tourdaten-header {
    display: flex;
    align-items: center;
    gap: 22px;
    margin-bottom: 18px;
}

.nst-tourdaten-header h2 {
    margin: 0;
    padding: 0;
    color: var(--nst-green);
    font-family: inherit;
    font-size: 31px;
    font-weight: 500;
    font-style: italic;
    line-height: 1.2;
    white-space: nowrap;
}

.nst-tourdaten-line {
    height: 3px;
    flex: 1;
    background: var(--nst-green);
    opacity: .75;
}


/* =========================================
   GRID
   ========================================= */

.nst-tourdaten-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}


/* =========================================
   DATENFELDER
   ========================================= */

.nst-tour-item {
    min-height: 145px;
    display: flex;
    align-items: center;
    gap: 22px;
    padding: 25px 30px;
    box-sizing: border-box;
    border-bottom: 1px solid var(--nst-grey);
}

.nst-tour-item:nth-child(3n+1),
.nst-tour-item:nth-child(3n+2) {
    border-right: 1px solid var(--nst-grey);
}


/* =========================================
   PIKTOGRAMME
   ========================================= */

.nst-tour-icon {
    width: 62px;
    min-width: 62px;
    height: 62px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #262626;
}

.nst-tour-icon svg {
    width: 58px;
    height: 58px;
    display: block;
}


/* =========================================
   TEXT
   ========================================= */

.nst-tour-text {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.nst-tour-label {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: .12em;
    text-transform: uppercase;
    line-height: 1.3;
}

.nst-tour-text strong {
    font-size: 24px;
    font-weight: 600;
    line-height: 1.2;
}


/* =========================================
   SCHWIERIGKEIT
   ========================================= */

/* Alle grünen Anzeigen ausblenden */

.nst-difficulty-svg .nst-scale-light,
.nst-difficulty-svg .nst-scale-medium,
.nst-difficulty-svg .nst-scale-hard {
    opacity: 0;
}


/* Alle Zeiger ausblenden */

.nst-difficulty-svg .nst-needle-light,
.nst-difficulty-svg .nst-needle-medium,
.nst-difficulty-svg .nst-needle-hard {
    opacity: 0;
}


/* =========================================
   LEICHT
   ========================================= */

.nst-tourdaten[data-difficulty="leicht"]
.nst-difficulty-svg .nst-scale-light {
    opacity: 1;
}

.nst-tourdaten[data-difficulty="leicht"]
.nst-difficulty-svg .nst-needle-light {
    opacity: 1;
}


/* =========================================
   MITTEL
   ========================================= */

.nst-tourdaten[data-difficulty="mittel"]
.nst-difficulty-svg .nst-scale-medium {
    opacity: 1;
}

.nst-tourdaten[data-difficulty="mittel"]
.nst-difficulty-svg .nst-needle-medium {
    opacity: 1;
}


/* =========================================
   SCHWER
   ========================================= */

.nst-tourdaten[data-difficulty="schwer"]
.nst-difficulty-svg .nst-scale-hard {
    opacity: 1;
}

.nst-tourdaten[data-difficulty="schwer"]
.nst-difficulty-svg .nst-needle-hard {
    opacity: 1;
}


/* =========================================
   TABLET
   ========================================= */

@media (max-width: 850px) {

    .nst-tourdaten-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .nst-tour-item:nth-child(3n+1),
    .nst-tour-item:nth-child(3n+2) {
        border-right: none;
    }

    .nst-tour-item:nth-child(odd) {
        border-right: 1px solid var(--nst-grey);
    }

    .nst-tour-item:nth-child(even) {
        border-right: none;
    }

    .nst-tour-item:nth-child(-n+4) {
        border-bottom: 1px solid var(--nst-grey);
    }
}


/* =========================================
   MOBIL
   ========================================= */

@media (max-width: 560px) {

    .nst-tourdaten {
        margin-top: 40px;
    }

    .nst-tourdaten-header {
        gap: 12px;
    }

    .nst-tourdaten-header h2 {
        font-size: 27px;
    }

    .nst-tourdaten-grid {
        grid-template-columns: 1fr;
    }

    .nst-tour-item,
    .nst-tour-item:nth-child(odd),
    .nst-tour-item:nth-child(even) {
        min-height: 115px;
        padding: 20px 12px;
        border-right: none;
        border-bottom: 1px solid var(--nst-grey);
    }

    .nst-tour-item:last-child {
        border-bottom: none;
    }

    .nst-tour-icon {
        width: 55px;
        min-width: 55px;
        height: 55px;
    }

    .nst-tour-icon svg {
        width: 52px;
        height: 52px;
    }

    .nst-tour-text strong {
        font-size: 22px;
    }
}