.nml-sp {
    padding: 80px 0;
    background: var(--color-bg);
    overflow: hidden;
}

/* ── Header ── */
.nml-sp__header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    text-align: center;
    margin-bottom: 56px;
    color: #0B101F;
}

.nml-sp__header h2 {
    text-align: center;
    color: #0B101F;
}

.nml-sp__header h2 span {
    color: var(--color-text-accent);
}

/* ── Stats row ── */
.nml-sp__stats {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin-bottom: 48px;
}

.nml-sp__stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    gap: 4px;
    padding: 0 60px;
    text-align: center;
}

.nml-sp__stat:first-child {
    padding: 0 60px 0 0;
}

.nml-sp__stat:last-child {
    padding: 0 0 0 60px;
}

.nml-sp__stat + .nml-sp__stat {
    border-left: 2px solid var(--color-line-blue);
}

.nml-sp__stat-value {
    font-size: 56px;
    line-height: 64px;
    font-weight: 700;
    text-align: center;
    color: var(--color-accent);
}

.nml-sp__stat-label {
    margin: 0;
    font-size: 16px;
    line-height: 24px;
    font-weight: 500;
    text-align: center;
    color: #303D60;
}

.nml-sp__awards-track {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    list-style: none;
    margin: 0;
    padding: 0;
    flex-shrink: 0;
}

.nml-sp__award {
    flex-shrink: 0;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
}

.nml-sp__award img {
    display: block;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: contain;
    overflow: hidden;
}


@media (max-width: 768px) {
    .nml-sp {
        padding: 40px 0;
    }

    .nml-sp__heading {
        font-size: 32px;
        line-height: 40px;
    }

    .nml-sp__stats {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        margin-bottom: 48px;
        padding: 0 47px;
    }

    .nml-sp__stat {
        padding: 16px 0 16px 0 !important;
    }

    .nml-sp__stat:first-child{
        padding: 0 0 16px 0!important;
    }

    /* reset left border on grid wrap */
    .nml-sp__stat + .nml-sp__stat {
        border-top: 1px solid var(--color-line-blue);
        border-left: none;
    }

    .nml-sp__stat:nth-child(2n) {
        border-top: 1px solid var(--color-line-blue);
    }

    .nml-sp__stat-value {
        font-size: 40px;
        line-height: 48px;
    }

    .nml-sp__header {
        gap: 16px;
        margin-bottom: 32px;
    }

    .nml-sp__stat-label {
        font-size: 14px;
        line-height: 20px;
    }

    .nml-sp__awards-track{
        display: flex;
        flex-wrap: wrap;
        justify-items: center;
        justify-content: center;
    }

    .nml-sp__award {
        width: 64px;
        height: 64px;
    }

    .nml-sp__award img {
        width: 64px;
        height: 64px;
    }
}
