/* =========================================================
   Los Santos Fire Department — Public Portal V3 CSS
   Inspired by fw · ImmortalV Dortmund
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Source+Sans+3:ital,wght@0,300;0,400;0,600;0,700;1,400&family=Source+Serif+4:wght@400;600&display=swap');

:root {
  --primary:       #b91c1c;
  --primary-dark:  #7f1d1d;
  --primary-light: #fef2f2;
  --primary-rgb:   185,28,28;
  --accent:        #f97316;
  --white:         #ffffff;
  --gray-50:       #f8f9fa;
  --gray-100:      #f0f2f5;
  --gray-200:      #e2e6ea;
  --gray-400:      #9aa3ad;
  --gray-600:      #596270;
  --gray-800:      #1e2329;
  --text:          #1e2329;
  --text-muted:    #596270;
  --border:        #dde1e7;
  --shadow:        0 1px 3px rgba(0,0,0,.1), 0 1px 2px rgba(0,0,0,.06);
  --shadow-md:     0 4px 12px rgba(0,0,0,.1);
  --font:          'Source Sans 3', -apple-system, sans-serif;
  --font-serif:    'Source Serif 4', Georgia, serif;
  --radius:        3px;
  --transition:    .18s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { background: var(--white); color: var(--text); font-family: var(--font); line-height: 1.55; }
img { max-width: 100%; height: auto; display: block; }
a { color: var(--primary); text-decoration: none; }
a:hover { text-decoration: underline; color: var(--primary-dark); }

/* ── UTILITY BAR ─────────────────────────────────────────── */
.util-bar {
  background: var(--primary-dark);
  color: rgba(255,255,255,.75);
  font-size: 13px;
  padding: 6px 0;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.util-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 20px;
  display: flex; align-items: center; justify-content: space-between;
}
.util-emergency {
  display: flex; align-items: center; gap: 8px;
  color: #fff; font-weight: 600; font-size: 13.5px;
}
.util-emergency-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #22c55e; animation: udot 2s infinite;
}
@keyframes udot { 0%,100%{opacity:1} 50%{opacity:.3} }
.util-links { display: flex; gap: 16px; }
.util-links a {
  color: rgba(255,255,255,.65); font-size: 12px;
  transition: color var(--transition);
}
.util-links a:hover { color: #fff; text-decoration: none; }

/* ── HEADER ──────────────────────────────────────────────── */
.site-header {
  background: var(--white);
  border-bottom: 3px solid var(--primary);
  padding: 16px 0;
}
.header-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 20px;
  display: flex; align-items: center; gap: 20px;
}
.header-logo {
  display: flex; align-items: center; gap: 12px; flex-shrink: 0;
  text-decoration: none; color: inherit;
}
.header-logo:hover { text-decoration: none; }
.logo-badge {
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--primary); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; flex-shrink: 0;
}
.logo-text-main {
  font-family: var(--font-serif);
  font-size: 22px; font-weight: 600;
  color: var(--primary); line-height: 1.2;
}
.logo-text-sub {
  font-size: 12px; color: var(--text-muted);
  letter-spacing: .02em;
}
.header-spacer { flex: 1; }
.header-search {
  display: flex; align-items: center; gap: 8px;
  background: var(--gray-100); border: 1px solid var(--border);
  border-radius: 24px; padding: 7px 14px;
}
.header-search input {
  background: none; border: none; outline: none;
  font-family: var(--font); font-size: 14px;
  width: 200px; color: var(--text);
}
.header-search input::placeholder { color: var(--gray-400); }
.header-search-btn {
  background: none; border: none; cursor: pointer;
  color: var(--primary); font-size: 16px; padding: 0;
}
.header-notruf {
  text-align: right; flex-shrink: 0;
}
.header-notruf-num {
  font-size: 28px; font-weight: 700; color: var(--primary);
  font-family: var(--font-serif); line-height: 1;
}
.header-notruf-lbl {
  font-size: 11px; color: var(--text-muted);
  text-transform: uppercase; letter-spacing: .06em;
}

/* ── NAVIGATION ──────────────────────────────────────────── */
.site-nav {
  background: var(--primary);
  position: sticky; top: 0; z-index: 90;
  box-shadow: 0 2px 6px rgba(0,0,0,.2);
}
.nav-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 20px;
  display: flex; align-items: stretch;
}
.nav-item {
  position: relative;
}
.nav-link {
  display: flex; align-items: center; gap: 5px;
  padding: 13px 16px;
  color: rgba(255,255,255,.85); font-size: 14.5px; font-weight: 600;
  transition: all var(--transition); white-space: nowrap;
  text-decoration: none; cursor: pointer;
  border-bottom: 3px solid transparent;
}
.nav-link:hover, .nav-link.active {
  color: #fff; background: rgba(255,255,255,.1);
  border-bottom-color: rgba(255,255,255,.7);
  text-decoration: none;
}
.nav-login {
  margin-left: auto;
}
.nav-login .nav-link {
  background: rgba(255,255,255,.15);
}
.nav-login .nav-link:hover {
  background: rgba(255,255,255,.25);
}

/* ── BREADCRUMB ──────────────────────────────────────────── */
.breadcrumb {
  background: var(--gray-50);
  border-bottom: 1px solid var(--border);
  padding: 10px 0;
}
.bc-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 20px;
  display: flex; align-items: center; gap: 6px;
  font-size: 13px; color: var(--text-muted);
}
.bc-inner a {
  color: var(--primary); font-size: 13px;
}
.bc-inner a:hover { color: var(--primary-dark); }
.bc-sep { opacity: .5; }

/* ── HERO ────────────────────────────────────────────────── */
.page-hero {
  background: var(--primary);
  position: relative; overflow: hidden;
  padding: 52px 20px;
  text-align: center;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.page-hero-inner {
  position: relative; z-index: 1;
  max-width: 700px; margin: 0 auto;
}
.page-hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(28px, 4vw, 44px);
  color: #fff; font-weight: 600; line-height: 1.2;
  margin-bottom: 10px;
}
.page-hero p {
  color: rgba(255,255,255,.8); font-size: 16px;
  max-width: 520px; margin: 0 auto;
}

/* ── TICKER ──────────────────────────────────────────────── */
.ticker-bar {
  background: #c0392b;
  padding: 8px 0;
  overflow: hidden;
}
.ticker-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 20px;
  display: flex; align-items: center; gap: 12px;
}
.ticker-label {
  background: rgba(0,0,0,.2); color: #fff;
  font-size: 11px; font-weight: 700; letter-spacing: .12em;
  padding: 3px 10px; border-radius: 2px; white-space: nowrap;
  text-transform: uppercase; flex-shrink: 0;
}
.ticker-text {
  flex: 1; overflow: hidden;
}
.ticker-text span {
  display: inline-block;
  color: rgba(255,255,255,.9); font-size: 13px;
  animation: tickscroll 30s linear infinite;
}
@keyframes tickscroll { from{transform:translateX(100vw)} to{transform:translateX(-100%)} }

/* ── MAIN CONTENT ────────────────────────────────────────── */
.main {
  max-width: 1200px; margin: 0 auto; padding: 40px 20px;
}
.main-with-sidebar {
  display: grid; grid-template-columns: 1fr 320px; gap: 40px;
}
.sidebar { }

/* ── SECTION HEADING ─────────────────────────────────────── */
.sec-heading {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 20px; padding-bottom: 10px;
  border-bottom: 2px solid var(--primary);
}
.sec-heading h2 {
  font-family: var(--font-serif);
  font-size: 22px; font-weight: 600; color: var(--primary);
}
.sec-heading-link {
  font-size: 13.5px; color: var(--primary); font-weight: 600;
}
.sec-heading-link:hover { color: var(--primary-dark); }

/* ── ARTICLE CARDS ───────────────────────────────────────── */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
  margin-bottom: 32px;
}
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: box-shadow var(--transition), transform var(--transition);
}
.card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.card-img {
  width: 100%; height: 160px;
  background: var(--primary-light);
  display: flex; align-items: center; justify-content: center;
  font-size: 44px; overflow: hidden;
}
.card-img img { width: 100%; height: 100%; object-fit: cover; }
.card-body { padding: 16px; }
.card-cat {
  font-size: 11.5px; font-weight: 700; letter-spacing: .08em;
  text-transform: uppercase; color: var(--primary);
  margin-bottom: 6px;
}
.card-title {
  font-size: 16px; font-weight: 600; color: var(--text);
  line-height: 1.35; margin-bottom: 8px;
}
.card-text {
  font-size: 13.5px; color: var(--text-muted); line-height: 1.55;
}
.card-meta {
  margin-top: 12px; padding-top: 10px;
  border-top: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
  font-size: 12px; color: var(--gray-400);
}
.card-badge {
  display: inline-block; font-size: 11px; font-weight: 700;
  padding: 2px 8px; border-radius: 2px; letter-spacing: .05em;
}

/* ── KACHELN (tile grid, duisburg.de style) ──────────────── */
.kacheln {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 3px;
  margin-bottom: 32px;
}
.kachel {
  position: relative;
  background: var(--primary-light);
  aspect-ratio: 1;
  overflow: hidden;
  cursor: pointer;
  text-decoration: none;
}
.kachel:hover { text-decoration: none; }
.kachel-bg {
  position: absolute; inset: 0;
  background: var(--primary);
  display: flex; align-items: center; justify-content: center;
  font-size: 52px;
  transition: transform var(--transition);
}
.kachel:hover .kachel-bg { transform: scale(1.05); }
.kachel-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.75) 0%, rgba(0,0,0,.1) 60%, transparent 100%);
}
.kachel-title {
  position: absolute; bottom: 16px; left: 16px; right: 16px;
  color: #fff; font-size: 17px; font-weight: 700; line-height: 1.25;
}
.kachel-arrow {
  position: absolute; top: 12px; right: 12px;
  color: rgba(255,255,255,.6); font-size: 16px;
}

/* ── LIST ENTRIES ────────────────────────────────────────── */
.entry-list { margin-bottom: 28px; }
.entry {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 16px 0; border-bottom: 1px solid var(--border);
}
.entry:first-child { border-top: 1px solid var(--border); }
.entry-icon {
  width: 44px; height: 44px; border-radius: var(--radius);
  background: var(--primary-light); color: var(--primary);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; flex-shrink: 0; margin-top: 2px;
}
.entry-body { flex: 1; }
.entry-meta {
  display: flex; gap: 8px; align-items: center;
  flex-wrap: wrap; margin-bottom: 4px;
}
.entry-title {
  font-size: 15.5px; font-weight: 600; color: var(--text);
  margin-bottom: 4px; line-height: 1.35;
}
.entry-text {
  font-size: 13.5px; color: var(--text-muted); line-height: 1.5;
}
.entry-right {
  text-align: right; flex-shrink: 0;
  font-size: 12.5px; color: var(--gray-400);
  white-space: nowrap; padding-top: 4px;
}

/* ── STAT WIDGET ─────────────────────────────────────────── */
.stat-box {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow); margin-bottom: 24px;
}
.stat-box-header {
  background: var(--primary); color: #fff;
  padding: 12px 16px; font-size: 13px; font-weight: 700;
  letter-spacing: .05em; text-transform: uppercase;
}
.stat-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 11px 16px; border-bottom: 1px solid var(--border);
  font-size: 14px;
}
.stat-row:last-child { border-bottom: none; }
.stat-label { color: var(--text-muted); }
.stat-val {
  font-weight: 700; font-size: 18px;
  color: var(--primary);
}
.stat-ok { color: #16a34a; }
.stat-warn { color: #d97706; }
.stat-crit { color: #dc2626; }

/* ── QUICKLINKS SIDEBAR ──────────────────────────────────── */
.quicklinks {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow); margin-bottom: 24px;
}
.quicklinks-header {
  background: var(--primary); color: #fff;
  padding: 12px 16px; font-size: 13px; font-weight: 700;
  letter-spacing: .05em; text-transform: uppercase;
}
.quicklink {
  display: flex; align-items: center; gap: 10px;
  padding: 11px 16px; border-bottom: 1px solid var(--border);
  color: var(--text); font-size: 14px;
  transition: background var(--transition);
  text-decoration: none;
}
.quicklink:last-child { border-bottom: none; }
.quicklink:hover {
  background: var(--primary-light); color: var(--primary);
  text-decoration: none;
}
.quicklink-icon { font-size: 16px; flex-shrink: 0; }
.quicklink-arrow { margin-left: auto; color: var(--gray-400); font-size: 12px; }

/* ── BADGE ───────────────────────────────────────────────── */
.badge {
  display: inline-block; font-size: 11px; font-weight: 700;
  padding: 2px 8px; border-radius: 2px; letter-spacing: .05em;
  text-transform: uppercase;
}
.badge-primary { background: var(--primary-light); color: var(--primary); }
.badge-success { background: #dcfce7; color: #166534; }
.badge-warning { background: #fef3c7; color: #92400e; }
.badge-danger  { background: #fee2e2; color: #991b1b; }
.badge-gray    { background: var(--gray-100); color: var(--gray-600); }

/* ── GALLERY ─────────────────────────────────────────────── */
.gal-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 4px; margin-bottom: 32px;
}
.gal-item {
  position: relative; aspect-ratio: 4/3; overflow: hidden;
  background: var(--gray-100); cursor: pointer;
}
.gal-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s; }
.gal-item:hover img { transform: scale(1.06); }
.gal-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.7) 0%, transparent 50%);
  opacity: 0; transition: opacity .2s;
  display: flex; align-items: flex-end; padding: 10px;
}
.gal-item:hover .gal-overlay { opacity: 1; }
.gal-caption {
  color: rgba(255,255,255,.9); font-size: 12.5px; font-weight: 600;
}
.gal-empty {
  grid-column: 1/-1; text-align: center; padding: 60px;
  background: var(--gray-50); border: 2px dashed var(--border);
  border-radius: var(--radius);
}
.gal-empty-ico { font-size: 40px; margin-bottom: 12px; opacity: .4; }
.gal-empty-txt { color: var(--text-muted); font-size: 15px; margin-bottom: 16px; }

/* ── LIGHTBOX ────────────────────────────────────────────── */
.lb {
  display: none; position: fixed; inset: 0; z-index: 1000;
  background: rgba(0,0,0,.92);
  align-items: center; justify-content: center; padding: 40px;
}
.lb.open { display: flex; }
.lb img {
  max-width: 100%; max-height: 85vh;
  object-fit: contain; box-shadow: 0 20px 60px rgba(0,0,0,.5);
}
.lb-close {
  position: absolute; top: 16px; right: 24px;
  color: rgba(255,255,255,.6); font-size: 36px; cursor: pointer;
  font-weight: 300; line-height: 1; transition: color .15s;
}
.lb-close:hover { color: #fff; }
.lb-cap {
  position: absolute; bottom: 24px;
  left: 50%; transform: translateX(-50%);
  color: rgba(255,255,255,.55); font-size: 13px; white-space: nowrap;
}
.lb-arrow {
  position: absolute; top: 50%;
  transform: translateY(-50%);
  color: rgba(255,255,255,.5); font-size: 40px; cursor: pointer;
  font-weight: 300; transition: color .15s; user-select: none;
}
.lb-arrow:hover { color: #fff; }
.lb-prev { left: 20px; }
.lb-next { right: 20px; }

/* ── INFOBOX ─────────────────────────────────────────────── */
.infobox {
  border: 1px solid var(--primary);
  border-left: 4px solid var(--primary);
  background: var(--primary-light);
  padding: 16px 18px;
  border-radius: var(--radius);
  margin-bottom: 20px;
}
.infobox-title {
  font-weight: 700; color: var(--primary);
  margin-bottom: 6px; font-size: 15px;
}
.infobox-text {
  color: var(--text); font-size: 14px; line-height: 1.6;
}

/* ── FILTER BAR ──────────────────────────────────────────── */
.filter-bar {
  display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 24px;
  padding: 14px 16px; background: var(--gray-50);
  border: 1px solid var(--border); border-radius: var(--radius);
}
.filter-bar label {
  font-size: 13px; font-weight: 600; color: var(--text-muted);
  margin-right: 4px;
}
.filter-btn {
  padding: 5px 14px; font-size: 13px; font-weight: 600;
  border: 1px solid var(--border); border-radius: 20px;
  background: var(--white); color: var(--text-muted);
  cursor: pointer; transition: all var(--transition);
}
.filter-btn:hover, .filter-btn.on {
  background: var(--primary); color: #fff; border-color: var(--primary);
}

/* ── NOTICE BAR ──────────────────────────────────────────── */
.notice-danger {
  background: #fef2f2; border-top: 3px solid #dc2626;
  padding: 12px 0;
}
.notice-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 20px;
  display: flex; align-items: center; gap: 12px;
  font-size: 14px; font-weight: 600; color: #991b1b;
}
.notice-icon { font-size: 18px; flex-shrink: 0; }

/* ── FOOTER ──────────────────────────────────────────────── */
.site-footer {
  margin-top: 60px;
  background: var(--gray-800);
  color: rgba(255,255,255,.65);
}
.footer-top {
  padding: 40px 20px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-grid {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px;
}
.footer-brand h3 {
  color: #fff; font-size: 18px; font-weight: 700;
  margin-bottom: 6px; font-family: var(--font-serif);
}
.footer-brand p {
  font-size: 13px; line-height: 1.65; margin-bottom: 10px;
}
.footer-notruf {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--primary); color: #fff;
  padding: 8px 16px; border-radius: var(--radius);
  font-weight: 700; font-size: 15px; margin-top: 6px;
}
.footer-col h4 {
  color: #fff; font-size: 13px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .08em;
  margin-bottom: 14px;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 7px; }
.footer-col ul a {
  color: rgba(255,255,255,.55); font-size: 13.5px;
  transition: color var(--transition);
}
.footer-col ul a:hover { color: #fff; text-decoration: none; }
.footer-bottom {
  padding: 16px 20px;
  border-top: 1px solid rgba(255,255,255,.08);
}
.footer-bottom-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: flex-start; gap: 24px; flex-wrap: wrap;
  justify-content: space-between;
}
.footer-copy { font-size: 12px; }
.footer-disc {
  font-size: 11.5px; color: rgba(255,255,255,.3);
  line-height: 1.7; max-width: 580px;
}
.footer-disc strong { color: rgba(255,255,255,.45); }

/* ── TABLE ───────────────────────────────────────────────── */
.data-table {
  width: 100%; border-collapse: collapse;
  font-size: 14px; margin-bottom: 24px;
}
.data-table th {
  background: var(--primary); color: #fff;
  padding: 11px 14px; text-align: left; font-weight: 600; font-size: 13px;
}
.data-table td {
  padding: 11px 14px; border-bottom: 1px solid var(--border);
  color: var(--text);
}
.data-table tr:last-child td { border-bottom: none; }
.data-table tr:hover td { background: var(--primary-light); }
.data-table tr:nth-child(even) td { background: var(--gray-50); }
.data-table tr:nth-child(even):hover td { background: var(--primary-light); }

/* ── PAGE TITLE BAR ──────────────────────────────────────── */
.page-title-bar {
  background: var(--primary-light);
  border-bottom: 1px solid var(--border);
  padding: 28px 20px;
}
.ptb-inner {
  max-width: 1200px; margin: 0 auto;
}
.ptb-inner h1 {
  font-family: var(--font-serif);
  font-size: clamp(24px, 3vw, 34px);
  color: var(--primary); font-weight: 600; margin-bottom: 4px;
}
.ptb-inner p {
  color: var(--text-muted); font-size: 15px;
}

/* ── VOTE BAR ────────────────────────────────────────────── */
.vote-bar-wrap {
  display: flex; align-items: center; gap: 8px; margin-top: 8px;
}
.vote-bar {
  flex: 1; height: 6px; background: var(--gray-200); border-radius: 3px; overflow: hidden;
}
.vote-fill { height: 100%; background: #16a34a; border-radius: 3px; }
.vote-txt { font-size: 12px; color: var(--text-muted); white-space: nowrap; }

/* ── UPLOAD ZONE ─────────────────────────────────────────── */
.upload-zone {
  border: 2px dashed var(--border); border-radius: var(--radius);
  padding: 40px; text-align: center; background: var(--gray-50);
  cursor: pointer; transition: all var(--transition); margin-bottom: 24px;
}
.upload-zone:hover, .upload-zone.drag {
  border-color: var(--primary); background: var(--primary-light);
}
.upload-zone-icon { font-size: 36px; margin-bottom: 10px; opacity: .5; }
.upload-zone-txt { font-size: 15px; color: var(--text-muted); margin-bottom: 8px; }
.upload-zone-sub { font-size: 13px; color: var(--gray-400); }
.upload-progress {
  display: none; margin-top: 16px;
}
.progress-bar-wrap {
  height: 6px; background: var(--gray-200); border-radius: 3px; overflow: hidden;
}
.progress-bar-fill { height: 100%; background: var(--primary); border-radius: 3px; width: 0; transition: width .2s; }

/* ── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 860px) {
  .main-with-sidebar { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .header-search, .header-notruf { display: none; }
  .kacheln { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr; }
  .cards-grid { grid-template-columns: 1fr; }
  .kacheln { grid-template-columns: 1fr; }
  .filter-bar { flex-direction: column; }
  .nav-inner { overflow-x: auto; }
  .nav-link { padding: 13px 12px; font-size: 13px; }
}
