/* Long-form story page: readable column on dark theme */

#content.container .nvc-story,
#story-page.nvc-story {
    max-width: 46rem;
    margin-left: auto;
    margin-right: auto;
    text-align: left;
}

.nvc-story-section {
    margin-bottom: 1.75rem;
}

.nvc-story-section h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-top: 0;
    margin-bottom: 0.75rem;
    color: #fff;
    text-align: left;
}

.nvc-story-section p,
.nvc-story-support p {
    font-size: 1rem;
    line-height: 1.65;
    margin-bottom: 1rem;
    color: #e8e8e8;
    text-align: left;
}

.nvc-story-section p:last-child,
.nvc-story-support p:last-child {
    margin-bottom: 0;
}

.nvc-story-support {
    box-sizing: border-box;
    margin: 2rem 0;
    padding: 1.25rem 1.35rem;
    border: 1px solid #444;
    border-radius: 6px;
    background: linear-gradient(165deg, #1a1a1a 0%, #141414 100%);
    text-align: left;
}

.nvc-story-support h4 {
    font-size: 1.05rem;
    font-weight: 600;
    margin: 0 0 0.65rem 0;
    color: #f88;
    text-align: left;
}

.nvc-story-support-actions {
    margin-top: 1rem !important;
    margin-bottom: 0 !important;
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    align-items: center;
}

.nvc-story-btn {
    display: inline-block;
    padding: 0.45rem 1rem;
    border-radius: 4px;
    font-size: 0.95rem;
    font-weight: 500;
    text-decoration: none !important;
    transition: background-color 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.nvc-story-btn--primary {
    background-color: #ff5e5b;
    border: 1px solid #ff7a77;
    color: #1a0505 !important;
}

.nvc-story-btn--primary:hover {
    background-color: #ff7a77;
    color: #000 !important;
}

.nvc-story-btn--secondary {
    background-color: transparent;
    border: 1px solid #666;
    color: #f88 !important;
}

.nvc-story-btn--secondary:hover {
    border-color: #f88;
    color: #ffb0b0 !important;
}

.nvc-story-signature {
    margin-top: 2rem;
    margin-bottom: 0;
    font-size: 1.05rem;
    font-weight: 500;
    color: #d8d8d8;
    text-align: center;
}

@media (max-width: 576px) {
    .nvc-story-support-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .nvc-story-btn {
        text-align: center;
    }
}
