/* Estilos específicos para artículos de blog */
.article-wrapper {
    background: #ffffff;
    padding-bottom: 5rem;
}

.article-header {
    padding: 9rem 2rem 6rem;
    background: linear-gradient(160deg, #f8fafc 0%, #eef1f9 100%);
    text-align: center;
}

.article-header h1 {
    max-width: 900px;
    margin: 0 auto 1.5rem;
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: 800;
    color: #0b2240;
    line-height: 1.15;
    letter-spacing: -0.02em;
}

.article-header-meta {
    color: #64748b;
    font-size: 0.95rem;
    font-weight: 500;
}

.article-hero-img-container {
    max-width: 1000px;
    margin: -4rem auto 4rem;
    padding: 0 1.5rem;
    position: relative;
    z-index: 2;
}

.article-hero-img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    object-position: top;
    border-radius: 24px;
    box-shadow: 0 24px 50px rgba(1, 44, 185, 0.15);
}

.article-body {
    max-width: 760px;
    margin: 0 auto;
    padding: 0 1.5rem;
    font-size: 1.18rem;
    line-height: 1.8;
    color: #334155;
}

.article-body h2 {
    font-size: 2.2rem;
    color: #0f172a;
    margin: 3.5rem 0 1.5rem;
    font-weight: 800;
}

.article-body p {
    margin-bottom: 1.8rem;
}

.article-quote {
    font-size: 1.5rem;
    line-height: 1.4;
    font-style: italic;
    color: var(--azul);
    border-left: 4px solid var(--azul);
    padding-left: 2rem;
    margin: 3rem 0;
    font-weight: 600;
}

.article-cta-inline {
    background: linear-gradient(135deg, #f0f4ff, #e0e7ff);
    border: 1px solid #c7d2fe;
    border-radius: 16px;
    padding: 3rem 2rem;
    text-align: center;
    margin: 4rem 0;
}

.article-cta-inline h3 {
    color: var(--azul);
    font-size: 1.6rem;
    margin-bottom: 1rem;
    font-weight: 800;
}

.article-cta-inline p {
    font-size: 1.05rem;
    color: #475569;
    margin-bottom: 2rem;
}

/* Animaciones Reveal */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 {
    transition-delay: 0.15s;
}

.reveal-delay-2 {
    transition-delay: 0.3s;
}

@media (max-width: 768px) {
    .article-hero-img {
        height: 250px;
    }

    .article-body {
        font-size: 1.05rem;
    }
}
