/* =============================================
   SportLive24 — Main CSS  v6
   ============================================= */

/* ---------- Design Tokens ---------- */
:root {
  --c-bg:        #06080e;
  --c-surface:   #0d1320;
  --c-surface2:  #121d30;
  --c-border:    rgba(255,255,255,.065);
  --c-border2:   rgba(255,255,255,.12);
  --c-text:      #dce9f6;
  --c-muted:     #6d859e;
  --c-accent:    #ff6d1a;
  --c-accent2:   #ff1f5b;
  --c-link:      #5eadff;
  --c-success:   #3fb950;
  --c-grad:      linear-gradient(135deg,#ff6d1a 0%,#ff1f5b 100%);
  --c-grad-r:    linear-gradient(135deg,#ff1f5b 0%,#ff6d1a 100%);
  --radius:      12px;
  --radius-sm:   8px;
  --font:        'Inter',-apple-system,BlinkMacSystemFont,'Segoe UI',sans-serif;
  --shadow:      0 4px 24px rgba(0,0,0,.55);
  --shadow-glow: 0 0 0 1px rgba(255,109,26,.25), 0 8px 32px rgba(0,0,0,.5), 0 0 24px rgba(255,109,26,.1);
  --glass-bg:    rgba(6,8,14,.82);
  --glass-blur:  blur(24px) saturate(160%);
}

@media (prefers-color-scheme: light) {
  :root {
    --c-bg:       #f2f5fc;
    --c-surface:  #ffffff;
    --c-surface2: #edf1f8;
    --c-border:   rgba(0,0,0,.07);
    --c-border2:  rgba(0,0,0,.13);
    --c-text:     #111827;
    --c-muted:    #6b7280;
    --c-link:     #1d6de5;
    --shadow:     0 2px 16px rgba(0,0,0,.1);
    --shadow-glow:0 0 0 1px rgba(255,109,26,.3), 0 6px 24px rgba(0,0,0,.15);
    --glass-bg:   rgba(255,255,255,.85);
  }
}
:root[data-theme="light"] {
  --c-bg:#f2f5fc; --c-surface:#ffffff; --c-surface2:#edf1f8;
  --c-border:rgba(0,0,0,.07); --c-border2:rgba(0,0,0,.13);
  --c-text:#111827; --c-muted:#6b7280; --c-link:#1d6de5;
  --shadow:0 2px 16px rgba(0,0,0,.1);
  --shadow-glow:0 0 0 1px rgba(255,109,26,.3), 0 6px 24px rgba(0,0,0,.15);
  --glass-bg:rgba(255,255,255,.85);
}
:root[data-theme="dark"] {
  --c-bg:#06080e; --c-surface:#0d1320; --c-surface2:#121d30;
  --c-border:rgba(255,255,255,.065); --c-border2:rgba(255,255,255,.12);
  --c-text:#dce9f6; --c-muted:#6d859e; --c-link:#5eadff;
  --shadow:0 4px 24px rgba(0,0,0,.55);
  --shadow-glow:0 0 0 1px rgba(255,109,26,.25), 0 8px 32px rgba(0,0,0,.5), 0 0 24px rgba(255,109,26,.1);
  --glass-bg:rgba(6,8,14,.82);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
  background-color: var(--c-bg);
  background-image:
    radial-gradient(ellipse 70% 55% at 4% 1%, rgba(255,109,26,.11) 0%, transparent 58%),
    radial-gradient(ellipse 50% 40% at 96% 96%, rgba(255,31,91,.09) 0%, transparent 55%),
    radial-gradient(ellipse 35% 25% at 50% 50%, rgba(13,19,40,.6) 0%, transparent 65%);
  background-attachment: fixed;
  color: var(--c-text);
  font-family: var(--font);
  font-size: .9375rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
@media (prefers-color-scheme: light) {
  body {
    background-image:
      radial-gradient(ellipse 60% 40% at 5% 0%, rgba(255,109,26,.06) 0%, transparent 55%),
      radial-gradient(ellipse 40% 30% at 95% 100%, rgba(255,31,91,.04) 0%, transparent 50%);
  }
}
:root[data-theme="light"] body {
  background-image:
    radial-gradient(ellipse 60% 40% at 5% 0%, rgba(255,109,26,.06) 0%, transparent 55%),
    radial-gradient(ellipse 40% 30% at 95% 100%, rgba(255,31,91,.04) 0%, transparent 50%);
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--c-link); text-decoration: none; }
a:hover { text-decoration: underline; }
button { cursor: pointer; font: inherit; }

/* ---------- Utilities ---------- */
.container { max-width: 1220px; margin: 0 auto; padding: 0 20px; }
.sr-only { position:absolute; width:1px; height:1px; overflow:hidden; clip:rect(0,0,0,0); white-space:nowrap; }

/* ---------- Header ---------- */
.site-header {
  background: var(--glass-bg);
  -webkit-backdrop-filter: var(--glass-blur);
  backdrop-filter: var(--glass-blur);
  border-bottom: 1px solid var(--c-border);
  position: sticky;
  top: 0;
  z-index: 100;
}
.hdr-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  height: 64px;
}

/* ---------- Logo ---------- */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}
.logo:hover { text-decoration: none; }
.logo-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  flex-shrink: 0;
  box-shadow: 0 2px 14px rgba(255,109,26,.35);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.logo-svg {
  width: 38px;
  height: 38px;
}
.logo-text {
  line-height: 1.1;
}
.logo-text strong {
  font-size: 1.1rem;
  font-weight: 900;
  letter-spacing: -.02em;
  color: var(--c-text);
  display: block;
}
.logo-text strong em {
  font-style: normal;
  background: var(--c-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.logo-text span {
  font-size: .675rem;
  color: var(--c-muted);
  text-transform: uppercase;
  letter-spacing: .1em;
  display: block;
}

/* ---------- Main Nav ---------- */
.main-nav {
  display: flex;
  align-items: center;
  gap: 2px;
  min-width: 0;
  overflow: hidden;
  scrollbar-width: none;
}
.main-nav::-webkit-scrollbar { display: none; }
.main-nav a {
  font-size: .8rem;
  font-weight: 600;
  color: var(--c-muted);
  padding: 6px 10px;
  border-radius: 7px;
  white-space: nowrap;
  text-decoration: none;
  transition: background .15s, color .15s;
  display: flex;
  align-items: center;
  gap: 4px;
}
.main-nav a:hover, .main-nav a.active {
  background: rgba(255,109,26,.1);
  color: var(--c-text);
  text-decoration: none;
}
.main-nav a.active { color: var(--c-accent); }
.main-nav .nav-txt { display: none; }
@media (min-width: 1600px) {
  .main-nav .nav-txt { display: inline; }
}

.hdr-right {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.search-form {
  display: flex;
  align-items: center;
  background: rgba(255,255,255,.05);
  border: 1px solid var(--c-border);
  border-radius: 20px;
  overflow: hidden;
  transition: border-color .15s, box-shadow .15s;
}
@media (prefers-color-scheme: light) {
  .search-form { background: rgba(0,0,0,.04); }
}
:root[data-theme="light"] .search-form { background: rgba(0,0,0,.04); }
.search-form:focus-within {
  border-color: rgba(255,109,26,.5);
  box-shadow: 0 0 0 3px rgba(255,109,26,.12);
}
.search-form input {
  background: transparent;
  border: none;
  outline: none;
  color: var(--c-text);
  font-size: .8125rem;
  padding: 7px 12px;
  width: 155px;
}
.search-form input::placeholder { color: var(--c-muted); }
.search-form button {
  background: transparent;
  border: none;
  color: var(--c-muted);
  padding: 7px 12px;
  font-size: .875rem;
  transition: color .15s;
}
.search-form button:hover { color: var(--c-accent); }

.lang-sw { display: flex; gap: 2px; }
.lang-sw a {
  font-size: .7rem;
  font-weight: 700;
  color: var(--c-muted);
  padding: 5px 8px;
  border-radius: 6px;
  text-decoration: none;
  letter-spacing: .05em;
  transition: background .15s, color .15s;
}
.lang-sw a.on {
  background: var(--c-grad);
  color: #fff;
  box-shadow: 0 2px 8px rgba(255,109,26,.3);
}
.lang-sw a:hover:not(.on) { background: rgba(255,255,255,.07); color: var(--c-text); }

.theme-toggle {
  background: rgba(255,255,255,.05);
  border: 1px solid var(--c-border);
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .95rem;
  color: var(--c-muted);
  transition: background .15s, color .15s, box-shadow .15s;
}
.theme-toggle:hover {
  background: rgba(255,109,26,.12);
  color: var(--c-accent);
  box-shadow: 0 0 0 1px rgba(255,109,26,.2);
}

.burger {
  display: none;
  background: rgba(255,255,255,.05);
  border: 1px solid var(--c-border);
  border-radius: 8px;
  color: var(--c-muted);
  padding: 6px 10px;
  font-size: 1rem;
}

/* ---------- Sport Nav Strip ---------- */
.sport-strip {
  background: var(--glass-bg);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--c-border);
}
.sport-strip-inner {
  display: flex;
  gap: 0;
  overflow-x: auto;
  scrollbar-width: none;
}
.sport-strip-inner::-webkit-scrollbar { display: none; }
.sport-link {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 16px;
  font-size: .8rem;
  font-weight: 600;
  color: var(--c-muted);
  text-decoration: none;
  white-space: nowrap;
  position: relative;
  transition: color .15s, background .15s;
}
.sport-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: transparent;
  transition: background .15s;
  border-radius: 2px 2px 0 0;
}
.sport-link:hover { color: var(--c-text); text-decoration: none; background: rgba(255,255,255,.04); }
.sport-link.active { color: var(--c-text); background: rgba(255,255,255,.04); }
.sport-link.active::after { background: var(--sport-color, var(--c-accent)); }

/* ---------- Cards ---------- */
.hero { padding: 24px 0 0; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr;
  grid-template-rows: auto auto;
  gap: 16px;
}
.hero-main { grid-row: 1 / 3; }

.card {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: box-shadow .25s, transform .25s, border-color .25s;
  display: flex;
  flex-direction: column;
}
.card:hover {
  box-shadow: var(--shadow-glow);
  transform: translateY(-3px);
  border-color: rgba(255,109,26,.3);
  text-decoration: none;
}
.card-img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  background: var(--c-surface2);
  display: block;
  transition: transform .4s;
}
.card:hover .card-img { transform: scale(1.03); }
.card a:first-child { overflow: hidden; display: block; }

.card-img-placeholder {
  width: 100%;
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, var(--c-surface2) 0%, rgba(255,109,26,.06) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
}
.hero-main .card-img-placeholder { font-size: 4rem; }

.card-body { padding: 16px; flex: 1; display: flex; flex-direction: column; gap: 8px; }
.card-sport-tag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  padding: 3px 9px;
  border-radius: 5px;
  color: #fff;
  align-self: flex-start;
}
.card-title {
  font-size: .9375rem;
  font-weight: 700;
  line-height: 1.35;
  color: var(--c-text);
  text-decoration: none;
  display: block;
  transition: color .15s;
}
.card-title:hover { color: var(--c-accent); text-decoration: none; }
.hero-main .card-title { font-size: 1.25rem; }
.card-excerpt {
  font-size: .875rem;
  color: var(--c-muted);
  line-height: 1.55;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.card-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .75rem;
  color: var(--c-muted);
  margin-top: auto;
}

/* ---------- Section Heading ---------- */
.section-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--c-border);
}
.section-heading h1,
.section-heading h2 {
  font-size: 1rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  gap: 9px;
  text-transform: uppercase;
  letter-spacing: .05em;
}
.section-heading h1 .dot,
.section-heading h2 .dot {
  width: 4px;
  height: 20px;
  background: var(--c-grad);
  border-radius: 2px;
  box-shadow: 0 0 8px rgba(255,109,26,.4);
}
.section-heading a { font-size: .8125rem; font-weight: 600; color: var(--c-muted); }
.section-heading a:hover { color: var(--c-accent); text-decoration: none; }

/* ---------- Main Layout ---------- */
.main-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 28px;
  padding: 24px 0 48px;
}
.news-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.news-grid.grid-3 { grid-template-columns: repeat(3, 1fr); }

/* ---------- News List ---------- */
.news-list-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--c-border);
  transition: opacity .15s;
}
.news-list-item:last-child { border-bottom: none; }
.news-list-item:hover { opacity: .85; }
.news-list-thumb {
  width: 72px;
  height: 54px;
  background: var(--c-surface2);
  border-radius: 7px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  overflow: hidden;
}
.news-list-thumb img { width: 100%; height: 100%; object-fit: cover; border-radius: 7px; }
.news-list-body { flex: 1; }
.news-list-title {
  font-size: .875rem;
  font-weight: 600;
  line-height: 1.35;
  color: var(--c-text);
  text-decoration: none;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color .15s;
}
.news-list-title:hover { color: var(--c-accent); text-decoration: none; }
.news-list-meta { font-size: .7rem; color: var(--c-muted); margin-top: 4px; }

/* ---------- Sidebar ---------- */
.sidebar { display: flex; flex-direction: column; gap: 20px; }
.sidebar-widget {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  overflow: hidden;
}
.widget-head {
  padding: 11px 16px;
  border-bottom: 1px solid var(--c-border);
  font-size: .775rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .07em;
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,109,26,.07);
  color: var(--c-text);
}
.widget-body { padding: 6px 16px 12px; }

/* ---------- Section Page ---------- */
.section-title-bar {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
  padding: 20px 0 16px;
}
.section-sport-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  flex-shrink: 0;
}
.section-title-bar h1 { font-size: 1.75rem; font-weight: 900; letter-spacing: -.02em; }
.section-title-bar p { font-size: .875rem; color: var(--c-muted); }

/* ---------- Pagination ---------- */
.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 28px;
}
.pagination a, .pagination span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  border: 1px solid var(--c-border);
  font-size: .875rem;
  font-weight: 600;
  text-decoration: none;
  color: var(--c-muted);
  transition: all .15s;
  background: var(--c-surface);
}
.pagination a:hover { border-color: rgba(255,109,26,.4); color: var(--c-accent); background: rgba(255,109,26,.08); text-decoration: none; }
.pagination span.current {
  background: var(--c-grad);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 2px 10px rgba(255,109,26,.35);
}

/* ---------- Article Page ---------- */
.article-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 36px;
  padding: 20px 0 56px;
}
.article-header { margin-bottom: 20px; }
.article-sport-tag { margin-bottom: 12px; }
.article-title {
  font-size: 1.875rem;
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: -.02em;
  margin-bottom: 16px;
}
.article-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: .8rem;
  color: var(--c-muted);
  padding: 12px 0;
  border-top: 1px solid var(--c-border);
  border-bottom: 1px solid var(--c-border);
  margin-bottom: 24px;
}
.article-cover {
  width: 100%;
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, var(--c-surface2) 0%, rgba(255,109,26,.08) 100%);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  margin-bottom: 28px;
}
.article-content {
  font-size: 1.0125rem;
  line-height: 1.8;
}
.article-content h2 {
  font-size: 1.3rem;
  font-weight: 800;
  margin: 30px 0 14px;
  letter-spacing: -.01em;
  position: relative;
  padding-left: 14px;
}
.article-content h2::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--c-grad);
  border-radius: 2px;
}
.article-content h3 { font-size: 1.0625rem; font-weight: 700; margin: 22px 0 10px; }
.article-content p { margin-bottom: 18px; }
.article-content ul, .article-content ol { margin: 0 0 16px 24px; }
.article-content li { margin-bottom: 6px; }
.article-content blockquote {
  border-left: 3px solid transparent;
  border-image: var(--c-grad) 1;
  padding: 12px 18px;
  margin: 24px 0;
  background: rgba(255,109,26,.06);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-style: italic;
  color: var(--c-muted);
}
.article-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 32px;
  padding-top: 22px;
  border-top: 1px solid var(--c-border);
}
.tag {
  background: rgba(255,255,255,.04);
  border: 1px solid var(--c-border);
  border-radius: 6px;
  padding: 4px 11px;
  font-size: .75rem;
  font-weight: 600;
  color: var(--c-muted);
  text-decoration: none;
  transition: border-color .15s, color .15s, background .15s;
}
.tag:hover { border-color: rgba(255,109,26,.5); color: var(--c-accent); background: rgba(255,109,26,.07); text-decoration: none; }

.share-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 24px;
  padding-top: 22px;
  border-top: 1px solid var(--c-border);
}
.share-bar span { font-size: .8125rem; font-weight: 600; color: var(--c-muted); }
.share-btn {
  padding: 7px 16px;
  border-radius: 8px;
  border: 1px solid var(--c-border);
  background: rgba(255,255,255,.04);
  color: var(--c-muted);
  font-size: .8125rem;
  font-weight: 600;
  cursor: pointer;
  transition: all .15s;
}
.share-btn:hover { border-color: rgba(255,109,26,.45); color: var(--c-accent); background: rgba(255,109,26,.07); }

/* ---------- Related ---------- */
.related { margin-top: 44px; }
.related-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; margin-top: 16px; }

/* ---------- Breadcrumb ---------- */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: .8rem;
  color: var(--c-muted);
  padding: 12px 0 4px;
}
.breadcrumb a { color: var(--c-muted); text-decoration: none; transition: color .15s; }
.breadcrumb a:hover { color: var(--c-accent); }
.breadcrumb-sep { opacity: .35; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--c-grad);
  color: #fff;
  padding: 10px 22px;
  border-radius: 8px;
  font-weight: 700;
  text-decoration: none;
  border: none;
  font-size: .9375rem;
  transition: opacity .15s, transform .15s, box-shadow .15s;
  box-shadow: 0 2px 14px rgba(255,109,26,.3);
}
.btn:hover { opacity: .9; text-decoration: none; transform: translateY(-1px); box-shadow: 0 4px 20px rgba(255,109,26,.4); }

/* ---------- Error Page ---------- */
.error-page {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 20px;
}
.error-page .error-code {
  font-size: 7rem;
  font-weight: 900;
  letter-spacing: -.04em;
  background: var(--c-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}
.error-page h1 { font-size: 1.5rem; margin: 16px 0 8px; }
.error-page p { color: var(--c-muted); margin-bottom: 28px; }

/* ---------- Footer ---------- */
.site-footer {
  background: rgba(5,7,12,.96);
  border-top: 1px solid var(--c-border);
  padding: 48px 0 24px;
  margin-top: 56px;
  position: relative;
}
.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 180px;
  height: 1px;
  background: var(--c-grad);
  box-shadow: 0 0 20px rgba(255,109,26,.4);
}
@media (prefers-color-scheme: light) {
  .site-footer { background: #e9edf6; }
}
:root[data-theme="light"] .site-footer { background: #e9edf6; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 36px;
  margin-bottom: 36px;
}
.footer-logo-area .logo-text strong { font-size: 1.25rem; }
.footer-desc { font-size: .875rem; color: var(--c-muted); line-height: 1.65; margin-top: 12px; }
.footer-col h4 {
  font-size: .7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--c-muted);
  margin-bottom: 14px;
}
.footer-col a {
  display: block;
  font-size: .875rem;
  color: var(--c-muted);
  text-decoration: none;
  padding: 4px 0;
  transition: color .15s;
}
.footer-col a:hover { color: var(--c-accent); }
.footer-bottom {
  border-top: 1px solid var(--c-border);
  padding-top: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: .8rem;
  color: var(--c-muted);
  flex-wrap: wrap;
  gap: 10px;
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .main-layout, .article-layout { grid-template-columns: 1fr; }
  .sidebar { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
}
@media (max-width: 768px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-main { grid-row: auto; }
  .news-grid { grid-template-columns: 1fr; }
  .related-grid { grid-template-columns: 1fr 1fr; }
  .main-nav { display: none; }
  .main-nav.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: rgba(6,8,14,.97);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--c-border);
    padding: 10px;
    z-index: 99;
  }
  .burger { display: block; }
  .search-form input { width: 115px; }
  .article-title { font-size: 1.5rem; }
  .footer-grid { grid-template-columns: 1fr; }
  .hdr-inner { height: 58px; }
}
@media (max-width: 480px) {
  .related-grid { grid-template-columns: 1fr; }
  .hdr-inner { gap: 10px; }
  .search-form { display: none; }
  .lang-sw a { padding: 5px 6px; }
}
