/*
Theme Name: latribuna
Theme URI: https://latribunaonline.com.ar
Author: latribuna
Description: Theme oficial de La Tribuna Online — El deporte argentino, sin filtros.
Version: 1.0.0
License: GNU General Public License v2
Text Domain: latribuna
*/

/* ============================================
   BRAND TOKENS
   ============================================ */
:root {
  --lt-red:           #E63000;
  --lt-red-dark:      #C22800;
  --lt-red-light:     #FDF0EB;
  --lt-night:         #0D1B2A;
  --lt-night-mid:     #1E2D3D;
  --lt-night-light:   #EEF2F7;
  --lt-white:         #F4F4F2;
  --lt-pure-white:    #FFFFFF;
  --lt-black:         #0F0F0F;
  --lt-grey:          #F4F4F2;
  --lt-grey-mid:      #E4E4E2;
  --lt-text-pri:      #0F0F0F;
  --lt-text-sec:      #5A6A7A;
  --lt-text-ter:      #8A9AAA;
  --lt-border:        #E2E6EA;
  --lt-urgent:        #FF3B30;

  /* Colores de sección */
  --lt-cat-futbol:    #E63000;
  --lt-cat-basquet:   #F5A623;
  --lt-cat-tenis:     #27AE60;
  --lt-cat-seleccion: #2980B9;
  --lt-cat-rugby:     #8E44AD;
  --lt-cat-transfers: #7F8C8D;

  --font-main:        'Barlow', sans-serif;
  --font-display:     'Barlow Condensed', sans-serif;
  --radius-sm:        6px;
  --radius-md:        10px;
  --radius-lg:        16px;
  --shadow-sm:        0 1px 3px rgba(0,0,0,0.06);
  --shadow-md:        0 4px 16px rgba(0,0,0,0.08);
  --shadow-lg:        0 8px 32px rgba(0,0,0,0.12);
  --transition:       0.2s ease;
  --transition-image: 0.65s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ============================================
   RESET + BASE
   ============================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { font-size: 16px; scroll-behavior: smooth; }

body {
  font-family: var(--font-main);
  color: var(--lt-text-pri);
  background: var(--lt-grey);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.6;
}

a { color: inherit; text-decoration: none; transition: color var(--transition); }
img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; }

/* ============================================
   LAYOUT
   ============================================ */
.lt-container {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 24px;
}

.lt-grid-main {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 32px;
  align-items: start;
}

@media (max-width: 900px) {
  .lt-grid-main { grid-template-columns: 1fr; }
  .lt-sidebar { display: none; }
}

/* ============================================
   HEADER
   ============================================ */
.lt-header {
  background: var(--lt-night);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 3px solid var(--lt-red);
}

.lt-header__inner {
  display: flex;
  align-items: center;
  gap: 40px;
  padding: 0 24px;
  max-width: 1200px;
  margin: 0 auto;
  height: 60px;
}

/* Logo */
.lt-logo {
  display: flex;
  align-items: center;
  gap: 0;
  flex-shrink: 0;
}

.lt-logo__text {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 900;
  letter-spacing: -1px;
  line-height: 1;
  color: #fff;
  text-transform: uppercase;
}

.lt-logo__text .tribuna { color: var(--lt-red); }

.lt-logo__sub {
  display: block;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  line-height: 1;
  margin-top: 2px;
}

/* Nav */
.lt-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
}

.lt-nav a {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  color: rgba(255,255,255,0.65);
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: all var(--transition);
}

.lt-nav a:hover,
.lt-nav a.current { color: #fff; background: rgba(255,255,255,0.1); }

.lt-nav a.current { color: var(--lt-red); background: rgba(230,48,0,0.12); }

/* Live badge */
.lt-live {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  color: var(--lt-urgent);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-left: auto;
  flex-shrink: 0;
}

.lt-live__dot {
  width: 7px;
  height: 7px;
  background: var(--lt-urgent);
  border-radius: 50%;
  animation: pulse-live 1.4s ease-in-out infinite;
}

@keyframes pulse-live {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.4; transform: scale(0.75); }
}

/* Hamburger mobile */
.lt-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  margin-left: auto;
}

.lt-menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all var(--transition);
}

@media (max-width: 768px) {
  .lt-nav { display: none; position: fixed; top: 63px; left: 0; right: 0; background: var(--lt-night); padding: 16px 24px; flex-direction: column; align-items: flex-start; border-bottom: 3px solid var(--lt-red); }
  .lt-nav.open { display: flex; }
  .lt-nav a { width: 100%; padding: 10px 12px; }
  .lt-menu-toggle { display: flex; }
  .lt-live { display: none; }
}

/* ============================================
   BREAKING BAR
   ============================================ */
.lt-breaking {
  background: var(--lt-urgent);
  overflow: hidden;
}

.lt-breaking__inner {
  display: flex;
  align-items: center;
  height: 36px;
}

.lt-breaking__label {
  flex-shrink: 0;
  background: rgba(0,0,0,0.25);
  color: #fff;
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0 16px;
  height: 100%;
  display: flex;
  align-items: center;
}

.lt-breaking__ticker {
  flex: 1;
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent, black 40px, black calc(100% - 40px), transparent);
}

.lt-breaking__track {
  display: flex;
  gap: 64px;
  animation: ticker 35s linear infinite;
  white-space: nowrap;
}

.lt-breaking__track span {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.92);
}

.lt-breaking__track span::before {
  content: '■';
  margin-right: 10px;
  color: rgba(255,255,255,0.4);
  font-size: 8px;
}

@keyframes ticker {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============================================
   TOPBAR (fecha + buscador)
   ============================================ */
.lt-topbar {
  background: var(--lt-pure-white);
  border-bottom: 1px solid var(--lt-border);
  padding: 8px 0;
}

.lt-topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.lt-topbar__date {
  font-size: 11px;
  color: var(--lt-text-ter);
  font-weight: 500;
  letter-spacing: 0.02em;
}

.lt-topbar__search {
  display: flex;
  align-items: center;
  gap: 0;
  background: var(--lt-grey);
  border: 1px solid var(--lt-border);
  border-radius: 100px;
  overflow: hidden;
  transition: border-color var(--transition);
}

.lt-topbar__search:focus-within { border-color: var(--lt-red); }

.lt-topbar__search input {
  border: none;
  background: transparent;
  padding: 6px 14px;
  font-size: 12px;
  color: var(--lt-text-pri);
  width: 200px;
  outline: none;
}

.lt-topbar__search button {
  padding: 6px 12px;
  color: var(--lt-text-ter);
  font-size: 14px;
  transition: color var(--transition);
}

.lt-topbar__search button:hover { color: var(--lt-red); }

@media (max-width: 768px) {
  .lt-topbar__inner {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    padding: 0 16px;
  }

  .lt-topbar__date {
    font-size: 10px;
    text-align: center;
    line-height: 1.3;
  }

  .lt-topbar__search {
    width: 100%;
    min-width: 0;
  }

  .lt-topbar__search input {
    flex: 1;
    min-width: 0;
    width: auto;
  }
}

@media (max-width: 480px) {
  .lt-topbar {
    padding: 6px 0;
  }

  .lt-topbar__inner {
    padding: 0 12px;
    gap: 8px;
  }

  .lt-topbar__date {
    font-size: 9px;
  }

  .lt-topbar__search input {
    padding: 8px 12px;
    font-size: 16px;
  }

  .lt-topbar__search button {
    padding: 8px 12px;
    flex-shrink: 0;
  }
}

/* ============================================
   HERO — nota principal
   ============================================ */
.lt-hero-section {
  margin-top: 24px;
}

.lt-hero {
  background: var(--lt-pure-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 400px;
  margin-bottom: 3px;
}

.lt-hero__image {
  position: relative;
  overflow: hidden;
  background: var(--lt-night-light);
}

.lt-hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-image);
  transform-origin: center center;
}

.lt-hero:hover .lt-hero__image img { transform: scale(1.03); }

.lt-hero__body {
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--lt-night);
  position: relative;
  overflow: hidden;
}

.lt-hero__body::before {
  content: '■';
  position: absolute;
  right: -20px;
  bottom: -40px;
  font-size: 280px;
  font-weight: 800;
  color: rgba(230,48,0,0.04);
  line-height: 1;
  font-family: var(--font-display);
  pointer-events: none;
}

.lt-hero__cat {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-main);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--lt-red);
  margin-bottom: 16px;
}

.lt-hero__cat::before {
  content: '■';
  font-size: 7px;
}

.lt-hero__cat.urgent { color: var(--lt-urgent); }

.lt-hero__title {
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  letter-spacing: -0.5px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.lt-hero__excerpt {
  font-size: 14px;
  font-weight: 300;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
  margin-bottom: 24px;
}

.lt-hero__meta {
  font-size: 11px;
  color: rgba(255,255,255,0.3);
  font-weight: 500;
}

.lt-hero__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  color: var(--lt-red);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: gap var(--transition);
}

.lt-hero__link:hover { gap: 10px; }

@media (max-width: 768px) {
  .lt-hero { grid-template-columns: 1fr; min-height: auto; }
  .lt-hero__body { padding: 28px 24px; }
  .lt-hero__title { font-size: 24px; }
}

/* ============================================
   BANNERS DESTACADOS — home
   ============================================ */
.lt-banners {
  margin-top: 24px;
}

.lt-banners__grid {
  display: grid;
  gap: 16px;
}

.lt-banners__grid--1 { grid-template-columns: 1fr; }
.lt-banners__grid--2 { grid-template-columns: repeat(2, 1fr); }
.lt-banners__grid--3 { grid-template-columns: repeat(3, 1fr); }
.lt-banners__grid--4 { grid-template-columns: repeat(2, 1fr); }

.lt-banners__item {
  display: block;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  background: var(--lt-pure-white);
  transition: transform var(--transition), box-shadow var(--transition);
}

.lt-banners__item:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.lt-banners__img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 1200 / 280;
  object-fit: cover;
  transition: transform var(--transition-image);
  transform-origin: center center;
}

.lt-banners__item:hover .lt-banners__img {
  transform: scale(1.03);
}

@media (max-width: 768px) {
  .lt-banners__grid--2,
  .lt-banners__grid--3 {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   SECTION HEADER (categorías)
   ============================================ */
.lt-section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--lt-border);
}

.lt-section-header__title {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--lt-text-pri);
  display: flex;
  align-items: center;
  gap: 8px;
}

.lt-section-header__title::before {
  content: '';
  display: block;
  width: 3px;
  height: 16px;
  background: var(--lt-red);
  border-radius: 2px;
}

.lt-section-header__link {
  font-size: 11px;
  font-weight: 600;
  color: var(--lt-red-dark);
  letter-spacing: 0.04em;
  transition: color var(--transition);
}

.lt-section-header__link:hover { color: var(--lt-night); }

/* ============================================
   CARD — nota estándar
   ============================================ */
.lt-card {
  background: var(--lt-pure-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition:
    transform var(--transition-image),
    box-shadow var(--transition-image),
    border-color var(--transition);
  display: flex;
  flex-direction: column;
}

.lt-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.lt-card__thumb {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--lt-grey);
}

.lt-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-image);
  transform-origin: center center;
  backface-visibility: hidden;
}

.lt-card:hover .lt-card__thumb img,
.lt-card__thumb:hover img {
  transform: scale(1.03);
}

.lt-card__thumb-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--lt-night-light), var(--lt-red-light));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 900;
  color: var(--lt-red);
  letter-spacing: -1px;
  text-transform: uppercase;
}

.lt-card__body {
  padding: 18px 20px 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.lt-card__cat {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--lt-red-dark);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.lt-card__cat-link,
.lt-card__cat-label {
  color: inherit;
  transition: opacity var(--transition), color var(--transition);
}

.lt-card__cat-link:hover {
  opacity: 0.85;
}

.lt-card__cat.urgent { color: var(--lt-urgent); }

.lt-card__title {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--lt-text-pri);
  line-height: 1.25;
  letter-spacing: -0.2px;
  text-transform: uppercase;
  margin-bottom: 10px;
  flex: 1;
}

.lt-card__meta {
  font-size: 10px;
  color: var(--lt-text-ter);
  font-weight: 500;
  margin-top: auto;
}

/* Card horizontal (lista) */
.lt-card--horizontal {
  flex-direction: row;
  align-items: stretch;
}

.lt-card--horizontal .lt-card__thumb {
  width: 110px;
  flex-shrink: 0;
  aspect-ratio: auto;
}

.lt-card--horizontal .lt-card__title { font-size: 14px; }

/* Card sin imagen */
.lt-card--text-only .lt-card__body { padding: 16px 18px; }

.lt-card--text-only .lt-card__title { font-size: 15px; }

/* ============================================
   CARD GRIDS
   ============================================ */
.lt-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.lt-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.lt-list {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.lt-list .lt-card--horizontal + .lt-card--horizontal { border-top: 1px solid var(--lt-border); }

@media (max-width: 768px) {
  .lt-grid-3 { grid-template-columns: repeat(2, 1fr); }
  .lt-grid-2 { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .lt-grid-3 { grid-template-columns: 1fr; }
}

/* ============================================
   SIDEBAR
   ============================================ */
.lt-sidebar { display: flex; flex-direction: column; gap: 24px; }

.lt-widget {
  background: var(--lt-pure-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.lt-widget__head {
  padding: 14px 18px;
  background: var(--lt-night);
  display: flex;
  align-items: center;
  gap: 8px;
}

.lt-widget__head-title {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fff;
}

.lt-widget__body { padding: 4px 0; }

/* Trending */
.lt-trending-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 12px 18px;
  border-bottom: 1px solid var(--lt-border);
  transition: background var(--transition);
}

.lt-trending-item:last-child { border-bottom: none; }
.lt-trending-item:hover { background: var(--lt-grey); }

.lt-trending-item__num {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 900;
  color: var(--lt-grey-mid);
  line-height: 1;
  flex-shrink: 0;
  width: 28px;
}

.lt-trending-item__title {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  color: var(--lt-text-pri);
  line-height: 1.3;
  text-transform: uppercase;
}

/* Newsletter widget */
.lt-newsletter {
  background: linear-gradient(135deg, var(--lt-night), var(--lt-night-mid));
  border-radius: var(--radius-md);
  padding: 24px 20px;
  box-shadow: var(--shadow-md);
}

.lt-newsletter__eyebrow {
  font-family: var(--font-main);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--lt-red);
  margin-bottom: 10px;
}

.lt-newsletter__title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.4px;
  line-height: 1.1;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.lt-newsletter__desc {
  font-size: 12px;
  font-weight: 300;
  color: rgba(255,255,255,0.5);
  line-height: 1.6;
  margin-bottom: 16px;
}

.lt-newsletter__form {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.lt-newsletter__input {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  font-size: 13px;
  color: #fff;
  outline: none;
  transition: border-color var(--transition);
}

.lt-newsletter__input::placeholder { color: rgba(255,255,255,0.35); }
.lt-newsletter__input:focus { border-color: var(--lt-red); }

.lt-btn-red {
  background: var(--lt-red);
  color: #fff;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
  text-align: center;
}

.lt-btn-red:hover { background: var(--lt-red-dark); transform: translateY(-1px); }

.lt-btn-teal {
  background: var(--lt-red);
  color: #fff;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 11px 20px;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: background var(--transition), color var(--transition), transform var(--transition);
  text-align: center;
  display: block;
  width: 100%;
}

.lt-btn-teal:hover {
  background: var(--lt-red-dark);
  color: #fff;
  transform: translateY(-1px);
}

/* ============================================
   CATEGORY TABS
   ============================================ */
.lt-tabs {
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.lt-tab {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
  background: var(--lt-pure-white);
  color: var(--lt-text-sec);
  border: 1px solid var(--lt-border);
  cursor: pointer;
  transition: all var(--transition);
}

.lt-tab:hover { border-color: var(--lt-red); color: var(--lt-red-dark); }
.lt-tab.active { background: var(--lt-night); color: #fff; border-color: var(--lt-night); }

/* ============================================
   SINGLE POST
   ============================================ */
.lt-single {
  background: var(--lt-pure-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.lt-single__hero {
  position: relative;
  aspect-ratio: 16/7;
  overflow: hidden;
  background: var(--lt-night-light);
}

.lt-single__hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lt-single__hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(0,0,0,0.6));
}

.lt-single__body { padding: 40px 48px 56px; }

.lt-single__cat {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--lt-red-dark);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.lt-single__cat a { color: inherit; }
.lt-single__cat a:hover { color: var(--lt-night); }

.lt-single__title {
  font-family: var(--font-display);
  font-size: 38px;
  font-weight: 900;
  color: var(--lt-text-pri);
  line-height: 1.05;
  letter-spacing: -1px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.lt-single__subtitle {
  font-size: 18px;
  font-weight: 300;
  color: var(--lt-text-sec);
  line-height: 1.5;
  margin-bottom: 24px;
  border-left: 3px solid var(--lt-red);
  padding-left: 16px;
}

.lt-single__meta {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 11px;
  color: var(--lt-text-ter);
  font-weight: 500;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--lt-border);
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.lt-single__meta a { color: var(--lt-red-dark); font-weight: 600; }
.lt-single__meta a:hover { color: var(--lt-night); }

.lt-single__meta-sep { color: var(--lt-border); }

.lt-single__share {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
}

.lt-share-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--lt-grey);
  color: var(--lt-text-sec);
  font-size: 14px;
  transition: all var(--transition);
  text-decoration: none;
}

.lt-share-btn:hover { background: var(--lt-night); color: #fff; }

/* Contenido editorial */
.lt-content {
  font-size: 17px;
  font-weight: 300;
  color: var(--lt-text-pri);
  line-height: 1.8;
}

.lt-content p { margin-bottom: 20px; }
.lt-content p:last-child { margin-bottom: 0; }

.lt-content h2 {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 800;
  color: var(--lt-text-pri);
  letter-spacing: -0.5px;
  text-transform: uppercase;
  margin: 36px 0 16px;
  line-height: 1.1;
}

.lt-content h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--lt-text-pri);
  text-transform: uppercase;
  margin: 28px 0 12px;
}

.lt-content blockquote {
  border-left: 4px solid var(--lt-red);
  padding: 16px 24px;
  margin: 28px 0;
  background: var(--lt-red-light);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--lt-night);
  font-style: normal;
  line-height: 1.4;
  text-transform: uppercase;
}

.lt-content ul, .lt-content ol {
  list-style: none;
  margin: 16px 0 20px 0;
}

.lt-content ul li, .lt-content ol li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 8px;
}

.lt-content ul li::before {
  content: '▪';
  position: absolute;
  left: 0;
  color: var(--lt-red);
  font-size: 10px;
  top: 5px;
}

.lt-content ol {
  counter-reset: lt-counter;
}

.lt-content ol li { counter-increment: lt-counter; }

.lt-content ol li::before {
  content: counter(lt-counter) '.';
  position: absolute;
  left: 0;
  color: var(--lt-red-dark);
  font-weight: 700;
  font-size: 13px;
}

.lt-content a {
  color: var(--lt-red-dark);
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(194,40,0,0.3);
  transition: text-decoration-color var(--transition);
}

.lt-content a:hover { text-decoration-color: var(--lt-red); }

.lt-content figure {
  margin: 32px 0;
}

.lt-content figure img {
  width: 100%;
  border-radius: var(--radius-md);
}

.lt-content figcaption {
  font-size: 12px;
  color: var(--lt-text-ter);
  margin-top: 8px;
  font-style: italic;
}

.lt-breadcrumb {
  margin-bottom: 16px;
  padding: 0;
  background: transparent;
  border-left: none;
  border-radius: 0;
}

.lt-breadcrumb__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px 8px;
  list-style: none;
  margin: 0;
  padding: 0;
  font-family: var(--font-main);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--lt-text-ter);
  line-height: 1.4;
}

.lt-breadcrumb__item {
  display: flex;
  align-items: center;
}

.lt-breadcrumb__link {
  color: var(--lt-text-sec);
  text-decoration: none;
  transition: color var(--transition);
}

.lt-breadcrumb__link:hover {
  color: var(--lt-red);
}

.lt-breadcrumb__current {
  color: var(--lt-text-pri);
  font-weight: 700;
}

.lt-breadcrumb__sep {
  color: var(--lt-red);
  opacity: 0.35;
  font-weight: 400;
  user-select: none;
}

.lt-single__body > .lt-breadcrumb {
  margin-bottom: 16px;
}

.lt-single__meta-main {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 4px 0;
}

.lt-single-col {
  display: flex;
  flex-direction: column;
  gap: 24px;
  min-width: 0;
}

/* Tags */
.lt-tags {
  margin-top: 36px;
  padding-top: 24px;
  border-top: 1px solid var(--lt-border);
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 12px;
}

.lt-tags__label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--lt-text-ter);
  padding-top: 6px;
  flex-shrink: 0;
}

.lt-tags__list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.lt-tag {
  font-size: 11px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 100px;
  background: var(--lt-night-light);
  color: var(--lt-night);
  transition: background var(--transition), color var(--transition);
}

.lt-tag:hover {
  background: var(--lt-red-light);
  color: var(--lt-red-dark);
}

.lt-content img,
.lt-content iframe {
  max-width: 100%;
  height: auto;
}

.lt-content .wp-block-embed,
.lt-content .wp-block-image {
  margin: 32px 0;
}

@media (max-width: 768px) {
  .lt-single__body { padding: 24px 20px 36px; }
  .lt-single__title { font-size: 28px; }
  .lt-single__subtitle { font-size: 16px; }
  .lt-content { font-size: 16px; }
  .lt-single__meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .lt-single__share { margin-left: 0; }
}

/* ============================================
   RELATED POSTS
   ============================================ */
.lt-related {
  padding: 32px 48px;
  border-top: 1px solid var(--lt-border);
  background: var(--lt-grey);
}

@media (max-width: 768px) {
  .lt-related { padding: 24px 20px; }
}

/* ============================================
   COMENTARIOS — single
   ============================================ */
.lt-comments-wrap {
  background: var(--lt-pure-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.lt-comments {
  padding: 36px 48px 44px;
}

.lt-comments__header {
  margin-bottom: 28px;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--lt-border);
}

.lt-comments__title {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--lt-text-pri);
  display: flex;
  align-items: center;
  gap: 8px;
}

.lt-comments__title::before {
  content: '';
  display: block;
  width: 3px;
  height: 16px;
  background: var(--lt-red);
  border-radius: 2px;
}

.lt-comments__list,
.lt-comments__list .children {
  list-style: none;
  margin: 0;
  padding: 0;
}

.lt-comments__list > .lt-comment {
  margin-bottom: 16px;
  padding: 20px;
  background: var(--lt-grey);
  border-radius: var(--radius-md);
  border-bottom: none;
}

.lt-comments__list > .lt-comment:last-child {
  margin-bottom: 0;
  padding-bottom: 20px;
  border-bottom: none;
}

.lt-comments__list .children {
  margin-top: 16px;
  padding-left: 16px;
  border-left: 3px solid var(--lt-red);
}

.lt-comments__list .children .lt-comment {
  margin-bottom: 12px;
  padding: 16px;
  background: var(--lt-pure-white);
  border-radius: var(--radius-sm);
  border-bottom: none;
}

.lt-comments__list .children .lt-comment:last-child {
  margin-bottom: 0;
  padding-bottom: 16px;
  border-bottom: none;
}

.lt-comment__inner {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.lt-comment__avatar-img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--lt-pure-white);
  box-shadow: 0 0 0 2px var(--lt-red-light);
}

.lt-comment__main {
  flex: 1;
  min-width: 0;
}

.lt-comment__header {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 6px 12px;
  margin-bottom: 10px;
}

.lt-comment__author {
  font-size: 14px;
  font-weight: 700;
  font-style: normal;
  color: var(--lt-night);
}

.lt-comment__time {
  font-size: 11px;
  font-weight: 500;
  color: var(--lt-text-ter);
}

.lt-comment__moderation {
  font-size: 12px;
  color: var(--lt-urgent);
  background: rgba(255, 59, 48, 0.08);
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  margin-bottom: 10px;
}

.lt-comment__content {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--lt-text-pri);
}

.lt-comment__content p {
  margin: 0 0 12px;
}

.lt-comment__content p:last-child { margin-bottom: 0; }

.lt-comment__reply a {
  display: inline-flex;
  align-items: center;
  margin-top: 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--lt-red-dark);
  transition: color var(--transition);
}

.lt-comment__reply a:hover { color: var(--lt-night); }

.lt-comments__nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin: 28px 0 8px;
  padding-top: 20px;
  border-top: 1px solid var(--lt-border);
  font-size: 13px;
}

.lt-comments__nav-label {
  font-weight: 600;
  color: var(--lt-text-ter);
}

.lt-comments__nav a {
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  background: var(--lt-grey);
  color: var(--lt-text-sec);
  font-weight: 600;
  transition: all var(--transition);
}

.lt-comments__nav a:hover {
  background: var(--lt-night);
  color: #fff;
}

.lt-comments__closed {
  font-size: 14px;
  color: var(--lt-text-sec);
  padding: 16px 0;
}

/* Formulario */
.lt-comment-respond {
  margin-top: 28px;
  padding: 28px 24px 32px;
  background: var(--lt-grey);
  border-radius: var(--radius-md);
  border-top: none;
}

.lt-comment-respond__title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 800;
  color: var(--lt-text-pri);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 4px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.lt-comment-respond__title::before {
  content: '';
  display: block;
  width: 3px;
  height: 18px;
  background: var(--lt-red);
  border-radius: 2px;
  flex-shrink: 0;
}

.lt-comment-respond #cancel-comment-reply-link {
  display: inline-block;
  margin-left: 8px;
  font-family: var(--font-main);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
  color: var(--lt-text-ter);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.lt-comment-respond #cancel-comment-reply-link:hover {
  color: var(--lt-urgent);
}

.lt-comment-respond__title small {
  font-family: var(--font-main);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
}

.lt-comment-form {
  margin-top: 20px;
}

.lt-comment-form__note,
.lt-comment-form__logged-in {
  font-size: 12px;
  color: var(--lt-text-sec);
  margin-bottom: 20px;
  line-height: 1.55;
}

.lt-comment-form__logged-in {
  background: var(--lt-red-light);
  border-left: 3px solid var(--lt-red);
  padding: 12px 14px;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.lt-comment-form__note {
  padding: 0 2px;
}

.lt-comment-form__logged-in a {
  color: var(--lt-red-dark);
  font-weight: 600;
}

.lt-comment-form__field {
  margin: 0 0 16px;
}

.lt-comment-form__field label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--lt-text-sec);
  margin-bottom: 6px;
}

.lt-comment-form__field .required {
  color: var(--lt-urgent);
}

.lt-comment-form__input,
.lt-comment-form__textarea {
  width: 100%;
  font-family: var(--font-main);
  font-size: 14px;
  font-weight: 400;
  color: var(--lt-text-pri);
  background: var(--lt-grey);
  border: 1px solid var(--lt-border);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.lt-comment-form__textarea {
  min-height: 140px;
  resize: vertical;
  line-height: 1.6;
}

.lt-comment-form__input:focus,
.lt-comment-form__textarea:focus {
  outline: none;
  border-color: var(--lt-red);
  box-shadow: 0 0 0 3px rgba(230, 48, 0, 0.12);
  background: var(--lt-pure-white);
}

.lt-comment-form__checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  font-weight: 400;
  color: var(--lt-text-sec);
  cursor: pointer;
}

.lt-comment-form__checkbox input {
  margin-top: 3px;
  accent-color: var(--lt-red);
}

.lt-comment-form__submit {
  margin-top: 8px;
  border: none;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 14px 28px;
  width: auto;
  display: inline-block;
}

.lt-comment-form .form-submit {
  margin: 8px 0 0;
}

@media (min-width: 640px) {
  .lt-comment-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 16px;
  }

  .lt-comment-form__note,
  .lt-comment-form__logged-in,
  .lt-comment-form__field--comment,
  .lt-comment-form__field--cookies,
  .lt-comment-form .form-submit {
    grid-column: 1 / -1;
  }
}

@media (max-width: 768px) {
  .lt-comments { padding: 24px 20px 28px; }
  .lt-comment__inner { gap: 12px; }
  .lt-comment__avatar-img { width: 44px; height: 44px; }
  .lt-comments__list .children { padding-left: 14px; }
}

/* ============================================
   ARCHIVE / CATEGORY PAGE
   ============================================ */
.lt-archive-header {
  background: var(--lt-night);
  padding: 40px 0;
  margin-bottom: 32px;
}

.lt-archive-header__eyebrow {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--lt-red);
  margin-bottom: 8px;
}

.lt-archive-header__title {
  font-family: var(--font-display);
  font-size: 44px;
  font-weight: 900;
  color: #fff;
  letter-spacing: -1.5px;
  text-transform: uppercase;
  line-height: 1;
}

.lt-archive-header__count {
  font-size: 13px;
  font-weight: 300;
  color: rgba(255,255,255,0.4);
  margin-top: 8px;
}

/* ============================================
   PAGINATION
   ============================================ */
.lt-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin: 40px 0;
}

.lt-page-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: var(--radius-sm);
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  background: var(--lt-pure-white);
  color: var(--lt-text-sec);
  border: 1px solid var(--lt-border);
  transition: all var(--transition);
  text-decoration: none;
}

.lt-page-btn:hover { border-color: var(--lt-night); color: var(--lt-night); }
.lt-page-btn.current { background: var(--lt-night); color: #fff; border-color: var(--lt-night); }

/* ============================================
   FOOTER
   ============================================ */
.lt-footer {
  background: var(--lt-black);
  padding: 48px 0 0;
}

.lt-footer__grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 48px;
  padding-bottom: 40px;
}

.lt-footer__brand .lt-logo__text { font-size: 28px; color: #fff; }
.lt-footer__brand .lt-logo__text .tribuna { color: var(--lt-red); }

.lt-footer__tagline {
  font-size: 13px;
  font-weight: 300;
  color: rgba(255,255,255,0.4);
  margin-top: 12px;
  line-height: 1.6;
}

.lt-footer__col-title {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--lt-red);
  margin-bottom: 16px;
}

.lt-footer__links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.lt-footer__links a {
  font-size: 13px;
  font-weight: 400;
  color: rgba(255,255,255,0.45);
  transition: color var(--transition);
}

.lt-footer__links a:hover { color: rgba(255,255,255,0.85); }

.lt-footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.lt-footer__copy {
  font-size: 11px;
  color: rgba(255,255,255,0.2);
  font-weight: 400;
}

.lt-footer__legal {
  display: flex;
  gap: 20px;
}

.lt-footer__legal a {
  font-size: 11px;
  color: rgba(255,255,255,0.2);
  transition: color var(--transition);
}

.lt-footer__legal a:hover { color: rgba(255,255,255,0.5); }

@media (max-width: 900px) {
  .lt-footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 480px) {
  .lt-footer__grid { grid-template-columns: 1fr; }
  .lt-footer__bottom { flex-direction: column; gap: 12px; text-align: center; }
}

/* ============================================
   UTILITY
   ============================================ */
.lt-spacer { height: 32px; }
.lt-spacer--sm { height: 16px; }
.lt-spacer--lg { height: 48px; }

.lt-badge {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 100px;
}

.lt-badge--urgent { background: var(--lt-urgent); color: #fff; }
.lt-badge--red { background: var(--lt-red-light); color: var(--lt-red-dark); }

/* Screen-reader only */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}

/* Entrada / fade */
@keyframes lt-fade-up {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

.lt-fade-in { animation: lt-fade-up 0.4s ease both; }

/* Scroll reveal — clases CSS (evita inline styles que rompen el hover) */
.lt-animate-in {
  opacity: 0;
  transform: translateY(12px);
  transition:
    opacity var(--transition-image),
    transform var(--transition-image),
    box-shadow var(--transition-image),
    border-color var(--transition);
}

.lt-animate-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.lt-card.lt-animate-in.is-visible:hover {
  transform: translateY(-2px);
}

/* === Single (noticia individual) === */
.lt-container.lt-single-section {
  margin-top: 24px;
}

/* === Páginas estáticas === */
.lt-container.lt-page-section {
  margin-top: 24px;
  padding-bottom: 8px;
}

.lt-page__header {
  padding: 28px 48px 24px;
  border-bottom: 1px solid var(--lt-border);
}

.lt-page__header .lt-breadcrumb {
  margin-bottom: 18px;
}

.lt-page__header .lt-page__title {
  margin-bottom: 12px;
}

.lt-page__header .lt-page__subtitle {
  margin-bottom: 0;
}

.lt-page {
  background: var(--lt-pure-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.lt-page__hero {
  width: 100%;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  overflow: hidden;
  background: var(--lt-night-light);
}

.lt-page__hero img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.lt-page__body {
  padding: 32px 48px 56px;
}

.lt-page__title {
  font-family: var(--font-display);
  font-size: 38px;
  font-weight: 900;
  color: var(--lt-text-pri);
  line-height: 1.05;
  letter-spacing: -1px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.lt-page__subtitle {
  font-size: 18px;
  font-weight: 300;
  color: var(--lt-text-sec);
  line-height: 1.5;
  margin-bottom: 32px;
  border-left: 3px solid var(--lt-red);
  padding-left: 16px;
}

.lt-page-nav {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid var(--lt-border);
  font-size: 14px;
  color: var(--lt-text-sec);
}

.lt-page-nav__label {
  font-weight: 600;
  margin-bottom: 8px;
}

.lt-page-nav a {
  color: var(--lt-red-dark);
  font-weight: 600;
}

.lt-page-nav a:hover {
  color: var(--lt-night);
}

@media (max-width: 768px) {
  .lt-page__header { padding: 20px 20px 18px; }
  .lt-page__body { padding: 20px 20px 36px; }
  .lt-page__title { font-size: 28px; }
  .lt-page__subtitle { font-size: 16px; }
}

/* === search.php (búsqueda) === */
.lt-search-featured {
  margin-bottom: 16px;
}

.lt-search-grid {
  margin-bottom: 32px;
}

.lt-search-empty {
  background: var(--lt-pure-white);
  border-radius: var(--radius-lg);
  padding: 64px 48px;
  text-align: center;
  box-shadow: var(--shadow-sm);
}

.lt-search-empty__icon {
  font-size: 48px;
  margin-bottom: 16px;
  line-height: 1;
}

.lt-search-empty__title {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 800;
  color: var(--lt-text-pri);
  text-transform: uppercase;
  margin-bottom: 8px;
}

.lt-search-empty__desc {
  font-size: 14px;
  font-weight: 300;
  color: var(--lt-text-sec);
  margin-bottom: 32px;
  max-width: 420px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.lt-search-empty__cats {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 480px;
  margin: 0 auto 32px;
}

.lt-search-cat-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  background: var(--lt-night-light);
  border-radius: var(--radius-md);
  border-left: 4px solid var(--lt-red);
  text-align: left;
  transition: background var(--transition), transform var(--transition);
}

.lt-search-cat-link:hover {
  background: var(--lt-red-light);
  transform: translateX(4px);
}

.lt-search-cat-link__name {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--lt-night);
  text-transform: uppercase;
}

.lt-search-cat-link__count {
  font-size: 12px;
  font-weight: 500;
  color: var(--lt-text-ter);
  flex-shrink: 0;
}

.lt-search-empty__form {
  display: flex;
  align-items: stretch;
  gap: 10px;
  max-width: 480px;
  margin: 0 auto;
}

.lt-search-empty__input {
  flex: 1;
  min-width: 0;
  padding: 12px 18px;
  font-size: 14px;
  font-weight: 400;
  color: var(--lt-text-pri);
  background: var(--lt-grey);
  border: 1px solid var(--lt-border);
  border-radius: var(--radius-md);
  outline: none;
  transition: border-color var(--transition);
}

.lt-search-empty__input:focus {
  border-color: var(--lt-red);
}

@media (max-width: 768px) {
  .lt-search-empty { padding: 40px 24px; }
  .lt-search-empty__form { flex-direction: column; }
  .lt-search-cat-link { padding: 16px 18px; }
  .lt-search-cat-link__name { font-size: 16px; }
}

/* === Barra de progreso de lectura (single) === */
.lt-read-progress {
  position: fixed;
  left: 0;
  right: 0;
  top: 63px;
  height: 2px;
  z-index: 101;
  background: transparent;
  pointer-events: none;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

.lt-read-progress.is-hidden {
  opacity: 0;
  visibility: hidden;
}

.lt-read-progress__bar {
  display: block;
  height: 100%;
  width: 0;
  background: var(--lt-red);
  transition: width 0.12s ease-out;
  will-change: width;
}

/* === Tabla de contenidos automática (single) === */
.lt-content h2[id] {
  scroll-margin-top: 80px;
}

.lt-toc {
  background: var(--lt-night-light);
  border-left: 4px solid var(--lt-red);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: 24px 28px;
  margin: 0 0 32px;
}

.lt-toc__title {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--lt-night);
  margin-bottom: 14px;
}

.lt-toc__list {
  list-style: decimal;
  margin: 0;
  padding-left: 22px;
  counter-reset: none;
}

.lt-toc__item {
  position: static;
  padding-left: 0;
  margin-bottom: 8px;
}

.lt-toc__item::before {
  content: none;
  display: none;
}

.lt-toc__item:last-child {
  margin-bottom: 0;
}

.lt-toc__item a {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  color: var(--lt-night);
  text-decoration: none;
  text-transform: uppercase;
  transition: color var(--transition);
}

.lt-toc__item a:hover {
  color: var(--lt-red-dark);
}

@media (max-width: 768px) {
  .lt-toc { padding: 20px 22px; }
  .lt-content h2[id] { scroll-margin-top: 72px; }
}

/* === Badge de categoría con color custom === */
/* Color inline en .lt-card__cat-link; fallback --lt-red-dark vía .lt-card__cat */

/* === Widget últimas de cada sección (cards horizontales unificadas) === */
.lt-widget--section-latest .lt-widget__body {
  padding: 0;
}

.lt-widget--section-latest .lt-list {
  gap: 0;
}

.lt-widget--section-latest .lt-list .lt-card {
  box-shadow: none;
  border-radius: 0;
}

.lt-widget--section-latest .lt-list .lt-card:hover {
  transform: none;
  box-shadow: none;
  background: var(--lt-grey);
}

.lt-widget--section-latest .lt-card__body {
  padding: 14px 18px;
}

/* === Widget En vivo (REST ticker) === */
.lt-widget__head--live .lt-widget__head-title {
  display: flex;
  align-items: center;
  gap: 8px;
}

.lt-live-ticker__dot {
  width: 7px;
  height: 7px;
  background: var(--lt-urgent);
  border-radius: 50%;
  flex-shrink: 0;
  animation: pulse-live 1.4s ease-in-out infinite;
}

.lt-widget__body--live {
  padding: 6px 0;
}

.lt-live-ticker__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.lt-live-ticker__item {
  border-bottom: 1px solid var(--lt-border);
}

.lt-live-ticker__item:last-child {
  border-bottom: none;
}

.lt-live-ticker__link {
  display: block;
  padding: 12px 18px;
  transition: background var(--transition);
}

.lt-live-ticker__link:hover {
  background: var(--lt-red-light);
}

.lt-live-ticker__title {
  display: block;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  color: var(--lt-text-pri);
  text-transform: uppercase;
  line-height: 1.3;
  margin-bottom: 4px;
}

.lt-live-ticker__time {
  display: block;
  font-size: 10px;
  font-weight: 500;
  color: var(--lt-text-ter);
}

.lt-live-ticker__status {
  padding: 16px 18px;
  font-size: 12px;
  color: var(--lt-text-ter);
  text-align: center;
}

.lt-widget--live.is-loading .lt-live-ticker__dot {
  opacity: 0.6;
}

/* === Performance: lazy load imágenes === */
img.lt-lazy-observe:not(.lt-img--loaded) {
  opacity: 0;
}

img.lt-lazy-observe.lt-img--loaded {
  opacity: 1;
  transition: opacity var(--transition-image);
}

/* === Quiénes somos + Contacto === */
.lt-about__intro,
.lt-contact__intro {
  margin-bottom: 32px;
}

.lt-about-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.lt-about-card {
  background: var(--lt-grey);
  border-radius: var(--radius-md);
  padding: 24px;
  border: 1px solid var(--lt-border);
}

.lt-about-card--cta {
  background: var(--lt-night);
  color: var(--lt-pure-white);
  border-color: var(--lt-night);
}

.lt-about-card--cta .lt-about-card__title,
.lt-about-card--cta .lt-about-card__text {
  color: var(--lt-pure-white);
}

.lt-about-card--cta .lt-about-card__text {
  opacity: 0.85;
}

.lt-about-card__title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 10px;
  color: var(--lt-night);
}

.lt-about-card__text {
  font-size: 15px;
  line-height: 1.6;
  color: var(--lt-text-sec);
}

.lt-about-list {
  list-style: none;
}

.lt-about-list li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 8px;
  font-size: 15px;
  color: var(--lt-text-sec);
}

.lt-about-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--lt-red);
}

.lt-contact__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 32px;
  align-items: start;
}

.lt-contact__info-title,
.lt-contact__form-title {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--lt-night);
  margin-bottom: 20px;
}

.lt-contact__item {
  margin-bottom: 16px;
  font-size: 15px;
  line-height: 1.5;
}

.lt-contact__item a {
  color: var(--lt-red-dark);
  font-weight: 600;
}

.lt-contact__item a:hover {
  color: var(--lt-night);
}

.lt-contact__label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--lt-text-ter);
  margin-bottom: 4px;
}

.lt-contact__social {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  margin-top: 8px;
}

.lt-contact__social a {
  font-size: 14px;
  font-weight: 600;
  color: var(--lt-red-dark);
}

.lt-contact__feedback {
  display: none;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 16px;
}

.lt-contact__feedback.is-visible {
  display: block;
}

.lt-contact__feedback.is-success {
  background: #eaf7ef;
  color: #1e8449;
  border: 1px solid #27ae60;
}

.lt-contact__feedback.is-error {
  background: #fdecea;
  color: var(--lt-red-dark);
  border: 1px solid #f5c6cb;
}

.lt-contact-form__field {
  margin-bottom: 16px;
}

.lt-contact-form__field label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--lt-text-pri);
}

.lt-contact-form__field .required {
  color: var(--lt-red);
}

.lt-contact-form__input,
.lt-contact-form__textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--lt-border);
  border-radius: var(--radius-sm);
  font-size: 15px;
  background: var(--lt-pure-white);
  transition: border-color var(--transition);
}

.lt-contact-form__input:focus,
.lt-contact-form__textarea:focus {
  outline: none;
  border-color: var(--lt-red);
}

.lt-contact-form__textarea {
  resize: vertical;
  min-height: 140px;
}

.lt-contact-form__submit {
  width: 100%;
}

@media (max-width: 768px) {
  .lt-about-grid,
  .lt-contact__grid {
    grid-template-columns: 1fr;
  }
}

/* === Badge urgente en cards === */
.lt-card__thumb { position: relative; }

.lt-card__urgent-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--lt-urgent);
  color: #fff;
  font-family: var(--font-display);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 3px 9px;
  border-radius: 3px;
  z-index: 2;
  pointer-events: none;
}

.lt-card__cat--urgent,
.lt-card__cat--urgent a,
.lt-card__cat--urgent .lt-card__cat-link,
.lt-card__cat--urgent .lt-card__cat-label {
  color: var(--lt-urgent) !important;
}

/* === Contador de vistas === */
.lt-trending-item__content { flex: 1; min-width: 0; }
.lt-trending-item__views {
  display: block;
  font-size: 10px;
  color: var(--lt-text-ter);
  margin-top: 2px;
  font-weight: 500;
}

/* === Modo lectura === */
body.lt-reading-mode .lt-header,
body.lt-reading-mode .lt-footer,
body.lt-reading-mode .lt-sidebar,
body.lt-reading-mode .lt-topbar,
body.lt-reading-mode .lt-breaking,
body.lt-reading-mode .lt-banners,
body.lt-reading-mode .lt-related,
body.lt-reading-mode .lt-comments-wrap,
body.lt-reading-mode .lt-read-progress,
body.lt-reading-mode .lt-tags {
  display: none !important;
}

body.lt-reading-mode .lt-grid-main {
  grid-template-columns: 1fr;
}

body.lt-reading-mode .lt-single-col {
  max-width: 720px;
  margin: 0 auto;
  padding-top: 40px;
}

body.lt-reading-mode .lt-content {
  font-size: 19px;
  line-height: 1.9;
}

body.lt-reading-mode .lt-single__title {
  font-size: 44px;
}

body.lt-reading-mode .lt-single__body {
  padding: 48px 48px 64px;
}

body.lt-reading-mode {
  background: #FAFAF8;
}

#lt-reading-mode-toggle[aria-pressed="true"] {
  background: var(--lt-night);
  color: #fff;
}

@media (max-width: 768px) {
  body.lt-reading-mode .lt-single__body { padding: 24px 20px 40px; }
  body.lt-reading-mode .lt-content { font-size: 17px; }
  body.lt-reading-mode .lt-single__title { font-size: 30px; }
}

/* ============================================
   MARQUEE DE IDENTIDAD — home
   ============================================ */
.lt-marquee-wrap {
  background: var(--lt-red);
  overflow: hidden;
  padding: 0;
  margin-top: 0;
  border-top: 1px solid rgba(255,255,255,0.15);
}

.lt-marquee__track {
  display: flex;
  gap: 0;
  animation: lt-marquee 40s linear infinite;
  white-space: nowrap;
  width: max-content;
}

.lt-marquee__track:hover {
  animation-play-state: paused;
}

.lt-marquee__item {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 11px 32px 11px 0;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.92);
}

.lt-marquee__sep {
  color: rgba(255,255,255,0.3);
  font-size: 9px;
  margin-right: 32px;
}

@keyframes lt-marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============================================
   HERO — mejoras visuales
   ============================================ */

/* Barra acento rojo en hero */
.lt-hero__body::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--lt-red);
}

/* ============================================
   CARDS — mejoras
   ============================================ */

/* Línea acento en cards verticales */
.lt-card {
  border-top: 2px solid transparent;
  transition:
    transform var(--transition-image),
    box-shadow var(--transition-image),
    border-color var(--transition);
}

.lt-card:hover {
  border-top-color: var(--lt-red);
}

/* Número de trending más bold y contrastado */
.lt-trending-item__num {
  font-size: 24px;
  font-weight: 900;
  color: var(--lt-grey-mid);
  transition: color var(--transition);
}

.lt-trending-item:hover .lt-trending-item__num {
  color: var(--lt-red);
}

/* ============================================
   NEWSLETTER — fix botón blanco + mejoras
   ============================================ */
.lt-btn-red {
  background: var(--lt-red);
  color: #fff;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 11px 20px;
  border-radius: var(--radius-sm);
  border: 2px solid rgba(255,255,255,0.3);
  cursor: pointer;
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
  text-align: center;
  display: block;
  width: 100%;
}

.lt-btn-red:hover {
  background: var(--lt-red-dark);
  border-color: rgba(255,255,255,0.5);
  transform: translateY(-1px);
  color: #fff;
}

/* ============================================
   SECTION HEADER — mejoras
   ============================================ */

/* Barra de sección con gradiente */
.lt-section-header {
  border-bottom: 2px solid var(--lt-border);
}

.lt-section-header__title::before {
  background: linear-gradient(to bottom, var(--lt-red), var(--lt-red-dark));
}

/* ============================================
   SIDEBAR WIDGET — mejoras visuales
   ============================================ */

/* Widget head con borde izquierdo rojo */
.lt-widget__head {
  background: var(--lt-night);
  border-left: 3px solid var(--lt-red);
}

/* ============================================
   SINGLE POST — mejoras
   ============================================ */

/* Título hero más condensado */
.lt-single__title {
  line-height: 1.0;
}

/* Blockquote con estilo de estadio */
.lt-content blockquote {
  position: relative;
  padding-left: 28px;
}

.lt-content blockquote::before {
  content: '❝';
  position: absolute;
  top: -8px;
  left: 12px;
  font-size: 40px;
  color: var(--lt-red);
  opacity: 0.2;
  font-family: Georgia, serif;
  line-height: 1;
}

/* ============================================
   ARCHIVE HEADER — barra acento inferior
   ============================================ */
.lt-archive-header {
  position: relative;
}

.lt-archive-header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(to right, var(--lt-red), transparent);
}

/* ============================================
   FOOTER — mejoras
   ============================================ */

/* Footer position base */
.lt-footer {
  position: relative;
}

/* ============================================
   BREAKING BAR — mejoras
   ============================================ */
.lt-breaking__label {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.18em;
  gap: 8px;
  display: flex;
  align-items: center;
}

.lt-breaking__label::before {
  content: '■';
  font-size: 8px;
  color: rgba(255,255,255,0.5);
}

/* ============================================
   TOPBAR — mejoras
   ============================================ */
.lt-topbar__date {
  display: flex;
  align-items: center;
  gap: 6px;
}

.lt-topbar__date::before {
  content: '■';
  color: var(--lt-red);
  font-size: 7px;
}

/* ============================================
   HERO — lazy load placeholder shimmer
   ============================================ */
@keyframes lt-shimmer {
  0%   { background-position: -400px 0; }
  100% { background-position: 400px 0; }
}

.lt-hero__image:not(:has(img[src])),
.lt-card__thumb:not(:has(img[src])) {
  background: linear-gradient(90deg, var(--lt-grey-mid) 25%, var(--lt-grey) 50%, var(--lt-grey-mid) 75%);
  background-size: 800px 100%;
  animation: lt-shimmer 1.5s infinite;
}

/* ============================================
   LOGO — versión footer más pequeña
   ============================================ */
.lt-footer__brand .lt-logo__sub {
  color: rgba(255,255,255,0.25);
}

/* ============================================
   SCROLLBAR custom (webkit)
   ============================================ */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--lt-grey); }
::-webkit-scrollbar-thumb { background: var(--lt-red); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--lt-red-dark); }

/* ============================================
   SELECTION highlight
   ============================================ */
::selection {
  background: var(--lt-red);
  color: #fff;
}

/* ============================================
   FOCUS visible — accesibilidad
   ============================================ */
:focus-visible {
  outline: 2px solid var(--lt-red);
  outline-offset: 2px;
}

/* ============================================
   CARD CAT — hover mejorado
   ============================================ */
.lt-card__cat-link:hover {
  color: var(--lt-red);
  opacity: 1;
}

/* ============================================
   PAGE BTN — activo con rojo
   ============================================ */
.lt-page-btn.current {
  background: var(--lt-red);
  color: #fff;
  border-color: var(--lt-red);
}

/* ============================================
   HERO LINK — con flecha animada
   ============================================ */
.lt-hero__link::after {
  content: '→';
  display: inline-block;
  transition: transform var(--transition);
}

.lt-hero__link:hover::after {
  transform: translateX(4px);
}

/* ============================================
   LIVE TICKER — hover background rojo suave
   ============================================ */
.lt-live-ticker__link:hover {
  background: var(--lt-red-light);
  border-left: 2px solid var(--lt-red);
  padding-left: 16px;
}

/* ============================================
   PRINT — ocultar elementos innecesarios
   ============================================ */
@media print {
  .lt-header, .lt-footer, .lt-sidebar, .lt-breaking,
  .lt-marquee-wrap, .lt-topbar, .lt-banners,
  .lt-related, .lt-tags, .lt-comments-wrap { display: none !important; }
  .lt-single__body { padding: 0; }
  .lt-content { font-size: 12pt; line-height: 1.6; }
  .lt-single__title { font-size: 22pt; }
}

/* ============================================
   FIX: CARD THUMB — altura consistente
   ============================================ */

/* Forzar altura fija en cards de grilla para que todas sean iguales */
.lt-grid-3 .lt-card__thumb,
.lt-grid-2 .lt-card__thumb {
  aspect-ratio: 16/9;
  height: 0;
  padding-bottom: 56.25%; /* fallback para browsers sin aspect-ratio */
  position: relative;
  overflow: hidden;
}

.lt-grid-3 .lt-card__thumb img,
.lt-grid-2 .lt-card__thumb img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-image);
  transform-origin: center center;
  backface-visibility: hidden;
}

/* Cards horizontales: thumb cuadrado fijo, sin deformarse */
.lt-card--horizontal .lt-card__thumb {
  width: 100px;
  min-width: 100px;
  flex-shrink: 0;
  aspect-ratio: 1/1;
  padding-bottom: 0;
  height: auto;
}

.lt-card--horizontal .lt-card__thumb img {
  position: static;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-image);
  transform-origin: center center;
}

/* Widget últimas por sección: thumb = alto de la card, img cover a full */
.lt-widget--section-latest .lt-card--horizontal {
  align-items: stretch;
}

.lt-widget--section-latest .lt-card--horizontal .lt-card__thumb {
  display: block;
  position: relative;
  overflow: hidden;
  align-self: stretch;
  width: 110px;
  min-width: 110px;
  flex-shrink: 0;
  aspect-ratio: unset;
  height: 100%;
  min-height: 100%;
}

.lt-widget--section-latest .lt-card__thumb img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* ============================================
   FIX: TIPOGRAFÍAS FALTANTES EN TODO EL SITIO
   ============================================ */

/* Sección header: título con Barlow Condensed + numeración */
.lt-section-header__title {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.lt-section-header__link {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* Cards normales: título con Barlow Condensed bold */
.lt-card__title {
  font-family: var(--font-display);
}

/* Cat de card: Barlow uppercase */
.lt-card__cat {
  font-family: var(--font-main);
}

/* Widget head: Barlow Condensed */
.lt-widget__head-title {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

/* Trending sidebar: Barlow Condensed */
.lt-trending-item__title {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.25;
}

/* Noticias recientes — grilla: título más grande y bold */
.lt-grid-3 .lt-card__title {
  font-size: 15px;
  font-weight: 800;
}

.lt-grid-2 .lt-card__title {
  font-size: 16px;
  font-weight: 800;
}

/* Archive header */
.lt-archive-header__title {
  font-family: var(--font-display);
}

.lt-archive-header__eyebrow {
  font-family: var(--font-main);
}

/* Pagination */
.lt-page-btn {
  font-family: var(--font-display);
}

/* Tags */
.lt-tag {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.lt-tags__label {
  font-family: var(--font-main);
}

/* Single meta (autor, fecha) */
.lt-single__meta {
  font-family: var(--font-main);
}

.lt-single__cat {
  font-family: var(--font-main);
}

/* Hero excerpt: cuerpo ligero, sans-serif */
.lt-hero__excerpt {
  font-family: var(--font-main);
  font-weight: 300;
}

.lt-hero__meta {
  font-family: var(--font-main);
}

/* Footer copy y legal */
.lt-footer__copy,
.lt-footer__legal a {
  font-family: var(--font-main);
}

.lt-footer__tagline {
  font-family: var(--font-main);
}

.lt-footer__links a {
  font-family: var(--font-main);
}

/* Topbar date */
.lt-topbar__date {
  font-family: var(--font-main);
}

/* ============================================
   FIX: FOOTER — sin línea que lo cruza
   Redundancia intencionada para anular ::before
   ============================================ */
.lt-footer::before {
  display: none !important;
  content: none !important;
}

/* Footer top accent: borde en el margin-top en vez de pseudo */
.lt-footer {
  border-top: 3px solid var(--lt-red);
  margin-top: 64px;
}

/* ============================================
   MEJORA: NEWSLETTER WIDGET — tipografía
   ============================================ */
.lt-newsletter__eyebrow {
  font-family: var(--font-main);
}

.lt-newsletter__title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.3px;
}

.lt-newsletter__desc {
  font-family: var(--font-main);
}

/* ============================================
   MEJORA: LIVE TICKER — tipografía
   ============================================ */
.lt-live-ticker__title {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
}

.lt-live-ticker__time {
  font-family: var(--font-main);
}

/* ============================================
   MEJORA: COMMENT FORM — tipografías
   ============================================ */
.lt-comments__title {
  font-family: var(--font-display);
}

.lt-comment-respond__title {
  font-family: var(--font-display);
}

.lt-comment__author {
  font-family: var(--font-display);
  text-transform: uppercase;
}

/* ============================================
   MEJORA: GRILLA MAIN — gap visual
   ============================================ */
.lt-grid-main {
  padding-top: 24px;
}
