/* #############################################
## NOX CARDS
############################################# */
.nox-card {
    background: #1A1A1A;
    padding: 1.5rem;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    box-shadow: 0 1px 0 rgba(255, 255, 255, .06) inset;
}

.nox-icon {
    font-size: 0;
    /* Icon-Texte unterdrücken */
}

.nox-icon img {
    width: 64px;
    height: 64px;
    object-fit: contain;
    display: block;
}

.nox-h {
    margin: 0;
    color: #fff;
    font-weight: 700;
    font-size: 1.1rem
}

.nox-p {
    margin: .25rem 0 0;
    color: #e6e6e6;
    opacity: .9;
    font-size: .95rem
}

/*#############################################
## SECTION - ENERGIEKONZEOT
############################################# */
#energiekonzept .ek-box {
    position: relative;
    min-height: 250px;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #000;
    overflow: hidden;
    transition: transform .3s ease, box-shadow .3s ease;
    color: #fff;
}

#energiekonzept .ek-box.bg-success {
    background-size: contain;
    background-repeat: no-repeat;
    background-position: right bottom;
    background-color: #17d68f;
}

#energiekonzept .ek-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, .25);
}

#energiekonzept .ek-box>div {
    background: rgba(0, 0, 0, 0.5);
    display: inline-block;
    padding: 0.5rem 0 0.5rem 2rem;
}

#energiekonzept h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: .5rem
}

#energiekonzept p {
    margin: 0;
    font-size: 1rem;
}

#energiekonzept .ek-link {
    margin: 0.5rem 1rem;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
    display: inline-block;
}

#energiekonzept .ek-link:hover {
    text-decoration: underline;
}

/* #############################################
## METRIC CARDS
############################################# */
.metrics {
    display: flex;
    gap: 2rem;
    align-items: flex-end
}

.metric-value {
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(135deg, #17d68f, #7ff0c6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent
}

.metric small {
    color: #ccc;
    font-size: .9rem
}

/* Versatz-Referenzen */
.ref-left {
    margin-left: -40px;
    /* nach Bedarf anpassen */
}

.ref-right {
    margin-right: -40px;
    /* nach Bedarf anpassen */
}

/* Auf Mobile / Tablets wieder neutralisieren */
@media (max-width: 991.98px) {

    .ref-left,
    .ref-right {
        margin: 0;
    }
}