/* ============================================================
   Nordic Elementor — Stats Banner
   ============================================================ */

.nordic-sb {
    background-color: #0a0a0a;
    padding: 80px 60px;
    box-sizing: border-box;
}

.nordic-sb *,
.nordic-sb *::before,
.nordic-sb *::after {
    box-sizing: inherit;
}

/* Heading */
.nordic-sb__heading {
    color: #ffffff;
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    margin: 0 0 48px;
    max-width: 860px;
}

/* Body two-column */
.nordic-sb__body-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    margin-bottom: 0;
}

.nordic-sb__body {
    color: #cccccc;
    font-size: 0.9375rem;
    line-height: 1.7;
    margin: 0;
}

.nordic-sb__body p {
    margin: 0 0 1em;
}

.nordic-sb__body p:last-child {
    margin-bottom: 0;
}

/* Stats row */
.nordic-sb__stats {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    border-top: 1px solid #333333;
    margin-top: 48px;
    padding-top: 48px;
}

.nordic-sb__stat {
    flex: 1 1 auto;
    padding-right: 40px;
    position: relative;
}

.nordic-sb__stat + .nordic-sb__stat::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 1px;
    background: #333333;
}

.nordic-sb__stat + .nordic-sb__stat {
    padding-left: 40px;
}

.nordic-sb__stat-number {
    color: #ffffff;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    line-height: 1;
    margin-bottom: 8px;
    letter-spacing: -0.01em;
}

.nordic-sb__stat-label {
    color: #aaaaaa;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-weight: 600;
}

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 768px) {
    .nordic-sb {
        padding: 48px 24px;
    }

    .nordic-sb__body-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .nordic-sb__stats {
        flex-direction: column;
        gap: 32px;
    }

    .nordic-sb__stat {
        padding-right: 0;
    }

    .nordic-sb__stat + .nordic-sb__stat {
        padding-left: 0;
    }

    .nordic-sb__stat + .nordic-sb__stat::before {
        display: none;
    }
}
