/*
Theme Name: La Ruta a Trascendencia
Theme URI: https://larutaatrascendencia.com.ar/
Author: Antigravity AI
Description: Un tema minimalista y futurístico diseñado para la novela de Alejandro Alonso. Estética Deep Space con Glassmorphism y Toques PRO.
Version: 1.0.3
Text Domain: lrt-theme
*/

/* 
  Reutilizando el design system de la maqueta original
*/

:root {
    --space-bg: #03030b;
    --deep-navy: #08082a;
    --cyan: #00f2ff;
    --violet: #7000ff;
    --magenta: #ff00ff;
    --neon-purple: #9d50bb;
    --text-primary: #f0f4f8;
    --text-secondary: #8892a4;
    --glass-bg: rgba(3, 3, 11, 0.6);
    --glass-border: rgba(255, 255, 255, 0.1);
    --glow-cyan: 0 0 10px rgba(0, 242, 255, 0.5), 0 0 20px rgba(0, 242, 255, 0.3);
    --container: 1100px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
    background-color: var(--space-bg);
    color: var(--text-primary);
    font-family: 'Inter', -apple-system, sans-serif;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

/* ===== STARFIELD BACKGROUND ===== */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image:
        radial-gradient(1px 1px at 20% 35%, rgba(255,255,255,0.6) 0%, transparent 100%),
        radial-gradient(1px 1px at 75% 10%, rgba(255,255,255,0.4) 0%, transparent 100%),
        radial-gradient(1px 1px at 50% 80%, rgba(255,255,255,0.5) 0%, transparent 100%),
        radial-gradient(1px 1px at 85% 60%, rgba(255,255,255,0.3) 0%, transparent 100%),
        radial-gradient(2px 2px at 10% 70%, rgba(0,242,255,0.3) 0%, transparent 100%),
        radial-gradient(1px 1px at 40% 50%, rgba(255,255,255,0.4) 0%, transparent 100%),
        radial-gradient(1px 1px at 65% 90%, rgba(255,255,255,0.3) 0%, transparent 100%),
        radial-gradient(1px 1px at 90% 30%, rgba(255,255,255,0.5) 0%, transparent 100%),
        radial-gradient(2px 2px at 30% 15%, rgba(112,0,255,0.25) 0%, transparent 100%);
    pointer-events: none;
    z-index: 0;
}

/* ===== CONTAINER ===== */
.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

/* ===== SECTIONS ===== */
section { padding: 7rem 0; position: relative; scroll-margin-top: 100px; }

.section-label {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.7rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--cyan);
    margin-bottom: 0.75rem;
    opacity: 0.8;
}

.section-title {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(1.5rem, 3vw, 2.4rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.section-divider {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--cyan), var(--violet));
    border-radius: 3px;
    margin-bottom: 3rem;
}

/* ===== HERO ===== */
#hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 0;
    overflow: hidden;
    position: relative;
    background-color: var(--space-bg);
    padding-top: 100px;
}

.hero-background {
    position: absolute;
    inset: 0;
    background-image: url('https://larutaatrascendencia.com.ar/wp-content/uploads/2026/04/lrt_header_sci_fi_1775434458265.jpg');
    background-size: cover;
    background-position: center;
    z-index: 0;
    transform: scale(1.1); /* Para el efecto parallax */
    will-change: transform;
}

#hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, 
        rgba(3, 3, 11, 0.8) 0%, 
        rgba(3, 3, 11, 0.4) 30%,
        rgba(3, 3, 11, 0.4) 70%,
        rgba(3, 3, 11, 1) 100%
    );
    z-index: 1;
}

#hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 80% 50%, rgba(112,0,255,0.15) 0%, transparent 60%),
        radial-gradient(ellipse at 20% 70%, rgba(0,242,255,0.12) 0%, transparent 55%);
    pointer-events: none;
}

.hero-content {
    max-width: 700px;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(0, 242, 255, 0.1);
    border: 1px solid rgba(0, 242, 255, 0.25);
    border-radius: 50px;
    padding: 0.4rem 1.2rem;
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--cyan);
    margin-bottom: 2rem;
    animation: fadeInDown 0.8s ease both;
}

.hero-badge::before {
    content: '★';
    font-size: 0.65rem;
}

.hero-title {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(2rem, 6vw, 4.8rem);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -1px;
    margin-bottom: 1.5rem;
    text-shadow: var(--glow-cyan);
    animation: fadeInDown 0.8s 0.1s ease both;
    overflow-wrap: normal;
    word-wrap: normal;
    hyphens: none;
    -webkit-hyphens: none;
}

.hero-title span {
    display: block;
    font-size: min(1em, 12vw); /* Fallback */
}

/* Partícula "a" centrada y estilizada */
.hero-title .hero-bridge {
    display: block;
    font-size: 0.4em;
    text-align: center;
    width: 100%;
    margin: 0.5rem 0;
    opacity: 0.8;
    letter-spacing: 12px;
    text-indent: 12px; /* Centrado visual real con letter-spacing */
    background: linear-gradient(90deg, transparent, var(--cyan), transparent);
    -webkit-background-clip: text;
    background-clip: text;
}

/* Redimensionamiento de Trascendencia */
.hero-title .hero-main {
    font-size: 0.65em;
    letter-spacing: -2px;
    background: linear-gradient(135deg, var(--cyan) 0%, var(--violet) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 540px;
    margin-bottom: 2.5rem;
    animation: fadeInUp 0.8s 0.2s ease both;
}

.hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 3rem;
    animation: fadeInUp 0.8s 0.3s ease both;
}

.hero-meta-item {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.hero-meta-label {
    font-size: 0.68rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-secondary);
}

.hero-meta-value {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-primary);
}

.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s 0.4s ease both;
}

.btn-primary {
    background: linear-gradient(135deg, var(--cyan), var(--magenta));
    border: none;
    border-radius: 50px;
    color: white;
    padding: 0.85rem 2.2rem;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(255, 0, 255, 0.3);
    display: inline-block;
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 30px rgba(255, 0, 255, 0.5);
    filter: brightness(1.2);
}

.btn-secondary {
    background: transparent;
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    color: var(--text-secondary);
    padding: 0.85rem 2.2rem;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    transition: border-color 0.2s, color 0.2s, transform 0.2s;
    display: inline-block;
}

.btn-secondary:hover {
    border-color: var(--cyan);
    color: var(--cyan);
    transform: translateY(-3px);
}

/* Scrolling line decoration */
.hero-scroll-hint {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-secondary);
    font-size: 0.7rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    animation: bounce 2s infinite;
}

.hero-scroll-hint::after {
    content: '';
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--cyan), transparent);
}

/* ===== ABOUT SECTION ===== */
#argumento {
    background: linear-gradient(180deg, transparent, rgba(8,8,42,0.3), transparent);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.4);
    transition: border-color 0.3s, transform 0.3s;
}

.glass-card:hover {
    border-color: rgba(0, 242, 255, 0.3);
    transform: translateY(-4px);
}

.about-text p {
    color: var(--text-secondary);
    margin-bottom: 1.2rem;
    font-size: 1rem;
}

.about-text p:last-child { margin-bottom: 0; }

.highlight-quote {
    border-left: 3px solid var(--cyan);
    padding: 1.2rem 1.5rem;
    background: rgba(0, 242, 255, 0.05);
    border-radius: 0 12px 12px 0;
    margin: 2rem 0;
    font-style: italic;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* ===== LORE CARDS ===== */
#lore { position: relative; }

.lore-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.lore-card {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 2rem;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
    cursor: default;
}

.lore-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--cyan), var(--violet));
    opacity: 0;
    transition: opacity 0.3s;
}

.lore-card:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 242, 255, 0.3);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 0 30px rgba(0, 242, 255, 0.07);
}

.lore-card:hover::before { opacity: 1; }

.lore-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
    display: block;
}

.lore-card h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--cyan);
    margin-bottom: 0.75rem;
}

.lore-card p {
    font-size: 0.92rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

/* ===== CIENCIA SECTION ===== */
#ciencia {
    background: radial-gradient(ellipse at center, rgba(112,0,255,0.07) 0%, transparent 70%);
}

.ciencia-content {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 4rem;
    align-items: center;
}

.alcubierre-visual {
    position: relative;
    width: 100%;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.alcubierre-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid;
    animation: rotate 20s linear infinite;
}

.ring-1 {
    width: 100%;
    height: 100%;
    border-color: rgba(0, 242, 255, 0.2);
    animation-duration: 25s;
}

.ring-2 {
    width: 75%;
    height: 75%;
    border-color: rgba(112, 0, 255, 0.3);
    animation-duration: 18s;
    animation-direction: reverse;
}

.ring-3 {
    width: 50%;
    height: 50%;
    border-color: rgba(0, 242, 255, 0.4);
    animation-duration: 12s;
}

.alcubierre-core {
    width: 80px;
    height: 80px;
    background: radial-gradient(circle, rgba(0,242,255,0.3), rgba(112,0,255,0.2), transparent);
    border-radius: 50%;
    box-shadow: 0 0 30px rgba(0, 242, 255, 0.4), 0 0 60px rgba(112, 0, 255, 0.2);
    animation: pulse-core 3s ease-in-out infinite;
    z-index: 2;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes pulse-core {
    0%, 100% { transform: scale(1); opacity: 0.8; }
    50% { transform: scale(1.15); opacity: 1; }
}

.ciencia-text p {
    color: var(--text-secondary);
    margin-bottom: 1.2rem;
    font-size: 0.97rem;
}

.tech-tag {
    display: inline-block;
    background: rgba(0, 242, 255, 0.08);
    border: 1px solid rgba(0, 242, 255, 0.2);
    border-radius: 6px;
    padding: 0.3rem 0.75rem;
    font-size: 0.75rem;
    letter-spacing: 1px;
    color: var(--cyan);
    margin: 0.2rem;
}

.tech-tags { margin-top: 1.5rem; }

/* ===== RECEPTION ===== */
#recepcion { background: linear-gradient(180deg, transparent, rgba(8,8,42,0.25), transparent); }

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 1rem;
}

.review-card {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 2rem;
    transition: transform 0.3s, border-color 0.3s;
}

.review-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 242, 255, 0.25);
}

.review-stars {
    color: var(--cyan);
    font-size: 0.8rem;
    letter-spacing: 3px;
    margin-bottom: 1rem;
}

.review-text {
    color: var(--text-secondary);
    font-style: italic;
    font-size: 0.92rem;
    line-height: 1.7;
    margin-bottom: 1.25rem;
}

.review-source {
    font-size: 0.78rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--cyan);
    opacity: 0.75;
}

/* ===== AWARDS ===== */
#premios {
    background: radial-gradient(ellipse at top center, rgba(112,0,255,0.08) 0%, transparent 60%);
}

.awards-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 700px;
    margin: 0 auto;
}

.award-item {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 14px;
    padding: 1.5rem 2rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    transition: transform 0.2s, border-color 0.2s;
}

.award-item:hover {
    transform: translateX(6px);
    border-color: rgba(0, 242, 255, 0.3);
}

.award-icon {
    font-size: 1.8rem;
    flex-shrink: 0;
}

.award-name {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.85rem;
    letter-spacing: 1px;
    color: var(--text-primary);
    margin-bottom: 0.3rem;
}

.award-detail {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

/* ===== INFOGRAPHIC SECTION ===== */
#infografia { padding: 5rem 0; }

.infographic-frame {
    width: 100%;
    height: 600px;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--glass-border);
    box-shadow: 0 0 50px rgba(0, 242, 255, 0.08), 0 20px 60px rgba(0,0,0,0.5);
    position: relative;
}

.infographic-frame iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* ===== PUBLICACIONES ===== */
#publicaciones {
    background: linear-gradient(180deg, transparent, rgba(8,8,42,0.3), transparent);
}

.pub-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.pub-card {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 2rem;
    transition: transform 0.3s, border-color 0.3s;
}

.pub-card:hover {
    transform: translateY(-5px);
    border-color: rgba(112, 0, 255, 0.4);
}

.pub-year {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--cyan), var(--violet));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.pub-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.pub-detail {
    font-size: 0.82rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(8px); }
}

/* Intersection Observer fade-in */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
    visibility: visible !important;
}

/* Fallback for no-js or initial load */
.no-js .reveal {
    opacity: 1 !important;
    transform: none !important;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .about-grid { grid-template-columns: 1fr; gap: 2rem; }
    .ciencia-content { grid-template-columns: 1fr; }
    .alcubierre-visual { display: none; }
    .hero-meta { gap: 1rem; }
    section { padding: 5rem 0; }
    .infographic-frame { height: 400px; }
    .author-bio-box { flex-direction: column; text-align: center; }
}

/* ===== SINGLE POST & SEO/GEO GUIDES ===== */

/* Contenedor del artículo */
.single-post-wrapper {
    max-width: 800px; /* Ancho óptimo para lectura */
    padding-top: 150px;
    padding-bottom: 50px;
}

.article-content {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.4);
}

.entry-header {
    margin-bottom: 2rem;
    text-align: center;
}

.entry-header .entry-title {
    margin-bottom: 1rem;
    color: var(--text-primary);
    text-shadow: var(--glow-cyan);
}

.entry-meta {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    color: var(--text-secondary);
    font-size: 0.85rem;
    letter-spacing: 1px;
}

.post-thumbnail {
    margin-bottom: 2rem;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--glass-border);
}

.post-thumbnail img {
    width: 100%;
    height: auto;
    display: block;
}

.entry-content {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #e2e8f0;
}

.entry-content p {
    margin-bottom: 1.5rem;
}

/* SEO Lógico: Jerarquía H2 / H3 */
.entry-content h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.8rem;
    color: var(--cyan);
    margin-top: 3rem;
    margin-bottom: 1rem;
    border-bottom: 1px solid rgba(0, 242, 255, 0.2);
    padding-bottom: 0.5rem;
}

.entry-content h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.4rem;
    color: var(--text-primary);
    margin-top: 2rem;
    margin-bottom: 0.8rem;
}

/* E-E-A-T: Estructura de Citas (Blockquotes) */
.entry-content blockquote {
    background: rgba(112, 0, 255, 0.05);
    border-left: 4px solid var(--violet);
    padding: 1.5rem 2rem;
    margin: 2rem 0;
    border-radius: 0 16px 16px 0;
    font-style: italic;
    color: #f1f5f9;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    position: relative;
}

.entry-content blockquote::before {
    content: '"';
    font-family: 'Orbitron', sans-serif;
    font-size: 4rem;
    color: rgba(112, 0, 255, 0.2);
    position: absolute;
    top: -10px;
    left: 10px;
    line-height: 1;
}

/* GEO: Resumen (Puntos Clave) */
ul.is-style-geo-summary {
    background: linear-gradient(135deg, rgba(0, 242, 255, 0.05) 0%, rgba(112, 0, 255, 0.05) 100%);
    border: 1px solid rgba(0, 242, 255, 0.3);
    border-radius: 12px;
    padding: 2rem 2rem 2rem 3.5rem;
    margin: 2rem 0;
    box-shadow: inset 0 0 20px rgba(0, 242, 255, 0.02);
    list-style: none; /* Quitamos viñeta estándar */
    position: relative;
}

ul.is-style-geo-summary::before {
    content: 'PUNTOS CLAVE';
    position: absolute;
    top: -12px;
    left: 20px;
    background: var(--space-bg);
    color: var(--cyan);
    font-size: 0.70rem;
    font-weight: 700;
    font-family: 'Orbitron', sans-serif;
    letter-spacing: 2px;
    padding: 0 10px;
    border: 1px solid rgba(0, 242, 255, 0.3);
    border-radius: 20px;
}

ul.is-style-geo-summary li {
    margin-bottom: 0.8rem;
    position: relative;
}

ul.is-style-geo-summary li::before {
    content: '→';
    color: var(--cyan);
    position: absolute;
    left: -1.5rem;
    font-weight: bold;
}

/* E-E-A-T: Biografía de Autor */
.entry-footer {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.author-bio-box {
    display: flex;
    align-items: center;
    gap: 2rem;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 16px;
    padding: 2rem;
    border: 1px dashed rgba(255, 255, 255, 0.1);
}

.author-avatar img {
    border-radius: 50%;
    border: 2px solid var(--violet);
    box-shadow: 0 0 15px rgba(112, 0, 255, 0.3);
}

.author-info .author-name {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--text-secondary);
}

.author-info .author-name span {
    color: var(--text-primary);
}

.author-description {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
}
