/* ============================================================
   ROOT & RESET
   ============================================================ */
:root {
  --accent:       #d4f210;
  --accent-dark:  #2bb8a8;
  --accent-glow:  rgba(212, 242, 16, 0.18);
  --bg-dark:      #0b0f14;
  --bg-dark2:     #101820;
  --bg-card:      rgba(255,255,255,0.04);
  --text-light:   #eaffff;
  --text-muted:   #bfe6e6;
  --text-body:    #cfd8e3;
  --white:        #ffffff;
  --border:       rgba(78, 222, 203, 0.15);
  --border-accent: rgba(212, 242, 16, 0.18);
  --radius-sm:    8px;
  --radius-md:    14px;
  --radius-lg:    22px;
  --transition:   0.32s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html, body {
  background: #ffffff;
  min-height: 100vh;
}

body {
  font-family: 'Poppins', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #2a3a3a;
  line-height: 1.65;
  overflow-x: hidden;
}

/* ============================================================
   HEADER / NAVBAR
   ============================================================ */
.header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(11, 15, 20, 0.65);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(212, 242, 16, 0.08);
  transition: background var(--transition), box-shadow var(--transition);
}

.header.scrolled {
  background: rgba(11, 15, 20, 0.97);
  box-shadow: 0 4px 32px rgba(0, 0, 0, 0.45);
}

.nav {
  max-width: 1200px;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

/* Logo */
.logo {
  font-size: 20px;
  font-weight: 700;
  color: var(--accent);
  text-decoration: none;
  letter-spacing: -0.3px;
  flex-shrink: 0;
  transition: opacity var(--transition);
}
.logo:hover { opacity: 0.82; }

/* Menú desktop */
.menu {
  display: flex;
  align-items: center;
  gap: 2px;
}

.menu a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  font-size: 13.5px;
  font-weight: 500;
  padding: 7px 13px;
  border-radius: var(--radius-sm);
  position: relative;
  transition: color var(--transition), background var(--transition);
}

.menu a:hover {
  color: var(--accent);
  background: rgba(212, 242, 16, 0.07);
}

/* Subrayado animado */
.menu a::after {
  content: "";
  position: absolute;
  left: 13px;
  bottom: 3px;
  width: 0;
  height: 1.5px;
  background: var(--accent);
  border-radius: 2px;
  transition: width var(--transition);
}
.menu a:hover::after {
  width: calc(100% - 26px);
}

/* Hamburger (móvil) */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  border-radius: var(--radius-sm);
  transition: background var(--transition);
}
.hamburger:hover {
  background: rgba(212, 242, 16, 0.08);
}
.hamburger span {
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  display: block;
  transition: all var(--transition);
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; width: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ============================================================
   SECCIONES — BASE
   ============================================================ */
.section {
  padding: 110px 24px;
  background: #ffffff;
  position: relative;
  overflow: hidden;
}

/* Glow radial de fondo (más suave en blanco) */
.section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 80% 50% at top center,
    rgba(212, 242, 16, 0.08),
    transparent 65%
  );
  pointer-events: none;
}

/* Línea decorativa lateral izquierda */
.section::after {
  content: "";
  position: absolute;
  left: 0;
  top: 15%;
  height: 70%;
  width: 2px;
  background: linear-gradient(
    to bottom,
    transparent,
    rgba(212, 242, 16, 0.3),
    transparent
  );
}

/* Contenedores internos */
.container-mision,
.section .container {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

/* ============================================================
   ETIQUETA DE SECCIÓN (label superior)
   ============================================================ */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.section-label::before,
.section-label::after {
  content: "";
  display: inline-block;
  width: 28px;
  height: 1px;
  background: var(--accent);
  opacity: 0.5;
}

/* ============================================================
   TÍTULOS H2
   ============================================================ */
.section h2 {
  font-size: clamp(26px, 4vw, 40px);
  font-weight: 700;
  color: #1a2a2a;
  letter-spacing: -0.5px;
  line-height: 1.2;
  margin-bottom: 8px;
  position: relative;
  z-index: 1;
}

/* Acento de color en span dentro del h2 */
.section h2 span {
  color: var(--accent);
}

/* Línea decorativa bajo el título */
.section h2::after {
  content: "";
  display: block;
  width: 48px;
  height: 3px;
  margin: 18px auto 0;
  background: linear-gradient(90deg, var(--accent), transparent);
  border-radius: 3px;
}

/* ============================================================
   PÁRRAFOS
   ============================================================ */
.section p {
  color: #4a6060;
  font-size: 16px;
  line-height: 1.82;
  max-width: 820px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.section p + p {
  margin-top: 18px;
}

/* Saltos de línea semánticos */
.section p br {
  display: block;
  content: "";
  margin-bottom: 12px;
}

/* ============================================================
   CARD DE CONTENIDO (misión / visión)
   ============================================================ */
.content-card {
  background: #f9fbfb;
  border: 1px solid rgba(212, 242, 16, 0.35);
  border-radius: var(--radius-lg);
  padding: 56px 60px;
  margin-top: 36px;
  position: relative;
  z-index: 1;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.content-card:hover {
  border-color: rgba(212, 242, 16, 0.7);
  box-shadow:
    0 0 40px rgba(212, 242, 16, 0.10),
    0 16px 40px rgba(0, 0, 0, 0.08);
}

/* Esquina decorativa */
.content-card::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 40px;
  width: 60px;
  height: 2px;
  background: var(--accent);
  border-radius: 0 0 2px 2px;
}

/* Ícono grande opcional dentro de la card */
.card-icon {
  font-size: 38px;
  margin-bottom: 20px;
  display: block;
  filter: drop-shadow(0 4px 12px rgba(212, 242, 16, 0.25));
}

/* ============================================================
   GRID MISIÓN + VISIÓN (layout lado a lado)
   ============================================================ */
.mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.mv-card {
  background: #f9fbfb;
  border: 1px solid rgba(212, 242, 16, 0.3);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  text-align: left;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.mv-card:hover {
  transform: translateY(-6px);
  border-color: rgba(212, 242, 16, 0.65);
  box-shadow:
    0 20px 40px rgba(0, 0, 0, 0.08),
    0 0 30px rgba(212, 242, 16, 0.10);
}

/* Glow interno de la card */
.mv-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: radial-gradient(
    ellipse at top left,
    rgba(212, 242, 16, 0.06),
    transparent 70%
  );
  pointer-events: none;
}

/* Número o ícono de la card */
.mv-card-number {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.mv-card-number::after {
  content: "";
  flex: 1;
  height: 1px;
  background: rgba(212, 242, 16, 0.2);
}

.mv-card h2 {
  font-size: 26px;
  font-weight: 700;
  color: #1a2a2a;
  text-align: left;
  margin-bottom: 16px;
}
.mv-card h2::after { display: none; }

.mv-card p {
  font-size: 15px;
  color: #4a6060;
  line-height: 1.78;
  text-align: left;
  margin: 0;
}

/* ============================================================
   SEPARADOR VISUAL ENTRE SECCIONES
   ============================================================ */
.section-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(
    to right,
    transparent,
    rgba(212, 242, 16, 0.2),
    transparent
  );
  position: relative;
  z-index: 1;
}

/* ============================================================
   RESPONSIVE — TABLET (≤ 1024px)
   ============================================================ */
@media (max-width: 1024px) {
  .mv-grid {
    grid-template-columns: 1fr;
    max-width: 720px;
  }

  .content-card {
    padding: 44px 40px;
  }

  .section {
    padding: 90px 24px;
  }
}

/* ============================================================
   RESPONSIVE — MÓVIL (≤ 768px)
   ============================================================ */
@media (max-width: 768px) {
  /* Header */
  .menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(11, 15, 20, 0.98);
    flex-direction: column;
    padding: 16px 20px 24px;
    gap: 2px;
    border-top: 1px solid var(--border-accent);
    border-bottom: 1px solid var(--border-accent);
  }
  .menu.open { display: flex; }

  .menu a {
    font-size: 15px;
    padding: 12px 14px;
    border-radius: var(--radius-sm);
  }
  .menu a::after { display: none; }

  .hamburger { display: flex; }

  /* Sección */
  .section {
    padding: 80px 18px;
  }

  .section::after { display: none; }

  /* Títulos */
  .section h2 {
    font-size: clamp(22px, 6vw, 30px);
  }
  .section h2::after {
    margin: 14px auto 0;
  }

  /* Párrafos */
  .section p {
    font-size: 15px;
    line-height: 1.75;
  }

  /* Cards */
  .content-card {
    padding: 32px 24px;
    border-radius: var(--radius-md);
    margin-top: 24px;
  }
  .content-card::before { left: 24px; width: 40px; }

  .mv-card {
    padding: 36px 26px;
  }
  .mv-card h2 { font-size: 22px; }
  .mv-card p  { font-size: 14.5px; }

  /* Label */
  .section-label { font-size: 10px; letter-spacing: 2.5px; }
}

/* ============================================================
   RESPONSIVE — MÓVIL PEQUEÑO (≤ 480px)
   ============================================================ */
@media (max-width: 480px) {
  .nav { padding: 12px 16px; }
  .logo { font-size: 17px; }

  .section {
    padding: 70px 16px;
  }

  .content-card {
    padding: 26px 18px;
  }

  .mv-card {
    padding: 28px 20px;
  }

  .section p {
    font-size: 14.5px;
  }

  .section-label::before,
  .section-label::after { width: 18px; }
}

/* ============================================================
   NAVBAR (páginas internas)
   ============================================================ */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(11, 15, 20, 0.70);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(212, 242, 16, 0.08);
  transition: background var(--transition), box-shadow var(--transition);
}
.navbar.scrolled {
  background: rgba(11, 15, 20, 0.97);
  box-shadow: 0 4px 30px rgba(0,0,0,0.45);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 15px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

/* Logo navbar */
.navbar .logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  text-decoration: none;
  flex-shrink: 0;
}
.logo-icon   { color: var(--accent); font-size: 20px; }
.logo-accent { color: var(--accent); }

/* Links navbar */
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-links a {
  color: rgba(255,255,255,0.72);
  text-decoration: none;
  font-size: 13.5px;
  font-weight: 500;
  padding: 7px 13px;
  border-radius: var(--radius-sm);
  position: relative;
  transition: color var(--transition), background var(--transition);
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--accent);
  background: rgba(212, 242, 16, 0.07);
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 13px;
  bottom: 3px;
  width: 0;
  height: 1.5px;
  background: var(--accent);
  border-radius: 2px;
  transition: width var(--transition);
}
.nav-links a:hover::after,
.nav-links a.active::after {
  width: calc(100% - 26px);
}

/* Hamburger navbar */
.navbar .hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  border-radius: var(--radius-sm);
}
.navbar .hamburger span {
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  display: block;
  transition: all var(--transition);
}
.navbar .hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.navbar .hamburger.active span:nth-child(2) { opacity: 0; }
.navbar .hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* ============================================================
   HERO DE NOTICIA
   ============================================================ */
.header-noticia {
  background:
    linear-gradient(160deg, rgba(11,15,20,0.92) 0%, rgba(16,24,32,0.96) 100%),
    url("img/Lago-Lariscota.jpg") center / cover no-repeat;
  padding: 130px 24px 80px;
  position: relative;
  overflow: hidden;
}

/* Glow radial de fondo */
.header-noticia::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 70% 60% at 30% 50%,
    rgba(212, 242, 16, 0.07),
    transparent 65%
  );
  pointer-events: none;
}

/* Línea izquierda decorativa */
.header-noticia::after {
  content: "";
  position: absolute;
  left: 0;
  top: 20%;
  height: 60%;
  width: 2px;
  background: linear-gradient(to bottom, transparent, rgba(212,242,16,0.35), transparent);
}

.noticia-hero-inner {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

/* Meta (tag + fecha) */
.noticia-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 22px;
}

.noticia-tag-hero {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--bg-dark);
  background: var(--accent);
  padding: 4px 12px;
  border-radius: 30px;
}

.noticia-fecha {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  letter-spacing: 1px;
}

/* Título */
.header-noticia h1 {
  font-size: clamp(26px, 5vw, 50px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.12;
  letter-spacing: -0.8px;
  margin-bottom: 20px;
}

/* Subtítulo del hero */
.noticia-hero-sub {
  font-size: 16px;
  color: rgba(255,255,255,0.58);
  line-height: 1.7;
  max-width: 640px;
  margin: 0 auto 28px;
}

/* Fuentes en el hero */
.noticia-hero-sources {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 12px;
  color: rgba(255,255,255,0.38);
}
.noticia-hero-sources a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
  opacity: 0.85;
  transition: opacity var(--transition);
}
.noticia-hero-sources a:hover { opacity: 1; }
.noticia-hero-sources .dot { color: rgba(255,255,255,0.25); }

/* ============================================================
   MAIN CONTENIDO
   ============================================================ */
.noticia-main {
  background: #ffffff;
  padding: 80px 24px 100px;
}

/* Layout dos columnas */
.noticia-layout {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 48px;
  align-items: flex-start;
}

/* ============================================================
   COLUMNA TEXTO
   ============================================================ */
.noticia-texto {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

/* Card de introducción destacada */
.noticia-intro-card {
  background: #f6fbf9;
  border-left: 3px solid var(--accent);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: 26px 28px;
}
.noticia-intro-card p {
  font-size: 15.5px;
  color: #2a3a3a;
  line-height: 1.80;
  margin: 0;
}
.noticia-intro-card strong {
  color: #1a2a2a;
  font-weight: 600;
}

/* Párrafos regulares */
.noticia-texto > p {
  font-size: 15px;
  color: #4a6060;
  line-height: 1.82;
}

/* Card de fuentes */
.fuentes-card {
  background: #f9fbfb;
  border: 1px solid rgba(212,242,16,0.25);
  border-radius: var(--radius-md);
  padding: 28px 30px;
  margin-top: 8px;
}

.fuentes-titulo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #2a3a3a;
  margin-bottom: 16px;
}
.fuentes-icon { font-size: 16px; }

.fuentes-lista {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.fuentes-lista li {
  padding-left: 16px;
  position: relative;
}
.fuentes-lista li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-size: 12px;
  line-height: 1.6;
}
.fuentes-lista a {
  font-size: 13.5px;
  color: #3a6a6a;
  font-weight: 500;
  text-decoration: none;
  transition: color var(--transition);
}
.fuentes-lista a:hover { color: #1a9a8a; }

/* Botón volver */
.btn-volver {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 11px 22px;
  border: 1.5px solid rgba(212,242,16,0.45);
  border-radius: var(--radius-sm);
  color: #2a3a3a;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  background: transparent;
  width: fit-content;
  transition: all var(--transition);
}
.btn-volver:hover {
  background: var(--accent);
  color: var(--bg-dark);
  border-color: var(--accent);
  box-shadow: 0 6px 20px rgba(212,242,16,0.2);
}

/* ============================================================
   COLUMNA LATERAL (imagen + datos)
   ============================================================ */
.noticia-imagen-aside {
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: sticky;
  top: 90px;
}

/* Imagen */
.noticia-imagen {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 12px 36px rgba(0,0,0,0.12);
  border: 1px solid rgba(212,242,16,0.12);
  position: relative;
}
.noticia-imagen img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.noticia-imagen:hover img { transform: scale(1.04); }

.imagen-caption {
  padding: 10px 16px;
  font-size: 11px;
  color: #8aacac;
  letter-spacing: 0.5px;
  background: #f9fbfb;
  border-top: 1px solid rgba(212,242,16,0.1);
}

/* Card datos clave */
.datos-card {
  background: #f9fbfb;
  border: 1px solid rgba(212,242,16,0.22);
  border-radius: var(--radius-md);
  padding: 26px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.datos-titulo {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #2a3a3a;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(212,242,16,0.18);
}

.dato-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.dato-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #8aacac;
}
.dato-valor {
  font-size: 14px;
  font-weight: 500;
  color: #2a3a3a;
}
.dato-valor.accent-text {
  color: #1a8a7a;
  font-weight: 700;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--bg-dark);
  border-top: 1px solid rgba(212,242,16,0.08);
  padding: 40px 24px;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  text-align: center;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-size: 15px;
}
.footer-brand strong { color: var(--accent); }
.footer-links {
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
  justify-content: center;
}
.footer-links a {
  color: rgba(255,255,255,0.45);
  font-size: 13px;
  padding: 4px 10px;
  border-radius: 4px;
  text-decoration: none;
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--accent); }
.footer-copy {
  font-size: 11.5px;
  color: rgba(255,255,255,0.25);
}

/* ============================================================
   RESPONSIVE NOTICIA — TABLET (≤ 900px)
   ============================================================ */
@media (max-width: 900px) {
  .noticia-layout {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .noticia-imagen-aside {
    position: static;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 20px;
  }

  .noticia-imagen {
    flex: 1;
    min-width: 260px;
  }
  .noticia-imagen img { height: 200px; }

  .datos-card {
    flex: 1;
    min-width: 220px;
  }

  .header-noticia {
    padding: 110px 24px 60px;
  }
}

/* ============================================================
   RESPONSIVE NOTICIA — MÓVIL (≤ 768px)
   ============================================================ */
@media (max-width: 768px) {
  .navbar .hamburger { display: flex; }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(11,15,20,0.98);
    flex-direction: column;
    padding: 16px 20px 24px;
    gap: 2px;
    border-top: 1px solid rgba(212,242,16,0.1);
  }
  .nav-links.open { display: flex; }
  .nav-links a {
    font-size: 15px;
    padding: 12px 14px;
  }
  .nav-links a::after { display: none; }

  .header-noticia {
    padding: 100px 20px 56px;
    text-align: center;
  }
  .header-noticia h1 { font-size: clamp(22px, 6vw, 34px); }
  .noticia-hero-sub  { font-size: 14.5px; }

  .noticia-main { padding: 50px 18px 70px; }

  .noticia-intro-card { padding: 20px 20px; }
  .noticia-intro-card p { font-size: 14.5px; }

  .noticia-imagen-aside {
    flex-direction: column;
  }
  .noticia-imagen img { height: 220px; }

  .fuentes-card { padding: 22px 20px; }
}

/* ============================================================
   RESPONSIVE NOTICIA — MÓVIL PEQUEÑO (≤ 480px)
   ============================================================ */
@media (max-width: 480px) {
  .noticia-meta { flex-direction: column; gap: 6px; }
  .header-noticia { padding: 90px 16px 48px; }
  .noticia-main { padding: 40px 16px 60px; }
  .datos-card, .fuentes-card { padding: 20px 16px; }
  .noticia-texto > p { font-size: 14px; }
  .noticia-hero-sources { font-size: 11px; }
  .btn-volver { font-size: 12px; padding: 10px 18px; }
}