/* Calendario Colombia — Modern CSS 2026 */

/* ===== RESET & TOKENS ===== */
*, *::before, *::after { box-sizing: border-box; }

:root {
  --yellow:      #FCD116;
  --blue:        #003893;
  --red:         #CE1126;
  --bg:          #f0f2f5;
  --surface:     #ffffff;
  --surface-2:   #f8f9fa;
  --text:        #111827;
  --text-muted:  #6b7280;
  --border:      #e5e7eb;
  --festivo-bg:  #ea6b00;
  --radius:      10px;
  --shadow:      0 1px 3px rgba(0,0,0,.08), 0 4px 16px rgba(0,0,0,.05);
  --max-width:   1100px;
  --font:        system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  --font-display:'Fjalla One', sans-serif;
  --nav-bg:      #1f2937;
  --nav-hover:   #374151;
  --header-bg:   #111827;
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg:        #0f1117;
    --surface:   #1c1f26;
    --surface-2: #252830;
    --text:      #f3f4f6;
    --text-muted:#9ca3af;
    --border:    #374151;
    --shadow:    0 1px 3px rgba(0,0,0,.35), 0 4px 16px rgba(0,0,0,.25);
    --nav-bg:    #0d111a;
    --nav-hover: #1f2937;
    --header-bg: #0a0d14;
  }
}

html { font-size: 16px; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  line-height: 1.6;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  margin-top: 0;
  line-height: 1.2;
  color: var(--text);
}
h1 { font-size: 2rem; }
h2 { font-size: 1.6rem; }
h3 { font-size: 1.25rem; }
h4 { font-size: 1rem; font-weight: 600; font-family: var(--font); }

p { margin: 0 0 .75rem; }
p:last-child { margin-bottom: 0; }

a { color: var(--blue); text-decoration: none; }
a:hover { text-decoration: underline; color: #002070; }

img { max-width: 100%; height: auto; }
ul { padding-left: 1.5rem; }
ul.no-bullet, .no-bullet { list-style: none; padding: 0; margin: 0; }
strong { font-weight: 600; }

/* ===== LAYOUT ===== */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 16px;
}
.main-content { padding: 16px 0 48px; }

/* ===== SITE HEADER ===== */
.site-header {
  background: var(--header-bg);
  border-bottom: 3px solid var(--yellow);
}
.site-header__logo {
  text-align: center;
  padding: 10px 0 8px;
}
.site-header__logo a { display: inline-block; line-height: 0; }
.site-header__logo img { height: 54px; vertical-align: top; }
.site-header__logo h1 { margin: 0; }

/* ===== STICKY NAV ===== */
.site-nav {
  background: var(--nav-bg);
  position: sticky;
  top: 0;
  z-index: 200;
  box-shadow: 0 2px 8px rgba(0,0,0,.25);
}
.site-nav__list {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 8px;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
}
.site-nav__list li { margin: 0; }
.site-nav__list a {
  display: block;
  padding: 10px 14px;
  color: #d1d5db;
  font-size: .875rem;
  transition: background .15s, color .15s;
}
.site-nav__list a:hover {
  background: var(--nav-hover);
  color: #fff;
  text-decoration: none;
}

/* Today nav indicator */
.site-nav__list .nav-hoy a {
  color: var(--yellow);
  font-weight: 600;
}
.site-nav__list .nav-hoy a:hover {
  background: var(--nav-hover);
  color: var(--yellow);
}

/* ===== BREADCRUMB ===== */
.breadcrumb {
  font-size: .8rem;
  color: var(--text-muted);
  padding: 14px 0 10px;
  margin-bottom: 4px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px;
}
.breadcrumb a { color: var(--text-muted); }
.breadcrumb a:hover { color: var(--text); text-decoration: none; }
.breadcrumb__sep { opacity: .4; }

/* ===== DAY HERO ===== */
.day-hero {
  background: linear-gradient(135deg, var(--header-bg) 0%, #1f2937 100%);
  color: #fff;
  text-align: center;
  padding: 32px 24px 24px;
  position: relative;
  overflow: hidden;
}
.day-hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--yellow) 40%, var(--red) 100%);
}
.day-hero__number {
  font-size: 5rem;
  font-family: var(--font-display);
  line-height: 1;
  margin: 0;
  color: #fff;
}
.day-hero__month {
  font-size: .95rem;
  color: rgba(255,255,255,.65);
  text-transform: uppercase;
  letter-spacing: .12em;
  margin: 6px 0 0;
}
.day-hero__weekday {
  font-size: .78rem;
  color: rgba(255,255,255,.45);
  text-transform: uppercase;
  letter-spacing: .16em;
  margin: 4px 0 0;
  font-family: var(--font);
  font-weight: 500;
}
/* "Hoy" badge when viewing today */
.day-hero.is-today::after {
  content: 'Hoy';
  position: absolute;
  top: 14px; right: 14px;
  background: var(--yellow);
  color: #111;
  font-size: .7rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 4px;
  letter-spacing: .06em;
  text-transform: uppercase;
}
/* Festivo day hero accent */
.day-hero.is-festivo .day-hero__number { color: var(--yellow); }
.day-hero.is-festivo::before {
  background: linear-gradient(90deg, var(--festivo-bg), var(--yellow));
}

/* ===== FESTIVO BANNER ===== */
.festivo-banner {
  background: var(--festivo-bg);
  color: #fff;
  text-align: center;
  padding: 8px 16px;
  font-weight: 600;
  font-size: .85rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}
div.festivo { /* legacy */
  background: var(--festivo-bg);
  color: #fff;
  text-align: center;
  padding: 8px 16px;
  font-weight: 600;
}

/* ===== CARDS ===== */
.card {
  background: var(--surface);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.card .content { padding: 18px 20px; }
.card .content p { margin-bottom: 0; }
.card .action {
  padding: 12px 20px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.card .image { background: var(--surface-2); position: relative; }
.card .image img { width: 100%; display: block; object-fit: cover; }
.card .image .title {
  padding: 10px 14px 2px;
  background: var(--surface);
  font-family: var(--font-display);
  font-size: 1rem;
  line-height: 1.35;
  display: block;
  color: var(--text);
}
.card .image .title a { color: var(--text); }
.card .image .title a:hover { color: var(--blue); text-decoration: none; }

/* ===== GRID LAYOUTS ===== */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.events-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.event-ad { grid-column: 1 / -1; }

/* ===== EVENT CARDS — CATEGORY COLORS ===== */
/* Left accent border per category */
.event-item .card {
  border-left: 4px solid var(--cat-color, var(--border));
  border-radius: 0 var(--radius) var(--radius) 0;
}
/* Festivo events */
.festivo-event .card            { --cat-color: var(--festivo-bg); }
.cat-festivo .card              { --cat-color: var(--festivo-bg); }
.cat-feriado .card              { --cat-color: var(--festivo-bg); }
/* Cultural */
.cat-cultural .card             { --cat-color: #7c3aed; }
/* Histórico */
.cat-historico .card            { --cat-color: #1d4ed8; }
.cat-historicos .card           { --cat-color: #1d4ed8; }
/* Cumpleaños / nacimiento */
.cat-cumpleanos .card           { --cat-color: #db2777; }
.cat-nacimiento .card           { --cat-color: #db2777; }
/* Muerte */
.cat-muerte .card               { --cat-color: #6b7280; }
/* Religioso */
.cat-religioso .card            { --cat-color: #d97706; }
.cat-religion .card             { --cat-color: #d97706; }
/* Deportivo */
.cat-deportivo .card            { --cat-color: #059669; }
.cat-deporte .card              { --cat-color: #059669; }
/* Ciencia / tecnología */
.cat-ciencia .card              { --cat-color: #0891b2; }
.cat-tecnologia .card           { --cat-color: #0891b2; }
/* Arte */
.cat-arte .card                 { --cat-color: #9333ea; }

/* ===== ANNIVERSARY BADGE ===== */
.aniversario-badge {
  display: inline-block;
  background: #fef3c7;
  color: #92400e;
  font-size: .7rem;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-bottom: 6px;
}
@media (prefers-color-scheme: dark) {
  .aniversario-badge { background: #451a03; color: #fcd34d; }
}

/* ===== SECTION TITLE ===== */
.section-title {
  font-size: 1.3rem;
  margin: 24px 0 14px;
  padding-bottom: 6px;
  border-bottom: 2px solid var(--yellow);
  display: inline-block;
}

/* ===== STATS LIST ===== */
.stats-list { list-style: none; padding: 0; margin: 0; }
.stats-list li {
  padding: 7px 0;
  border-bottom: 1px solid var(--border);
  font-size: .88rem;
}
.stats-list li:last-child { border-bottom: none; }
.stats-festivo {
  color: var(--festivo-bg);
  font-weight: 600;
}

/* ===== SHARE WIDGET ===== */
.share-card img { display: inline; vertical-align: middle; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 8px 14px;
  border-radius: 6px;
  font-size: .875rem;
  font-weight: 500;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: background .15s, color .15s, border-color .15s;
  white-space: nowrap;
  line-height: 1.4;
}
.btn:hover { text-decoration: none; }

.btn-primary { background: var(--blue); color: #fff; border-color: var(--blue); }
.btn-primary:hover { background: #002070; color: #fff; border-color: #002070; }

.btn-outline {
  background: var(--surface);
  color: var(--text);
  border-color: var(--border);
}
.btn-outline:hover { background: var(--surface-2); color: var(--text); border-color: #d1d5db; }

.btn-sm { padding: 5px 10px; font-size: .78rem; }

.btn-group {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

/* ===== CATEGORY BADGE ===== */
.badge {
  display: inline-block;
  padding: 3px 8px;
  border-radius: 20px;
  font-size: .7rem;
  font-weight: 600;
  background: var(--surface-2);
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: .05em;
  text-decoration: none;
  border: 1px solid var(--border);
}
.badge:hover { background: var(--border); text-decoration: none; color: var(--text); }
.categoria.label { /* legacy */
  font-size: .7rem; padding: 3px 8px; border-radius: 20px;
  background: var(--surface-2); color: var(--text-muted);
  text-transform: uppercase; letter-spacing: .05em;
}

/* ===== PUBLICIDAD ===== */
.publicidad { padding: 10px 0; text-align: center; }

/* ===== ALERTS ===== */
.alert-box { padding: 12px 16px; border-radius: 6px; margin: 8px 0; }
.alert-box.alert   { background: #fef2f2; border-left: 4px solid var(--red); }
.alert-box.success { background: #f0fdf4; border-left: 4px solid #16a34a; color: #166534; }

/* ===== SUGGEST CTA ===== */
.suggest-cta {
  text-align: center;
  padding: 28px 0 8px;
  border-top: 1px solid var(--border);
  margin-top: 24px;
  color: var(--text-muted);
  font-size: .9rem;
}

/* ===== EMPTY STATE ===== */
.empty-state {
  text-align: center;
  padding: 56px 24px;
  background: var(--surface);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.empty-state__icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 16px;
  opacity: .25;
  color: var(--text);
}
.empty-state h3 {
  color: var(--text-muted);
  margin-bottom: 16px;
  font-size: 1.1rem;
  font-family: var(--font);
  font-weight: 500;
}

/* ===== HIGHLIGHT SPANS ===== */
span.resaltado1 { background: #95d8ec; padding: 2px 6px; color: #17538F; border-radius: 4px; }
span.resaltado2 { background: #C0ADDB; padding: 2px 6px; color: #3C235E; border-radius: 4px; }
span.resaltado3 { background: #D3FF6A; padding: 2px 6px; color: #336600; border-radius: 4px; }
span.resaltado4 { background: #FCA09C; padding: 2px 6px; color: #993333; border-radius: 4px; }
span.resaltado5 { background: #FFFB94; padding: 2px 6px; color: #DD9911; border-radius: 4px; }

/* ===== CALENDAR GRID =====  */

/* Single flat 7-column grid — all day cells are direct children */
.cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 3px;
}

/* Column headers */
.cal-head {
  text-align: center;
  padding: 6px 0 10px;
  font-size: .65rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: .07em;
  border-bottom: 2px solid var(--border);
  margin-bottom: 1px;
}

/* Empty offset cells (days before the 1st) */
.cal-empty { aspect-ratio: 1; }

/* Day link cells */
.cal-day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-size: .88rem;
  font-weight: 500;
  text-decoration: none;
  color: var(--text);
  background: transparent;
  transition: background .12s, color .12s, transform .1s;
}
.cal-day:hover {
  background: var(--border);
  color: var(--text);
  text-decoration: none;
  transform: scale(1.12);
}

/* Holiday — orange fill */
.cal-day.cal-festivo {
  background: var(--festivo-bg);
  color: #fff;
  font-weight: 700;
}
.cal-day.cal-festivo:hover { background: #c95800; color: #fff; transform: scale(1.08); }

/* Sunday — muted */
.cal-day.cal-domingo { color: #9ca3af; }
.cal-day.cal-domingo:hover { color: var(--text); }

/* Saturday — slightly muted */
.cal-day.cal-sabado { color: var(--text-muted); }

/* Today — blue fill */
.cal-day.cal-hoy {
  background: var(--blue);
  color: #fff;
  font-weight: 700;
  box-shadow: 0 2px 10px rgba(0,56,147,.28);
}
.cal-day.cal-hoy:hover { background: #002070; color: #fff; transform: scale(1.05); }

/* Legend row */
.cal-legend {
  padding: 10px 20px;
  border-top: 1px solid var(--border);
  font-size: .78rem;
  color: var(--text-muted);
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}
.cal-dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 3px;
  vertical-align: middle;
  margin-right: 4px;
}
.cal-festivo-dot { background: var(--festivo-bg); }
.cal-domingo-dot { background: #d1d5db; border: 1px solid #9ca3af; }
.cal-hoy-dot     { background: var(--blue); }

/* Calendar card wrapper */
.mes-card {
  background: var(--surface);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  margin-bottom: 16px;
}
.mes-card__header {
  padding: 20px 24px 16px;
  text-align: center;
  background: linear-gradient(135deg, var(--header-bg) 0%, #1f2937 100%);
  border-bottom: 3px solid var(--yellow);
}
.mes-card__header h2 {
  margin: 0;
  font-size: 1.6rem;
  color: #fff;
}
.mes-card__header h2 a { color: #fff; }
.mes-card__header h2 a:hover { color: var(--yellow); text-decoration: none; }
.mes-card__body { padding: 16px 20px 12px; }
.mes-card__nav {
  padding: 12px 20px;
  border-top: 1px solid var(--border);
  display: flex;
  gap: 8px;
}
.mes-card__nav .btn { flex: 1; justify-content: center; font-size: .82rem; }

/* Compact calendar (ano.php) */
.cal-compact .cal-grid { gap: 2px; }
.cal-compact .cal-day  { font-size: .75rem; border-radius: 4px; }
.cal-compact .cal-head { font-size: .6rem; padding: 4px 0 6px; }

@media (prefers-color-scheme: dark) {
  .cal-day.cal-domingo { color: #6b7280; }
  .cal-domingo-dot { background: #4b5563; border-color: #6b7280; }
}

/* ===== FOOTER ===== */
.site-footer {
  background: var(--nav-bg);
  color: #9ca3af;
  margin-top: 40px;
  padding: 28px 0 20px;
  font-size: .875rem;
  border-top: 3px solid var(--yellow);
}
.site-footer__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { padding: 3px 0; }
.site-footer a { color: #9ca3af; }
.site-footer a:hover { color: #f3f4f6; text-decoration: none; }
.site-footer img { display: inline; vertical-align: middle; margin-right: 4px; }

/* ===== LEGACY FOUNDATION COMPATIBILITY ===== */
.row {
  max-width: var(--max-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: 16px;
  padding-right: 16px;
}
.row::after { content: ''; display: table; clear: both; }
.columns { float: left; padding: 0 8px; width: 100%; }
.large-12.columns, .medium-12.columns { width: 100%; }
.medium-6.columns { width: 50%; }
.large-4.columns { width: 33.333%; }
.large-6.columns { width: 50%; }
.end { float: none; }
.text-center { text-align: center; }
.right { float: right; }

a.button, .button {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 8px 14px; border-radius: 6px; font-size: .875rem; font-weight: 500;
  background: var(--blue); color: #fff !important;
  border: none; cursor: pointer; text-decoration: none;
  transition: background .15s; margin: 0;
}
a.button:hover, .button:hover { background: #002070; text-decoration: none; }
a.button.tiny, .button.tiny { padding: 5px 10px; font-size: .78rem; }
a.button.small, .button.small { padding: 6px 12px; font-size: .82rem; }

ul.button-group { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: 8px; }
ul.button-group li { margin: 0; }
ul.button-group.even-2 li { flex: 1; }
ul.button-group.even-2 li a { width: 100%; justify-content: center; }
ul.button-group.even-3 li { flex: 1; }
ul.button-group.even-3 li a { width: 100%; justify-content: center; }

.row_completa { max-width: 100em; }
hr.oculta { border: 0; height: 0; margin: 0; padding: 0; }
.domingo { background: #999 !important; }
ul.lista-invisible { list-style: none; padding-left: 0; margin-left: 0; }
.calendario-ano h2 a { color: var(--text) !important; font-size: 1.5rem; }
.calendario-ano div.calendario-mes li { text-align: center; }
.calendario-ano div.calendario-mes a.button { padding: 5px 2px !important; font-size: .75em !important; max-width: 35px; }
.titulo-calendario-ano { font-size: .8rem; }
.titulo-calendario-ano h2 { font-size: 1.8rem !important; }
.navegacion .columns { padding-bottom: 10px; padding-top: 10px; vertical-align: middle; line-height: 40px; }

/* ===== SEARCH PAGE ===== */
.search-hero {
  background: linear-gradient(135deg, var(--header-bg) 0%, #1f2937 100%);
  padding: 32px 0 28px;
  position: relative;
}
.search-hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--yellow) 40%, var(--red) 100%);
}
.search-hero h1 {
  color: #fff;
  font-size: 1.5rem;
  margin-bottom: 16px;
  text-align: center;
}
.search-bar {
  display: flex;
  gap: 8px;
  max-width: 640px;
  margin: 0 auto;
}
.search-bar input[type="text"] {
  flex: 1;
  padding: 12px 16px;
  border: 2px solid rgba(255,255,255,.15);
  border-radius: 8px;
  background: rgba(255,255,255,.1);
  color: #fff;
  font-size: 1rem;
  outline: none;
  transition: border-color .15s, background .15s;
  min-width: 0;
}
.search-bar input[type="text"]::placeholder { color: rgba(255,255,255,.4); }
.search-bar input[type="text"]:focus {
  border-color: var(--yellow);
  background: rgba(255,255,255,.15);
}
.search-bar button {
  padding: 12px 20px;
  background: var(--yellow);
  color: #111;
  border: none;
  border-radius: 8px;
  font-size: .9rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: background .15s;
  white-space: nowrap;
}
.search-bar button:hover { background: #e6b800; }

.search-results-header {
  padding: 20px 0 6px;
}
.search-results-header h2 {
  font-size: 1rem;
  font-family: var(--font);
  font-weight: 400;
  color: var(--text-muted);
  margin: 0;
}
.search-results-header h2 em {
  color: var(--text);
  font-style: normal;
  font-weight: 600;
}

.search-result {
  background: var(--surface);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  display: flex;
  margin-bottom: 10px;
  border-left: 4px solid var(--cat-color, var(--border));
  border-radius: 0 var(--radius) var(--radius) 0;
  transition: box-shadow .15s, transform .1s;
}
.search-result:hover { box-shadow: 0 2px 8px rgba(0,0,0,.12), 0 8px 32px rgba(0,0,0,.08); }

.search-result.cat-festivo, .search-result.cat-feriado   { --cat-color: var(--festivo-bg); }
.search-result.cat-cultural                              { --cat-color: #7c3aed; }
.search-result.cat-historico, .search-result.cat-historicos { --cat-color: #1d4ed8; }
.search-result.cat-cumpleanos, .search-result.cat-nacimiento { --cat-color: #db2777; }
.search-result.cat-muerte                                { --cat-color: #6b7280; }
.search-result.cat-religioso, .search-result.cat-religion { --cat-color: #d97706; }
.search-result.cat-deportivo, .search-result.cat-deporte { --cat-color: #059669; }
.search-result.cat-ciencia, .search-result.cat-tecnologia { --cat-color: #0891b2; }
.search-result.cat-arte                                  { --cat-color: #9333ea; }

.search-result__image {
  width: 110px;
  min-width: 110px;
  background: var(--surface-2);
  overflow: hidden;
}
.search-result__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.search-result__body {
  flex: 1;
  padding: 12px 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}
.search-result__meta {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}
.search-result__date {
  font-size: .78rem;
  color: var(--text-muted);
}
.search-result__subtitle {
  font-size: .78rem;
  color: var(--text-muted);
}
.search-result h3 {
  margin: 0;
  font-size: .95rem;
  font-family: var(--font);
  font-weight: 600;
  line-height: 1.3;
}
.search-result h3 a { color: var(--text); }
.search-result h3 a:hover { color: var(--blue); text-decoration: none; }
.search-result__desc {
  font-size: .84rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin: 0;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.search-result__footer {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 2px;
}

.search-hints {
  background: var(--surface);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 12px 16px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  font-size: .85rem;
}
.search-hints__label {
  color: var(--text-muted);
  font-size: .8rem;
}

.search-nav {
  display: flex;
  gap: 8px;
  padding: 12px 0 8px;
}
.search-nav .btn-next { margin-left: auto; }

@media (max-width: 560px) {
  .search-result__image { width: 80px; min-width: 80px; }
  .search-hero { padding: 20px 0; }
  .search-hero h1 { font-size: 1.2rem; }
  .search-bar { flex-direction: column; }
  .search-bar button { justify-content: center; }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .grid-2, .events-grid { grid-template-columns: 1fr; }
  .event-ad { grid-column: 1; }
  .site-footer__grid { grid-template-columns: 1fr; }
  .day-hero__number { font-size: 3.5rem; }
  .medium-6.columns { width: 100%; float: none; }
  .large-4.columns, .large-6.columns { width: 100%; float: none; }
}
@media (max-width: 480px) {
  .site-nav__list a { padding: 8px 10px; font-size: .8rem; }
  h1 { font-size: 1.4rem; }
  h2 { font-size: 1.3rem; }
  .card .content { padding: 14px; }
}
