/* ESTILOS DE "THE EXECUTIVE JOURNAL" */

.journal-editorial-body {
    background-color: #f8fafc;
    position: relative;
    overflow-x: hidden;
    min-height: 100vh;
}

/* 1. JUGANDO CON EL FONDO (Gradientes y Patrones) */
.editorial-bg-pattern {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(59, 130, 246, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(59, 130, 246, 0.03) 1px, transparent 1px);
    background-size: 30px 30px;
    z-index: -2;
}

.editorial-blob-1 {
    position: fixed;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.08) 0%, transparent 70%);
    top: -100px;
    right: -100px;
    z-index: -1;
}

.editorial-blob-2 {
    position: fixed;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(15, 23, 42, 0.04) 0%, transparent 70%);
    bottom: -50px;
    left: -100px;
    z-index: -1;
}

/* 2. CONTENEDOR PRINCIPAL */
.journal-wrapper {
    max-width: 840px;
    margin: 60px auto 100px;
    padding: 0 24px;
}

/* Navegación sutil */
.editorial-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
}

.back-to-home {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: var(--azul-dark);
    font-weight: 600;
    font-size: 0.95rem;
    transition: 0.3s ease;
}

.back-to-home:hover {
    color: var(--azul-brand);
    transform: translateX(-4px);
}

.reading-time {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    color: #64748b;
}

/* 3. ENCABEZADO DE REVISTA */
.journal-badge {
    display: inline-block;
    background: rgba(59, 130, 246, 0.1);
    color: var(--azul-brand);
    padding: 6px 14px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.journal-main-title {
    font-size: 3.8rem;
    line-height: 1.1;
    color: var(--azul-dark);
    font-weight: 700;
    margin: 24px 0;
    letter-spacing: -1px;
}

.journal-main-title .serif {
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 400;
}

.journal-lead {
    font-size: 1.3rem;
    color: #475569;
    line-height: 1.6;
    margin-bottom: 35px;
}

.journal-author-box {
    border-bottom: 1px solid #e2e8f0;
    padding-bottom: 40px;
    margin-bottom: 50px;
}

.journal-main-image {
    width: 100%;
    height: 480px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.06);
    margin-bottom: 24px;
}

.author-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
    color: #64748b;
}

/* 4. ESTILO DE LECTURA EDITORIAL */
.journal-body-text {
    font-family: var(--font-main);
    font-size: 1.15rem;
    line-height: 1.9;
    color: #334155;
}

.journal-body-text p {
    margin-bottom: 32px;
}

/* Letra Capital (Aesthetic) */
.dropcap {
    float: left;
    font-family: var(--font-serif);
    font-size: 5.5rem;
    line-height: 0.8;
    margin-top: 8px;
    margin-right: 14px;
    color: var(--azul-dark);
    font-weight: 600;
}

/* Cita Intermedia tipo Forbes */
.editorial-pullquote {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 2rem;
    line-height: 1.4;
    color: var(--azul-dark);
    margin: 50px 0;
    padding: 25px 0;
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
    text-align: center;
    font-weight: 400;
}