/* ===================================================================
   ARCHIVOS / TAXONOMÍAS  –  HERO + GRID
   =================================================================== */

/* ---------- HERO superior ---------- */
.tax-hero{
  position:relative;height:340px;display:flex;align-items:center;
  background:#0d2e33;color:#fff;margin-bottom:50px;
}
.tax-hero img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;filter:brightness(.55);}
.tax-hero-overlay{position:absolute;inset:0;background:rgba(0,0,0,.45);}
.tax-hero-inner{position:relative;width:100%;display:grid;gap:20px;justify-items:center;text-align:center}
.tax-title{margin:0;font-size:clamp(30px,5vw,56px);font-weight:900;letter-spacing:-.02em}
.tax-subtitle{margin:0;font-size:18px;max-width:70ch;opacity:.88}
.tax-hero .archive-search{width:min(720px,92vw)}

/* ---------- GRID de tarjetas ---------- */
.grid-cards{grid-template-columns:repeat(auto-fill,minmax(300px,1fr));gap:22px}

/* ---------- paginación ---------- */
.pagination{margin-top:40px;text-align:center}

/* ---------- responsive ---------- */
@media (max-width:640px){
  .tax-hero{height:260px}
  .tax-title{font-size:clamp(26px,8vw,40px)}
  .tax-subtitle{font-size:16px}
}

