/* ============================================================================
   2262 — Estilos child (estilo infobae, todo centrado)
   ============================================================================ */

:root {
  /* Paleta de marca (color1 del Customizer Blocksy) */
  --c-brand: #FE5401;
  --c-brand-dark: #c33e00;
  --c-text: #192a3d;            /* color4 — texto principal */
  --c-text-soft: #3A4F66;       /* color3 — texto suave */
  --c-bg: #ffffff;
  --c-bg-soft: #f2f5f7;         /* color6 */
  --c-border: #e1e8ed;          /* color5 */
  --c-link: #1559ed;            /* color2 */

  --container-max: 1200px;
  --reading-max: 720px;

  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
}

/* ─── Reset/base mínimo ──────────────────────────────────────────────────── */

body.theme-2262 {
  background: var(--c-bg);
  color: var(--c-text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Inter", "Roboto",
               "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

body.theme-2262 a { color: inherit; text-decoration: none; }

body.theme-2262 img { max-width: 100%; height: auto; display: block; }

.t2262-container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
  box-sizing: border-box;
}
/* En pantallas chicas, reducir el padding lateral del container para ganar
   espacio útil de lectura (en <420px, 24px×2=48px de margen era demasiado). */
@media (max-width: 480px) {
  .t2262-container { padding: 0 14px; }
}

/* ─── Header ─────────────────────────────────────────────────────────────── */

.t2262-topbar {
  background: #2D2D2D;
  color: #fff;
  font-size: 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.t2262-topbar .t2262-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 6px;
  padding-bottom: 6px;
}
.t2262-topbar a:hover { opacity: 0.85; }
/* En pantallas chicas, ocultar la fecha (la primera <span>): el "Necochea · Argentina"
   queda solo, centrado. Antes la fecha completa rompía el layout en <380px. */
@media (max-width: 520px) {
  .t2262-topbar .t2262-container {
    justify-content: center;
    font-size: 11px;
  }
  .t2262-topbar .t2262-container > span:first-child { display: none; }
}

.t2262-header {
  background: #fff;
  border-bottom: 1px solid var(--c-border);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--shadow-sm);
}
.t2262-header .t2262-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 14px;
  padding-bottom: 14px;
}
.t2262-logo {
  font-family: "Georgia", "Times New Roman", serif;
  font-size: 50px;
  font-weight: 900;
  letter-spacing: -0.02em;
  color: var(--c-brand);
  line-height: 1;
  display: inline-flex;
  align-items: center;
}
.t2262-logo span { color: var(--c-text); }
/* !important para ganarle a cualquier regla del padre Blocksy */
.t2262-logo img,
header.t2262-header .t2262-logo img,
.t2262-header .t2262-logo img {
  max-height: 68px !important;
  max-width: 260px !important;
  width: auto !important;
  height: auto !important;
  object-fit: contain !important;
  display: block !important;
}
@media (max-width: 720px) {
  .t2262-logo img,
  header.t2262-header .t2262-logo img,
  .t2262-header .t2262-logo img {
    max-height: 52px !important;
    max-width: 200px !important;
  }
}

/* Ocultar el "site title" de WP que Blocksy muestra en las páginas de
   categoría/archivo (sale como heading gigante con el dominio Hostinger).
   Tenemos nuestro propio logo, no necesitamos esto. */
.site-title,
.site-description,
.ct-image-container + .site-title,
.ct-page-title-container .site-title,
header.entry-header .site-title,
.entry-header > .site-title,
header > .site-title,
body.archive .site-title,
body.category .site-title,
body.tag .site-title,
body.search .site-title,
body.blog .site-title {
  display: none !important;
}

.t2262-nav {
  display: flex;
  gap: 22px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  flex-wrap: wrap;
  justify-content: center;
}
.t2262-nav a {
  color: var(--c-text);
  padding: 6px 0;
  border-bottom: 2px solid transparent;
  transition: border-color 0.15s, color 0.15s;
}
.t2262-nav a:hover { color: var(--c-brand); border-color: var(--c-brand); }

@media (max-width: 720px) {
  .t2262-header .t2262-container {
    justify-content: flex-start; /* logo a la izquierda; hamburguesa absolute a la derecha */
    align-items: center;
    padding-right: 56px;          /* deja espacio para el botón hamburguesa */
  }
  .t2262-logo { font-size: 26px; }
  /* Ocultar categorías en mobile: en su lugar va el botón hamburguesa */
  .t2262-nav { display: none; }
}

/* ─── Hamburguesa + Drawer (solo mobile) ─────────────────────────────────── */

.t2262-burger {
  display: none;       /* solo aparece en mobile */
  background: none;
  border: 0;
  cursor: pointer;
  padding: 6px;
  width: 36px;
  height: 36px;
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 110;
}
.t2262-burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--c-text);
  margin: 4px auto;
  border-radius: 2px;
  transition: transform 0.2s, opacity 0.2s;
}
@media (max-width: 720px) {
  .t2262-burger { display: block; }
  .t2262-header .t2262-container { position: relative; }
}

.t2262-drawer {
  position: fixed;
  inset: 0;
  z-index: 200;
  pointer-events: none;
  visibility: hidden;
}
.t2262-drawer.is-open { pointer-events: auto; visibility: visible; }
.t2262-drawer-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  transition: opacity 0.25s;
  z-index: 1; /* debajo del panel */
}
.t2262-drawer.is-open .t2262-drawer-backdrop { opacity: 1; }
.t2262-drawer-panel {
  position: absolute;
  top: 0; bottom: 0; left: 0;
  width: 80%;
  max-width: 320px;
  background: #fff;
  box-shadow: 4px 0 20px rgba(0,0,0,0.15);
  transform: translateX(-100%);
  transition: transform 0.28s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  padding: 18px 0;
  z-index: 2; /* encima del backdrop — sino el backdrop tapa los clicks */
}
.t2262-drawer.is-open .t2262-drawer-panel { transform: translateX(0); }
.t2262-drawer-close {
  position: absolute;
  top: 8px;
  right: 12px;
  background: none;
  border: 0;
  font-size: 30px;
  font-weight: 300;
  line-height: 1;
  color: var(--c-text);
  cursor: pointer;
  padding: 4px 10px;
}
.t2262-drawer-title {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--c-text-soft);
  padding: 6px 22px 14px;
  border-bottom: 1px solid var(--c-border);
  margin-bottom: 4px;
}
.t2262-drawer-list {
  list-style: none;
  margin: 0;
  padding: 0;
  overflow-y: auto;
}
.t2262-drawer-list a {
  display: block;
  padding: 14px 22px;
  font-size: 15px;
  font-weight: 600;
  color: var(--c-text);
  border-bottom: 1px solid var(--c-bg-soft);
  transition: background 0.12s, color 0.12s;
}
.t2262-drawer-list a:hover,
.t2262-drawer-list a:active {
  background: var(--c-bg-soft);
  color: var(--c-brand);
}

/* ─── Ticker de últimas noticias (estilo infobae) ────────────────────────── */

.t2262-ticker {
  background: #fff;
  border-bottom: 1px solid var(--c-border);
  font-size: 14px;
  overflow: hidden;
}
.t2262-ticker .t2262-container {
  padding: 0;
}
.t2262-ticker-row {
  display: flex;
  align-items: center;       /* centra verticalmente label + track */
  height: 42px;
  gap: 0;
  position: relative;
}
.t2262-ticker-label {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--c-brand);
  color: #fff;
  padding: 0 16px;
  height: 100%;             /* ocupa toda la altura del ticker (42px) */
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  flex: 0 0 auto;
  position: relative;
  z-index: 2;
}
.t2262-ticker-label::after {
  content: "";
  position: absolute;
  right: -10px;
  top: 0;
  bottom: 0;
  width: 10px;
  background: var(--c-brand);
  clip-path: polygon(0 0, 100% 50%, 0 100%);
}
.t2262-ticker-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #fff;
  display: inline-block;
  animation: t2262-blink 1.4s ease-in-out infinite;
}
@keyframes t2262-blink {
  0%, 100% { opacity: 1; }
  50%      { opacity: 0.3; }
}

.t2262-ticker-track {
  flex: 1 1 auto;
  overflow: hidden;
  position: relative;
  -webkit-mask-image: linear-gradient(to right, transparent 0, black 24px, black calc(100% - 24px), transparent 100%);
          mask-image: linear-gradient(to right, transparent 0, black 24px, black calc(100% - 24px), transparent 100%);
  padding-left: 18px;
}
.t2262-ticker-content {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  animation: t2262-ticker-scroll 60s linear infinite;
}
.t2262-ticker:hover .t2262-ticker-content,
.t2262-ticker-content:hover {
  animation-play-state: paused;
}
@keyframes t2262-ticker-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.t2262-ticker-item {
  color: var(--c-text);
  font-weight: 600;
  padding: 0 18px 0 0;
  margin-right: 18px;
  border-right: 1px solid var(--c-border);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: color 0.15s;
}
.t2262-ticker-item:last-child { border-right: none; }
.t2262-ticker-item:hover { color: var(--c-brand); }
.t2262-ticker-time {
  color: var(--c-brand);
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.04em;
}

@media (max-width: 720px) {
  .t2262-ticker-row { height: 36px; }
  .t2262-ticker-label { padding: 0 12px; font-size: 11px; letter-spacing: 0.06em; }
  .t2262-ticker-item { font-size: 13px; padding-right: 14px; margin-right: 14px; }
  /* En mobile escondemos la flechita decorativa para ahorrar 10px */
  .t2262-ticker-label::after { display: none; }
}

/* Respetar usuarios que pidieron reducir movimiento */
@media (prefers-reduced-motion: reduce) {
  .t2262-ticker-content { animation: none; }
  .t2262-ticker-dot { animation: none; }
}

/* ─── Hero (nota destacada) ──────────────────────────────────────────────── */

.t2262-main { padding: 28px 0 56px; }

.t2262-hero {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 32px;
  margin-bottom: 48px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--c-border);
}
.t2262-hero a { display: block; }
.t2262-hero-img {
  aspect-ratio: 16 / 10;
  background: var(--c-bg-soft);
  overflow: hidden;
  border-radius: 4px;
}
.t2262-hero-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.4s;
}
.t2262-hero a:hover .t2262-hero-img img { transform: scale(1.03); }
.t2262-hero-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.t2262-hero .t2262-cat {
  color: var(--c-brand);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}
.t2262-hero h2 {
  font-size: 38px;
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: -0.01em;
  margin: 0 0 14px;
  color: var(--c-text);
}
.t2262-hero p {
  font-size: 17px;
  line-height: 1.5;
  color: var(--c-text-soft);
  margin: 0;
}
@media (max-width: 860px) {
  .t2262-hero { grid-template-columns: 1fr; gap: 18px; }
  .t2262-hero h2 { font-size: 28px; }
  .t2262-hero p { font-size: 15px; }
}

/* ─── Grilla de últimas notas ────────────────────────────────────────────── */

.t2262-section-title {
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--c-text);
  border-left: 4px solid var(--c-brand);
  padding-left: 12px;
  margin: 0 0 24px;
}

.t2262-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
@media (max-width: 980px) { .t2262-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 580px) { .t2262-grid { grid-template-columns: 1fr; } }

.t2262-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: #fff;
  transition: transform 0.15s;
}
.t2262-card:hover { transform: translateY(-2px); }

.t2262-card-img {
  aspect-ratio: 16 / 10;
  background: var(--c-bg-soft);
  overflow: hidden;
  border-radius: 3px;
}
.t2262-card-img img { width: 100%; height: 100%; object-fit: cover; }

.t2262-card .t2262-cat {
  color: var(--c-brand);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.t2262-card h3 {
  font-size: 18px;
  line-height: 1.25;
  font-weight: 700;
  margin: 0;
  color: var(--c-text);
}
.t2262-card .t2262-meta {
  font-size: 12px;
  color: var(--c-text-soft);
  margin-top: auto;
  padding-top: 4px;
}

/* ─── Single — layout 3 columnas estilo infobae ──────────────────────────── */

.t2262-single-grid {
  display: grid;
  grid-template-columns: 240px minmax(0, 640px) 300px;
  gap: 32px;
  align-items: start;
  padding: 28px 0 56px;
  justify-content: center;
}

@media (max-width: 1180px) {
  .t2262-single-grid {
    grid-template-columns: minmax(0, 640px) 300px;
  }
  .t2262-side-left { display: none; }
}
@media (max-width: 980px) {
  .t2262-single-grid {
    grid-template-columns: 1fr;
    max-width: var(--reading-max);
    margin: 0 auto;
  }
  .t2262-side-right { display: none; }
}

/* ─── Sidebar (laterales) — sticky al hacer scroll en escritorio ─────────── */

.t2262-side {
  font-size: 14px;
  align-self: start;
}
/* Sticky en ambas columnas laterales en escritorio. Sin max-height ni
   overflow-y (eso recortaba el banner inferior por arriba al scrollear).
   Si el contenido del sidebar excede la altura del viewport, sticky se
   "despega" naturalmente y vuelve a pegarse cuando entra de nuevo. */
.t2262-side-left,
.t2262-side-right {
  position: sticky;
  top: 90px; /* debajo del header sticky */
}
@media (max-width: 980px) {
  .t2262-side-left,
  .t2262-side-right { position: static; }
}

.t2262-side-block { margin-bottom: 24px; }

/* Bloque "Tendencia" — destaca con fondo y border naranja para diferenciarlo
   visualmente del popurrí editorial. Las notas adentro siguen el mismo estilo
   que las del resto de la lista. */
.t2262-side-hot {
  background: linear-gradient(180deg, rgba(254, 84, 1, 0.08), rgba(254, 84, 1, 0));
  border-left: 3px solid var(--c-brand);
  padding: 12px 12px 4px;
  border-radius: 0 6px 6px 0;
  margin-bottom: 28px;
}
.t2262-side-hot .t2262-side-title {
  color: var(--c-brand);
  border-left: none;
  padding-left: 0;
  margin-bottom: 10px;
  font-size: 13px;
  letter-spacing: 0.08em;
}

.t2262-side-title {
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--c-text);
  border-left: 4px solid var(--c-brand);
  padding-left: 10px;
  margin: 0 0 14px;
}

.t2262-side-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.t2262-side-list li { border-bottom: 1px solid var(--c-border); }
.t2262-side-list li:last-child { border-bottom: none; }
.t2262-side-list a {
  display: flex;
  gap: 10px;
  padding: 10px 0;
  align-items: flex-start;
  transition: opacity 0.15s;
  min-width: 0;
}
.t2262-side-list a:hover { opacity: 0.7; }
.t2262-side-thumb {
  flex: 0 0 56px;
  width: 56px;
  height: 56px;
  background: var(--c-bg-soft);
  overflow: hidden;
  border-radius: 3px;
}
.t2262-side-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.t2262-side-text {
  flex: 1 1 auto;
  min-width: 0;
  font-size: 13px;
  line-height: 1.35;
  font-weight: 600;
  color: var(--c-text);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

/* ─── Espacios promocionales ─────────────────────────────────────────────── */
/* Clases con prefijo "promo-" en lugar de "ad-": los adblockers (uBlock,
   Brave Shields, EasyList) usan reglas de cosmetic filtering tipo
   `[class*="ad-"]` y ocultan / no cargan las imágenes adentro.

   Approach simple: la imagen webp se renderiza en su tamaño natural limitada
   a 300px de ancho. NO hay slot rígido con overflow:hidden — eso generaba
   scrollbars cuando el padre o LiteSpeed sobreescribía dimensiones. La imagen
   ES el slot. */

.t2262-promo {
  display: block;
  margin: 0 auto 20px;
  text-decoration: none;
  max-width: 300px;
}
.t2262-promo img {
  display: block;
  width: 100%;
  height: auto;
  max-width: 100%;
}
.t2262-promo-sticky {
  /* Sin sticky propio: el sidebar derecho ya es sticky en .t2262-side-right.
     Tener double-sticky (padre + hijo) confunde al renderer; el outer gana. */
  margin-top: 0;
}
.t2262-promo-mobile-only { display: none; }
@media (max-width: 980px) {
  .t2262-promo-mobile-only { display: block; }
}
@media (max-width: 720px) {
  .t2262-promo { max-width: 100%; }
}

/* ─── Article (columna central) ──────────────────────────────────────────── */

.t2262-article { min-width: 0; }

.t2262-article .t2262-cat {
  color: var(--c-brand);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 14px;
  display: inline-block;
}
.t2262-article h1 {
  font-size: 38px;
  line-height: 1.12;
  font-weight: 800;
  letter-spacing: -0.015em;
  margin: 0 0 14px;
  color: var(--c-text);
}
.t2262-article .t2262-lead {
  font-size: 21px;
  line-height: 1.4;
  color: var(--c-text-soft);
  margin: 0 0 22px;
  font-weight: 400;
}
.t2262-article .t2262-meta-row {
  font-size: 13px;
  color: var(--c-text-soft);
  border-top: 1px solid var(--c-border);
  border-bottom: 1px solid var(--c-border);
  padding: 10px 0;
  margin-bottom: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
}
.t2262-article .t2262-featured {
  margin: 0 0 24px;
  border-radius: 4px;
  overflow: hidden;
}
.t2262-article .t2262-featured img { width: 100%; }

/* ─── Body de la nota: estilo infobae (sin h2/h3, narrativa corrida) ─────── */

.t2262-article .t2262-body {
  font-size: 18px;
  line-height: 1.65;
  color: var(--c-text);
  font-weight: 400;
}
.t2262-article .t2262-body p { margin: 0 0 18px; }
.t2262-article .t2262-body p:first-child { font-size: 19px; }
.t2262-article .t2262-body strong { font-weight: 700; color: var(--c-text); }
.t2262-article .t2262-body a {
  color: var(--c-link);
  border-bottom: 1px solid rgba(21, 89, 237, 0.3);
}
.t2262-article .t2262-body a:hover { color: var(--c-brand); border-bottom-color: var(--c-brand); }
.t2262-article .t2262-body img,
.t2262-article .t2262-body figure { margin: 22px 0; }
.t2262-article .t2262-body blockquote {
  border-left: 4px solid var(--c-brand);
  padding: 4px 0 4px 18px;
  margin: 22px 0;
  font-style: italic;
  color: var(--c-text-soft);
  font-size: 19px;
}

/* h2/h3 LEGACY (notas viejas que aún tienen subtítulos) — los degradamos a
   párrafo destacado para mantener consistencia visual con las notas nuevas. */
.t2262-article .t2262-body h2,
.t2262-article .t2262-body h3 {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.4;
  margin: 22px 0 6px;
  color: var(--c-text);
  letter-spacing: 0;
}

@media (max-width: 720px) {
  .t2262-article h1 { font-size: 28px; line-height: 1.18; }
  .t2262-article .t2262-lead { font-size: 17px; }
  .t2262-article .t2262-body { font-size: 17px; line-height: 1.6; }
  .t2262-article .t2262-body p:first-child { font-size: 17px; }
}

/* ─── Footer (las reglas viven más abajo, sección "Footer poblado") ───── */

/* ─── Volver al home (link en single) ────────────────────────────────────── */

.t2262-back {
  display: inline-block;
  font-size: 13px;
  color: var(--c-text-soft);
  margin-bottom: 18px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 700;
}
.t2262-back:hover { color: var(--c-brand); }

/* ─── Archive (categoría / tag / autor / fecha) ──────────────────────────── */

.t2262-archive-header {
  margin: 28px 0 28px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--c-border);
}
.t2262-archive-title {
  font-family: "Georgia", "Times New Roman", serif;
  font-size: 36px;
  font-weight: 900;
  letter-spacing: -0.02em;
  color: var(--c-text);
  margin: 0;
  line-height: 1.1;
}
.t2262-archive-title::before {
  content: "Categoría · ";
  color: var(--c-brand);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  display: block;
  margin-bottom: 6px;
  font-family: inherit;
}
body:not(.category) .t2262-archive-title::before { content: ""; display: none; }
.t2262-archive-desc {
  margin-top: 10px;
  font-size: 14px;
  color: var(--c-text-soft);
  line-height: 1.5;
}
.t2262-pagination {
  margin: 36px 0 12px;
  text-align: center;
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}
.t2262-pagination .page-numbers {
  display: inline-block;
  padding: 8px 14px;
  font-size: 13px;
  font-weight: 700;
  border: 1px solid var(--c-border);
  border-radius: 4px;
  color: var(--c-text);
  background: #fff;
  text-decoration: none;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
}
.t2262-pagination .page-numbers:hover { color: var(--c-brand); border-color: var(--c-brand); }
.t2262-pagination .page-numbers.current {
  background: var(--c-brand);
  border-color: var(--c-brand);
  color: #fff;
}
.t2262-empty {
  text-align: center;
  color: var(--c-text-soft);
  margin: 48px 0;
  font-size: 14px;
}
@media (max-width: 580px) {
  .t2262-archive-title { font-size: 28px; }
}

/* ─── Share bar (botones compartir abajo del featured) ──────────────────── */

.t2262-share {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  padding: 12px 0;
  margin: 0 0 22px;
  border-top: 1px solid var(--c-border);
  border-bottom: 1px solid var(--c-border);
}
.t2262-share-label {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-text-soft);
  margin-right: 4px;
}
.t2262-share-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #f3f4f6;
  color: #1f2937;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.12s ease, background 0.12s ease, color 0.12s ease;
  position: relative;
  padding: 0;
}
.t2262-share-btn:hover { transform: translateY(-1px); }
.t2262-share-wa:hover  { background: #25d366; color: #fff; }
.t2262-share-x:hover   { background: #000;    color: #fff; }
.t2262-share-fb:hover  { background: #1877f2; color: #fff; }
.t2262-share-copy:hover { background: var(--c-brand); color: #fff; }
.t2262-copy-toast {
  position: absolute;
  bottom: calc(100% + 6px);
  left: 50%;
  transform: translateX(-50%) scale(0.9);
  background: #111827;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 8px;
  border-radius: 4px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.18s ease, transform 0.18s ease;
}
.t2262-share-copy.is-copied .t2262-copy-toast {
  opacity: 1;
  transform: translateX(-50%) scale(1);
}

/* ─── Tags / Mencionados (actores extraídos por la IA) ──────────────────── */

.t2262-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin: 28px 0 8px;
  padding-top: 18px;
  border-top: 1px solid var(--c-border);
}
.t2262-tags-label {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-text-soft);
  margin-right: 4px;
}
.t2262-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  color: var(--c-text);
  background: var(--c-bg-soft);
  padding: 5px 11px;
  border-radius: 999px;
  text-decoration: none;
  border: 1px solid var(--c-border);
  transition: background 0.12s ease, color 0.12s ease, border-color 0.12s ease;
}
.t2262-tag:hover {
  background: var(--c-brand);
  color: #fff;
  border-color: var(--c-brand);
}

/* ─── Trending — badges en single, cards de home, footer "Más noticias" ──── */

/* (b) Pretitle del article: categoría + badge "En tendencia" en una línea */
.t2262-pretitle {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}
.t2262-pretitle .t2262-cat { margin-bottom: 0; }
.t2262-trending-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: var(--c-brand);
  color: #fff;
  padding: 3px 9px;
  border-radius: 999px;
  box-shadow: 0 0 0 1px rgba(254, 84, 1, 0.35), 0 4px 14px rgba(254, 84, 1, 0.25);
}

/* (a) Hot flag sobre imágenes (hero + cards de home) */
.t2262-hot-flag {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 2;
  background: var(--c-brand);
  color: #fff;
  font-size: 14px;
  line-height: 1;
  padding: 5px 8px;
  border-radius: 4px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.3);
  pointer-events: none;
}
.t2262-hero-img,
.t2262-card-img { position: relative; }

/* (a-bonus) Card de home en tendencia: border-top naranja sutil */
.t2262-card-hot { box-shadow: 0 0 0 1px var(--c-brand) inset; }
.t2262-card-hot .t2262-card-img { border-top: 3px solid var(--c-brand); }

/* ─── Sección "Más noticias" al final del single (estilo Infobae) ────────── */

.t2262-more {
  margin: 56px 0 32px;
  padding-top: 28px;
  border-top: 4px solid var(--c-brand);
}
.t2262-more-title {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.3px;
  margin: 0 0 22px;
  color: var(--c-text);
}
.t2262-more-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media (max-width: 1100px) {
  .t2262-more-grid { grid-template-columns: repeat(2, 1fr); gap: 18px; }
}
@media (max-width: 580px) {
  .t2262-more-grid { grid-template-columns: 1fr; gap: 14px; }
  .t2262-more-card { display: grid !important; grid-template-columns: 110px 1fr; gap: 12px; align-items: stretch; }
  .t2262-more-card .t2262-more-img { aspect-ratio: 1 / 1; }
  .t2262-more-card .t2262-more-body { padding: 8px 10px 8px 0; }
}
.t2262-more-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 6px;
  overflow: hidden;
  text-decoration: none;
  color: var(--c-text);
  transition: transform 0.16s ease, box-shadow 0.16s ease;
  border: 1px solid var(--c-border);
}
.t2262-more-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.08);
}
/* (c) Card del footer "Más noticias" si la nota es trending */
.t2262-more-card-hot {
  border-top: 3px solid var(--c-brand);
}
.t2262-more-img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  background-size: cover;
  background-position: center;
  background-color: var(--c-bg-soft);
}
.t2262-more-img-empty {
  background: repeating-linear-gradient(45deg, var(--c-bg-soft), var(--c-bg-soft) 8px, #fff 8px, #fff 16px);
}
.t2262-more-body {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 12px 14px 14px;
}
.t2262-more-hot-tag {
  align-self: flex-start;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-brand);
  background: rgba(254, 84, 1, 0.12);
  padding: 2px 7px;
  border-radius: 3px;
}
.t2262-more-cat {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--c-brand);
}
.t2262-more-headline {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 16px;
  line-height: 1.3;
  font-weight: 700;
  color: var(--c-text);
}

/* ─── Footer poblado ─────────────────────────────────────────────────────── */

.t2262-footer {
  background: #2D2D2D;
  color: #cbd5e1;
  padding: 40px 0 24px;
  margin-top: 48px;
}
.t2262-footer .t2262-logo {
  color: var(--c-brand);
  font-size: 38px;
  margin-bottom: 8px;
}
.t2262-footer .t2262-logo span { color: #fff; }
.t2262-footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 36px;
  align-items: start;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 18px;
}
@media (max-width: 860px) {
  .t2262-footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
}
@media (max-width: 480px) {
  .t2262-footer-grid { grid-template-columns: 1fr; gap: 22px; }
}
.t2262-footer-tagline {
  font-size: 13px;
  line-height: 1.5;
  color: #94a3b8;
  margin: 8px 0 0;
  max-width: 320px;
}
.t2262-footer-title {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #fff;
  margin: 0 0 12px;
  border-left: 3px solid var(--c-brand);
  padding-left: 10px;
}
.t2262-footer-list,
.t2262-footer-social {
  list-style: none;
  margin: 0;
  padding: 0;
}
.t2262-footer-list li,
.t2262-footer-social li { margin-bottom: 6px; }
.t2262-footer-list a,
.t2262-footer-social a {
  color: #cbd5e1;
  font-size: 13px;
  text-decoration: none;
  transition: color 0.15s;
}
.t2262-footer-list a:hover,
.t2262-footer-social a:hover { color: var(--c-brand); }
.t2262-footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  font-size: 12px;
  color: #94a3b8;
}

/* ─────────────────────────────────────────────────────────────────────────
   Widget de clima de Necochea (spec 14)
   - Variante --sidebar: dentro de .t2262-side-right, desktop only.
   - Variante --inline:  dentro del article, mobile only.
   ───────────────────────────────────────────────────────────────────────── */
.t2262-weather {
  background: var(--c-card, #ffffff);
  border: 1px solid var(--c-border, #e5e7eb);
  border-radius: 10px;
  padding: 14px 14px 12px;
  margin: 16px 0;
  color: var(--c-text, #1f2937);
  font-family: inherit;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
}
.t2262-weather-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  color: #6b7280;
  margin-bottom: 6px;
}
.t2262-weather-loc { font-weight: 600; color: var(--c-text, #1f2937); }
.t2262-weather-time { font-variant-numeric: tabular-nums; }
.t2262-weather-current {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 4px 0 8px;
}
.t2262-weather-icon {
  display: inline-flex;
  color: var(--c-brand, #f97316);
  flex-shrink: 0;
}
.t2262-weather-temp {
  font-size: 36px;
  font-weight: 700;
  line-height: 1;
  font-variant-numeric: tabular-nums;
  color: var(--c-text, #1f2937);
}
.t2262-weather-desc {
  font-size: 13px;
  color: #6b7280;
  margin-left: auto;
  text-align: right;
  line-height: 1.2;
}
.t2262-weather-stats {
  display: flex;
  gap: 14px;
  font-size: 12px;
  color: #6b7280;
  padding: 6px 0;
  border-top: 1px solid var(--c-border, #e5e7eb);
  border-bottom: 1px solid var(--c-border, #e5e7eb);
}
.t2262-weather-forecast {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  margin-top: 10px;
}
.t2262-weather-fc {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  font-size: 11px;
  color: #6b7280;
}
.t2262-weather-fc .hour { font-variant-numeric: tabular-nums; }
.t2262-weather-fc .icon { color: var(--c-brand, #f97316); display: inline-flex; }
.t2262-weather-fc .icon svg { width: 22px; height: 22px; }
.t2262-weather-fc .temp {
  font-size: 13px;
  font-weight: 600;
  color: var(--c-text, #1f2937);
  font-variant-numeric: tabular-nums;
}

/* Visibilidad por variante:
   - sidebar: visible en desktop (oculta naturalmente en mobile por su contenedor padre)
   - inline:  oculta en desktop, visible en mobile
   - home:    visible siempre (centrada, en el flujo principal)
*/
.t2262-weather--inline { display: none; }
.t2262-weather--home {
  display: block;
  max-width: 720px;
  margin: 22px auto 28px;
}
@media (max-width: 980px) {
  .t2262-weather--sidebar { display: none; }
  .t2262-weather--inline {
    display: block;
    margin: 14px 0 18px;
  }
  .t2262-weather--home {
    max-width: 100%;
    margin: 16px 0 22px;
  }
}

/* ─── Home — Hero con barra lateral "Más leídas" ─────────────────────────── */

.t2262-hero-row {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 36px;
  align-items: start;
  margin-bottom: 48px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--c-border);
}
/* Dentro del hero-row, el hero pasa a 1 columna vertical (imagen arriba,
   texto abajo). Sin esto, el grid 1.4fr/1fr del hero queda comprimido en
   la columna izquierda y el título se rompe en demasiadas líneas. */
.t2262-hero-row .t2262-hero {
  grid-template-columns: 1fr;
  gap: 18px;
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: 0;
}
.t2262-hero-row .t2262-hero-img {
  aspect-ratio: 16 / 9;
}
.t2262-hero-row .t2262-hero-text h2 {
  font-size: 32px;
  line-height: 1.15;
}

.t2262-trending-side .t2262-section-title {
  margin-bottom: 16px;
}
.t2262-trending-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
}
.t2262-trending-list li {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid var(--c-border);
}
.t2262-trending-list li:last-child { border-bottom: 0; }
.t2262-trending-num {
  font-family: "Georgia", "Times New Roman", serif;
  font-size: 26px;
  font-weight: 700;
  line-height: 1;
  color: var(--c-brand);
}
.t2262-trending-body { display: flex; flex-direction: column; gap: 4px; }
.t2262-trending-title {
  font-size: 15px;
  line-height: 1.3;
  font-weight: 700;
  color: var(--c-text);
}
.t2262-trending-title:hover { color: var(--c-brand); }

@media (max-width: 980px) {
  .t2262-hero-row {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

/* ─── Home — Bloques por sección debajo de la grilla ─────────────────────── */

.t2262-section-block {
  margin-top: 48px;
  padding-top: 28px;
  border-top: 1px solid var(--c-border);
}
.t2262-section-title-link a {
  color: inherit;
  text-decoration: none;
}
.t2262-section-title-link a:hover { color: var(--c-brand); }
.t2262-section-title-link span { color: var(--c-brand); margin-left: 6px; }

.t2262-grid.t2262-grid-4 {
  grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 1100px) {
  .t2262-grid.t2262-grid-4 { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 820px) {
  .t2262-grid.t2262-grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px) {
  .t2262-grid.t2262-grid-4 { grid-template-columns: 1fr; }
}

/* ─── Sport card (variante solo para el bloque Deportes del home) ────────── */

.t2262-grid--sport { gap: 22px; }

.t2262-sport-card {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: 8px;
  background: linear-gradient(135deg, #c33e00 0%, #FE5401 70%, #ff7a3a 100%);
  box-shadow: 0 4px 18px rgba(254, 84, 1, 0.18);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.t2262-sport-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(254, 84, 1, 0.38);
}

.t2262-sport-card__link {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
  color: #fff;
  text-decoration: none;
}

.t2262-sport-card__img {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.t2262-sport-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.t2262-sport-card:hover .t2262-sport-card__img img { transform: scale(1.07); }

/* Capa de degradado: oscuro abajo (legibilidad del texto) + tinte naranja
   en la mitad baja. En cards sin imagen el fondo del article ya es naranja,
   así que el overlay aclara un poco la zona alta. */
.t2262-sport-card__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top,
      rgba(76, 19, 0, 0.95)  0%,
      rgba(195, 62, 0, 0.78) 28%,
      rgba(254, 84, 1, 0.32) 55%,
      transparent            80%);
  pointer-events: none;
}
.t2262-sport-card--no-img .t2262-sport-card__overlay {
  background:
    linear-gradient(to top,
      rgba(76, 19, 0, 0.65) 0%,
      transparent           80%);
}

.t2262-sport-card__content {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.t2262-sport-card__cat {
  align-self: flex-start;
  background: #fff;
  color: var(--c-brand-dark);
  padding: 4px 10px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 2px;
  line-height: 1.2;
}

.t2262-sport-card__title {
  font-size: 18px;
  line-height: 1.22;
  font-weight: 700;
  margin: 0;
  color: #fff;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.45);
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.t2262-sport-card__date {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
}

/* Llamita 🔥 en tendencia: arriba a la derecha de la card sport */
.t2262-sport-card__hot {
  position: absolute;
  top: -8px;
  right: 0;
  font-size: 18px;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.4));
}

/* Card sin imagen: el fondo gradient sirve de visual; subimos el peso
   tipográfico para compensar la falta de imagen. */
.t2262-sport-card--no-img .t2262-sport-card__title { font-size: 22px; }
.t2262-sport-card--no-img .t2262-sport-card__content {
  top: 22px;
  bottom: 22px;
  justify-content: space-between;
}

/* Mobile: aspect ratio más panorámico para que el título se lea en 2-3
   líneas, no en 5. La grid pasa a 1 col en <=520 (heredado de grid-4). */
@media (max-width: 820px) {
  .t2262-sport-card { aspect-ratio: 4 / 4.5; }
}
@media (max-width: 520px) {
  .t2262-sport-card { aspect-ratio: 16 / 10; }
  .t2262-sport-card__title { font-size: 17px; -webkit-line-clamp: 3; }
  .t2262-sport-card__content { left: 16px; right: 16px; bottom: 16px; }
}

