
  /* ══════════════════════════════════════════
     RESERVADO · Estilo Editorial
     Claro + Oscuro controlado por botón sol/luna
     ══════════════════════════════════════════ */

  :root {
    --red: #D8232A;
    --red-dark: #B01820;
    --red-light: #E94048;

    /* LIGHT (default) */
    --bg: #FAFAF7;
    --bg-card: #FFFFFF;
    --bg-secondary: #F2F0EA;
    --bg-tertiary: #E8E5DC;
    --text-primary: #0A0A0A;
    --text-secondary: #2E2E2E;
    --text-muted: #7A7771;
    --border: rgba(0,0,0,0.12);
    --border-strong: rgba(0,0,0,0.22);
    --nav-bg: #FAFAF7;
    --nav-border: rgba(0,0,0,0.1);
    --sponsor-bg: #F2F0EA;
    --footer-bg: #0A0A0A;
    --footer-text: #C8C4BC;
    --footer-dim: #6B6560;
    --shadow-card: 0 1px 2px rgba(0,0,0,0.04);

    --transition: 0.3s cubic-bezier(0.4,0,0.2,1);
  }

  [data-theme="dark"] {
    --bg: #0E0E0C;
    --bg-card: #161613;
    --bg-secondary: #1C1C18;
    --bg-tertiary: #242420;
    --text-primary: #F2EFE8;
    --text-secondary: #C8C4BB;
    --text-muted: #7A7771;
    --border: rgba(255,255,255,0.1);
    --border-strong: rgba(255,255,255,0.2);
    --nav-bg: #0E0E0C;
    --nav-border: rgba(255,255,255,0.08);
    --sponsor-bg: #161613;
    --footer-bg: #050504;
    --footer-text: #A8A49C;
    --footer-dim: #555149;
    --shadow-card: 0 1px 2px rgba(0,0,0,0.4);
  }

  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }

  body {
    font-family: 'Source Serif 4', Georgia, serif;
    background: var(--bg);
    color: var(--text-primary);
    transition: background var(--transition), color var(--transition);
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
  }

  a { color: inherit; text-decoration: none; }
  button { font-family: inherit; }

  /* ════════════ NAVBAR ════════════ */
  .navbar {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--nav-bg);
    border-bottom: 1px solid var(--nav-border);
    transition: background var(--transition), border-color var(--transition);
  }
  .navbar-compact .nav-inner {
    padding-top: 8px;
    padding-bottom: 8px;
  }
  .navbar-compact .logo {
    height: 36px;
  }
  .navbar-compact .subheader {
    display: none;
  }
  .navbar { transition: background var(--transition), border-color var(--transition); }
  .nav-inner { transition: padding 0.3s cubic-bezier(0.4,0,0.2,1); }
  .logo { transition: height 0.3s cubic-bezier(0.4,0,0.2,1), transform 0.2s, opacity var(--transition); }

  .nav-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 10px 32px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 24px;
  }

  .nav-left { display: flex; align-items: center; justify-self: start; }
  .nav-right { display: flex; align-items: center; gap: 12px; justify-self: end; }

  /* Hamburger */
  .hamburger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 42px;
    height: 42px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    border-radius: 3px;
    transition: background 0.2s;
  }
  .hamburger:hover { background: var(--bg-secondary); }
  .hamburger span {
    display: block;
    height: 2px;
    background: var(--text-primary);
    border-radius: 1px;
    transition: transform 0.3s, opacity 0.3s, background var(--transition);
  }
  .hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .hamburger.open span:nth-child(2) { opacity: 0; }
  .hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  /* Logo */
  .logo {
    display: block;
    height: 38px;
    cursor: pointer;
    transition: height 0.3s cubic-bezier(0.4,0,0.2,1), transform 0.2s, opacity var(--transition);
  }
  .logo img { height: 100%; width: auto; display: block; }
  .logo:hover { transform: scale(1.02); }
  [data-theme="dark"] .logo img { content: url('/assets/logo-dark.png'); }

  /* Icon buttons */
  .icon-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--border-strong);
    background: transparent;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    transition: background 0.2s, border-color 0.2s, color 0.2s;
    flex-shrink: 0;
  }
  .icon-btn:hover {
    background: var(--bg-secondary);
    color: var(--text-primary);
    border-color: var(--text-muted);
  }
  .icon-btn svg { width: 18px; height: 18px; }

  .icon-sun, .icon-moon { display: none; }
  [data-theme="light"] .icon-moon { display: block; }
  [data-theme="dark"] .icon-sun { display: block; }

  .btn-subscribe {
    font-family: 'DM Sans', sans-serif;
    font-size: 13px;
    font-weight: 500;
    padding: 10px 22px;
    background: var(--red);
    color: #FFFFFF;
    border: none;
    border-radius: 3px;
    cursor: pointer;
    transition: background 0.2s, transform 0.15s;
    letter-spacing: 0.2px;
    white-space: nowrap;
  }
  .btn-subscribe:hover { background: var(--red-dark); transform: translateY(-1px); }

  /* ════════════ SUB-HEADER ════════════ */
  .subheader {
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    transition: background var(--transition);
  }
  .subheader-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
  }

  /* Subheader unificado */
  .subheader-row {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    gap: 0;
    padding: 10px 0;
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: none;
  }
  .subheader-row::-webkit-scrollbar { display: none; }

  .subheader-divider {
    width: 1px;
    height: 14px;
    background: var(--border-strong);
    margin: 0 8px;
    flex-shrink: 0;
  }

  .feed-tab {
    font-family: 'DM Sans', sans-serif;
    font-size: 12px;
    font-weight: 500;
    color: var(--text-muted);
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px 14px;
    position: relative;
    transition: color 0.2s;
    letter-spacing: 0.2px;
    white-space: nowrap;
    border-right: 1px solid var(--border);
  }
  .feed-tab:hover { color: var(--text-primary); }
  .feed-tab.active {
    color: var(--red);
    font-weight: 600;
  }
  .feed-tab[disabled] {
    cursor: not-allowed;
    opacity: 0.4;
  }

  .nav-cat {
    font-family: 'DM Sans', sans-serif;
    font-size: 12px;
    font-weight: 500;
    color: var(--text-muted);
    padding: 4px 14px;
    white-space: nowrap;
    transition: color 0.2s;
    letter-spacing: 0.2px;
    border-right: 1px solid var(--border);
    text-transform: none;
  }
  .nav-cat:first-child { padding-left: 0; }
  .nav-cat:last-child { border-right: none; }
  .nav-cat:hover { color: var(--text-primary); }
  .nav-cat.active { color: var(--red); font-weight: 600; }

  /* ════════════ DRAWER ════════════ */
  .drawer-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.4);
    z-index: 98;
    opacity: 0;
    transition: opacity 0.3s;
  }
  .drawer-overlay.open { display: block; opacity: 1; }

  .drawer {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    width: 320px;
    max-width: 85vw;
    background: var(--nav-bg);
    z-index: 99;
    padding: 100px 24px 32px;
    display: flex;
    flex-direction: column;
    border-right: 1px solid var(--border);
    overflow-y: auto;
    transform: translateX(-100%);
    transition: transform 0.38s cubic-bezier(0.4,0,0.2,1), background var(--transition);
  }
  .drawer.open { transform: translateX(0); }

  .drawer-header {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-bottom: 14px;
    margin-bottom: 14px;
    border-bottom: 1px solid var(--border);
  }
  .drawer-logo { height: 32px; }
  .drawer-logo img { height: 100%; width: auto; display: block; }
  [data-theme="dark"] .drawer-logo img { content: url('/assets/logo-dark.png'); }
  .drawer-close {
    width: 38px;
    height: 38px;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-secondary);
    font-size: 26px;
    line-height: 1;
    transition: color 0.2s;
  }
  .drawer-close:hover { color: var(--red); }

  .drawer-section-label {
    font-family: 'DM Sans', sans-serif;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--text-muted);
    margin: 18px 0 10px;
  }
  .drawer-section-label:first-of-type { margin-top: 0; }

  .drawer-link {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 500;
    color: var(--text-primary);
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
    display: block;
    transition: color 0.2s, padding-left 0.2s;
  }
  .drawer-link:hover { color: var(--red); padding-left: 6px; }

  .drawer-subscribe {
    margin-top: 28px;
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    font-weight: 500;
    padding: 14px 20px;
    background: var(--red);
    color: #FFFFFF;
    border: none;
    cursor: pointer;
    width: 100%;
    transition: background 0.2s;
  }
  .drawer-subscribe:hover { background: var(--red-dark); }

  /* ════════════ HERO ════════════ */
  .hero {
    max-width: 1280px;
    margin: 0 auto;
    padding: 48px 32px 0;
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 44px;
    align-items: start;
  }

  .hero-main { cursor: pointer; }

  .hero-kicker {
    font-family: 'DM Sans', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 16px;
    display: inline-block;
  }

  .hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 54px;
    font-weight: 700;
    line-height: 1.05;
    color: var(--text-primary);
    margin-bottom: 20px;
    letter-spacing: -1px;
  }

  .hero-excerpt {
    font-family: 'Source Serif 4', serif;
    font-size: 19px;
    font-weight: 400;
    line-height: 1.5;
    color: var(--text-secondary);
    margin-bottom: 26px;
    max-width: 740px;
  }

  .hero-img-wrap {
    width: 100%;
    overflow: hidden;
    margin-bottom: 18px;
    background: var(--bg-secondary);
  }
  .hero-img {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
    display: block;
    transition: transform 0.8s cubic-bezier(0.4,0,0.2,1), filter var(--transition);
  }
  [data-theme="dark"] .hero-img { filter: brightness(0.88); }
  .hero-main:hover .hero-img { transform: scale(1.015); }

  .hero-meta {
    display: flex;
    align-items: center;
    gap: 14px;
    font-family: 'DM Sans', sans-serif;
    font-size: 12px;
    color: var(--text-muted);
    letter-spacing: 0.3px;
    padding-top: 16px;
    border-top: 1px solid var(--border);
  }
  .hero-meta strong { font-weight: 500; color: var(--text-secondary); }
  .hero-meta .sep { color: var(--border-strong); }

  .read-link {
    font-size: 12px;
    font-weight: 500;
    color: var(--red);
    letter-spacing: 0.4px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    margin-left: auto;
  }
  .read-link::after { content: '→'; transition: transform 0.2s; }
  .read-link:hover::after { transform: translateX(4px); }

  /* Hero sidebar */
  .hero-sidebar {
    display: flex;
    flex-direction: column;
    padding-top: 4px;
    border-left: 1px solid var(--border);
    padding-left: 28px;
  }

  .sidebar-article {
    padding: 14px 0;
    border-bottom: 1px solid var(--border);
    cursor: pointer;
    transition: padding-left 0.2s;
  }
  .sidebar-article:first-child { padding-top: 0; }
  .sidebar-article:last-child { border-bottom: none; }
  .sidebar-article:hover { padding-left: 4px; }

  .sidebar-kicker {
    font-family: 'DM Sans', sans-serif;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 8px;
  }

  .sidebar-title {
    font-family: 'Playfair Display', serif;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.25;
    color: var(--text-primary);
    margin-bottom: 6px;
    transition: color var(--transition);
    letter-spacing: -0.1px;
  }

  .sidebar-img {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
    display: block;
    max-height: 120px;
    margin-bottom: 10px;
    background: var(--bg-tertiary);
  }
  .sidebar-article:hover .sidebar-title { color: var(--red); }

  .sidebar-excerpt {
    font-family: 'Source Serif 4', serif;
    font-size: 13px;
    font-weight: 400;
    line-height: 1.55;
    color: var(--text-secondary);
    margin-bottom: 8px;
  }

  .sidebar-meta {
    font-family: 'DM Sans', sans-serif;
    font-size: 11px;
    color: var(--text-muted);
    letter-spacing: 0.3px;
    margin-top: 6px;
    padding-bottom: 4px;
  }

  .sidebar-date {
    font-family: 'DM Sans', sans-serif;
    font-size: 11px;
    color: var(--text-muted);
    letter-spacing: 0.3px;
    margin-top: 6px;
    padding-bottom: 4px;
  }

  /* ════════════ SECTION HEADER ════════════ */
  .section-header {
    max-width: 1280px;
    margin: 64px auto 0;
    padding: 0 32px 20px;
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    border-bottom: 2px solid var(--text-primary);
  }
  .section-title {
    font-family: 'Playfair Display', serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2.2px;
    text-transform: uppercase;
    color: var(--text-primary);
  }
  .section-link {
    font-family: 'DM Sans', sans-serif;
    font-size: 12px;
    font-weight: 500;
    color: var(--red);
    letter-spacing: 0.3px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
  }
  .section-link::after { content: '→'; transition: transform 0.2s; }
  .section-link:hover::after { transform: translateX(3px); }

  /* ════════════ NEWS GRID ════════════ */
  .news-grid {
    max-width: 1280px;
    margin: 0 auto;
    padding: 32px 32px 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
  }
  .news-card { cursor: pointer; transition: transform 0.25s; }
  .news-card:hover { transform: translateY(-2px); }
  .news-card-img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    display: block;
    background: var(--bg-tertiary);
    margin-bottom: 14px;
    transition: opacity 0.3s, transform 0.4s, filter var(--transition);
  }
  [data-theme="dark"] .news-card-img { filter: brightness(0.88); }
  .news-card:hover .news-card-img { opacity: 0.92; transform: scale(1.015); }
  .news-card-tag {
    font-family: 'DM Sans', sans-serif;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1.3px;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 8px;
  }
  .news-card-title {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 600;
    line-height: 1.2;
    color: var(--text-primary);
    margin-bottom: 10px;
    transition: color 0.2s;
    letter-spacing: -0.3px;
  }
  .news-card:hover .news-card-title { color: var(--red); }
  .news-card-excerpt {
    font-family: 'Source Serif 4', serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.55;
    color: var(--text-secondary);
    margin-bottom: 12px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .news-card-footer {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'DM Sans', sans-serif;
    font-size: 11px;
    color: var(--text-muted);
    letter-spacing: 0.3px;
  }
  .news-card-footer .dot {
    width: 2px; height: 2px;
    border-radius: 50%;
    background: var(--text-muted);
  }

  /* ════════════ NEWSLETTER ════════════ */
  .newsletter-section {
    max-width: 1280px;
    margin: 72px auto 0;
    padding: 0 32px;
  }
  .newsletter-inner {
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    padding: 52px 60px;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 56px;
    align-items: center;
    position: relative;
    overflow: hidden;
    transition: background var(--transition);
  }
  .newsletter-inner::before {
    content: '';
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 4px;
    background: var(--red);
  }
  .newsletter-label {
    font-family: 'DM Sans', sans-serif;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 14px;
  }
  .newsletter-title {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    font-weight: 700;
    line-height: 1.15;
    color: var(--text-primary);
    margin-bottom: 12px;
    letter-spacing: -0.5px;
  }
  .newsletter-subtitle {
    font-family: 'Source Serif 4', serif;
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.55;
  }
  .newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    min-width: 320px;
  }
  .newsletter-input {
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    padding: 14px 16px;
    border: 1px solid var(--border-strong);
    background: var(--bg-card);
    color: var(--text-primary);
    outline: none;
    transition: border-color 0.2s;
  }
  .newsletter-input::placeholder { color: var(--text-muted); }
  .newsletter-input:focus { border-color: var(--red); }
  .newsletter-btn {
    font-family: 'DM Sans', sans-serif;
    font-size: 13px;
    font-weight: 500;
    padding: 14px 20px;
    background: var(--red);
    color: #FFFFFF;
    border: none;
    cursor: pointer;
    letter-spacing: 0.3px;
    transition: background 0.2s, transform 0.15s;
  }
  .newsletter-btn:hover { background: var(--red-dark); transform: translateY(-1px); }
  .newsletter-legal {
    font-family: 'DM Sans', sans-serif;
    font-size: 11px;
    color: var(--text-muted);
    line-height: 1.5;
  }

  /* ════════════ SPONSOR ════════════ */
  .sponsor-section {
    max-width: 1280px;
    margin: 64px auto 0;
    padding: 0 32px;
  }
  .sponsor-label {
    font-family: 'DM Sans', sans-serif;
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 14px;
    text-align: center;
  }
  .sponsor-inner {
    background: var(--sponsor-bg);
    border: 1px solid var(--border);
    padding: 28px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    transition: background var(--transition);
  }
  .sponsor-title {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 4px;
    font-style: italic;
  }
  .sponsor-desc {
    font-family: 'Source Serif 4', serif;
    font-size: 13px;
    color: var(--text-secondary);
  }
  .sponsor-cta {
    font-family: 'DM Sans', sans-serif;
    font-size: 12px;
    font-weight: 500;
    color: var(--red);
    border: 1px solid var(--red);
    padding: 10px 20px;
    white-space: nowrap;
    transition: background 0.2s, color 0.2s;
    flex-shrink: 0;
  }
  .sponsor-cta:hover { background: var(--red); color: #FFFFFF; }

  /* ════════════ EDITORIAL QUOTE ════════════ */
  .editorial-section {
    max-width: 1280px;
    margin: 64px auto 0;
    padding: 0 32px;
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 56px;
    align-items: center;
  }
  .editorial-label {
    font-family: 'DM Sans', sans-serif;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 20px;
  }
  .editorial-quote {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 400;
    font-style: italic;
    line-height: 1.4;
    color: var(--text-primary);
    margin-bottom: 28px;
    padding-left: 24px;
    border-left: 3px solid var(--red);
    letter-spacing: -0.3px;
  }
  .editorial-author {
    display: flex;
    align-items: center;
    gap: 14px;
  }
  .author-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--red);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'DM Sans', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: #FFFFFF;
    flex-shrink: 0;
  }
  .author-name {
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-primary);
  }
  .author-role {
    font-family: 'DM Sans', sans-serif;
    font-size: 12px;
    color: var(--text-muted);
    letter-spacing: 0.3px;
  }
  .editorial-img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    background: var(--bg-tertiary);
    transition: filter var(--transition);
  }
  [data-theme="dark"] .editorial-img { filter: brightness(0.88); }

  /* ════════════ MORE GRID ════════════ */
  .more-grid {
    max-width: 1280px;
    margin: 0 auto;
    padding: 32px 32px 0;
    display: flex;
    flex-direction: column;
    gap: 0;
  }
  .more-card {
    cursor: pointer;
    display: flex;
    gap: 18px;
    align-items: flex-start;
    padding: 18px 0;
    border-bottom: 1px solid var(--border);
    transition: opacity 0.18s;
  }
  .more-card:hover { opacity: 0.82; }
  .more-card-img-wrap {
    flex-shrink: 0;
    width: 120px;
    height: 80px;
    overflow: hidden;
    background: var(--bg-tertiary);
  }
  .more-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s cubic-bezier(0.4,0,0.2,1);
  }
  .more-card:hover .more-card-img { transform: scale(1.04); }
  .more-card-body {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 5px;
    justify-content: center;
  }
  .more-card-tag {
    font-family: 'DM Sans', sans-serif;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: var(--red);
  }
  .more-card-title {
    font-family: 'Playfair Display', serif;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.3;
    color: var(--text-primary);
    transition: color 0.2s;
    letter-spacing: -0.2px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .more-card:hover .more-card-title { color: var(--red); }
  .more-card-date {
    font-family: 'DM Sans', sans-serif;
    font-size: 11px;
    color: var(--text-muted);
  }

  .btn-load-more {
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    font-weight: 600;
    padding: 12px 32px;
    border: 2px solid var(--text-primary);
    background: transparent;
    color: var(--text-primary);
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
    letter-spacing: 0.5px;
  }
  .btn-load-more:hover {
    background: var(--text-primary);
    color: var(--bg);
  }

  /* ════════════ FOOTER ════════════ */
  .footer {
    margin-top: 88px;
    background: var(--bg-secondary);
    border-top: 1px solid var(--border);
    padding: 60px 32px 40px;
  }
  .footer-inner { max-width: 1280px; margin: 0 auto; }
  .footer-top {
    display: grid;
    grid-template-columns: 1.2fr repeat(4, auto);
    gap: 56px;
    padding-bottom: 44px;
    border-bottom: 1px solid var(--border);
  }
  .footer-brand { max-width: 260px; }
  .footer-logo {
    display: block;
    height: 38px;
    margin-bottom: 16px;
  }
  .footer-logo .logo-img { height: 38px; width: auto; display: block; }
  [data-theme="dark"] .footer-logo .logo-img { content: url('/assets/logo-dark.png'); }
  [data-theme="dark"] .footer-logo img { content: url('/assets/logo-dark.png'); }
  .footer-logo img { height: 100%; width: auto; display: block; }
  .footer-tagline {
    font-family: 'Source Serif 4', serif;
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.6;
  }
  .footer-col-title {
    font-family: 'DM Sans', sans-serif;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1.3px;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 18px;
  }
  .footer-links { list-style: none; display: flex; flex-direction: column; gap: 11px; }
  .footer-links a {
    font-family: 'DM Sans', sans-serif;
    font-size: 13px;
    color: var(--text-secondary);
    transition: color 0.2s;
  }
  .footer-links a:hover { color: var(--red); }
  .footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 32px;
    font-family: 'DM Sans', sans-serif;
    font-size: 12px;
    color: var(--text-muted);
  }
  .footer-social { display: flex; align-items: center; gap: 20px; }
  .footer-social a {
    color: var(--text-muted);
    font-size: 12px;
    letter-spacing: 0.3px;
    transition: color 0.2s;
  }
  .footer-social a:hover { color: var(--red); }

  /* ════════════ ANIMATIONS ════════════ */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(16px); }
    to { opacity: 1; transform: translateY(0); }
  }
  .hero-main { animation: fadeUp 0.6s ease both; }
  .hero-sidebar { animation: fadeUp 0.6s 0.1s ease both; }
  .reveal { opacity: 0; transform: translateY(14px); transition: opacity 0.7s cubic-bezier(0.25,0.46,0.45,0.94), transform 0.7s cubic-bezier(0.25,0.46,0.45,0.94); }
  .reveal.visible { opacity: 1; transform: translateY(0); }

  /* ════════════ TABLET ≤1024px ════════════ */
  @media (max-width: 1024px) {
    .nav-inner { padding: 14px 24px; }
    .hero {
      grid-template-columns: 1fr;
      gap: 0;
      padding: 36px 24px 0;
    }
    .hero-title { font-size: 42px; }
    .hero-sidebar {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
      padding: 32px 0 0;
      border-left: none;
      padding-left: 0;
      border-top: 1px solid var(--border);
      margin-top: 36px;
    }
    .sidebar-article {
      border-bottom: none;
      border-right: 1px solid var(--border);
      padding: 24px 20px 0 0;
    }
    .sidebar-article:last-child { border-right: none; padding-right: 0; }
    .sidebar-article:first-child { padding-top: 24px; }
    .news-grid { grid-template-columns: repeat(2, 1fr); }
    .more-grid { grid-template-columns: repeat(2, 1fr); }
    .section-header { margin-top: 56px; padding: 0 24px 18px; }
    .news-grid, .more-grid { padding: 28px 24px 0; }
    .newsletter-section, .sponsor-section, .editorial-section { padding: 0 24px; }
    .footer-top {
      grid-template-columns: 1fr 1fr;
      gap: 36px;
    }
    .footer-brand { grid-column: 1 / -1; }
    .editorial-section {
      grid-template-columns: 1fr;
      gap: 32px;
    }
    .editorial-img { max-height: 340px; object-fit: cover; }
    .newsletter-inner {
      grid-template-columns: 1fr;
      gap: 28px;
      padding: 40px;
    }
    .newsletter-title { font-size: 28px; }
  }

  /* ════════════ MOBILE ≤640px ════════════ */
  @media (max-width: 640px) {
    .nav-inner { padding: 12px 18px; gap: 12px; }
    .logo { height: 38px; }
    .btn-subscribe { display: none; }
    .nav-right { gap: 6px; }
    .icon-btn { width: 38px; height: 38px; }

    .subheader-inner { padding: 0 18px; }
    .subheader-row { padding: 8px 0; }
    .feed-tab { font-size: 11px; padding: 4px 10px; }
    .feed-tab { font-size: 12px; }
    .nav-cat { font-size: 11px; padding: 4px 12px; }

    /* Hero */
    .hero {
      padding: 28px 18px 0;
      gap: 0;
      grid-template-columns: 1fr;
    }
    .hero-title { font-size: 30px; letter-spacing: -0.4px; }
    .hero-excerpt { font-size: 16px; }
    .hero-meta { flex-wrap: wrap; gap: 10px; }
    .hero-meta .read-link { margin-left: 0; }

    /* Sidebar → stacked */
    .hero-sidebar {
      display: flex;
      flex-direction: column;
      padding: 32px 0 0;
      gap: 0;
      border-left: none;
      padding-left: 0;
      border-top: 1px solid var(--border);
      margin-top: 32px;
    }
    .sidebar-article {
      border-right: none;
      border-bottom: 1px solid var(--border);
      padding: 20px 0;
    }
    .sidebar-article:first-child { padding-top: 20px; }
    .sidebar-article:last-child { border-bottom: none; }
    .sidebar-excerpt { display: none; }
    .sidebar-title { font-size: 17px; }

    /* Sections */
    .section-header { margin-top: 48px; padding: 0 18px 16px; }
    .news-grid {
      grid-template-columns: 1fr;
      padding: 24px 18px 0;
      gap: 36px;
    }
    .news-card-title { font-size: 20px; }
    .more-grid {
      padding: 24px 18px 0;
    }
    .more-card { padding: 16px 0; }
    .more-card-img-wrap { width: 96px; height: 64px; }
    .more-card-title { font-size: 14px; -webkit-line-clamp: 3; line-clamp: 3; }

    /* Newsletter */
    .newsletter-section { padding: 0 18px; margin-top: 48px; }
    .newsletter-inner { grid-template-columns: 1fr; gap: 24px; padding: 30px 24px; }
    .newsletter-title { font-size: 24px; }
    .newsletter-form { min-width: unset; }

    /* Sponsor */
    .sponsor-section { padding: 0 18px; margin-top: 48px; }
    .sponsor-inner { flex-direction: column; gap: 18px; padding: 24px; text-align: center; }
    .sponsor-cta { width: 100%; text-align: center; }

    /* Editorial */
    .editorial-section {
      grid-template-columns: 1fr;
      padding: 0 18px;
      margin-top: 48px;
      gap: 24px;
    }
    .editorial-img { display: none; }
    .editorial-quote { font-size: 21px; padding-left: 18px; }

    /* Footer */
    .footer { padding: 44px 18px 28px; }
    .footer-top { grid-template-columns: 1fr 1fr; gap: 28px; }
    .footer-brand { grid-column: 1 / -1; }
    .footer-bottom { flex-direction: column; gap: 14px; text-align: center; }
    .footer-social { justify-content: center; flex-wrap: wrap; }

    /* Article detail */
    .art-header { padding: 28px 18px 0; }
    .art-title { font-size: 28px; }
    .art-hero-img { padding: 0 18px; aspect-ratio: 16/9; }
    .art-body { font-size: 16px; padding: 0 18px 60px; }
    .art-body h2 { font-size: 20px; }
    .art-related { padding: 0 18px 60px; padding-top: 36px; }
    .art-related-grid { grid-template-columns: 1fr; gap: 28px; }
  }

  /* ════════════ ARTICLE DETAIL ════════════ */
  .art-back {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: 'DM Sans', sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-muted);
    cursor: pointer;
    padding: 0;
    background: none;
    border: none;
    transition: color 0.2s;
    letter-spacing: 0.2px;
  }
  .art-back:hover { color: var(--red); }
  .art-back::before { content: '\2190  '; }

  .art-header {
    max-width: 780px;
    margin: 0 auto;
    padding: 48px 32px 0;
  }
  .art-breadcrumb {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 32px;
  }
  .art-tag-label {
    font-family: 'DM Sans', sans-serif;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1.3px;
    text-transform: uppercase;
    color: var(--red);
    background: rgba(216,35,42,0.1);
    padding: 5px 12px;
    display: inline-block;
    margin-bottom: 18px;
  }
  .art-title {
    font-family: 'Playfair Display', serif;
    font-size: 44px;
    font-weight: 700;
    line-height: 1.12;
    color: var(--text-primary);
    margin-bottom: 24px;
    letter-spacing: -0.8px;
  }
  .art-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 22px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    margin-bottom: 40px;
  }
  .art-author-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--red);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'DM Sans', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: #FFFFFF;
    flex-shrink: 0;
  }
  .art-author-name {
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-primary);
  }
  .art-author-role {
    font-family: 'DM Sans', sans-serif;
    font-size: 12px;
    color: var(--text-muted);
  }
  .art-date-read {
    margin-left: auto;
    text-align: right;
    font-family: 'DM Sans', sans-serif;
    font-size: 12px;
    color: var(--text-muted);
    line-height: 1.7;
  }
  .art-hero-img {
    width: 100%;
    max-width: 1040px;
    margin: 0 auto 52px;
    display: block;
    aspect-ratio: 21/9;
    object-fit: cover;
    padding: 0 32px;
    box-sizing: border-box;
  }
  [data-theme="dark"] .art-hero-img { filter: brightness(0.88); }
  .art-body {
    max-width: 780px;
    margin: 0 auto;
    padding: 0 32px 80px;
    font-family: 'Source Serif 4', serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.8;
    color: var(--text-secondary);
  }
  .art-body img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 1.5rem auto;
    border-radius: 4px;
  }
  .art-body p { margin-bottom: 24px; }
  .art-body h2 {
    font-family: 'Playfair Display', serif;
    font-size: 26px;
    font-weight: 700;
    color: var(--text-primary);
    margin: 44px 0 18px;
    line-height: 1.25;
    letter-spacing: -0.3px;
  }
  .art-related {
    max-width: 1280px;
    margin: 0 auto;
    padding: 52px 32px 80px;
    border-top: 1px solid var(--border);
  }
  .art-related-title {
    font-family: 'Playfair Display', serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2.2px;
    text-transform: uppercase;
    color: var(--text-primary);
    margin-bottom: 32px;
  }
  .art-related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 36px;
  }

  /* ════════════ FOOTER LOGO ════════════ */
  .footer-logo .logo-img {
    height: 38px;
    width: auto;
    display: block;
  }

  /* ════════════ DRAWER NEWSLETTER ════════════ */
  .drawer-newsletter {
    margin-top: auto;
    padding: 20px;
    background: var(--bg-secondary);
    border: 1px solid var(--border);
  }
  .drawer-nl-label {
    font-family: 'DM Sans', sans-serif;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 8px;
  }
  .drawer-nl-text {
    font-family: 'Source Serif 4', serif;
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.5;
    margin-bottom: 14px;
  }
  .drawer-nl-input {
    font-family: 'DM Sans', sans-serif;
    font-size: 13px;
    padding: 10px 12px;
    border: 1px solid var(--border-strong);
    background: var(--bg-card);
    color: var(--text-primary);
    width: 100%;
    outline: none;
    margin-bottom: 8px;
    transition: border-color 0.2s;
  }
  .drawer-nl-input::placeholder { color: var(--text-muted); }
  .drawer-nl-input:focus { border-color: var(--red); }
  .drawer-nl-btn {
    font-family: 'DM Sans', sans-serif;
    font-size: 13px;
    font-weight: 500;
    padding: 11px 16px;
    background: var(--red);
    color: #FFFFFF;
    border: none;
    cursor: pointer;
    width: 100%;
    transition: background 0.2s;
  }
  .drawer-nl-btn:hover { background: var(--red-dark); }
  .drawer-nl-legal {
    font-family: 'DM Sans', sans-serif;
    font-size: 11px;
    color: var(--text-muted);
    margin-top: 8px;
    min-height: 16px;
  }

  /* ════════════ DRAWER SOCIAL ════════════ */
  .drawer-social {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 28px;
    padding-top: 20px;
    border-top: 1px solid var(--border);
  }
  .drawer-social-link {
    color: var(--text-muted);
    transition: color 0.2s;
    display: flex;
    align-items: center;
  }
  .drawer-social-link:hover { color: var(--red); }

  /* ════════════ DRAWER CATS TOGGLE ════════════ */
  .drawer-section-toggle {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 500;
    color: var(--text-primary);
    background: none;
    border: none;
    border-bottom: 1px solid var(--border);
    cursor: pointer;
    padding: 12px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    transition: color 0.2s, padding-left 0.2s;
    text-align: left;
  }
  .drawer-section-toggle:hover { color: var(--red); padding-left: 6px; }
  .drawer-toggle-icon {
    transition: transform 0.25s cubic-bezier(0.4,0,0.2,1);
    flex-shrink: 0;
    opacity: 0.5;
  }
  .drawer-section-toggle[aria-expanded="true"] .drawer-toggle-icon {
    transform: rotate(180deg);
  }
  .drawer-section-toggle[aria-expanded="true"] { color: var(--red); }
  .drawer-cats-list {
    display: none;
    flex-direction: column;
  }
  .drawer-cats-list.open { display: flex; }
  .drawer-sublink {
    padding-left: 12px;
    font-size: 18px;
  }

/* ══════════════════════════════════════
   SEGUIR LEYENDO + TAMBIÉN TE PUEDE INTERESAR
   ══════════════════════════════════════ */

.art-related,
.art-also {
  max-width: 1280px;
  margin: 0 auto;
  padding: 52px 32px 80px;
  border-top: 1px solid var(--border);
}

.art-related-title {
  font-family: 'Playfair Display', serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2.2px;
  text-transform: uppercase;
  color: var(--text-primary);
  margin-bottom: 32px;
}

.art-related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
}

.art-related-grid .news-card-img {
  height: 200px;
  object-fit: cover;
  width: 100%;
}

@media (max-width: 768px) {
  .art-related,
  .art-also {
    padding: 36px 18px 60px;
  }
  .art-related-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}
