/* ── Story Widget ───────────────────────────────────────────────────────────── */
.neweb-story {
    padding: 10rem 1.5rem;
}

@media (min-width: 768px) {
    .neweb-story {
        padding: 14rem 1.5rem;
    }
}

.neweb-story__inner {
    max-width: 64rem;
    margin: 0 auto;
}

/* Label */
.neweb-story__label {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--color-brand);
}

/* Giant stat */
.neweb-story__stat {
    margin-bottom: 2rem;
}

.neweb-story__stat-number {
    font-family: var(--font-serif);
    font-size: clamp(7rem, 18vw, 11rem);
    line-height: 0.85;
    letter-spacing: -0.05em;
    color: #0f172a;
    font-variant-numeric: tabular-nums;
}

[data-theme="dark"] .neweb-story__stat-number {
    color: #ffffff;
}

/* Stat description row */
.neweb-story__stat-row {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-top: 1rem;
}

@media (min-width: 640px) {
    .neweb-story__stat-row {
        flex-direction: row;
        align-items: baseline;
        gap: 2rem;
    }
}

.neweb-story__stat-body {
    max-width: 24rem;
    font-size: 1.25rem;
    line-height: 1.625;
    color: #64748b;
}

[data-theme="dark"] .neweb-story__stat-body {
    color: #94a3b8;
}

/* Animated gradient divider */
.neweb-story__divider-wrap {
    max-width: 28rem;
    margin: 7rem auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (min-width: 768px) {
    .neweb-story__divider-wrap {
        margin: 9rem auto;
    }
}

.neweb-story__caption {
    font-size: 1.25rem;
    line-height: 1.6;
    color: #64748b;
    max-width: 28rem;
    margin: 0 auto 4rem;
    text-align: center;
}

[data-theme="dark"] .neweb-story__caption {
    color: #94a3b8;
}

/* Section heading */
.neweb-story__heading {
    font-size: clamp(2.25rem, 5vw, 4.5rem);
    line-height: 1.1;
    color: #0f172a;
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
    max-width: 48rem;
}

[data-theme="dark"] .neweb-story__heading {
    color: #ffffff;
}

.neweb-story__heading-italic {
    font-style: italic;
    color: #94a3b8;
}

[data-theme="dark"] .neweb-story__heading-italic {
    color: #64748b;
}

.neweb-story__description {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #64748b;
    max-width: 42rem;
    margin-top: 3rem;
}

[data-theme="dark"] .neweb-story__description {
    color: #94a3b8;
}

/* Steps — 3-column grid */
.neweb-story__steps {
    text-align: left;
    margin-top: 5rem;
    display: grid;
    gap: 2.5rem;
}

@media (min-width: 640px) {
    .neweb-story__steps {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
}

.neweb-story__step {
    padding-top: 1.5rem;
    border-top: 1px solid #e2e8f0;
}

[data-theme="dark"] .neweb-story__step {
    border-top-color: #334155;
}

.neweb-story__step-number {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.2em;
    color: var(--color-brand);
}

.neweb-story__step-title {
    font-family: var(--font-body) !important;
    font-size: 1rem;
    font-weight: 600 !important;
    color: #1e293b;
    margin-top: 0.75rem;
    margin-bottom: 0.5rem;
}

[data-theme="dark"] .neweb-story__step-title {
    color: #ffffff;
}

.neweb-story__step-desc {
    font-size: 15px;
    line-height: 1.625;
    color: #64748b;
}

[data-theme="dark"] .neweb-story__step-desc {
    color: #94a3b8;
}
