/* NOVA EDITORIAL ENGINE - PUBLIC RENDER STYLES */

/* Container resets */
.nova-block {
    margin-bottom: 2rem;
    position: relative;
    max-width: 800px;
    /* Optimal reading width */
}

/* Headings */
.nova-heading-h2 {
    font-size: 2rem;
    font-weight: 700;
    color: white;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    background: linear-gradient(to right, #fff, #94a3b8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nova-heading-h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #e2e8f0;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

/* Text */
.nova-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #cbd5e1;
    margin-bottom: 0;
}

/* Images */
.nova-figure {
    margin: 2.5rem 0;
}

.nova-figure img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.nova-figure figcaption {
    text-align: center;
    font-size: 0.9rem;
    color: #94a3b8;
    margin-top: 0.8rem;
    font-style: italic;
}

/* Quotes */
.nova-quote {
    border-left: 4px solid #a855f7;
    margin: 3rem 0;
    padding: 1rem 2rem;
    background: linear-gradient(90deg, rgba(168, 85, 247, 0.05) 0%, transparent 100%);
    border-radius: 0 12px 12px 0;
}

.nova-quote p {
    font-size: 1.4rem;
    font-weight: 300;
    color: white;
    font-style: italic;
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.nova-quote cite {
    display: block;
    font-size: 0.9rem;
    color: #a855f7;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Code */
.nova-code {
    background: #0f172a;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 1.5rem;
    overflow-x: auto;
    font-family: 'Fira Code', monospace;
    font-size: 0.9rem;
    margin: 2rem 0;
}

.nova-code code {
    color: #e2e8f0;
}

/* CTA */
.nova-cta-wrapper {
    margin: 3rem 0;
    display: flex;
    justify-content: center;
}

.post-body {
    max-width: 780px;
    margin-inline: auto;
}

.nova-text p,
.nova-text li {
    font-size: clamp(1rem, 1.1vw, 1.12rem);
    line-height: 1.8;
}

.nova-structured,
.nova-callout {
    margin: 2rem 0;
    padding: clamp(1.1rem, 3vw, 1.6rem);
    border: 1px solid rgba(56, 189, 248, 0.22);
    border-radius: 16px;
    background: rgba(15, 23, 42, 0.72);
}

.nova-structured h3,
.nova-callout > strong {
    display: block;
    margin: 0 0 0.9rem;
    color: #f8fafc;
    font-size: 1.15rem;
}

.nova-structured ul,
.nova-structured ol {
    margin: 0;
    padding-left: 1.4rem;
    color: #cbd5e1;
}

.nova-structured li + li {
    margin-top: 0.75rem;
}

.nova-key_points {
    border-color: rgba(168, 85, 247, 0.34);
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.09), rgba(168, 85, 247, 0.11));
}

.nova-callout-warning {
    border-color: rgba(251, 191, 36, 0.42);
}

.nova-callout-tip {
    border-color: rgba(52, 211, 153, 0.4);
}

@media (max-width: 700px) {
    .nova-heading-h2 {
        font-size: 1.55rem;
        margin-top: 2.25rem;
    }

    .nova-heading-h3 {
        font-size: 1.25rem;
    }

    .nova-quote {
        padding: 0.9rem 1.1rem;
    }

    .nova-quote p {
        font-size: 1.1rem;
    }
}
