/* ============================================================
   NUEVA NEWS — SECCIONES DE CONTENIDO
   HeroSection, CategorySection, LiveBlogSection, OpinionSection,
   ShortsSection, PodcastSection, MostReadSection, TrumpSection,
   DeportesSection, EspectaculosSection, InmigracionSection,
   MundoSection, LatinoamericaSection, RespuestasSection,
   TwoColumnSection, WhatsAppCTA, DigitalNewspaper
   ============================================================ */

/* ── SECTION BASE ── */
.nn-section {
  padding: 2.5rem 0;
  transition: background .3s;
  background: #fff;
}
html.nn-dark .nn-section { background: #0a0a0a; }

.nn-section-gray {
  background: #f4f4f4;
}
html.nn-dark .nn-section-gray { background: #0d0d0d; }

.nn-section-pink {
  background: #fdf5f7;
}
html.nn-dark .nn-section-pink { background: #0f0a0c; }

.nn-section-black {
  background: #000;
}
html.nn-dark .nn-section-black { background: #050505; }

.nn-section-dark-subtle {
  background: #f8f8f8;
}
html.nn-dark .nn-section-dark-subtle { background: #0a0a0a; }

/* ── SECTION HEADER ── */
.nn-sec-hdr {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25rem;
  flex-wrap: wrap;
  gap: .75rem;
}
.nn-sec-hdr-left {
  display: flex;
  align-items: center;
  gap: .75rem;
}
.nn-sec-bar {
  width: 4px;
  height: 32px;
  border-radius: 9999px;
  background: var(--nn-primary);
  flex-shrink: 0;
}
.nn-sec-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--nn-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: .875rem;
  flex-shrink: 0;
}
.nn-sec-label {
  font-size: .625rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .15em;
  color: var(--nn-primary);
}
.nn-sec-title {
  font-size: 1.25rem;
  font-weight: 900;
  color: #000;
  margin: 0;
  line-height: 1.1;
}
html.nn-dark .nn-sec-title { color: #fff; }
.nn-sec-title-white { color: #fff !important; }
.nn-sec-subtitle {
  font-size: .75rem;
  font-weight: 600;
  color: var(--nn-primary);
  margin-top: 2px;
}
.nn-sec-see-all {
  display: inline-flex;
  align-items: center;
  gap: .25rem;
  font-size: .875rem;
  font-weight: 700;
  color: var(--nn-primary);
  text-decoration: none;
  padding: .375rem 1rem;
  border-radius: 9999px;
  border: 2px solid var(--nn-primary);
  white-space: nowrap;
  transition: background .15s, color .15s;
}
.nn-sec-see-all:hover {
  background: var(--nn-primary);
  color: #fff;
}
.nn-sec-see-all-sm {
  display: inline-flex;
  align-items: center;
  gap: .25rem;
  font-size: .75rem;
  font-weight: 600;
  color: #9ca3af;
  text-decoration: none;
  white-space: nowrap;
  transition: color .2s;
}
.nn-sec-see-all-sm:hover { color: #000; }
html.nn-dark .nn-sec-see-all-sm:hover { color: #fff; }

/* ── CARD BASE ── */
.nn-card {
  background: #f9f9f9;
  border: 1px solid #f3f4f6;
  border-radius: .75rem;
  overflow: hidden;
  transition: border-color .2s;
  cursor: pointer;
  display: block;
  text-decoration: none;
}
html.nn-dark .nn-card {
  background: #111;
  border-color: rgba(255,255,255,.08);
}
.nn-card:hover { border-color: rgba(185,23,81,.3); }
.nn-card img { transition: transform .5s; }
.nn-card:hover img { transform: scale(1.05); }

/* ── GRID UTILITIES ── */
.nn-grid-5 {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.25rem;
}
.nn-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.nn-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.nn-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}
@media (max-width: 1023px) {
  .nn-grid-5, .nn-grid-4 { grid-template-columns: repeat(2, 1fr); }
  .nn-grid-3 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 639px) {
  .nn-grid-5, .nn-grid-4, .nn-grid-3, .nn-grid-2 { grid-template-columns: 1fr; }
}

/* ── CATEGORY BADGE ── */
.nn-badge {
  display: inline-flex;
  align-items: center;
  gap: .375rem;
  font-size: .625rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: #fff;
  background: var(--nn-primary);
  padding: .25rem .625rem;
  border-radius: 9999px;
}
.nn-badge-red { background: #dc2626; }
.nn-badge-purple { background: #7c3aed; }
.nn-badge-blue { background: #0891b2; }
.nn-badge-green { background: #16a34a; }
.nn-badge-amber { background: #d97706; }
.nn-badge-teal { background: #0f766e; }
.nn-badge-live {
  background: #dc2626;
  display: inline-flex;
  align-items: center;
  gap: .375rem;
}
.nn-badge-live .nn-live-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #fff;
  animation: nn-ping .9s cubic-bezier(0,0,.2,1) infinite;
  display: inline-block;
}

/* ── HERO IMAGE OVERLAY ── */
.nn-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.95) 0%, rgba(0,0,0,.4) 50%, rgba(0,0,0,.1) 100%);
}
.nn-img-overlay-strong {
  background: linear-gradient(to top, rgba(0,0,0,.98) 0%, rgba(0,0,0,.6) 50%, rgba(0,0,0,.1) 100%);
}
.nn-img-overlay-side {
  background: linear-gradient(to right, rgba(0,0,0,.95) 0%, rgba(0,0,0,.65) 50%, rgba(0,0,0,.2) 100%);
}

/* ── ARTICLE META ── */
.nn-meta {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .75rem;
  color: rgba(255,255,255,.5);
}
.nn-meta-dot { color: rgba(255,255,255,.3); }
.nn-meta-dark {
  color: #9ca3af;
}

/* ── READ MORE BUTTON ── */
.nn-read-btn {
  display: inline-flex;
  align-items: center;
  gap: .375rem;
  font-size: .75rem;
  font-weight: 700;
  color: #fff;
  background: var(--nn-primary);
  padding: .375rem .875rem;
  border-radius: 9999px;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  transition: opacity .2s;
}
.nn-read-btn:hover { opacity: .9; }

/* ══════════════════════════════════════════════
   HERO SECTION (3-column grid)
══════════════════════════════════════════════ */
.nn-hero-grid {
  display: grid;
  grid-template-columns: 3fr 6fr 3fr;
  gap: 1.25rem;
}
@media (max-width: 1023px) {
  .nn-hero-grid { grid-template-columns: 1fr; }
}

/* Left col */
.nn-hero-live-card {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  min-height: 220px;
  cursor: pointer;
  display: block;
}
.nn-hero-live-card img { transition: transform .7s; }
.nn-hero-live-card:hover img { transform: scale(1.05); }
.nn-hero-live-badge {
  position: absolute;
  top: .75rem;
  left: .75rem;
  z-index: 2;
}
.nn-divider-label {
  display: flex;
  align-items: center;
  gap: .5rem;
  margin: .75rem 0;
}
.nn-divider-line {
  flex: 1;
  height: 1px;
  background: #f3f4f6;
}
html.nn-dark .nn-divider-line { background: rgba(255,255,255,.08); }
.nn-divider-text {
  font-size: .625rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .15em;
  color: #6b7280;
}
html.nn-dark .nn-divider-text { color: #4b5563; }

.nn-related-item {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  padding: .75rem;
  border-radius: .75rem;
  border: 1px solid #f3f4f6;
  background: #f9f9f9;
  cursor: pointer;
  transition: border-color .2s;
  text-decoration: none;
}
html.nn-dark .nn-related-item {
  background: #111;
  border-color: rgba(255,255,255,.08);
}
.nn-related-item:hover { border-color: rgba(185,23,81,.3); }
.nn-related-item img { border-radius: .5rem; }

/* Center col */
.nn-hero-main {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  min-height: 420px;
  cursor: pointer;
  display: block;
}
.nn-hero-main img { transition: transform .7s; }
.nn-hero-main:hover img { transform: scale(1.05); }
.nn-hero-main-cta {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .5rem 1.25rem;
  border-radius: 9999px;
  font-size: .875rem;
  font-weight: 700;
  color: #fff;
  background: var(--nn-primary);
  white-space: nowrap;
  transition: opacity .2s;
  border: none;
  cursor: pointer;
}
.nn-hero-main-cta:hover { opacity: .9; }

/* Trending row */
.nn-trending-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .75rem;
  margin-top: .75rem;
}
@media (max-width: 639px) { .nn-trending-row { grid-template-columns: 1fr; } }
.nn-trending-mini {
  position: relative;
  border-radius: .75rem;
  overflow: hidden;
  min-height: 140px;
  cursor: pointer;
  display: block;
}
.nn-trending-mini img { transition: transform .5s; }
.nn-trending-mini:hover img { transform: scale(1.05); }

/* Right col */
.nn-today-item {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  padding: .75rem;
  border-radius: .75rem;
  border: 1px solid #f3f4f6;
  background: #f9f9f9;
  cursor: pointer;
  transition: border-color .2s;
  text-decoration: none;
  margin-bottom: .75rem;
}
html.nn-dark .nn-today-item {
  background: #111;
  border-color: rgba(255,255,255,.08);
}
.nn-today-item:hover { border-color: rgba(185,23,81,.3); }
.nn-today-rank {
  flex-shrink: 0;
  width: 24px; height: 24px;
  border-radius: 50%;
  background: #e5e7eb;
  color: #666;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .75rem;
  font-weight: 900;
  margin-top: 2px;
}
html.nn-dark .nn-today-rank { background: #2a2a2a; color: #999; }
.nn-today-rank.first { background: var(--nn-primary); color: #fff; }

/* ══════════════════════════════════════════════
   CATEGORY SECTION (generic 5-col + side list)
══════════════════════════════════════════════ */
.nn-cat-layout {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 1.25rem;
}
@media (max-width: 1023px) { .nn-cat-layout { grid-template-columns: 1fr; } }
.nn-cat-main {
  position: relative;
  border-radius: .75rem;
  overflow: hidden;
  min-height: 340px;
  cursor: pointer;
  display: block;
}
.nn-cat-main img { transition: transform .6s; }
.nn-cat-main:hover img { transform: scale(1.05); }
.nn-cat-side { display: flex; flex-direction: column; }
.nn-cat-side-item {
  display: flex;
  gap: .75rem;
  padding: .75rem 0;
  border-bottom: 1px solid #f3f4f6;
  cursor: pointer;
  text-decoration: none;
}
html.nn-dark .nn-cat-side-item { border-color: #222; }
.nn-cat-side-item:last-child { border-bottom: 0; }
.nn-cat-side-item:hover .nn-cat-side-title { color: var(--nn-primary); }
.nn-cat-side-img { border-radius: .5rem; overflow: hidden; flex-shrink: 0; }
.nn-cat-side-img img { transition: transform .5s; }
.nn-cat-side-item:hover .nn-cat-side-img img { transform: scale(1.05); }
.nn-cat-side-title {
  font-size: .875rem;
  font-weight: 700;
  color: #111;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color .2s;
  margin-top: 2px;
}
html.nn-dark .nn-cat-side-title { color: #e5e7eb; }

/* ══════════════════════════════════════════════
   DEPORTES SECTION
══════════════════════════════════════════════ */
.nn-deportes-hdr-divider {
  flex: 1;
  height: 1px;
  background: rgba(0,0,0,.06);
}
html.nn-dark .nn-deportes-hdr-divider { background: rgba(255,255,255,.06); }
.nn-deportes-hero {
  position: relative;
  border-radius: .75rem;
  overflow: hidden;
  min-height: 300px;
  cursor: pointer;
  display: block;
  width: 100%;
  text-align: left;
  margin-bottom: 1rem;
}
.nn-deportes-hero img { transition: transform .7s; }
.nn-deportes-hero:hover img { transform: scale(1.05); }
.nn-deportes-accent-top {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--nn-primary);
}
.nn-deportes-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
@media (max-width: 767px) { .nn-deportes-cards { grid-template-columns: 1fr; } }
.nn-deportes-card {
  display: flex;
  gap: .75rem;
  padding-top: .75rem;
  border-top: 1px solid rgba(0,0,0,.06);
  cursor: pointer;
  text-decoration: none;
}
html.nn-dark .nn-deportes-card { border-color: rgba(255,255,255,.06); }
.nn-deportes-card-img { border-radius: .5rem; overflow: hidden; flex-shrink: 0; }
.nn-deportes-card img { transition: transform .5s; }
.nn-deportes-card:hover img { transform: scale(1.05); }

/* ══════════════════════════════════════════════
   ESPECTÁCULOS SECTION
══════════════════════════════════════════════ */
.nn-espec-title {
  font-family: Georgia, serif;
  font-style: italic;
  color: var(--nn-primary);
  font-size: 1.5rem;
  font-weight: 900;
  letter-spacing: -.01em;
  margin: 0;
}
.nn-espec-tags {
  display: flex;
  align-items: center;
  gap: .5rem;
  margin-top: .25rem;
  flex-wrap: wrap;
}
.nn-espec-tag {
  font-size: .75rem;
  font-weight: 600;
  padding: .125rem .5rem;
  border-radius: 9999px;
  background: rgba(185,23,81,.08);
  color: var(--nn-primary);
}
html.nn-dark .nn-espec-tag { background: rgba(185,23,81,.15); }
.nn-espec-layout {
  display: grid;
  grid-template-columns: 6fr 6fr;
  gap: 1.25rem;
}
@media (max-width: 1023px) { .nn-espec-layout { grid-template-columns: 1fr; } }
.nn-espec-hero {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  min-height: 480px;
  cursor: pointer;
  display: block;
}
.nn-espec-hero img { transition: transform .7s; }
.nn-espec-hero:hover img { transform: scale(1.05); }
.nn-espec-right { display: flex; flex-direction: column; gap: 1rem; }
.nn-espec-card {
  display: flex;
  border-radius: .75rem;
  overflow: hidden;
  cursor: pointer;
  border: 1px solid rgba(0,0,0,.07);
  background: #fff;
  transition: border-color .2s;
  text-decoration: none;
}
html.nn-dark .nn-espec-card {
  background: #161616;
  border-color: rgba(255,255,255,.07);
}
.nn-espec-card:hover { border-color: rgba(185,23,81,.3); }
.nn-espec-card-img { width: 120px; height: 120px; overflow: hidden; flex-shrink: 0; }
.nn-espec-card-img img { transition: transform .5s; width: 100%; height: 100%; object-fit: cover; }
.nn-espec-card:hover .nn-espec-card-img img { transform: scale(1.05); }
.nn-espec-accent-bar {
  width: 2px;
  align-self: stretch;
  background: var(--nn-primary);
  opacity: 0;
  transition: opacity .3s;
  flex-shrink: 0;
}
.nn-espec-card:hover .nn-espec-accent-bar { opacity: 1; }
.nn-espec-card-body {
  flex: 1;
  min-width: 0;
  padding: .75rem 1rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.nn-espec-cta-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .75rem 1.25rem;
  border-radius: .75rem;
  cursor: pointer;
  text-decoration: none;
  transition: opacity .2s;
  background: linear-gradient(135deg, #fdf0f4 0%, #fce4ed 100%);
  border: 1px solid rgba(185,23,81,.15);
}
html.nn-dark .nn-espec-cta-banner {
  background: linear-gradient(135deg, #1a0a10 0%, #2d0f1e 100%);
  border-color: rgba(185,23,81,.3);
}
.nn-espec-cta-banner i.ri-arrow-right-line { transition: transform .2s; }
.nn-espec-cta-banner:hover i.ri-arrow-right-line { transform: translateX(4px); }

/* ══════════════════════════════════════════════
   INMIGRACIÓN SECTION
══════════════════════════════════════════════ */
.nn-inm-alert-hdr {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .625rem 1rem;
  border-radius: .5rem;
  background: var(--nn-primary);
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
  gap: .5rem;
}
.nn-inm-layout {
  display: grid;
  grid-template-columns: 7fr 5fr;
  gap: 1.25rem;
}
@media (max-width: 1023px) { .nn-inm-layout { grid-template-columns: 1fr; } }
.nn-inm-hero {
  position: relative;
  border-radius: .75rem;
  overflow: hidden;
  min-height: 420px;
  cursor: pointer;
  display: block;
  text-align: left;
}
.nn-inm-hero img { transition: transform .7s; }
.nn-inm-hero:hover img { transform: scale(1.05); }
.nn-inm-accent-left {
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 6px;
  border-radius: .75rem 0 0 .75rem;
  background: var(--nn-primary);
}
.nn-inm-right {
  border-radius: .75rem;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,.07);
  display: flex;
  flex-direction: column;
}
html.nn-dark .nn-inm-right { border-color: rgba(255,255,255,.07); }
.nn-inm-card {
  display: flex;
  cursor: pointer;
  border-bottom: 1px solid #f3f4f6;
  background: #fff;
  transition: background .15s;
  text-decoration: none;
}
.nn-inm-card:last-child { border-bottom: 0; }
html.nn-dark .nn-inm-card { background: #111; border-color: rgba(255,255,255,.06); }
.nn-inm-card:hover { background: #fdf0f4; }
html.nn-dark .nn-inm-card:hover { background: rgba(255,255,255,.03); }
.nn-inm-card-img { width: 110px; height: 110px; flex-shrink: 0; overflow: hidden; }
.nn-inm-card-img img { transition: transform .5s; width: 100%; height: 100%; object-fit: cover; }
.nn-inm-card:hover .nn-inm-card-img img { transform: scale(1.05); }
.nn-inm-card-bar {
  width: 2px;
  align-self: stretch;
  background: var(--nn-primary);
  opacity: 0;
  transition: opacity .3s;
  flex-shrink: 0;
}
.nn-inm-card:hover .nn-inm-card-bar { opacity: 1; }
.nn-inm-card-body { flex: 1; min-width: 0; padding: 1rem; }

/* ══════════════════════════════════════════════
   MUNDO & LATINOAMÉRICA (4-col card grid)
══════════════════════════════════════════════ */
.nn-world-card {
  border-radius: .75rem;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,.06);
  background: #fff;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  transition: border-color .2s;
  text-decoration: none;
}
html.nn-dark .nn-world-card {
  background: #111;
  border-color: rgba(255,255,255,.06);
}
.nn-world-card:hover { border-color: rgba(185,23,81,.3); }
.nn-world-card-img { position: relative; overflow: hidden; }
.nn-world-card-img img { transition: transform .5s; width: 100%; height: 100%; object-fit: cover; }
.nn-world-card:hover .nn-world-card-img img { transform: scale(1.05); }
.nn-world-card-body {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.nn-world-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: .75rem;
  padding-top: .75rem;
  margin-top: auto;
  border-top: 1px solid rgba(0,0,0,.06);
}
html.nn-dark .nn-world-card-meta { border-color: rgba(255,255,255,.06); }
.nn-world-card-title {
  font-size: .875rem;
  font-weight: 700;
  line-height: 1.3;
  color: #111;
  margin-bottom: .5rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color .2s;
}
html.nn-dark .nn-world-card-title { color: #e5e7eb; }
.nn-world-card:hover .nn-world-card-title { color: var(--nn-primary); }

/* ══════════════════════════════════════════════
   TRUMP SECTION (hero left + list right)
══════════════════════════════════════════════ */
.nn-trump-hdr-badge {
  display: inline-flex;
  align-items: center;
  gap: .375rem;
  padding: .25rem .75rem;
  font-size: .75rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: #fff;
  background: var(--nn-primary);
  border-radius: 2px;
  flex-shrink: 0;
}
.nn-trump-layout {
  display: grid;
  grid-template-columns: 7fr 5fr;
}
@media (max-width: 1023px) { .nn-trump-layout { grid-template-columns: 1fr; } }
.nn-trump-hero {
  position: relative;
  overflow: hidden;
  min-height: 420px;
  cursor: pointer;
  display: block;
  text-align: left;
}
.nn-trump-hero img { transition: transform .7s; }
.nn-trump-hero:hover img { transform: scale(1.05); }
.nn-trump-accent {
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 4px;
  background: var(--nn-primary);
}
.nn-trump-right {
  display: flex;
  flex-direction: column;
  border-left: 1px solid rgba(0,0,0,.06);
}
html.nn-dark .nn-trump-right { border-color: rgba(255,255,255,.06); }
.nn-trump-card {
  display: flex;
  gap: .75rem;
  padding: 1rem;
  border-bottom: 1px solid #f3f4f6;
  cursor: pointer;
  transition: background .15s;
  text-decoration: none;
}
.nn-trump-card:last-child { border-bottom: 0; }
html.nn-dark .nn-trump-card { border-color: rgba(255,255,255,.06); }
.nn-trump-card:hover { background: rgba(249,242,246,.8); }
html.nn-dark .nn-trump-card:hover { background: rgba(255,255,255,.03); }
.nn-trump-card-img { border-radius: .5rem; overflow: hidden; flex-shrink: 0; }
.nn-trump-card-img img { transition: transform .5s; width: 80px; height: 64px; object-fit: cover; }
.nn-trump-card:hover .nn-trump-card-img img { transform: scale(1.05); }
.nn-trump-card-title {
  font-size: .875rem;
  font-weight: 700;
  color: #111;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color .2s;
}
html.nn-dark .nn-trump-card-title { color: #e5e7eb; }
.nn-trump-card:hover .nn-trump-card-title { color: var(--nn-primary); }

/* ══════════════════════════════════════════════
   OPINIÓN SECTION (dark background)
══════════════════════════════════════════════ */
.nn-opinion-card {
  background: #111;
  border: 1px solid #222;
  border-radius: 1rem;
  padding: 1.25rem;
  cursor: pointer;
  transition: border-color .3s, transform .3s;
  text-decoration: none;
  display: block;
}
.nn-opinion-card:hover {
  border-color: rgba(185,23,81,.6);
  transform: translateY(-4px);
}
.nn-opinion-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--nn-primary);
  flex-shrink: 0;
  cursor: pointer;
  transition: transform .2s;
}
.nn-opinion-avatar:hover { transform: scale(1.1); }
.nn-opinion-author-name {
  font-size: .875rem;
  font-weight: 900;
  color: #fff;
  transition: color .2s;
  cursor: pointer;
  background: none;
  border: none;
  text-align: left;
  padding: 0;
}
.nn-opinion-author-name:hover { color: #f9a8c9; }
.nn-opinion-role { font-size: .75rem; color: #6b7280; }
.nn-opinion-quote {
  font-size: 1.875rem;
  font-weight: 900;
  color: var(--nn-primary);
  line-height: 1;
  margin: .25rem 0;
}
.nn-opinion-title {
  font-size: .875rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color .2s;
}
.nn-opinion-card:hover .nn-opinion-title { color: #f9a8c9; }
.nn-opinion-excerpt {
  font-size: .75rem;
  color: #6b7280;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin: .75rem 0;
}
.nn-opinion-read {
  display: inline-flex;
  align-items: center;
  gap: .25rem;
  font-size: .75rem;
  font-weight: 900;
  color: var(--nn-primary);
}
.nn-opinion-read i { transition: transform .2s; }
.nn-opinion-card:hover .nn-opinion-read i { transform: translateX(4px); }

/* ══════════════════════════════════════════════
   MOST READ SECTION
══════════════════════════════════════════════ */
.nn-most-card {
  display: flex;
  flex-direction: column;
  gap: .75rem;
  padding: 1rem;
  border-radius: 1rem;
  border: 1px solid #f3f4f6;
  background: #f9f9f9;
  cursor: pointer;
  transition: border-color .2s;
  text-decoration: none;
}
html.nn-dark .nn-most-card {
  background: #111;
  border-color: rgba(255,255,255,.08);
}
.nn-most-card:hover { border-color: rgba(185,23,81,.4); }
.nn-most-img {
  position: relative;
  width: 100%;
  height: 100px;
  border-radius: .75rem;
  overflow: hidden;
}
.nn-most-img img { transition: transform .5s; width: 100%; height: 100%; object-fit: cover; }
.nn-most-card:hover .nn-most-img img { transform: scale(1.05); }
.nn-most-rank {
  position: absolute;
  top: .5rem; left: .5rem;
  width: 28px; height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .75rem;
  font-weight: 900;
  color: #fff;
  background: rgba(0,0,0,.6);
}
.nn-most-rank.top { background: var(--nn-primary); }
.nn-most-title {
  font-size: .75rem;
  font-weight: 700;
  color: #111;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color .2s;
}
html.nn-dark .nn-most-title { color: #e5e7eb; }
.nn-most-card:hover .nn-most-title { color: var(--nn-primary); }
.nn-most-views {
  display: flex;
  align-items: center;
  gap: .375rem;
  font-size: .75rem;
  color: #9ca3af;
  margin-top: auto;
}

/* ══════════════════════════════════════════════
   PODCAST / VIDEO SECTION
══════════════════════════════════════════════ */
.nn-podcast-layout {
  display: grid;
  grid-template-columns: 7fr 5fr;
  gap: 1.5rem;
}
@media (max-width: 1023px) { .nn-podcast-layout { grid-template-columns: 1fr; } }
.nn-video-hero {
  position: relative;
  width: 100%;
  border-radius: 1rem;
  overflow: hidden;
  min-height: 320px;
  cursor: pointer;
  display: block;
}
.nn-video-hero img { transition: transform .7s; width: 100%; height: 100%; object-fit: cover; }
.nn-video-hero:hover img { transform: scale(1.05); }
.nn-play-btn {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.nn-play-circle {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: rgba(255,255,255,.2);
  backdrop-filter: blur(4px);
  border: 2px solid rgba(255,255,255,.5);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .3s;
  color: #fff;
  font-size: 1.5rem;
  padding-left: 4px;
}
.nn-video-hero:hover .nn-play-circle { transform: scale(1.1); }
.nn-podcast-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem;
  border-radius: 1rem;
  border: 1px solid rgba(185,23,81,.1);
  background: #fff;
  transition: border-color .2s;
  cursor: default;
}
html.nn-dark .nn-podcast-item {
  background: #1a1010;
  border-color: rgba(255,255,255,.08);
}
.nn-podcast-item:hover { border-color: rgba(185,23,81,.4); }
.nn-podcast-cover {
  position: relative;
  width: 64px; height: 64px;
  border-radius: .75rem;
  overflow: hidden;
  flex-shrink: 0;
}
.nn-podcast-cover img { width: 100%; height: 100%; object-fit: cover; }
.nn-podcast-play-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,.4);
  transition: background .2s;
  cursor: pointer;
  color: #fff;
  font-size: 1.25rem;
  border: none;
}
.nn-podcast-play-overlay:hover { background: rgba(0,0,0,.6); }
.nn-podcast-subscribe-strip {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  border-radius: 1rem;
  border: 1px solid rgba(185,23,81,.12);
  background: linear-gradient(135deg, rgba(122,13,53,.06) 0%, rgba(185,23,81,.04) 100%);
}
html.nn-dark .nn-podcast-subscribe-strip {
  background: linear-gradient(135deg, rgba(122,13,53,.3) 0%, rgba(185,23,81,.15) 100%);
  border-color: rgba(185,23,81,.2);
}

/* ══════════════════════════════════════════════
   RESPUESTAS SECTION
══════════════════════════════════════════════ */
.nn-resp-card {
  display: flex;
  flex-direction: column;
  border-radius: 1rem;
  overflow: hidden;
  cursor: pointer;
  border: 1px solid rgba(0,0,0,.06);
  background: #fff;
  transition: border-color .2s, transform .2s;
  text-decoration: none;
}
html.nn-dark .nn-resp-card {
  background: #111;
  border-color: rgba(255,255,255,.06);
}
.nn-resp-card:hover { transform: translateY(-2px); }
.nn-resp-top-bar { width: 100%; height: 6px; flex-shrink: 0; }
.nn-resp-body { padding: 1.25rem; display: flex; flex-direction: column; flex: 1; }
.nn-resp-q-mark {
  font-size: 1.5rem;
  font-weight: 900;
  line-height: 1;
  flex-shrink: 0;
  margin-top: 2px;
}
.nn-resp-question {
  font-size: 1rem;
  font-weight: 900;
  color: #111;
  line-height: 1.3;
  margin: 0;
}
html.nn-dark .nn-resp-question { color: #fff; }
.nn-resp-answer {
  font-size: .75rem;
  color: #6b7280;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin: .75rem 0 1rem;
  flex: 1;
}
.nn-resp-cta {
  display: inline-flex;
  align-items: center;
  gap: .375rem;
  font-size: .75rem;
  font-weight: 700;
  margin-top: auto;
}
.nn-resp-cta i { transition: transform .2s; }
.nn-resp-card:hover .nn-resp-cta i { transform: translateX(4px); }

/* ══════════════════════════════════════════════
   LIVE BLOG SECTION
══════════════════════════════════════════════ */
.nn-live-layout {
  display: grid;
  grid-template-columns: 8fr 4fr;
  gap: 2rem;
  padding: 2rem 0;
}
@media (max-width: 1023px) { .nn-live-layout { grid-template-columns: 1fr; } }
.nn-live-entry { display: flex; gap: 1rem; }
.nn-live-time-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
  width: 64px;
}
.nn-live-dot-circle {
  width: 40px; height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: .875rem;
  flex-shrink: 0;
  z-index: 1;
}
.nn-live-line-connector {
  flex: 1;
  width: 2px;
  margin-top: .5rem;
  background: rgba(0,0,0,.07);
}
html.nn-dark .nn-live-line-connector { background: rgba(255,255,255,.06); }
.nn-live-card {
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,.06);
  background: #fff;
  cursor: pointer;
  transition: border-color .2s;
  margin-bottom: .5rem;
  flex: 1;
}
html.nn-dark .nn-live-card {
  background: #111;
  border-color: rgba(255,255,255,.08);
}
.nn-live-card.expanded { border-width: 2px; }
.nn-live-card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: .75rem;
  padding: 1.25rem;
}
.nn-live-card-title {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: #111;
  flex: 1;
}
html.nn-dark .nn-live-card-title { color: #fff; }
.nn-live-chevron {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: #f3f4f6;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform .3s, background .2s;
  color: #6b7280;
  font-size: 1.125rem;
}
html.nn-dark .nn-live-chevron { background: rgba(255,255,255,.08); color: #9ca3af; }
.nn-live-card.expanded .nn-live-chevron { transform: rotate(180deg); }
.nn-live-body { padding: 0 1.25rem 1.25rem; }
.nn-live-body-text {
  font-size: .875rem;
  line-height: 1.6;
  color: #6b7280;
  margin-bottom: 1.25rem;
}
html.nn-dark .nn-live-body-text { color: #9ca3af; }
.nn-live-author-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: .75rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(0,0,0,.06);
}
html.nn-dark .nn-live-author-row { border-color: rgba(255,255,255,.06); }
.nn-live-author-avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--nn-primary);
  flex-shrink: 0;
}
.nn-live-social-btn {
  width: 28px; height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  border: none;
  cursor: pointer;
  transition: opacity .2s;
  font-size: .75rem;
}
.nn-live-social-btn:hover { opacity: .8; }
.nn-live-load-more {
  display: flex;
  align-items: center;
  gap: .5rem;
  padding: .75rem 1.5rem;
  border-radius: 9999px;
  border: 2px solid rgba(0,0,0,.1);
  font-size: .875rem;
  font-weight: 700;
  color: #6b7280;
  background: none;
  cursor: pointer;
  transition: border-color .2s, color .2s;
  margin: 1rem auto 0;
}
html.nn-dark .nn-live-load-more { border-color: rgba(255,255,255,.12); }
.nn-live-load-more:hover { border-color: var(--nn-primary); color: var(--nn-primary); }
.nn-live-entry + .nn-live-entry { margin-top: 1.25rem; }

/* Live sidebar */
.nn-live-counter-card {
  border-radius: 1rem;
  padding: 1.5rem;
  color: #fff;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #5a0a27 0%, #8a1040 40%, #b91751 100%);
}
.nn-live-counter-circle {
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
}
.nn-live-pulse-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: #fff;
  transition: opacity .7s;
}
.nn-live-counter-num {
  font-size: 3.75rem;
  font-weight: 900;
  line-height: 1;
}
.nn-live-topics-card {
  border-radius: 1rem;
  padding: 1.25rem;
  border: 1px solid #f3f4f6;
  background: #fff;
}
html.nn-dark .nn-live-topics-card {
  background: #111;
  border-color: rgba(255,255,255,.08);
}
.nn-live-topic-btn {
  font-size: .75rem;
  font-weight: 600;
  padding: .375rem .75rem;
  border-radius: 9999px;
  border: 1px solid rgba(0,0,0,.1);
  color: #6b7280;
  background: none;
  cursor: pointer;
  transition: background .15s, color .15s, border-color .15s;
  font-family: var(--nn-font);
}
html.nn-dark .nn-live-topic-btn { border-color: rgba(255,255,255,.12); color: #9ca3af; }
.nn-live-topic-btn:hover { background: var(--nn-primary); color: #fff; border-color: var(--nn-primary); }
.nn-live-alert-card {
  border-radius: 1rem;
  padding: 1.25rem;
  border: 1px solid rgba(185,23,81,.2);
  background: rgba(185,23,81,.04);
}
html.nn-dark .nn-live-alert-card { background: rgba(185,23,81,.08); }
.nn-live-trending-item {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: .5rem;
  border-radius: .75rem;
  cursor: pointer;
  transition: background .15s;
  text-decoration: none;
}
.nn-live-trending-item:hover { background: rgba(249,249,249,1); }
html.nn-dark .nn-live-trending-item:hover { background: rgba(255,255,255,.04); }

/* ══════════════════════════════════════════════
   SHORTS / VIDEOS CAROUSEL
══════════════════════════════════════════════ */
.nn-shorts-scroll {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  padding-bottom: .5rem;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.nn-shorts-scroll::-webkit-scrollbar { display: none; }
.nn-short-card {
  flex-shrink: 0;
  width: 176px;
  cursor: pointer;
  text-decoration: none;
  display: block;
}
.nn-short-thumb {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  height: 290px;
}
.nn-short-thumb img { transition: transform .5s; width: 100%; height: 100%; object-fit: cover; }
.nn-short-card:hover .nn-short-thumb img { transform: scale(1.05); }
.nn-short-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.nn-short-play-btn {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: rgba(185,23,81,.85);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.25rem;
  padding-left: 3px;
  transition: transform .3s;
}
.nn-short-card:hover .nn-short-play-btn { transform: scale(1.1); }
.nn-shorts-arrow {
  width: 36px; height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 2px solid #d1d5db;
  color: #374151;
  background: none;
  cursor: pointer;
  transition: border-color .2s, color .2s;
  font-size: 1rem;
}
html.nn-dark .nn-shorts-arrow { border-color: rgba(255,255,255,.3); color: #fff; }
.nn-shorts-arrow:hover:not(:disabled) { border-color: var(--nn-primary); color: var(--nn-primary); }
.nn-shorts-arrow:disabled { opacity: .4; cursor: not-allowed; }

/* ══════════════════════════════════════════════
   TWO COLUMN SECTION
══════════════════════════════════════════════ */
.nn-two-col { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }
@media (max-width: 1023px) { .nn-two-col { grid-template-columns: 1fr; } }
.nn-list-item {
  display: flex;
  gap: .75rem;
  padding: .75rem 0;
  border-bottom: 1px solid #f3f4f6;
  cursor: pointer;
  text-decoration: none;
}
html.nn-dark .nn-list-item { border-color: #1e1e1e; }
.nn-list-item:last-child { border-bottom: 0; }
.nn-list-img { border-radius: .5rem; overflow: hidden; flex-shrink: 0; }
.nn-list-img img { transition: transform .5s; width: 80px; height: 64px; object-fit: cover; }
.nn-list-item:hover .nn-list-img img { transform: scale(1.05); }
.nn-list-title {
  font-size: .875rem;
  font-weight: 700;
  color: #111;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color .2s;
  margin-top: 2px;
}
html.nn-dark .nn-list-title { color: #e5e7eb; }
.nn-list-item:hover .nn-list-title { color: var(--nn-primary); }

/* ══════════════════════════════════════════════
   WHATSAPP CTA BANNER
══════════════════════════════════════════════ */
.nn-wa-banner {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  background: linear-gradient(135deg, #7a0d35 0%, #b91751 50%, #d4205f 100%);
}
.nn-wa-deco {
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,.05);
  pointer-events: none;
}
.nn-wa-inner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.75rem 2rem;
}
@media (min-width: 768px) { .nn-wa-inner { flex-direction: row; } }
.nn-wa-icon {
  width: 64px; height: 64px;
  border-radius: 1rem;
  background: rgba(255,255,255,.2);
  border: 1px solid rgba(255,255,255,.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.875rem;
  flex-shrink: 0;
}
.nn-wa-cta {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .75rem 1.5rem;
  background: #fff;
  border-radius: 9999px;
  font-size: .875rem;
  font-weight: 900;
  color: var(--nn-primary);
  text-decoration: none;
  white-space: nowrap;
  transition: background .2s, transform .2s;
}
.nn-wa-cta:hover { background: rgba(255,255,255,.9); transform: scale(1.05); }

/* ══════════════════════════════════════════════
   DIGITAL NEWSPAPER
══════════════════════════════════════════════ */
.nn-newspaper-layout {
  display: grid;
  grid-template-columns: 4fr 8fr;
  border-radius: 1rem;
  overflow: hidden;
  background: #f9f9f9;
  border: 1px solid #f3f4f6;
}
html.nn-dark .nn-newspaper-layout {
  background: #111;
  border-color: rgba(255,255,255,.08);
}
@media (max-width: 767px) { .nn-newspaper-layout { grid-template-columns: 1fr; } }
.nn-newspaper-cover {
  position: relative;
  min-height: 320px;
}
.nn-newspaper-cover img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; cursor: pointer; }
.nn-newspaper-panel { padding: 2rem; display: flex; flex-direction: column; justify-content: space-between; }
.nn-edition-tabs { display: flex; gap: .5rem; margin-bottom: 1.5rem; }
.nn-edition-tab {
  padding: .375rem 1rem;
  border-radius: 9999px;
  font-size: .75rem;
  font-weight: 700;
  cursor: pointer;
  transition: background .15s, color .15s;
  background: #f3f4f6;
  color: #6b7280;
  border: none;
  font-family: var(--nn-font);
  white-space: nowrap;
}
html.nn-dark .nn-edition-tab { background: rgba(255,255,255,.05); color: #9ca3af; }
.nn-edition-tab.active { background: var(--nn-primary); color: #fff; }
.nn-newspaper-stats { display: flex; align-items: center; gap: 1.5rem; }
.nn-newspaper-stat-val {
  font-size: 1.125rem;
  font-weight: 900;
  color: #111;
}
html.nn-dark .nn-newspaper-stat-val { color: #fff; }
.nn-newspaper-stat-lbl {
  font-size: .75rem;
  color: #9ca3af;
}

/* ── LINE CLAMP ── */
.nn-clamp-2 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.nn-clamp-3 {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ── TEXT COLOR UTILITIES ── */
.nn-text-primary { color: #111; }
html.nn-dark .nn-text-primary { color: #fff; }
.nn-text-secondary { color: #6b7280; }
html.nn-dark .nn-text-secondary { color: #9ca3af; }
.nn-text-accent { color: var(--nn-primary); }
.nn-text-white { color: #fff !important; }

/* ══════════════════════════════════════════════
   SECTION DIVIDER
══════════════════════════════════════════════ */
.nn-section-divider {
  height: 1px;
  background: #f3f4f6;
  margin: 0;
}
html.nn-dark .nn-section-divider { background: rgba(255,255,255,.08); }

/* ══════════════════════════════════════════════
   ARTICLE FOOTER — PIXEL PERFECT
══════════════════════════════════════════════ */

/* Base */
.nn-footer {
  font-family: var(--nn-font);
  background: #0c0c0c;
  color: #fff;
}

/* ── Newsletter strip ── */
.nn-ft-nl-strip {
  background: var(--nn-primary);
  padding: 2rem 0;
}
.nn-ft-nl-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.nn-ft-nl-left {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
}
.nn-ft-nl-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.25rem;
  color: #fff;
}
.nn-ft-nl-label {
  font-size: .625rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .15em;
  color: rgba(255,255,255,.7);
  margin: 0 0 .25rem;
}
.nn-ft-nl-title {
  font-size: 1.375rem;
  font-weight: 900;
  color: #fff;
  margin: 0;
  line-height: 1.15;
  white-space: nowrap;
}
.nn-ft-nl-right {
  flex: 1;
  max-width: 520px;
  min-width: 260px;
}
.nn-ft-nl-success {
  display: none;
  align-items: center;
  gap: .5rem;
  font-size: .875rem;
  font-weight: 700;
  color: #fff;
  background: rgba(255,255,255,.2);
  padding: .875rem 1.5rem;
  border-radius: 9999px;
}
.nn-ft-nl-success i { font-size: 1.125rem; }
.nn-ft-nl-form {
  display: flex;
  gap: .5rem;
}
.nn-ft-nl-input {
  flex: 1;
  padding: .875rem 1.375rem;
  font-size: .875rem;
  border-radius: 9999px;
  border: none;
  background: #fff;
  color: #111;
  outline: none;
  font-family: var(--nn-font);
  min-width: 0;
}
.nn-ft-nl-input::placeholder { color: #9ca3af; }
.nn-ft-nl-btn {
  padding: .875rem 1.75rem;
  font-size: .875rem;
  font-weight: 900;
  color: #fff;
  background: rgba(0,0,0,.35);
  border: 1px solid rgba(255,255,255,.3);
  border-radius: 9999px;
  cursor: pointer;
  white-space: nowrap;
  font-family: var(--nn-font);
  transition: background .2s;
  flex-shrink: 0;
}
.nn-ft-nl-btn:hover { background: rgba(0,0,0,.55); }
.nn-ft-nl-btn:disabled { opacity: .7; cursor: not-allowed; }
@media (max-width: 767px) {
  .nn-ft-nl-inner { flex-direction: column; align-items: flex-start; }
  .nn-ft-nl-title { white-space: normal; font-size: 1.125rem; }
  .nn-ft-nl-right { max-width: 100%; width: 100%; }
}
@media (max-width: 479px) {
  .nn-ft-nl-form { flex-direction: column; }
  .nn-ft-nl-btn { text-align: center; }
}

/* ── Social bar ── */
.nn-ft-social-bar {
  background: #111111;
  border-bottom: 1px solid rgba(255,255,255,.05);
}
.nn-ft-social-inner {
  padding-top: 1.125rem;
  padding-bottom: 1.125rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.nn-ft-social-label {
  font-size: .625rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .15em;
  color: #6b7280;
  margin: 0;
}
.nn-ft-social-icons {
  display: flex;
  align-items: center;
  gap: .75rem;
  flex-wrap: wrap;
}
.nn-ft-social-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,.07);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  font-size: .9375rem;
  transition: background .2s, transform .15s;
}
.nn-ft-social-btn:hover {
  background: var(--nn-primary);
  transform: scale(1.1);
  color: #fff;
}

/* ── Main grid ── */
.nn-ft-main {
  padding-top: 3rem;
  padding-bottom: 3rem;
}
.nn-ft-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
}
@media (max-width: 1023px) {
  .nn-ft-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
}
@media (max-width: 639px) {
  .nn-ft-grid { grid-template-columns: 1fr; gap: 2rem; }
}

/* Brand column */
.nn-ft-col-brand {}
.nn-ft-logo-link { display: inline-block; margin-bottom: 1rem; }
.nn-ft-logo {
  height: 36px;
  width: auto;
  filter: brightness(0) invert(1);
  display: block;
}
.nn-ft-desc {
  font-size: .875rem;
  color: #6b7280;
  line-height: 1.7;
  margin: 0 0 1.25rem;
}
.nn-ft-app-label {
  font-size: .625rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: #6b7280;
  margin: 0 0 .625rem;
}
.nn-ft-app-btns {
  display: flex;
  gap: .5rem;
  flex-wrap: wrap;
}
.nn-ft-app-btn {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .5rem .9rem;
  border-radius: .5rem;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  color: #fff;
  text-decoration: none;
  font-size: .75rem;
  font-weight: 700;
  transition: background .2s, border-color .2s;
}
.nn-ft-app-btn:hover {
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.2);
  color: #fff;
}

/* Col headings */
.nn-ft-col-title {
  font-size: .625rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .15em;
  color: #9ca3af;
  margin: 0 0 1.25rem;
  display: flex;
  align-items: center;
  gap: .5rem;
}
.nn-ft-col-bar {
  width: 16px;
  height: 2px;
  background: var(--nn-primary);
  display: inline-block;
  flex-shrink: 0;
}

/* Sections list */
.nn-ft-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: .625rem;
}
.nn-ft-list-link {
  font-size: .875rem;
  color: #9ca3af;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: .375rem;
  transition: color .2s;
}
.nn-ft-list-link:hover { color: #fff; }
.nn-ft-list-arrow {
  color: #4b5563;
  font-size: .875rem;
  transition: color .2s;
}
.nn-ft-list-link:hover .nn-ft-list-arrow { color: var(--nn-primary); }

/* Topics numbered list */
.nn-ft-topics-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: .625rem;
}
.nn-ft-topic-link {
  display: flex;
  align-items: center;
  gap: .75rem;
  text-decoration: none;
}
.nn-ft-topic-num {
  width: 24px;
  height: 24px;
  background: var(--nn-primary);
  border-radius: .25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .625rem;
  font-weight: 900;
  color: #fff;
  flex-shrink: 0;
}
.nn-ft-topic-label {
  font-size: .875rem;
  font-weight: 700;
  color: #d1d5db;
  transition: color .2s;
}
.nn-ft-topic-link:hover .nn-ft-topic-label { color: #fff; }

/* Trending tags */
.nn-ft-tags {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
}
.nn-ft-tag {
  display: inline-flex;
  align-items: center;
  gap: .25rem;
  font-size: .75rem;
  font-weight: 700;
  padding: .375rem .75rem;
  border-radius: 9999px;
  border: 1px solid rgba(255,255,255,.1);
  color: #9ca3af;
  text-decoration: none;
  transition: color .2s, border-color .2s, background .2s;
}
.nn-ft-tag:hover {
  color: #fff;
  border-color: var(--nn-primary);
  background: rgba(185,23,81,.1);
}
.nn-ft-tag-hash {
  color: var(--nn-primary);
  font-size: .625rem;
}

/* ── Bottom bar ── */
.nn-ft-bottom-wrap {
  border-top: 1px solid rgba(255,255,255,.05);
}
.nn-ft-bottom {
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.nn-ft-copy {
  font-size: .75rem;
  color: #4b5563;
  margin: 0;
}
.nn-ft-tagline {
  font-size: .625rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--nn-primary);
  margin: 0;
}
.nn-ft-legal {
  display: flex;
  align-items: center;
  gap: .875rem;
}
.nn-ft-legal-link {
  font-size: .75rem;
  color: #4b5563;
  text-decoration: none;
  transition: color .2s;
}
.nn-ft-legal-link:hover { color: #9ca3af; }
.nn-ft-legal-dot { color: #374151; font-size: .75rem; }

@media (max-width: 639px) {
  .nn-ft-bottom { flex-direction: column; text-align: center; }
  .nn-ft-legal { justify-content: center; }
}

/* Remove old footer classes if present */
.nn-footer-nl-row, .nn-footer-grid, .nn-footer-bottom { all: unset; }
