/* ============================================================
   ZENKI MEDIA — Static Site CSS
   White + Navy/Blue/Cyan motorsport news aesthetic
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:ital,wght@0,300;0,400;0,700;0,900;1,700;1,900&family=Crimson+Pro:ital,wght@0,300;0,400;0,600;1,400&family=Space+Mono:wght@400;700&display=swap');

/* ── TOKENS ─────────────────────────────────────────────── */
:root {
  --navy:   #0d0e1a;
  --navy2:  #131426;
  --blue:   #1a2bcc;
  --blue2:  #2540f0;
  --cyan:   #00c2ff;
  --cyan2:  #49d8ff;
  --white:  #ffffff;
  --off:    #f5f5fa;
  --light:  #eeeef6;
  --muted:  #6b6b8a;
  --text:   #0d0e1a;
  --text2:  #2a2a40;
  --border: #dddde8;
  --border2:#c0c0d8;
  --accent: var(--blue);
}

/* ── RESET ───────────────────────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; display: block; }
a { color: inherit; }

body {
  background: var(--white);
  color: var(--text);
  font-family: 'Crimson Pro', Georgia, serif;
  font-size: 18px;
  line-height: 1.7;
}

/* ── RACING TICKER ───────────────────────────────────────── */
.ticker-bar {
  background: var(--blue);
  color: #fff;
  height: 32px;
  overflow: hidden;
  display: flex;
  align-items: center;
  gap: 0;
}
.ticker-label {
  font-family: 'Space Mono', monospace;
  font-size: 0.55rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  background: var(--navy);
  height: 100%;
  display: flex;
  align-items: center;
  padding: 0 16px;
  white-space: nowrap;
  flex-shrink: 0;
}
.ticker-label::after {
  content: '';
  display: inline-block;
  width: 0;
  height: 0;
  border-top: 16px solid transparent;
  border-bottom: 16px solid transparent;
  border-left: 10px solid var(--navy);
  margin-left: 16px;
}
.ticker-track {
  overflow: hidden;
  flex: 1;
  height: 100%;
  display: flex;
  align-items: center;
}
.ticker-inner {
  display: flex;
  gap: 0;
  animation: ticker 28s linear infinite;
  white-space: nowrap;
}
.ticker-item {
  font-family: 'Space Mono', monospace;
  font-size: 0.58rem;
  letter-spacing: 0.06em;
  padding: 0 32px 0 0;
  text-transform: uppercase;
}
.ticker-item a {
  color: #fff;
  text-decoration: none;
  opacity: 0.9;
}
.ticker-item a:hover { opacity: 1; text-decoration: underline; }
.ticker-sep {
  color: var(--cyan);
  padding-right: 32px;
  font-size: 0.6rem;
}
@keyframes ticker {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── NAVIGATION ──────────────────────────────────────────── */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 200;
  background: var(--white);
  border-bottom: 2px solid var(--navy);
  box-shadow: 0 2px 8px rgba(13,14,26,0.06);
}
.nav-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 48px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.nav-logo {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 1.75rem;
  letter-spacing: 0.04em;
  text-transform: lowercase;
  text-decoration: none;
  color: var(--navy);
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav-logo span {
  display: inline-block;
  width: 4px;
  height: 22px;
  background: var(--cyan);
  transform: skewX(-8deg);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 0;
  list-style: none;
  flex: 1;
  justify-content: center;
}
.nav-links a {
  font-family: 'Space Mono', monospace;
  font-size: 0.6rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  padding: 0 18px;
  height: 64px;
  display: flex;
  align-items: center;
  border-bottom: 3px solid transparent;
  transition: color 0.15s, border-color 0.15s;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--blue);
  border-bottom-color: var(--blue);
}
.nav-cta {
  font-family: 'Space Mono', monospace;
  font-size: 0.58rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--blue);
  color: #fff !important;
  padding: 9px 20px;
  text-decoration: none;
  clip-path: polygon(6px 0, 100% 0, calc(100% - 6px) 100%, 0 100%);
  transition: background 0.2s;
  border-bottom: none !important;
}
.nav-cta:hover { background: var(--blue2) !important; }
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  transition: all 0.3s;
}
.nav-mobile {
  display: none;
  position: fixed;
  top: 96px;
  left: 0;
  right: 0;
  background: var(--white);
  border-bottom: 2px solid var(--navy);
  padding: 16px 20px;
  z-index: 199;
  box-shadow: 0 4px 12px rgba(13,14,26,0.1);
}
.nav-mobile.open { display: block; }
.nav-mobile a {
  display: block;
  padding: 12px 0;
  color: var(--muted);
  text-decoration: none;
  font-family: 'Space Mono', monospace;
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--border);
  transition: color 0.15s;
}
.nav-mobile a:last-child { border-bottom: none; }
.nav-mobile a:hover { color: var(--blue); }

/* ── SECTION UTILITIES ───────────────────────────────────── */
.wrap { max-width: 1400px; margin: 0 auto; padding: 0 48px; }
.wrap-narrow { max-width: 900px; margin: 0 auto; padding: 0 48px; }

.section-eyebrow {
  font-family: 'Space Mono', monospace;
  font-size: 0.58rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--blue);
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.section-eyebrow::before {
  content: '';
  display: block;
  width: 28px;
  height: 2px;
  background: var(--blue);
  flex-shrink: 0;
}
.section-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-style: italic;
  font-size: clamp(2rem, 4vw, 3.2rem);
  text-transform: uppercase;
  line-height: 0.92;
  color: var(--navy);
  letter-spacing: -0.01em;
}
.section-divider {
  border: none;
  border-top: 2px solid var(--navy);
  margin: 0 0 40px;
}
.section-divider-light {
  border: none;
  border-top: 1px solid var(--border);
  margin: 0 0 40px;
}

/* ── HERO (HOME) ─────────────────────────────────────────── */
.hero {
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
.hero-grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,194,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,194,255,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}
.hero-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 80px 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.hero-text {}
.hero-eyebrow {
  font-family: 'Space Mono', monospace;
  font-size: 0.58rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--cyan);
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--cyan);
}
.hero-h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-style: italic;
  font-size: clamp(4rem, 8vw, 7.5rem);
  line-height: 0.87;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  color: #fff;
  margin-bottom: 28px;
}
.hero-h1 .accent {
  color: var(--cyan);
  display: block;
}
.hero-h1 .outline {
  -webkit-text-stroke: 1.5px rgba(255,255,255,0.25);
  color: transparent;
  display: block;
}
.hero-desc {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.75;
  max-width: 420px;
  margin-bottom: 32px;
}
.hero-badges {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.badge {
  font-family: 'Space Mono', monospace;
  font-size: 0.54rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 14px;
  border: 1px solid rgba(0,194,255,0.25);
  color: var(--cyan2);
  background: rgba(0,194,255,0.06);
  clip-path: polygon(4px 0, 100% 0, calc(100% - 4px) 100%, 0 100%);
}
.hero-featured {
  position: relative;
}
.hero-featured-card {
  display: block;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
}
.hero-featured-img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s;
}
.hero-featured-card:hover .hero-featured-img { transform: scale(1.03); }
.hero-featured-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(13,14,26,0.95) 100%);
}
.hero-featured-body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px;
}
.hero-featured-cat {
  font-family: 'Space Mono', monospace;
  font-size: 0.52rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: var(--blue);
  color: #fff;
  padding: 4px 10px;
  display: inline-block;
  margin-bottom: 10px;
  clip-path: polygon(4px 0, 100% 0, calc(100% - 4px) 100%, 0 100%);
}
.hero-featured-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 1.6rem;
  line-height: 1.1;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 8px;
}
.hero-featured-date {
  font-family: 'Space Mono', monospace;
  font-size: 0.52rem;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
}
.hero-no-img {
  width: 100%;
  height: 380px;
  background: linear-gradient(135deg, rgba(26,43,204,0.3), rgba(0,194,255,0.1));
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-no-img svg { opacity: 0.12; }

/* ── CATEGORY BAR ────────────────────────────────────────── */
.cat-bar {
  background: var(--off);
  border-bottom: 1px solid var(--border);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.cat-bar-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 48px;
  display: flex;
  gap: 0;
  white-space: nowrap;
}
.cat-btn {
  font-family: 'Space Mono', monospace;
  font-size: 0.58rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 14px 20px;
  background: none;
  border: none;
  border-bottom: 3px solid transparent;
  color: var(--muted);
  cursor: pointer;
  transition: color 0.15s, border-color 0.15s;
  white-space: nowrap;
}
.cat-btn:hover { color: var(--blue); }
.cat-btn.active {
  color: var(--blue);
  border-bottom-color: var(--blue);
}

/* ── POST CARDS ──────────────────────────────────────────── */
.posts-section { padding: 64px 0 80px; }
.posts-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 40px;
}
.posts-header-right {
  font-family: 'Space Mono', monospace;
  font-size: 0.58rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue);
  text-decoration: none;
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
  transition: color 0.15s;
}
.posts-header-right:hover { color: var(--blue2); }

.posts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.post-card {
  display: block;
  text-decoration: none;
  color: var(--text);
  background: var(--white);
  border: 1px solid var(--border);
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}
.post-card:hover {
  border-color: var(--blue);
  box-shadow: 0 4px 24px rgba(26,43,204,0.08);
  transform: translateY(-2px);
}
.post-card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s;
}
.post-card:hover .post-card-img { transform: scale(1.03); }
.post-card-img-wrap {
  overflow: hidden;
  position: relative;
  height: 200px;
  background: var(--off);
}
.post-card-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--off), var(--light));
}
.post-card-cat {
  position: absolute;
  top: 12px;
  left: 12px;
  font-family: 'Space Mono', monospace;
  font-size: 0.5rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: var(--blue);
  color: #fff;
  padding: 4px 10px;
  clip-path: polygon(4px 0, 100% 0, calc(100% - 4px) 100%, 0 100%);
}
.post-card-body { padding: 20px 22px 24px; }
.post-card-date {
  font-family: 'Space Mono', monospace;
  font-size: 0.52rem;
  letter-spacing: 0.1em;
  color: var(--muted);
  margin-bottom: 10px;
  text-transform: uppercase;
}
.post-card-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  line-height: 1.15;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 10px;
  transition: color 0.15s;
}
.post-card:hover .post-card-title { color: var(--blue); }
.post-card-excerpt {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.6;
}
.post-card-read {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 14px;
  font-family: 'Space Mono', monospace;
  font-size: 0.52rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue);
}
.post-card-read::after {
  content: '→';
  transition: transform 0.2s;
}
.post-card:hover .post-card-read::after { transform: translateX(3px); }

/* ── FEATURED ROW (large + 2 small) ─────────────────────── */
.featured-row {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 28px;
  margin-bottom: 28px;
}
.post-card-large .post-card-img-wrap { height: 320px; }
.post-card-large .post-card-title { font-size: 1.6rem; }
.post-card-side {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.post-card-side .post-card-img-wrap { height: 140px; }

/* ── ABOUT STRIP ─────────────────────────────────────────── */
.about-strip {
  background: var(--navy);
  padding: 80px 0;
  border-top: 4px solid var(--blue);
}
.about-strip-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-strip .section-eyebrow { color: var(--cyan); }
.about-strip .section-eyebrow::before { background: var(--cyan); }
.about-strip .section-title { color: #fff; }
.about-text {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.8;
  margin-top: 20px;
}
.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.06);
  margin-top: 40px;
}
.stat {
  background: var(--navy2);
  padding: 24px 20px;
  border-top: 2px solid var(--blue);
}
.stat-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 2.2rem;
  color: var(--cyan);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label {
  font-family: 'Space Mono', monospace;
  font-size: 0.55rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}
.about-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.about-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-left: 3px solid var(--blue);
  padding: 24px;
}
.about-card-label {
  font-family: 'Space Mono', monospace;
  font-size: 0.55rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 10px;
}
.about-card-text {
  font-size: 1rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.65;
}

/* ── PODCAST SECTION ─────────────────────────────────────── */
.podcast-section {
  padding: 80px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--off);
}
.podcast-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.podcast-desc {
  font-size: 1.1rem;
  color: var(--muted);
  line-height: 1.8;
  margin-top: 20px;
  margin-bottom: 28px;
}
.podcast-btns { display: flex; gap: 12px; flex-wrap: wrap; }
.btn {
  font-family: 'Space Mono', monospace;
  font-size: 0.58rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 12px 24px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s;
  clip-path: polygon(6px 0, 100% 0, calc(100% - 6px) 100%, 0 100%);
}
.btn-primary { background: var(--blue); color: #fff; }
.btn-primary:hover { background: var(--blue2); }
.btn-secondary {
  background: transparent;
  color: var(--blue);
  border: 1px solid var(--blue2);
}
.btn-secondary:hover { background: var(--blue); color: #fff; }
.podcast-embed-wrap {
  overflow: hidden;
  background: transparent;
}

/* ── CONTACT SECTION ─────────────────────────────────────── */
.contact-section { padding: 80px 0; }
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.contact-desc {
  font-size: 1.1rem;
  color: var(--muted);
  line-height: 1.8;
  margin-top: 20px;
  margin-bottom: 32px;
}
.contact-email {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--navy);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-bottom: 2px solid var(--blue);
  padding-bottom: 6px;
  transition: color 0.2s, border-color 0.2s;
}
.contact-email:hover { color: var(--blue); }
.contact-note {
  margin-top: 18px;
  font-family: 'Space Mono', monospace;
  font-size: 0.56rem;
  letter-spacing: 0.1em;
  color: var(--muted);
  text-transform: uppercase;
}
.contact-deco {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 280px;
  position: relative;
}
.contact-ring {
  width: 200px;
  height: 200px;
  border: 1px solid var(--border2);
  border-radius: 50%;
  position: absolute;
  animation: spin 24s linear infinite;
}
.contact-ring2 {
  width: 140px;
  height: 140px;
  border: 1px dashed rgba(26,43,204,0.25);
  border-radius: 50%;
  position: absolute;
  animation: spin 16s linear infinite reverse;
}
.contact-icon {
  width: 72px;
  height: 72px;
  background: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  clip-path: polygon(0 0, 85% 0, 100% 50%, 85% 100%, 0 100%, 15% 50%);
  position: relative;
  z-index: 2;
}
.contact-icon svg { color: #fff; }
@keyframes spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* ── FOOTER ──────────────────────────────────────────────── */
.site-footer {
  background: var(--navy);
  color: #fff;
  padding: 48px 0 32px;
  border-top: 4px solid var(--blue);
}
.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: start;
}
.footer-logo {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 1.5rem;
  letter-spacing: 0.04em;
  text-transform: lowercase;
  color: #fff;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 12px;
}
.footer-logo span {
  display: inline-block;
  width: 4px;
  height: 20px;
  background: var(--cyan);
  transform: skewX(-8deg);
}
.footer-tagline {
  font-family: 'Space Mono', monospace;
  font-size: 0.55rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 20px;
}
.footer-links {
  display: flex;
  gap: 20px;
  list-style: none;
  flex-wrap: wrap;
}
.footer-links a {
  font-family: 'Space Mono', monospace;
  font-size: 0.55rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--cyan); }
.footer-right { text-align: right; padding-top: 4px; }
.footer-copy {
  font-family: 'Space Mono', monospace;
  font-size: 0.52rem;
  color: rgba(255,255,255,0.3);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ── NOTICIAS PAGE ───────────────────────────────────────── */
.page-header {
  background: var(--navy);
  padding: 60px 0 56px;
  border-bottom: 4px solid var(--blue);
  position: relative;
  overflow: hidden;
}
.page-header::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,194,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,194,255,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}
.page-header-inner {
  position: relative;
  z-index: 2;
}
.page-header .section-eyebrow { color: var(--cyan); }
.page-header .section-eyebrow::before { background: var(--cyan); }
.page-header .section-title { color: #fff; margin-top: 8px; }
.page-header-sub {
  font-size: 1rem;
  color: rgba(255,255,255,0.5);
  margin-top: 14px;
  max-width: 480px;
}
.archive-section { padding: 56px 0 80px; }
.archive-cat-bar {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.archive-posts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.no-posts {
  grid-column: 1/-1;
  text-align: center;
  padding: 80px 24px;
  border: 1px dashed var(--border2);
  color: var(--muted);
}
.no-posts-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-style: italic;
  font-size: 1.8rem;
  text-transform: uppercase;
  margin-bottom: 10px;
  color: var(--navy);
}

/* ── POST PAGE ───────────────────────────────────────────── */
.post-hero {
  background: var(--navy);
  border-bottom: 4px solid var(--blue);
}
.post-hero-img-wrap {
  width: 100%;
  max-height: 520px;
  overflow: hidden;
  position: relative;
}
.post-hero-img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  opacity: 0.75;
  display: block;
}
.post-hero-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(13,14,26,0.2) 0%, rgba(13,14,26,0.85) 100%);
}
.post-hero-content {
  padding: 56px 0 60px;
  position: relative;
  z-index: 2;
}
.post-hero-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}
.post-cat-tag {
  font-family: 'Space Mono', monospace;
  font-size: 0.52rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: var(--blue);
  color: #fff;
  padding: 5px 12px;
  clip-path: polygon(4px 0, 100% 0, calc(100% - 4px) 100%, 0 100%);
}
.post-date-tag {
  font-family: 'Space Mono', monospace;
  font-size: 0.52rem;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
}
.post-hero-h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: 0.95;
  text-transform: uppercase;
  color: #fff;
  letter-spacing: -0.01em;
  margin-bottom: 18px;
  max-width: 800px;
}
.post-subtitle {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.65;
  max-width: 640px;
}
.post-body-section { padding: 64px 0 80px; }
.post-layout {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 64px;
  align-items: start;
}
.post-content {
  font-family: 'Crimson Pro', Georgia, serif;
  font-size: 1.2rem;
  line-height: 1.82;
  color: var(--text2);
}
.post-content p { margin-bottom: 1.4em; }
.post-content h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-style: italic;
  font-size: 1.9rem;
  text-transform: uppercase;
  color: var(--navy);
  line-height: 1;
  margin: 2em 0 0.6em;
  letter-spacing: 0.01em;
  border-left: 3px solid var(--blue);
  padding-left: 16px;
}
.post-content h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--navy);
  text-transform: uppercase;
  margin: 1.8em 0 0.5em;
}
.post-content a { color: var(--blue); text-decoration: underline; }
.post-content a:hover { color: var(--blue2); }
.post-content blockquote {
  border-left: 3px solid var(--cyan);
  padding: 4px 0 4px 20px;
  color: var(--muted);
  font-style: italic;
  margin: 1.5em 0;
}
.post-content img {
  width: 100%;
  height: auto;
  margin: 2em 0;
  border: 1px solid var(--border);
}
.post-content figure { margin: 2em 0; }
.post-content figcaption {
  font-family: 'Space Mono', monospace;
  font-size: 0.58rem;
  color: var(--muted);
  margin-top: 8px;
  letter-spacing: 0.06em;
}
.post-content .youtube-wrap,
.post-content .youtube-embed {
  margin: 2em 0;
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  background: var(--off);
  border: 1px solid var(--border);
}
.post-content .youtube-wrap iframe,
.post-content .youtube-embed iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100% !important;
  height: 100% !important;
  border: 0;
}
.post-content .spotify-embed {
  margin: 2em 0;
}
.post-content .spotify-embed iframe {
  width: 100%;
  height: 152px;
  border: 0;
  border-radius: 0;
  display: block;
}
.post-content iframe.spotify-wrap {
  width: 100%;
  height: 152px;
  border: 0;
  border-radius: 0;
  display: block;
  margin: 2em 0;
}
.post-sidebar { position: sticky; top: 80px; }
.sidebar-block {
  border: 1px solid var(--border);
  border-top: 3px solid var(--blue);
  padding: 24px;
  margin-bottom: 24px;
  background: var(--off);
}
.sidebar-block-title {
  font-family: 'Space Mono', monospace;
  font-size: 0.56rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 16px;
}
.sidebar-related-item {
  display: block;
  text-decoration: none;
  color: var(--text);
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  transition: color 0.15s;
}
.sidebar-related-item:last-child { border-bottom: none; }
.sidebar-related-item:hover { color: var(--blue); }
.sidebar-related-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  line-height: 1.2;
  margin-bottom: 4px;
}
.sidebar-related-date {
  font-family: 'Space Mono', monospace;
  font-size: 0.5rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.post-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Space Mono', monospace;
  font-size: 0.56rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  margin-bottom: 32px;
  transition: color 0.15s;
}
.post-back:hover { color: var(--cyan); }
.post-back::before { content: '←'; }
.post-nav {
  border-top: 2px solid var(--border);
  padding: 40px 0;
  display: flex;
  justify-content: space-between;
  gap: 24px;
}
.post-nav-link {
  display: flex;
  flex-direction: column;
  gap: 6px;
  text-decoration: none;
  color: var(--text);
  max-width: 280px;
  transition: color 0.15s;
}
.post-nav-link:hover { color: var(--blue); }
.post-nav-label {
  font-family: 'Space Mono', monospace;
  font-size: 0.52rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}
.post-nav-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  line-height: 1.2;
}

/* ── REVEAL ANIMATION ────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── HOME NOTICIAS LIST ──────────────────────────────────── */
.news-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 40px;
}
.news-list-item {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 0;
  text-decoration: none;
  color: var(--text);
  border: 1px solid var(--border);
  border-top: none;
  transition: border-color 0.2s, background 0.2s;
}
.news-list-item:first-child { border-top: 1px solid var(--border); }
.news-list-item:hover {
  border-color: var(--blue);
  background: var(--off);
  z-index: 1;
  position: relative;
}
.news-list-img {
  width: 200px;
  height: 130px;
  object-fit: cover;
  display: block;
  flex-shrink: 0;
}
.news-list-placeholder {
  width: 200px;
  height: 130px;
  background: linear-gradient(135deg, var(--off), var(--light));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.news-list-body {
  padding: 18px 22px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
}
.news-list-meta {
  display: flex;
  align-items: center;
  gap: 12px;
}
.news-list-cat {
  font-family: 'Space Mono', monospace;
  font-size: 0.5rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: var(--blue);
  color: #fff;
  padding: 3px 8px;
  clip-path: polygon(3px 0, 100% 0, calc(100% - 3px) 100%, 0 100%);
}
.news-list-date {
  font-family: 'Space Mono', monospace;
  font-size: 0.5rem;
  letter-spacing: 0.08em;
  color: var(--muted);
  text-transform: uppercase;
}
.news-list-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  line-height: 1.15;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  transition: color 0.15s;
}
.news-list-item:hover .news-list-title { color: var(--blue); }
.news-list-excerpt {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.55;
}

/* ── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 1100px) {
  .posts-grid,
  .archive-posts-grid { grid-template-columns: repeat(2, 1fr); }
  .featured-row { grid-template-columns: 1fr; }
  .post-card-side { flex-direction: row; }
  .post-card-side .post-card-img-wrap { height: 160px; }
}
@media (max-width: 920px) {
  .nav-inner { padding: 0 20px; }
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  .wrap, .wrap-narrow { padding: 0 20px; }
  .cat-bar-inner { padding: 0 20px; }
  .hero-inner { grid-template-columns: 1fr; padding: 56px 20px; gap: 40px; }
  .hero-featured-img, .hero-no-img { height: 280px; }
  .about-strip-inner { grid-template-columns: 1fr; gap: 40px; }
  .podcast-inner { grid-template-columns: 1fr; gap: 40px; }
  .contact-inner { grid-template-columns: 1fr; gap: 40px; }
  .contact-deco { display: none; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-right { text-align: left; }
  .post-layout { grid-template-columns: 1fr; }
  .post-sidebar { position: static; }
  .post-nav { flex-direction: column; gap: 28px; }
  .post-card-side { flex-direction: column; }
  .news-list-item { grid-template-columns: 140px 1fr; }
  .news-list-img, .news-list-placeholder { width: 140px; height: 110px; }
}
@media (max-width: 640px) {
  .posts-grid,
  .archive-posts-grid { grid-template-columns: 1fr; }
  .hero-h1 { font-size: clamp(3rem, 14vw, 5rem); }
  .about-stats { grid-template-columns: 1fr 1fr; }
  .site-footer { padding: 40px 0 24px; }
  .news-list-item { grid-template-columns: 1fr; }
  .news-list-img, .news-list-placeholder { width: 100%; height: 160px; }
  .news-list-body { padding: 14px 16px; }
}
