/* ── Nibble Stats Widget — Front-end Styles ── */

.nsw-section {
    background: #12132a;
    padding: 80px 40px;
    text-align: center;
    box-sizing: border-box;
}

/* Label */
.nsw-label {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: #2ddba4;
    margin-bottom: 14px;
}

/* Heading */
.nsw-heading {
    font-size: clamp(28px, 4.5vw, 52px);
    font-weight: 800;
    font-style: italic;
    color: #ffffff;
    line-height: 1.1;
    margin: 0 0 22px;
    padding: 0;
}

/* Body */
.nsw-body {
    font-size: 15px;
    line-height: 1.75;
    color: rgba(255,255,255,0.65);
    max-width: 680px;
    margin: 0 auto 52px;
}

.nsw-body p { margin: 0; }

/* Stats grid */
.nsw-stats {
    display: grid;
    gap: 16px;
    max-width: 900px;
    margin: 0 auto;
}

.nsw-cols-1 { grid-template-columns: 1fr; }
.nsw-cols-2 { grid-template-columns: repeat(2, 1fr); }
.nsw-cols-3 { grid-template-columns: repeat(3, 1fr); }
.nsw-cols-4 { grid-template-columns: repeat(4, 1fr); }

/* Stat card */
.nsw-card {
    background: #1c1e38;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 14px;
    padding: 30px 28px;
    text-align: left;
    transition: border-color 0.2s ease;
}

.nsw-card:hover {
    border-color: rgba(255,255,255,0.2);
}

/* Stat number */
.nsw-card-num {
    display: block;
    font-size: clamp(24px, 3vw, 38px);
    font-weight: 800;
    color: #ffffff;
    line-height: 1.1;
    margin-bottom: 8px;
    letter-spacing: -0.5px;
}

/* Stat label */
.nsw-card-label {
    display: block;
    font-size: 13px;
    color: rgba(255,255,255,0.55);
    line-height: 1.4;
}

/* Responsive */
@media (max-width: 768px) {
    .nsw-cols-3,
    .nsw-cols-4 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
    .nsw-section  { padding: 60px 20px; }
    .nsw-cols-2,
    .nsw-cols-3,
    .nsw-cols-4 { grid-template-columns: 1fr; }
}
