/* ═══════════════════════════════════════════════════════
   PROVINCE PAGE — secciones sin padding horizontal propio
   El .container padre ya aporta los 48px horizontales.
═══════════════════════════════════════════════════════ */

/* ─── MONTH SINGLE VIEW (vista mes ampliada) ─── */
.cal-month-single {
  width: 100%;
}
.cal-month-single .cal-wd-row {
  gap: 4px;
  margin-bottom: 6px;
}
.cal-month-single .cal-wd {
  font-size: 12px;
  padding: 4px 0;
  color: var(--muted);
  font-weight: 600;
  letter-spacing: .04em;
}
.cal-month-single .cal-wd:nth-child(6),
.cal-month-single .cal-wd:nth-child(7) { color: var(--muted2); }

.cal-month-single .cal-days-grid {
  gap: 4px;
}
.cal-month-single .cal-cell {
  height: 52px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 8px;
  position: relative;
}
.cal-month-single .cal-cell .cal-moon  { font-size: 9px; }
.cal-month-single .cal-cell .cal-sig-dot { width: 4px; height: 4px; }
.cal-month-single .cal-cell .cal-sig-icon { font-size: 10px; }

/* Month single header */
.cal-month-single-hdr {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
}
.cal-month-single-name {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 500;
  color: var(--text);
  letter-spacing: -.02em;
}
.cal-month-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}
.cal-month-nav-btn {
  width: 36px; height: 36px;
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text);
  font-size: 18px;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background .14s, border-color .14s;
  font-family: inherit;
}
.cal-month-nav-btn:hover { background: var(--surface); border-color: var(--muted); }
.cal-month-nav-btn:disabled { opacity: .35; cursor: not-allowed; }

/* ─── YEAR NAVIGATION in toolbar ─── */
.yn-wrap {
  display: flex;
  align-items: center;
  gap: 6px;
}
.yn-arrow {
  width: 32px; height: 32px;
  background: var(--surface2); border: 1px solid var(--border);
  border-radius: 8px; color: var(--text);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; text-decoration: none;
  transition: background .14s, border-color .14s;
  flex-shrink: 0;
}
.yn-arrow:hover { background: var(--surface); border-color: var(--muted); color: var(--text); }
.yn-arrow.disabled {
  opacity: .3; pointer-events: none; cursor: not-allowed;
}
.yn-label {
  font-family: var(--font-serif);
  font-size: 18px; font-weight: 500;
  color: var(--text);
  min-width: 48px; text-align: center;
}

/* breadcrumb */
.prov-breadcrumb {
  padding: 20px 0 0;
  font-size: 13px;
  color: var(--muted);
  display: flex; align-items: center; gap: 6px; flex-wrap: wrap;
  margin-bottom: 0;
}
.prov-breadcrumb a { color: var(--muted); transition: color .14s; }
.prov-breadcrumb a:hover { color: var(--text); }
.prov-breadcrumb .sep { color: var(--muted2); }
.prov-breadcrumb .cur { color: var(--text); }

/* hero */
.prov-hero {
  padding: 32px 0 40px;
}
.prov-hero-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 48px;
  align-items: end;
}
.prov-eyebrow {
  font-size: 12px; color: var(--accent2); text-transform: uppercase;
  letter-spacing: .12em; font-weight: 700; margin-bottom: 12px;
}
.prov-h1 {
  font-family: var(--font-serif);
  font-size: clamp(52px, 6.8vw, 88px);
  font-weight: 500;
  letter-spacing: -.04em;
  margin: 0;
  line-height: .95;
  color: var(--text);
}
.prov-h1 .year-muted {
  color: var(--muted2); font-style: italic; font-weight: 400;
}
.prov-desc {
  color: var(--muted); font-size: 17px; line-height: 1.5;
  margin-top: 20px; max-width: 520px;
}
.prov-desc strong { color: var(--text); }

/* stats grid — 2 cols normal, 3 si hay sustituible */
.prov-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.prov-stats--wide {
  grid-template-columns: 1fr 1fr 1fr;
}
.prov-stat {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 12px; padding: 18px;
}
.prov-stat-n {
  font-family: var(--font-serif);
  font-size: 38px; font-weight: 500; line-height: 1;
  font-variant-numeric: tabular-nums; margin-bottom: 6px;
}
.prov-stat-l {
  font-size: 11px; color: var(--muted);
  text-transform: uppercase; letter-spacing: .1em; font-weight: 600;
}

/* ── Share banner — dividido en 2 mitades ──────────────────── */
.share-banner { padding: 0 0 24px; }

.share-banner-inner {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 0;
  display: flex;
  align-items: stretch;
  overflow: hidden;
  min-height: 76px;
}

/* Mitad izquierda — countdown */
.sb-left {
  flex: 1;
  padding: 16px 22px;
  display: flex;
  align-items: center;
}

/* Separador vertical */
.sb-sep {
  width: 1px;
  background: var(--border);
  flex-shrink: 0;
}

/* Mitad derecha — compartir */
.sb-right {
  flex: 1;
  padding: 16px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.sb-right__text { flex-shrink: 0; }

/* Cuando no hay countdown (sin festivos próximos), la derecha ocupa todo */
.share-banner-inner:not(:has(.sb-left)) .sb-right {
  flex: 1;
  justify-content: space-between;
  padding: 18px 24px;
}

/* Festivo en el countdown */
.sb-fest { display: flex; flex-direction: column; gap: 3px; min-width: 0; }

.sb-fest__eyebrow {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--muted);
  margin-bottom: 1px;
}

.sb-fest__name {
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 260px;
}

.sb-fest__meta {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
}

.sb-fest__date { color: var(--muted); }

.sb-fest__days {
  font-weight: 800;
  font-size: 13px;
}

.share-banner-ttl { font-size: 14px; font-weight: 700; color: var(--text); }
.share-banner-sub { font-size: 12px; color: var(--muted); margin-top: 2px; }

/* Responsive: apilar en móvil */
@media (max-width: 680px) {
  .share-banner-inner {
    flex-direction: column;
    align-items: stretch;
    min-height: auto;
  }
  .sb-sep {
    width: auto;
    height: 1px;
  }
  .sb-left, .sb-right {
    padding: 14px 18px;
  }
  .sb-fest__name { max-width: 100%; }
}

/* toolbar */
.prov-toolbar {
  padding: 0 0 24px;
  display: flex; justify-content: space-between;
  align-items: center; gap: 24px; flex-wrap: wrap;
}
.view-toggle {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 10px; padding: 4px; display: flex; gap: 2px;
}
.view-btn {
  background: transparent; border: none; color: var(--muted);
  padding: 8px 18px; border-radius: 7px;
  font-size: 13px; font-weight: 600; cursor: pointer;
  transition: background .14s, color .14s; font-family: inherit;
}
.view-btn.active { background: var(--bg); color: var(--text); }
.export-btns { display: flex; gap: 8px; }
.export-btn {
  background: transparent; border: 1px solid var(--border); color: var(--text);
  padding: 8px 14px; border-radius: 8px; font-size: 13px;
  cursor: pointer; font-family: inherit; transition: border-color .14s;
}
.export-btn:hover { border-color: var(--muted); }

/* ═══════════════════════════════════════════════════════
   2-COLUMN LAYOUT
═══════════════════════════════════════════════════════ */
.prov-calendar-section { padding: 0 0 32px; }
.prov-cal-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 28px;
  align-items: start;
}

/* calendar panel (outer card) */
.cal-panel {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px;
}

/* ═══════════════════════════════════════════════════════
   CALENDAR — CSS GRID (matches design exactly)
═══════════════════════════════════════════════════════ */
.cal-months-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

/* Each month block (inner card) */
.month-block {
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 12px;
}

/* Month title row */
.month-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-size: 12px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.month-fcount {
  font-size: 9px;
  color: var(--muted);
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0;
}

/* Weekday labels row */
.cal-wd-row {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 1px;
  margin-bottom: 2px;
}
.cal-wd {
  text-align: center;
  font-size: 9px;
  font-weight: 600;
  color: var(--muted2);
  letter-spacing: .05em;
  text-transform: uppercase;
  padding: 1px 0;
}
.cal-wd:nth-child(6),
.cal-wd:nth-child(7) { color: rgba(107,115,128,.6); }

/* Days grid */
.cal-days-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 1px;
}

/* Individual cell */
.cal-cell {
  position: relative;
  height: 22px;
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 500;
  cursor: pointer;
  color: var(--text);
  background: transparent;
  font-variant-numeric: tabular-nums;
  /* inset ring instead of border — matches design */
  box-shadow: inset 0 0 0 1px var(--cell-border);
  transition: background .1s;
  user-select: none;
}

.cal-cell:hover {
  background: var(--surface) !important;
  box-shadow: inset 0 0 0 1px var(--muted) !important;
  z-index: 1;
}

/* Empty cells (padding at start/end of month) */
.cal-cell--empty {
  box-shadow: none !important;
  cursor: default;
  pointer-events: none;
  background: transparent !important;
}

/* Weekends */
.cal-cell--sat,
.cal-cell--sun {
  color: var(--muted);
  box-shadow: inset 0 0 0 1px transparent;
}

/* Festivos — solid fill, no ring */
.cal-cell--nat {
  background: var(--nat) !important;
  color: var(--nat-t) !important;
  font-weight: 700;
  box-shadow: none !important;
}
.cal-cell--nat-sust {
  background: var(--nat-sust) !important;
  color: var(--nat-sust-t) !important;
  font-weight: 700;
  box-shadow: inset 0 -2px 0 0 rgba(0,0,0,.18) !important;
}
.cal-cell--aut {
  background: var(--aut) !important;
  color: var(--aut-t) !important;
  font-weight: 700;
  box-shadow: none !important;
}
.cal-cell--loc {
  background: var(--loc) !important;
  color: var(--loc-t) !important;
  font-weight: 700;
  box-shadow: none !important;
}

/* TODAY — inset red ring, transparent bg (design exact) */
.cal-cell--today {
  box-shadow: inset 0 0 0 2px var(--accent) !important;
  background: transparent !important;
  color: var(--accent) !important;
  font-weight: 800 !important;
  border-radius: 3px !important;
}

/* Today on a festivo — keep festivo color, add white ring */
.cal-cell--nat.cal-cell--today      { box-shadow: inset 0 0 0 2px rgba(255,255,255,.55) !important; color: #fff !important; }
.cal-cell--nat-sust.cal-cell--today { box-shadow: inset 0 0 0 2px rgba(255,255,255,.55) !important; color: var(--nat-sust-t) !important; }
.cal-cell--aut.cal-cell--today      { box-shadow: inset 0 0 0 2px rgba(0,0,0,.35) !important; color: var(--aut-t) !important; }
.cal-cell--loc.cal-cell--today      { box-shadow: inset 0 0 0 2px rgba(255,255,255,.45) !important; color: var(--loc-t) !important; }

/* Signaled dot (bottom-right) */
.cal-sig-dot {
  position: absolute;
  bottom: 2px; right: 2px;
  width: 3px; height: 3px;
  border-radius: 50%;
  background: var(--accent2);
  pointer-events: none;
}

/* Highlight icon (top-right) */
.cal-sig-icon {
  position: absolute;
  top: 1px; right: 1px;
  font-size: 7px;
  color: var(--accent2);
  line-height: 1;
  pointer-events: none;
  font-style: normal;
}

/* Moon mark (top-left) */
.cal-moon {
  position: absolute;
  top: 1px; left: 1px;
  font-size: 7px;
  opacity: .65;
  pointer-events: none;
  line-height: 1;
  font-style: normal;
}

/* Inline legend */
.cal-legend {
  display: flex; gap: 16px; flex-wrap: wrap;
  margin-top: 18px; padding-top: 18px;
  border-top: 1px solid var(--border);
  font-size: 11px; color: var(--muted);
  font-family: monospace; letter-spacing: .02em;
}
.leg-item { display: flex; align-items: center; gap: 5px; }
.leg-dot   { width: 8px; height: 8px; border-radius: 2px; flex-shrink: 0; }
.leg-dot-r { width: 6px; height: 6px; border-radius: 50%; flex-shrink: 0; }
.leg-today { width: 8px; height: 8px; border-radius: 2px; border: 2px solid var(--accent); flex-shrink: 0; box-sizing: border-box; }

/* ═══════════════════════════════════════════════════════
   FESTIVOS SIDEBAR
═══════════════════════════════════════════════════════ */
.festivos-sidebar {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 16px; padding: 22px;
  position: sticky; top: 80px;
  max-height: calc(100vh - 100px);
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: var(--border) transparent;
}
.festivos-sidebar::-webkit-scrollbar { width: 4px; }
.festivos-sidebar::-webkit-scrollbar-thumb { background: var(--border); border-radius: 4px; }
.fsb-header {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 14px; padding-bottom: 12px; border-bottom: 1px solid var(--border);
}
.fsb-title { font-size: 11px; color: var(--muted); text-transform: uppercase; letter-spacing: .12em; font-weight: 700; }
.fsb-count { font-size: 11px; color: var(--muted2); }
.fsb-row {
  display: grid; grid-template-columns: 52px 1fr 8px;
  gap: 12px; align-items: center;
  padding: 10px 0; border-bottom: 1px solid var(--border);
}
.fsb-row:last-child { border-bottom: none; }
.fsb-day { font-family: var(--font-serif); font-size: 22px; font-weight: 500; color: var(--text); line-height: 1; font-variant-numeric: tabular-nums; text-align: center; }
.fsb-mon { font-size: 9px; color: var(--muted); text-transform: uppercase; letter-spacing: .08em; margin-top: 2px; text-align: center; }
.fsb-name { font-size: 13px; font-weight: 600; color: var(--text); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.fsb-kind { font-size: 10px; color: var(--muted); margin-top: 2px; text-transform: capitalize; }
.fsb-bar { width: 6px; height: 26px; border-radius: 3px; }

/* ═══════════════════════════════════════════════════════
   TOOLTIP
═══════════════════════════════════════════════════════ */
.day-tooltip {
  position: fixed; z-index: 9999;
  background: var(--bg); color: var(--text);
  font-family: 'Inter', -apple-system, sans-serif;
  border: 1px solid var(--border); border-radius: 12px; padding: 14px;
  min-width: 230px; max-width: 270px;
  box-shadow: 0 12px 36px rgba(0,0,0,.45);
  pointer-events: none; opacity: 0; transition: opacity .12s ease;
}
.day-tooltip.vis { opacity: 1; }
.dtt-head { display: flex; align-items: baseline; justify-content: space-between; gap: 8px; margin-bottom: 10px; }
.dtt-date { font-family: var(--font-serif); font-size: 20px; font-weight: 600; line-height: 1; letter-spacing: -.02em; }
.dtt-wd { font-size: 11px; color: var(--muted); margin-top: 3px; text-transform: capitalize; }
.dtt-moon { font-size: 18px; color: var(--muted); flex-shrink: 0; }
.dtt-fest { background: var(--accent-soft); color: var(--accent); border-radius: 8px; padding: 8px 10px; font-size: 12px; font-weight: 600; margin-bottom: 6px; }
.dtt-fest small { display: block; font-size: 10px; color: var(--muted); font-weight: 500; margin-top: 2px; text-transform: capitalize; }
.dtt-sig { background: var(--surface2); border: 1px solid var(--border); border-radius: 8px; padding: 8px 10px; font-size: 12px; display: flex; align-items: center; gap: 8px; margin-bottom: 6px; }
.dtt-sig-icon { color: var(--accent2); }
.dtt-sig-name { color: var(--text); font-weight: 500; }
.dtt-meta { display: flex; flex-direction: column; gap: 4px; font-size: 11px; color: var(--muted); margin-top: 8px; padding-top: 8px; border-top: 1px solid var(--border); }
.dtt-row { display: flex; justify-content: space-between; }
.dtt-row span:last-child { color: var(--text); font-weight: 500; }

/* ═══════════════════════════════════════════════════════
   DÍAS SEÑALADOS CAROUSEL
═══════════════════════════════════════════════════════ */
.dias-prov-section { padding: 0 0 32px; }
.dias-prov-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 18px; }
.sec-eyebrow { font-size: 12px; color: var(--accent2); text-transform: uppercase; letter-spacing: .12em; font-weight: 700; margin-bottom: 6px; }
.sec-h2 { font-family: var(--font-serif); font-size: 32px; font-weight: 500; margin: 0; letter-spacing: -.02em; color: var(--text); }
.sec-link { color: var(--accent); font-size: 13px; font-weight: 600; background: none; border: none; padding: 0; cursor: pointer; font-family: inherit; }
.dias-grid { display: grid; grid-template-columns: repeat(8, 1fr); gap: 10px; }
.dia-card { background: var(--surface); border: 1px solid var(--border); border-radius: 10px; padding: 12px; transition: border-color .14s; cursor: default; }
.dia-card:hover { border-color: var(--muted); }
.dia-icon { font-size: 16px; line-height: 1; margin-bottom: 8px; }
.dia-date { font-size: 9px; color: var(--muted); text-transform: uppercase; letter-spacing: .08em; font-weight: 600; }
.dia-name { font-size: 11px; color: var(--text); font-weight: 600; margin-top: 4px; line-height: 1.25; max-height: 28px; overflow: hidden; }

/* ═══════════════════════════════════════════════════════
   SEO SECTION
═══════════════════════════════════════════════════════ */
.ad-slot-prov { margin: 24px 0; }
.ad-slot-prov-inner { height: 90px; background: var(--surface); border: 1px dashed var(--border); border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 11px; color: var(--muted2); text-transform: uppercase; letter-spacing: .1em; }
.seo-section { padding: 48px 0 64px; }
.seo-layout { display: grid; grid-template-columns: 1fr 320px; gap: 56px; }
.seo-article { font-size: 16px; line-height: 1.7; color: var(--text); }
.seo-eyebrow { font-size: 12px; color: var(--accent2); text-transform: uppercase; letter-spacing: .12em; font-weight: 700; margin-bottom: 8px; }
.seo-h2 { font-family: var(--font-serif); font-size: 42px; font-weight: 500; margin: 0 0 24px; letter-spacing: -.025em; line-height: 1.05; color: var(--text); }
.seo-article p { color: var(--muted); margin: 0 0 14px; }
.seo-article strong { color: var(--text); }
.seo-article a { color: var(--accent); font-weight: 600; }
.seo-h3 { font-family: var(--font-serif); font-size: 26px; font-weight: 500; margin: 32px 0 12px; color: var(--text); }
.seo-faq { display: flex; flex-direction: column; gap: 14px; margin-top: 14px; }
.seo-faq details { background: var(--surface); border: 1px solid var(--border); border-radius: 10px; padding: 14px 18px; }
.seo-faq summary { font-size: 15px; font-weight: 600; color: var(--text); cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; }
.seo-faq summary::after { content: "+"; font-size: 18px; color: var(--muted); }
.seo-faq details[open] summary::after { content: "−"; }
.seo-faq details > div { font-size: 14px; color: var(--muted); margin-top: 10px; line-height: 1.65; }
.seo-aside { position: sticky; top: 80px; align-self: start; }
.seo-aside-card { background: var(--surface); border: 1px solid var(--border); border-radius: 14px; padding: 20px; margin-bottom: 16px; }
.seo-aside-lbl { font-size: 11px; color: var(--muted); text-transform: uppercase; letter-spacing: .12em; font-weight: 700; margin-bottom: 12px; }
.seo-aside-link { display: flex; justify-content: space-between; align-items: center; padding: 6px 8px; border-radius: 6px; font-size: 13px; color: var(--text); transition: background .12s; }
.seo-aside-link:hover { background: var(--surface2); }
.seo-aside-link-a { color: var(--accent); }
.seo-newsletter { background: linear-gradient(135deg, var(--accent) 0%, var(--accent-hover) 100%); color: #fff; border-radius: 14px; padding: 20px; }
.seo-newsletter h4 { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .12em; opacity: .85; margin-bottom: 8px; }
.seo-newsletter p { font-size: 16px; font-weight: 600; line-height: 1.3; margin-bottom: 12px; }
.seo-newsletter input { width: 100%; padding: 9px 12px; border-radius: 8px; border: none; font-size: 13px; margin-bottom: 8px; box-sizing: border-box; background: rgba(255,255,255,.2); color: #fff; }
.seo-newsletter input::placeholder { color: rgba(255,255,255,.6); }
.seo-newsletter button { width: 100%; background: #fff; color: var(--accent); border: none; padding: 9px 12px; border-radius: 8px; font-size: 13px; font-weight: 700; cursor: pointer; font-family: inherit; }
.share-final { padding: 0 0 48px; }
.share-final-inner { background: var(--surface); border: 1px solid var(--border); border-radius: 14px; padding: 32px; text-align: center; }
.share-final-inner h3 { font-family: var(--font-serif); font-size: 28px; font-weight: 500; color: var(--text); margin-bottom: 6px; }
.share-final-inner p { font-size: 14px; color: var(--muted); margin-bottom: 18px; }
.share-final-btns { display: flex; justify-content: center; gap: 6px; }

/* ═══════════════════════════════════════════════════════
   HIDE LEGACY ELEMENTS
═══════════════════════════════════════════════════════ */
.breadcrumb, #breadcrumb { display: none !important; }
.page-title-row { display: none !important; }
.download-buttons { display: none !important; }
.year-nav { display: none !important; }
.leyenda-colores { display: none !important; }
.seo-text { display: none !important; }

/* provisional warning */
.year-warning {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 14px 18px; margin-bottom: 16px;
  background: #fffbeb;
  border: 1px solid #f59e0b;
  border-radius: 10px;
  font-size: 13px; color: #78350f; line-height: 1.55;
}
.year-warning__icon { font-size: 18px; flex-shrink: 0; line-height: 1.3; }
.year-warning__title {
  font-weight: 700; font-size: 13px; color: #92400e;
  display: flex; align-items: center; gap: 8px;
}
.yw-badge {
  padding: 2px 9px; border-radius: 100px;
  font-size: 10px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .06em;
  background: #fde68a; border: 1px solid #f59e0b; color: #78350f;
}
.year-warning__text { font-size: 12px; color: #92400e; }

/* ═══════════════════════════════════════════════════════
   RESPONSIVE (province)
═══════════════════════════════════════════════════════ */
@media (max-width: 900px) {
  .prov-hero-grid { grid-template-columns: 1fr; gap: 28px; }
  .prov-cal-grid { grid-template-columns: 1fr; }
  .festivos-sidebar { position: static; max-height: none; }
  .cal-months-grid { grid-template-columns: repeat(2, 1fr); }
  .dias-grid { grid-template-columns: repeat(4, 1fr); }
  .seo-layout { grid-template-columns: 1fr; }
  .seo-aside { position: static; }
}
@media (max-width: 560px) {
  .cal-months-grid { grid-template-columns: 1fr; }
  .prov-stats,
  .prov-stats--wide { grid-template-columns: 1fr 1fr; }
  .dias-grid { grid-template-columns: repeat(3, 1fr); }
  .prov-toolbar { flex-direction: column; align-items: flex-start; gap: 10px; }
  .prov-h1 { font-size: clamp(44px, 12vw, 72px); }
  .seo-h2 { font-size: 30px; }
}
