/* ============================================================
   GEO — /contenido/  (page-contenido.php)
   Figma INICIO · Desktop-3 (132:323) — TODAS las secciones
   Valores px exactos del nodo (regla 0).
   ============================================================ */

/* ── BANNER 100svh — Figma Desktop-3 ───────────────────────────
   Layout:
     - Total = calc(100svh − 68px nav-spacer) → primer pantalla EXACTA
     - Grid de 2 filas: 768fr (imagen) / 108fr (strip blanco con subnav)
       = proporción Figma exact (image 768 px / strip 108 px).
   Entrada de items: opacity 0 + y +60 → 0 (stagger 0.08, power3.out 0.7s),
   mismo patrón que CTAs del hero /inicio/. */
.contenido-banner {
  position: relative;
  width: 100%;
  height: calc(100svh - 68px);
  min-height: 560px;                        /* fallback en viewports bajos */
  display: grid;
  grid-template-rows: 768fr 108fr;           /* Figma exact */
  background: #ffffff;
  overflow: hidden;
}
.contenido-banner__image {
  position: relative;
  overflow: hidden;
}
.contenido-banner__img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;                          /* llena toda la fila sin deformar */
  object-position: center;
}
.contenido-banner__strip {
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 32px;
}

/* Sub-nav dentro del strip: links Montserrat SemiBold 16 (Figma 135:439/441/443) */
.contenido-banner__nav { width: 100%; }
.contenido-banner__nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 80px;                                   /* aire generoso entre los 3 enlaces */
}
.contenido-banner__link {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;                            /* SemiBold */
  font-size: 16px;
  line-height: 19.505px;                       /* Figma exact */
  letter-spacing: 0;
  color: #000000;
  text-decoration: none;
  position: relative;
  padding-bottom: 4px;
  transition: opacity 0.2s ease;
}
.contenido-banner__link::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.25s cubic-bezier(.2,.7,.2,1);
}
.contenido-banner__link:hover::after { transform: scaleX(1); }

/* Pre-paint hide: JS (.contenido-subnav[data-subnav-anim="pending"]) ya targetea
   `.contenido-subnav__item` — el banner__nav también lleva la clase .contenido-subnav
   para reusar el mismo handler GSAP sin cambios. */
.contenido-subnav[data-subnav-anim="pending"] .contenido-subnav__item {
  opacity: 0;
}
@media (prefers-reduced-motion: reduce) {
  .contenido-subnav[data-subnav-anim="pending"] .contenido-subnav__item { opacity: 1; }
}

/* Responsive — en mobile el banner reduce min-height y el strip se acomoda */
@media (max-width: 768px) {
  .contenido-banner { min-height: 420px; }
  .contenido-banner__nav-list { gap: 24px; flex-wrap: wrap; }
  .contenido-banner__link { font-size: 14px; }
}
.contenido-subnav__list {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  max-width: 1200px;
  display: flex;
  justify-content: center;
  gap: 80px;                                /* aire generoso entre los 3 anchors */
}
.contenido-subnav__link {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 19.505px;
  letter-spacing: 0;
  color: #000000;
  text-decoration: none;
  position: relative;
  padding-bottom: 4px;
  transition: opacity 0.2s ease;
}
.contenido-subnav__link::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.25s cubic-bezier(.2,.7,.2,1);
}
.contenido-subnav__link:hover::after { transform: scaleX(1); }

/* ── BLOG ──────────────────────────────────────────────── */

.contenido-blog {
  background: #ffffff;
  padding: 80px 32px 60px;
}

/* Layout Figma Rect 349 (Desktop-3):
     IZQ (~41%): foto DSC09928 1 (614×708) con título "Blog" Kapakana 200
                 #4c1717 SUPERPUESTO arriba-izq (Figma title y=2846, image
                 y=2915 → -69 px sobre la foto).
     DER (~55%): search bar + 4 tabs + carrusel 3 cards visibles + flechas. */
.contenido-blog__layout {
  display: grid;
  grid-template-columns: minmax(0, 614fr) minmax(0, 818fr);  /* 41:55 Figma exact */
  gap: 56px;
  max-width: 1761px;
  margin: 0 auto;
  align-items: start;
}

/* Panel IZQ — imagen + título superpuesto */
.contenido-blog__side {
  position: relative;
  width: 100%;
  aspect-ratio: 614 / 708;                /* Figma exact */
  overflow: visible;                       /* permite que el título se salga arriba */
}
.contenido-blog__side-img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}
.contenido-blog__title {
  position: absolute;
  top: -50px;                              /* Figma: title 69px sobre la foto */
  left: -10px;
  font-family: 'Kapakana', cursive;
  font-weight: 400;
  font-size: 200px;                        /* Figma exact */
  line-height: 200px;                      /* Figma exact */
  letter-spacing: 0;
  color: #4c1717;                          /* Figma exact: vino oscuro */
  margin: 0;
  pointer-events: none;
  user-select: none;
  z-index: 2;
}

/* Panel DER — search + tabs + carrusel */
.contenido-blog__main {
  display: flex;
  flex-direction: column;
  gap: 24px;
  min-width: 0;
}

/* Search bar (Figma 774×57) */
.contenido-blog__search {
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 774px;                       /* Figma exact */
  margin: 0;
  border: 1px solid rgba(103, 103, 103, 0.9); /* Figma stroke #676767 @0.9 */
  border-radius: 2px;                      /* Figma cornerRadius 2 */
  padding: 0 16px;
  background: #ffffff;
  height: 57px;                            /* Figma exact */
  box-sizing: border-box;
}
.contenido-blog__search-input {
  flex: 1 1 auto;
  border: none;
  outline: none;
  background: transparent;
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  font-size: 16px;                          /* Figma exact */
  line-height: 19.505px;                    /* Figma exact */
  letter-spacing: 0;
  color: #515151;                           /* Figma placeholder color */
  height: 100%;
}
.contenido-blog__search-input::placeholder { color: #515151; }
.contenido-blog__search-btn {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  padding: 0 4px;
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
}

/* Category tabs — Figma: 4 textos centrados separados por líneas verticales */
.contenido-blog__tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  gap: 24px;
  margin: 0;
}
.contenido-blog__tab {
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;                          /* Medium */
  font-size: 15px;                            /* Figma exact */
  line-height: 18.285px;                      /* Figma exact */
  letter-spacing: 0;
  color: #000000;
  text-decoration: none;
  padding: 4px 0;
  transition: opacity 0.2s ease;
}
.contenido-blog__tab:hover    { opacity: 0.6; }
.contenido-blog__tab.is-active { font-weight: 700; }
.contenido-blog__tab-sep {
  display: inline-block;
  width: 1px;
  height: 23px;                              /* Figma LINE 1/2/3 = 0×23 */
  background: #000000;
}

/* CARRUSEL — track horizontal con 3 cards visibles + flechas prev/next.
   JS gestiona el desplazamiento por click en las flechas. */
.contenido-blog__carousel {
  position: relative;
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) 48px;
  gap: 12px;
  align-items: center;
}
.contenido-blog__viewport {
  overflow: hidden;
  min-width: 0;
}
.contenido-blog__track {
  display: flex;
  gap: 20px;                               /* Figma cards 255 + gap ~20 */
  transition: transform 0.45s cubic-bezier(.2,.7,.2,1);
  will-change: transform;
}
.contenido-blog__track > .contenido-card {
  flex: 0 0 calc((100% - 40px) / 3);       /* 3 cards visibles a la vez */
}

/* Flechas Polygon 3/4 — Figma 33×33 #2f2f2f @ 0.5 cornerRadius 5 */
.contenido-blog__arrow {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  transition: transform 0.25s cubic-bezier(.2,.7,.2,1), opacity 0.2s ease;
}
.contenido-blog__arrow:hover  { transform: scale(1.1); }
.contenido-blog__arrow:active { transform: scale(0.95); transition-duration: 0.12s; }
.contenido-blog__arrow:focus-visible { outline: 2px solid #4c1717; outline-offset: 4px; border-radius: 50%; }
.contenido-blog__arrow[disabled] {
  opacity: 0.25;
  cursor: not-allowed;
  pointer-events: none;
}
.contenido-blog__empty {
  text-align: center;
  font-family: 'Montserrat', sans-serif;
  font-size: 18px;
  color: #515151;
  padding: 64px 0;
  flex: 1 1 100%;
}

@media (max-width: 1200px) {
  .contenido-blog__layout { grid-template-columns: 1fr; gap: 40px; }
  .contenido-blog__side { aspect-ratio: 614 / 500; max-width: 700px; margin: 0 auto; }
  .contenido-blog__title { font-size: 140px; line-height: 140px; left: 0; }
}
@media (max-width: 768px) {
  .contenido-blog__title { font-size: 96px; line-height: 96px; }
  .contenido-blog__track > .contenido-card { flex: 0 0 calc((100% - 20px) / 2); }
}
@media (max-width: 480px) {
  .contenido-blog__track > .contenido-card { flex: 0 0 100%; }
}
.contenido-blog__empty {
  grid-column: 1 / -1;
  text-align: center;
  font-family: 'Montserrat', sans-serif;
  font-size: 18px;
  color: #515151;
  padding: 64px 0;
}

/* ── CARD (template Figma) ─────────────────────────────── */
/* Locked: 144:486 w=639 h=746 → aspect-ratio 639/746 */
.contenido-card {
  display: flex;
  flex-direction: column;
}
.contenido-card__link {
  display: block;
  text-decoration: none;
  color: inherit;
}
.contenido-card__img-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 639 / 746;
  overflow: hidden;
  background: #ebebeb;
  flex-shrink: 0;           /* impide que la imagen ceda ante el título */
}
.contenido-card__img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.4s cubic-bezier(.2,.7,.2,1);
}
.contenido-card__link:hover .contenido-card__img { transform: scale(1.04); }

/* Prefijo .contenido-blog eleva especificidad a (0,2,0)=20
   y gana sobre .elementor-kit-21 h2 (0,1,1)=11 que fuerza Raleway 44px */
.contenido-blog .contenido-card__title {
  font-family: 'Montserrat', sans-serif !important;  /* belt+suspenders vs Elementor kit */
  font-weight: 500 !important;                       /* Medium — Figma 144:495 */
  font-size: 15px !important;                        /* Figma exact */
  line-height: 18.285px !important;                  /* Figma exact */
  letter-spacing: 0 !important;
  color: #000000 !important;
  text-align: center !important;
  margin: 16px 8px 0;
  /* Altura fija = exactamente 3 líneas (título más largo mide 3 líneas a 212px); cards iguales */
  height: calc(18.285px * 3);
  overflow: hidden;
  display: -webkit-box !important;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

/* ── PODCAST BANNER · Figma 160:70 (descarga 96 1) + título overlay ──
   FULL-SCREEN real: 100vh/100svh de alto, full-bleed a lo ancho del viewport.
   La imagen rellena con `object-fit: cover; object-position: center` (cropea
   inteligente, sin franjas blancas ni espacios).
   data-dark-hero ⇒ el nav queda transparente mientras esta sección está detrás
   del header. */
.contenido-pod-banner {
  position: relative;
  width: 100vw;
  /* Full-bleed: rompe el ancho del padre si tuviera padding/margen lateral. */
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  height: 100vh;
  height: 100svh;                          /* iOS Safari + mobile barras */
  min-height: 560px;                       /* fallback en viewports muy bajos */
  overflow: hidden;
  background: #000;
}
.contenido-pod-banner__img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;                       /* llena 100% sin franjas */
  object-position: center center;
}
.contenido-pod-banner__tint {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.28);         /* tint para legibilidad del texto blanco */
  z-index: 1;
}
.contenido-pod-banner__overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #ffffff;
  pointer-events: none;
  padding: 32px;
  box-sizing: border-box;
}
.contenido-pod-banner__title {
  font-family: 'Kapakana', cursive;
  font-weight: 400;
  font-size: 200px;                         /* Figma exact */
  line-height: 200px;                       /* Figma exact */
  letter-spacing: 0;
  color: #ffffff;
  margin: 0;
  text-shadow: 0 4px 32px rgba(0, 0, 0, 0.55);
}
.contenido-pod-banner__kicker {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;                          /* Bold */
  font-size: 48px;                           /* Figma exact */
  line-height: 58.512px;                     /* Figma exact */
  letter-spacing: 2.88px;                    /* Figma exact */
  color: #ffffff;
  margin: 8px 0 0;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.55);
}
@media (max-width: 768px) {
  .contenido-pod-banner__title  { font-size: 96px; line-height: 96px; }
  .contenido-pod-banner__kicker { font-size: 24px; line-height: 1.2; letter-spacing: 1.44px; }
}

/* ── Backwards-compat (si alguna otra página todavía usa .contenido-transition) ── */
.contenido-transition { width: 100%; overflow: hidden; }
.contenido-transition__img { width: 100%; height: auto; display: block; object-fit: cover; max-height: 70svh; }

/* ── PODCAST "Échele Ojo" — Figma 159:66 / 160:68 / 160:77+78 / 160:85+87 ──
   - Title "Échele Ojo" Kapakana 200 / lh 200 #ffffff
   - Kicker "PODCAST" Montserrat Bold 48 / lh 58.512 / ls 2.88 #ffffff
   - Cards EPISODIO 1/2 — Montserrat Bold 48 / lh 58.512 / ls 2.88 #ffffff
   Fondo oscuro para que destaque el texto blanco. */
/* ── PODCAST EPISODIOS · Figma 160:77/78 + 160:85/87 + 160:89 ──
   Fondo BLANCO (Desktop-3 hereda #fff). 2 cards lado a lado con título
   OVERLAY centrado-abajo sobre cada imagen (Bold 48 ls 2.88 #fff).
   Tint gradiente para legibilidad. Una flecha derecha (Polygon 5). */
.contenido-pod {
  position: relative;
  background: #ffffff;                       /* Figma: Desktop-3 #fff */
  padding: 120px 32px 100px;
}
.contenido-pod__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr)) auto;   /* 2 cards + flecha */
  align-items: center;
  gap: 32px;
  max-width: 1600px;                          /* 2×744 + 32 gap + flecha + padding */
  margin: 0 auto;
}
.contenido-pod__card {
  position: relative;
  width: 100%;
  aspect-ratio: 744 / 846;                    /* Figma exact */
  overflow: hidden;
  background: #1a1a1a;
}
.contenido-pod__card-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}
/* Gradiente abajo para que el título blanco sea legible sobre fotos claras */
.contenido-pod__card-tint {
  position: absolute;
  inset: auto 0 0 0;
  height: 45%;
  background: linear-gradient(180deg,
    rgba(0,0,0,0)   0%,
    rgba(0,0,0,0.45) 60%,
    rgba(0,0,0,0.65) 100%);
  pointer-events: none;
  z-index: 1;
}
.contenido-pod__card-title {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 6.5%;                               /* Figma: title ~86% desde top de la foto */
  margin: 0;
  padding: 0 24px;
  z-index: 2;
  /* Figma exact: Montserrat Bold 48 / lh 58.512 / ls 2.88 #fff CENTER */
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 48px;
  line-height: 58.512px;
  letter-spacing: 2.88px;
  color: #ffffff;
  text-align: center;
  text-shadow: 0 2px 12px rgba(0,0,0,0.5);
}

/* Flecha derecha — Polygon 5 (Figma 33×33 #2f2f2f @ 0.5 cornerRadius 5) */
.contenido-pod__next {
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: center;
  transition: transform 0.25s cubic-bezier(.2,.7,.2,1);
}
.contenido-pod__next:hover  { transform: scale(1.12); }
.contenido-pod__next:active { transform: scale(0.95); }
.contenido-pod__next:focus-visible { outline: 2px solid #4c1717; outline-offset: 4px; border-radius: 50%; }

@media (max-width: 900px) {
  .contenido-pod__grid {
    grid-template-columns: 1fr;
  }
  .contenido-pod__next { justify-self: center; }
  .contenido-pod__card-title { font-size: 32px; line-height: 1.2; letter-spacing: 1.92px; bottom: 8%; }
}
@media (max-width: 480px) {
  .contenido-pod__card-title { font-size: 24px; line-height: 1.2; letter-spacing: 1.44px; }
}

/* ── FOTO FULL-SCREEN · 100vh/100svh full-bleed (nodo Figma "DSC_0172 1") ── */
.contenido-fullphoto {
  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  height: 100vh;
  height: 100svh;
  min-height: 560px;
  overflow: hidden;
  background: #000;
}
.contenido-fullphoto__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* ── PHOTO GRID · Figma Desktop-3 (382:5/383:11/383:9) ──────────────────────
   Frame 1731 px. Fotos local: 20 (537×488) · 569 (552×488) · 1147 (569×488).
   Span 1696 px = 98% (full-bleed). Gaps asimétricos 12 / 26 px.
   Padding-top 224 px (gap desde la foto full-screen DSC_0172).
   ─────────────────────────────────────────────────────────────────────────── */
.contenido-photos {
  background: #ffffff;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: 224px 1% 40px;                    /* bottom acotado: .redes-intro ya tiene padding-top 80 */
  box-sizing: border-box;
}
.contenido-photos__grid {
  display: grid;
  /* 5 tracks: foto · gap · foto · gap · foto — gaps asimétricos del Figma */
  grid-template-columns: 537fr 12fr 552fr 26fr 569fr;
  aspect-ratio: 1696 / 488;                  /* fila completa = 488 px de alto Figma */
  width: 100%;
  max-width: none;
  margin: 0;
}
.contenido-photos__grid > .contenido-photos__cell:nth-of-type(1) { grid-column: 1; }
.contenido-photos__grid > .contenido-photos__cell:nth-of-type(2) { grid-column: 3; }
.contenido-photos__grid > .contenido-photos__cell:nth-of-type(3) { grid-column: 5; }
.contenido-photos__cell {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;                          /* clip del zoom-out scrubbed */
}
.contenido-photos__cell img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}
@media (max-width: 768px) {
  .contenido-photos {
    padding: 120px 16px 80px;
  }
  .contenido-photos__grid {
    grid-template-columns: 1fr;
    aspect-ratio: auto;                      /* stack vertical: cada foto su ratio */
    gap: 12px;
  }
  .contenido-photos__grid > .contenido-photos__cell:nth-of-type(1),
  .contenido-photos__grid > .contenido-photos__cell:nth-of-type(2),
  .contenido-photos__grid > .contenido-photos__cell:nth-of-type(3) { grid-column: 1; }
  .contenido-photos__cell {
    height: auto;
    aspect-ratio: 555 / 488;                 /* promedio */
  }
  .contenido-photos__cell img { height: 100%; }
}

/* (Sección REDES SOCIALES — ahora vía partials/redes-section.php, estilos en redes.css)
   Override SOLO en /contenido/: en /redes-sociales/ el hero deja un gap Figma de
   679 px arriba de las cards (que ahí se ve bien porque el hero es la primera
   sección). En /contenido/, encima ya hay foto full-screen + photo grid + redes
   intro, así que ese 679 se siente vacío. Lo equilibro con el gap al footer. */
.page-template-page-contenido-php .redes-cards {
  padding-top: 280px;       /* ↓ desde 679 px (redes.css default) */
  padding-bottom: 260px;    /* ↑ desde 100 px → aire al footer (≈ Figma 267) */
}
@media (max-width: 1100px) {
  .page-template-page-contenido-php .redes-cards {
    padding-top: 160px;
    padding-bottom: 160px;
  }
}
@media (max-width: 768px) {
  .page-template-page-contenido-php .redes-cards {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}

/* ══════════════════════════════════════════════════════════════════════════
   SINGLE POST · Figma Rectangle 510 (264:18), 1761×5861
   Layout: title Kapakana 90 CENTER + meta + img-left/text-right + form.
   Valores leídos 1:1 de los nodos 264:28/30/32/34, 264:26, 264:41,
   265:47/48/54/55/59/60/62/63/65/66/68/72/74/76.
   ══════════════════════════════════════════════════════════════════════════ */
.geo-single { background: #ffffff; }

.geo-single__container {
  max-width: 1481px;                          /* Figma: input width */
  margin: 0 auto;
  padding: 252px 40px 0;                      /* top = title.y - rect.y */
}

/* Título — Kapakana 90 #4c1717 CENTER */
.geo-single__title {
  font-family: 'Kapakana', cursive;
  font-weight: 400;
  font-size: 90px;
  line-height: 90px;
  letter-spacing: 0;
  color: #4c1717;
  text-align: center;
  margin: 0 0 18px;
}

/* Meta row — Montserrat Medium 20/24.38 #000, centrada */
.geo-single__meta {
  display: flex;
  justify-content: center;
  align-items: baseline;
  gap: 48px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 20px;
  line-height: 24.38px;
  color: #000000;
  margin: 0 0 252px;                          /* gap a la imagen (Figma) */
}
.geo-single__meta time,
.geo-single__meta span { margin: 0; }

/* Body 2-col: imagen LEFT (372×753) + texto derecha (gap 97px) */
/* Locked: 264:37/39/43 — Montserrat Medium 500, 28px, lh 34.132px, ls 1.68 */
.geo-single__body {
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 28px;
  line-height: 34.132px;
  letter-spacing: 1.68px;
  color: #000000;
}
.geo-single__hero {
  float: left;
  width: 372px;                               /* Figma exact */
  margin: 0 97px 32px 0;                      /* gap 97 a la col derecha */
}
.geo-single__hero-img {
  width: 100%;
  height: 753px;                              /* Figma exact */
  object-fit: cover;
  display: block;
}
.geo-single__clear { clear: both; }
.geo-single__body > p:first-of-type { margin-top: 24px; }
.geo-single__body p  { margin: 0 0 24px; }
/* Locked: 264:41 — Montserrat Bold 700, 30px, lh 36px, ls 1.8px */
.geo-single__body h2 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 30px;
  line-height: 36px;
  letter-spacing: 1.8px;
  color: #000000;
  margin: 0 0 24px;
}
.geo-single__body h3 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 24px;
  margin: 32px 0 12px;
}
.geo-single__body img { max-width: 100%; height: auto; }
.geo-single__body a   { color: #4c1717; }

/* ── COMMENT FORM · Figma 265:* ────────────────────────────────────────── */
.geo-single__comments {
  padding: 200px 0 120px;                     /* gap a "Deja un comentario" */
}
.geo-single__comments .comments-title,
.geo-single__comments .comment-reply-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;                           /* ExtraBold (265:47) */
  font-size: 48px;
  line-height: 58.51px;
  letter-spacing: 0;
  color: #000000;
  margin: 0 0 24px;
}
.geo-single__comments .comment-notes {
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  font-size: 30px;                            /* Figma 265:48 */
  line-height: 36.57px;
  color: #000000;
  margin: 0 0 32px;
}
.geo-single__comments .comment-form p {
  margin: 0 0 30px;
}
.geo-single__comments .comment-form label {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-style: italic;                         /* Medium Italic (265:54/59/62/65) */
  font-size: 32px;
  line-height: 39.01px;
  color: #515151;
  margin: 0 0 18px;
}
.geo-single__comments .comment-form .required {
  color: #4c1717;
}
.geo-single__comments .comment-form input[type=text],
.geo-single__comments .comment-form input[type=email],
.geo-single__comments .comment-form input[type=url] {
  width: 100%;
  height: 53px;                               /* Figma exact */
  border: 1px solid rgba(103,103,103,0.9);    /* #676767 op 0.9 */
  border-radius: 2px;
  background: transparent;
  padding: 0 16px;
  font-family: 'Montserrat', sans-serif;
  font-size: 18px;
  color: #000000;
  box-sizing: border-box;
  outline: none;
  transition: border-color 0.2s ease;
}
.geo-single__comments .comment-form input[type=text]:focus,
.geo-single__comments .comment-form input[type=email]:focus,
.geo-single__comments .comment-form input[type=url]:focus,
.geo-single__comments .comment-form textarea:focus {
  border-color: #000000;
}
.geo-single__comments .comment-form textarea {
  width: 100%;
  height: 422px;                              /* Figma exact (265:55) */
  border: 1px solid rgba(103,103,103,0.9);
  border-radius: 2px;
  background: transparent;
  padding: 16px;
  font-family: 'Montserrat', sans-serif;
  font-size: 18px;
  line-height: 1.5;
  color: #000000;
  resize: vertical;
  box-sizing: border-box;
  outline: none;
  transition: border-color 0.2s ease;
}

/* Cookies row: checkbox 26×24 + label SemiBold 24 inline */
.geo-single__comments .comment-form-cookies-consent {
  display: flex;
  align-items: flex-start;
  gap: 29px;                                  /* Figma 10527 - 10498 = 29 */
  margin: 0 0 24px;
}
.geo-single__comments .comment-form-cookies-consent input[type=checkbox] {
  flex-shrink: 0;
  appearance: none;
  -webkit-appearance: none;
  width: 26px;                                /* Figma exact (265:68) */
  height: 24px;
  border: 1px solid rgba(103,103,103,0.9);
  border-radius: 2px;
  background: transparent;
  margin: 3px 0 0;
  cursor: pointer;
  position: relative;
}
.geo-single__comments .comment-form-cookies-consent input[type=checkbox]:checked::after {
  content: "";
  position: absolute;
  top: 2px;
  left: 7px;
  width: 8px;
  height: 14px;
  border: solid #000;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.geo-single__comments .comment-form-cookies-consent label {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;                           /* SemiBold (265:72) */
  font-style: normal;
  font-size: 24px;
  line-height: 29.26px;
  color: #000000;
  margin: 0;
}

/* Submit button · 316×44 #000 (Figma 265:74/76) */
.geo-single__comments .form-submit {
  margin: 0;
}
.geo-single__comments .form-submit input[type=submit],
.geo-single__comments .geo-comment-submit {
  width: 316px;
  height: 44px;
  background: #000000;
  color: #ffffff;
  border: 1px solid rgba(103,103,103,0.9);
  border-radius: 2px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-style: italic;                         /* Medium Italic */
  font-size: 20px;
  line-height: 24.38px;
  cursor: pointer;
  padding: 0;
  transition: background 0.2s ease, transform 0.2s ease;
}
.geo-single__comments .form-submit input[type=submit]:hover {
  background: #1a1a1a;
  transform: translateY(-1px);
}

/* Lista de comentarios existentes */
.geo-single__comments .comment-list {
  list-style: none;
  padding: 0;
  margin: 0 0 48px;
}
.geo-single__comments .comment-list .children {
  list-style: none;
  padding-left: 32px;
}
.geo-single__comments .comment-body {
  padding: 24px 0;
  border-bottom: 1px solid rgba(103,103,103,0.2);
  font-family: 'Montserrat', sans-serif;
  font-size: 18px;
  line-height: 1.55;
  color: #000000;
}
.geo-single__comments .comment-author { display: flex; align-items: center; gap: 12px; margin-bottom: 8px; }
.geo-single__comments .comment-meta   { font-size: 14px; color: #515151; margin-bottom: 12px; }

/* Responsive */
@media (max-width: 1024px) {
  .geo-single__container { padding: 120px 32px 0; }
  .geo-single__title { font-size: 56px; line-height: 1.05; }
  .geo-single__meta  { gap: 24px; font-size: 16px; margin-bottom: 80px; flex-wrap: wrap; row-gap: 8px; }
  .geo-single__hero  { width: 280px; margin-right: 32px; }
  .geo-single__hero-img { height: 560px; }
  .geo-single__body h2 { font-size: 24px; letter-spacing: 1px; line-height: 1.25; }
  .geo-single__comments { padding: 80px 0 60px; }
  .geo-single__comments .comments-title,
  .geo-single__comments .comment-reply-title { font-size: 32px; line-height: 1.2; }
  .geo-single__comments .comment-notes { font-size: 18px; line-height: 1.45; }
  .geo-single__comments .comment-form label { font-size: 22px; line-height: 1.2; }
  .geo-single__comments .comment-form-cookies-consent label { font-size: 16px; line-height: 1.4; }
  .geo-single__comments .comment-form textarea { height: 240px; }
}
@media (max-width: 640px) {
  .geo-single__title { font-size: 40px; }
  .geo-single__hero  { float: none; width: 100%; margin: 0 0 24px; }
  .geo-single__hero-img { height: 480px; }
  .geo-single__comments .form-submit input[type=submit] { width: 100%; }
}

/* ── Responsive ────────────────────────────────────────── */
@media (max-width: 1024px) {
  .contenido-blog__title  { font-size: 120px; line-height: 1; }
  .contenido-pod__title   { font-size: 120px; line-height: 1; }
  .contenido-blog__hero   { min-height: 320px; }
  .contenido-blog__hero-img { max-width: 100%; }
}
@media (max-width: 768px) {
  .contenido-subnav__list { gap: 24px; flex-wrap: wrap; }
  .contenido-blog__title  { font-size: 80px; line-height: 1; left: 24px; }
  .contenido-pod__title   { font-size: 80px; line-height: 1; }
  .contenido-pod__kicker  { font-size: 24px; line-height: 1.2; letter-spacing: 1.44px; }
  .contenido-pod__card-title { font-size: 24px; line-height: 1.2; letter-spacing: 1.44px; }
  .contenido-blog__tabs   { gap: 12px; }
  .contenido-blog__tab    { font-size: 13px; }
  .contenido-blog__tab-sep { display: none; }
  .geo-single__title      { font-size: 32px; }
  .geo-single__body       { font-size: 17px; }
}
@media (prefers-reduced-motion: reduce) {
  .contenido-card__img { transition: none; }
}
