/*
Theme Name: Aula Nova
Theme URI: https://aulanova.com.ar
Author: Diego
Description: Tema propio de Aula Nova
Version: 1.0.0
Text Domain: aulanova
*/

/* ================================================
   VARIABLES
   ================================================ */
:root {
  --anp-primario:      #1B2733;
  --anp-primario-soft: #243444;
  --anp-primario-bg:   #EEF1F4;
  --anp-dorado:        #D4B57E;
  --anp-dorado-claro:  #F5EDD8;
  --anp-dorado-oscuro: #A8894F;
  --anp-texto:         #1B2733;
  --anp-texto-suave:   #5a6a78;
  --anp-borde:         rgba(27,39,51,0.12);
  --anp-fondo:         #ffffff;
  --anp-fondo-suave:   #F8F7F4;
  --anp-radio:         10px;
  --anp-radio-lg:      14px;
}

/* ================================================
   RESET MÍNIMO
   ================================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--anp-texto);
  background: var(--anp-fondo);
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul, ol {
  list-style: none;
}

/* ================================================
   TIPOGRAFÍA BASE
   ================================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  line-height: 1.2;
  color: var(--anp-texto);
}

p {
  margin-bottom: 1rem;
}

/* ================================================
   LAYOUT
   ================================================ */
.anp-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.anp-container--narrow {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ================================================
   HEADER
   ================================================ */
.anp-site-header {
  background: var(--anp-primario);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  box-shadow: 0 1px 0 rgba(212,181,126,0.25), 0 3px 20px rgba(212,181,126,0.20);
}

.anp-site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 44px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.anp-site-logo {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0.01em;
  text-decoration: none;
  line-height: 1;
}

.anp-site-logo__aula { color: #ffffff; }
.anp-site-logo__nova { color: var(--anp-dorado); }

.anp-site-nav ul {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.anp-site-nav a {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  transition: color 0.15s;
}

.anp-site-nav a:hover { color: var(--anp-dorado); }
.anp-site-nav .current-menu-item a { color: #ffffff; }

/* ================================================
   FOOTER
   ================================================ */
.anp-site-footer {
  background: var(--anp-primario);
  color: rgba(255,255,255,0.5);
  font-size: 13px;
  text-align: center;
  padding: 32px 1.5rem;
  margin-top: auto;
}

.anp-site-footer a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
}

.anp-site-footer a:hover { color: var(--anp-dorado); }

/* ================================================
   CONTENIDO DE PÁGINAS (page.php)
   ================================================ */
.anp-page-content {
  min-height: calc(100vh - 64px);
  padding: 0;
}

/* ================================================
   HOME — LONGPAGE
   ================================================ */

/* UTILIDADES */
.anp-eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--anp-dorado);
  margin-bottom: 0.75rem;
}
.anp-eyebrow--dark { color: var(--anp-dorado-oscuro); }

.anp-btn {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  padding: 0.7rem 1.5rem;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.15s;
  text-decoration: none;
}
.anp-btn--primary  { background: var(--anp-dorado); color: var(--anp-primario); }
.anp-btn--primary:hover { background: var(--anp-dorado-oscuro); color: #fff; }
.anp-btn--outline  { border: 1.5px solid var(--anp-dorado); color: var(--anp-dorado); }
.anp-btn--outline:hover { background: rgba(212,181,126,0.1); }
.anp-btn--ghost    { border: 1.5px solid var(--anp-primario); color: var(--anp-primario); }
.anp-btn--ghost:hover { background: var(--anp-primario); color: #fff; }

/* SECCIONES */
.anp-section { padding: 5rem 0; }
.anp-section--light { background: var(--anp-fondo-suave); }
.anp-section--dark  { background: var(--anp-primario); }
.anp-section--white { background: var(--anp-fondo); }

.anp-section__title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-bottom: 0.75rem;
}
.anp-section__title--light { color: #fff; }

.anp-section__sub {
  font-size: 1rem;
  color: var(--anp-texto-suave);
  margin-bottom: 2.5rem;
  max-width: 600px;
}
.anp-section__sub--light { color: rgba(255,255,255,0.65); }

/* HERO */
.anp-hero {
  padding: 5rem 0 4rem;
}
.anp-hero--light { background: var(--anp-fondo); }

.anp-hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.anp-hero__title {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.15;
  margin-bottom: 1rem;
}
.anp-hero__title--dark { color: var(--anp-primario); }
.anp-hero__title em {
  font-style: normal;
  color: var(--anp-dorado);
}
.anp-hero__sub {
  font-size: 1rem;
  margin-bottom: 2rem;
  line-height: 1.7;
}
.anp-hero__sub--dark { color: var(--anp-texto-suave); }
.anp-hero__btns {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.anp-hero__stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 3rem;
  padding-top: 2rem;
  flex-wrap: wrap;
}
.anp-hero__stats--dark {
  border-top: 1px solid var(--anp-borde);
}
.anp-stat__val {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--anp-dorado);
}
.anp-stat__val--dark { color: var(--anp-dorado-oscuro); }
.anp-stat__lbl {
  display: block;
  font-size: 0.8rem;
  margin-top: 2px;
}
.anp-stat__lbl--dark { color: var(--anp-texto-suave); }
.anp-hero__right {
  border-radius: var(--anp-radio-lg);
  overflow: hidden;
}
.anp-hero__img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  object-position: center;
  border-radius: var(--anp-radio-lg);
  display: block;
}

/* CARDS */
.anp-cards { display: grid; gap: 1rem; }
.anp-cards--2 { grid-template-columns: 1fr 1fr; }

.anp-card {
  background: #fff;
  border: 1px solid var(--anp-borde);
  border-radius: var(--anp-radio);
  padding: 1.25rem 1.5rem;
  box-shadow: 0 2px 12px rgba(27,39,51,0.08);
  transition: box-shadow 0.2s, transform 0.2s;
}
.anp-card:hover {
  box-shadow: 0 6px 24px rgba(27,39,51,0.13);
  transform: translateY(-2px);
}
.anp-card h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
  font-family: 'Inter', sans-serif;
}
.anp-card p {
  font-size: 0.9rem;
  color: var(--anp-texto-suave);
  margin: 0;
  line-height: 1.6;
}
.anp-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 500;
  padding: 2px 8px;
  border-radius: 20px;
  background: var(--anp-primario-bg);
  color: var(--anp-texto-suave);
  margin-bottom: 0.5rem;
  letter-spacing: 0.02em;
}
.anp-paraquien__cierre {
  margin-top: 2.5rem;
  padding-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.anp-paraquien__cierre p {
  font-size: 1rem;
  font-weight: 500;
  margin: 0;
  font-style: italic;
}
.anp-paraquien__cierre--dark p { color: rgba(255,255,255,0.8); }
.anp-paraquien__cierre--dark {
  border-top: 1px solid rgba(255,255,255,0.12);
}

/* PASOS */
.anp-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.anp-step {
  border-top: 2px solid rgba(255,255,255,0.15);
  padding-top: 1.25rem;
}
.anp-step--light {
  border-top: 2px solid var(--anp-borde);
}
.anp-step__num {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 600;
  color: var(--anp-dorado);
  margin-bottom: 0.75rem;
  opacity: 0.8;
}
.anp-step h3 {
  font-size: 1rem;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  margin-bottom: 0.4rem;
}
.anp-step--light h3 { color: var(--anp-primario); }
.anp-step p {
  font-size: 0.88rem;
  line-height: 1.65;
  margin: 0;
}
.anp-step--light p { color: var(--anp-texto-suave); }

/* PLANES */
.anp-planes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  max-width: 780px;
  margin: 0 auto;
}
.anp-plan {
  background: #fff;
  border: 1px solid var(--anp-borde);
  border-radius: var(--anp-radio-lg);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 20px rgba(27,39,51,0.08);
  transition: transform 0.2s, box-shadow 0.2s;
}
.anp-plan:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 32px rgba(27,39,51,0.14);
}
.anp-plan--featured {
    border: 2px solid var(--anp-dorado);
}
.anp-plan--featured:hover {
  box-shadow: 0 10px 32px rgba(212,181,126,0.35);
}
.anp-plan__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.75rem;
}
.anp-plan__badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 500;
  padding: 3px 10px;
  border-radius: 20px;
  background: var(--anp-primario-bg);
  color: var(--anp-texto-suave);
}
.anp-plan__badge--premium {
  background: var(--anp-primario);
  color: var(--anp-dorado);
}
.anp-plan__recomendado {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--anp-dorado-oscuro);
  background: var(--anp-dorado-claro);
  padding: 3px 10px;
  border-radius: 20px;
}
.anp-plan__name {
  font-size: 1.15rem;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  margin-bottom: 1rem;
}
.anp-plan__features {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
  flex: 1;
}
.anp-plan__features li {
  font-size: 0.88rem;
  color: var(--anp-texto-suave);
  padding: 0.45rem 0;
  border-bottom: 1px solid var(--anp-borde);
  line-height: 1.5;
}
.anp-plan__features li:last-child { border: none; }
.anp-plan--featured .anp-plan__features li:not(:first-child) {
  color: var(--anp-primario);
  font-weight: 500;
}

/* SOBRE MARIELA */
.anp-sobre {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 3rem;
  align-items: start;
  max-width: 860px;
  margin: 0 auto;
}
.anp-foto-placeholder {
  background: var(--anp-primario-bg);
  border-radius: var(--anp-radio);
  height: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  color: var(--anp-texto-suave);
}
.anp-sobre__foto {
  width: 220px;
  height: 260px;
  object-fit: cover;
  object-position: top;
  border-radius: var(--anp-radio);
}
.anp-sobre__nombre {
  font-size: 1.5rem;
  margin-bottom: 0.25rem;
}
.anp-sobre__rol {
  font-size: 0.9rem;
  color: var(--anp-dorado-oscuro);
  margin-bottom: 1.5rem;
}
.anp-credenciales {
  list-style: none;
  padding: 0;
  margin: 0;
}
.anp-credenciales li {
  font-size: 0.9rem;
  color: var(--anp-texto-suave);
  padding: 0.6rem 0 0.6rem 1rem;
  border-bottom: 1px solid var(--anp-borde);
  position: relative;
  line-height: 1.6;
}
.anp-credenciales li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 1rem;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--anp-dorado);
}
.anp-credenciales li:last-child { border: none; }

/* CTA */
.anp-cta { padding: 6rem 0; }
.anp-cta .anp-section__sub {
  margin-left: auto;
  margin-right: auto;
}

/* ================================================
   POLÍTICA DE PRIVACIDAD (sitio público)
   ================================================ */
.anp-privacidad {
  padding: 5rem 0 6rem;
  background: var(--anp-fondo);
}
.anp-privacidad__titulo {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: var(--anp-primario);
  margin-bottom: 0.5rem;
}
.anp-privacidad__fecha {
  font-size: 0.85rem;
  color: var(--anp-texto-suave);
  margin-bottom: 2.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--anp-borde);
}
.anp-privacidad__seccion {
  margin-bottom: 2rem;
}
.anp-privacidad__seccion h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--anp-primario);
  margin-bottom: 0.6rem;
}
.anp-privacidad__seccion p {
  font-size: 0.95rem;
  color: var(--anp-texto-suave);
  line-height: 1.75;
  margin: 0;
}
.anp-privacidad__seccion a {
  color: var(--anp-dorado-oscuro);
  text-decoration: underline;
}
.anp-privacidad__highlight {
  background: var(--anp-dorado-claro);
  border-left: 3px solid var(--anp-dorado);
  padding: 1rem 1.25rem;
  border-radius: 0 6px 6px 0;
  font-size: 0.9rem;
  color: var(--anp-dorado-oscuro);
  line-height: 1.7;
}

/* ================================================
   RESPONSIVE
   ================================================ */
/* Hamburger oculto en desktop */
.anp-hamburger {
  display: none;
}

@media (max-width: 900px) {
  .anp-hero__inner {
    grid-template-columns: 1fr;
  }
  .anp-hero__right {
    display: block;        /* ← sacar el display:none */
    order: -1;             /* ← imagen arriba, texto abajo */
  }
  .anp-hero__img {
    height: 260px;         /* ← altura más compacta en mobile */
  }
}

@media (max-width: 768px) {
  .anp-site-header__inner { height: 56px; }
  .anp-site-logo { font-size: 18px; }
  .anp-site-nav ul { gap: 1.25rem; }
  .anp-site-nav a { font-size: 13px; }
  .anp-cards--2 { grid-template-columns: 1fr; }
  .anp-planes { grid-template-columns: 1fr; max-width: 100%; }
  .anp-sobre { grid-template-columns: 1fr; }
  .anp-foto-placeholder { height: 200px; }
}
@media (max-width: 600px) {
  .anp-steps { grid-template-columns: 1fr; }
  .anp-hero__stats { gap: 1.5rem; }
  .anp-section { padding: 3rem 0; }
}
@media (max-width: 480px) {
  .anp-hamburger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
  }
  .anp-hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: all 0.25s;
  }
  .anp-hamburger--open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .anp-hamburger--open span:nth-child(2) {
    opacity: 0;
  }
  .anp-hamburger--open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .anp-site-nav {
    display: none;
    position: absolute;
    top: 56px;
    left: 0;
    right: 0;
    background: var(--anp-primario);
    padding: 1rem 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 8px 24px rgba(0,0,0,0.25);
  }
  .anp-site-nav.anp-nav--open {
    display: block;
  }
  .anp-site-nav ul {
    flex-direction: column;
    gap: 0;
  }
  .anp-site-nav li {
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }
  .anp-site-nav a {
    display: block;
    padding: 0.75rem 0;
    font-size: 15px;
  }
}

/* INFOGRAFÍA */
.anp-infografia__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.anp-infografia__img img {
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
  border-radius: var(--anp-radio-lg);
  box-shadow: 0 8px 32px rgba(27,39,51,0.12);
  display: block;
}
@media (max-width: 768px) {
  .anp-infografia__inner {
    grid-template-columns: 1fr;
  }
  .anp-infografia__img img {
    max-width: 320px;
  }
}

/* WHATSAPP FLOTANTE */
.anp-wa-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  width: 56px;
  height: 56px;
  background: var(--anp-dorado);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(212,181,126,0.45);
  z-index: 999;
  transition: transform 0.2s, box-shadow 0.2s;
  color: var(--anp-primario);
}
.anp-wa-float:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 24px rgba(212,181,126,0.6);
}
.anp-wa-float svg {
  width: 28px;
  height: 28px;
}

/* ESTILOS DEL BLOG */
/* ================================================
   SINGLE — entrada individual
   ================================================ */

.anp-single-hero {
  position: relative;
  height: 420px;
  overflow: hidden;
}

.anp-single-hero__img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.anp-single-hero__img--default {
  background-image: url('https://aulanova.com.ar/wp-content/uploads/2026/04/aulanova-logo.webp');
  background-color: var(--anp-primario);
  background-size: 260px;
  background-repeat: no-repeat;
  background-position: center;
}

.anp-single-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(27,39,51,0.85) 0%, rgba(27,39,51,0.3) 60%, transparent 100%);
  display: flex;
  align-items: flex-end;
  padding-bottom: 2.5rem;
}

.anp-single-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  color: #ffffff;
  line-height: 1.2;
  margin: 0;
}

.anp-single-body {
  padding: 3.5rem 0 5rem;
  background: var(--anp-fondo);
}

.anp-single-meta {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--anp-borde);
}

.anp-single-back {
  font-size: 0.82rem;
  color: var(--anp-primario);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.15s;
}
.anp-single-back:hover { color: var(--anp-dorado-oscuro); }

.anp-single-date {
  font-size: 0.82rem;
  color: var(--anp-texto-suave);
}

.anp-single-content {
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--anp-texto);
}

.anp-single-content p { margin-bottom: 1.4rem; }
.anp-single-content h2, .anp-single-content h3 { margin: 2rem 0 0.75rem; }
.anp-single-content img { border-radius: var(--anp-radio); margin: 1.5rem 0; }
.anp-single-content a { color: var(--anp-dorado-oscuro); text-decoration: underline; }

.anp-single-footer {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--anp-borde);
}

/* ================================================
   ARCHIVE — listado de entradas
   ================================================ */

.anp-archive-hero {
  position: relative;
  height: 280px;
  overflow: hidden;
  background: var(--anp-primario);
}

.anp-archive-hero__bg {
  position: absolute;
  inset: 0;
  background-image: url('https://aulanova.com.ar/wp-content/uploads/2026/05/logo-circular.webp');
  background-size: 220px;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0.08;
}

.anp-archive-hero__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.anp-archive-hero__title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  color: #ffffff;
  margin: 0;
}

.anp-archive-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}

.anp-archive-card {
  background: #fff;
  border: 1px solid var(--anp-borde);
  border-radius: var(--anp-radio-lg);
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(27,39,51,0.07);
  transition: transform 0.2s, box-shadow 0.2s;
}
.anp-archive-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(27,39,51,0.12);
}

.anp-archive-card__img-wrap {
  display: block;
  height: 200px;
  overflow: hidden;
}

.anp-archive-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}
.anp-archive-card:hover .anp-archive-card__img { transform: scale(1.03); }

.anp-archive-card__img-wrap--default {
  background: var(--anp-primario);
  display: flex;
  align-items: center;
  justify-content: center;
}

.anp-archive-card__img-placeholder {
  width: 80px;
  height: 80px;
  background-image: url('https://aulanova.com.ar/wp-content/uploads/2026/05/logo-circular.webp');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0.3;
}

.anp-archive-card__body {
  padding: 1.25rem 1.5rem 1.5rem;
}

.anp-archive-card__date {
  font-size: 0.75rem;
  color: var(--anp-texto-suave);
  display: block;
  margin-bottom: 0.5rem;
}

.anp-archive-card__title {
  font-size: 1.05rem;
  margin-bottom: 0.6rem;
  line-height: 1.3;
}

.anp-archive-card__title a {
  color: var(--anp-texto);
  text-decoration: none;
  transition: color 0.15s;
}
.anp-archive-card__title a:hover { color: var(--anp-dorado-oscuro); }

.anp-archive-card__excerpt {
  font-size: 0.88rem;
  color: var(--anp-texto-suave);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.anp-archive-card__link {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--anp-dorado-oscuro);
  text-decoration: none;
  transition: color 0.15s;
}
.anp-archive-card__link:hover { color: var(--anp-primario); }

.anp-archive-pag {
  text-align: center;
  padding: 1rem 0;
}

.anp-archive-pag .nav-links {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.anp-archive-pag .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 0.85rem;
  color: var(--anp-texto-suave);
  text-decoration: none;
  border: 1px solid var(--anp-borde);
  transition: all 0.15s;
}
.anp-archive-pag .page-numbers.current,
.anp-archive-pag .page-numbers:hover {
  background: var(--anp-primario);
  color: #fff;
  border-color: var(--anp-primario);
}

/* Responsive */
@media (max-width: 900px) {
  .anp-archive-grid { grid-template-columns: 1fr 1fr; }
  .anp-single-hero { height: 320px; }
}

@media (max-width: 600px) {
  .anp-archive-grid { grid-template-columns: 1fr; }
  .anp-single-hero { height: 260px; }
  .anp-archive-hero { height: 200px; }
}

/* ================================================
   RECURSO — bloque de descarga
   ================================================ */

.anp-recurso-download {
  background: var(--anp-fondo-suave);
  border: 1.5px solid var(--anp-borde);
  border-radius: var(--anp-radio-lg);
  padding: 1.75rem 2rem;
  margin-bottom: 2rem;
}

.anp-recurso-download__inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.anp-recurso-download__icon {
  color: var(--anp-dorado-oscuro);
  flex-shrink: 0;
}

.anp-recurso-download__text {
  flex: 1;
}

.anp-recurso-download__label {
  display: block;
  font-weight: 600;
  font-size: .95rem;
  color: var(--anp-texto);
  margin-bottom: 3px;
}

.anp-recurso-download__sub {
  display: block;
  font-size: .82rem;
  color: var(--anp-texto-suave);
}

.anp-recurso-download__btn {
  flex-shrink: 0;
}

@media (max-width: 600px) {
  .anp-recurso-download__inner {
    flex-direction: column;
    align-items: flex-start;
  }
  .anp-recurso-download__btn {
    width: 100%;
    text-align: center;
  }
}