/* ==========================================================================
   HaberPortal ? Modern T?rk haber sitesi
   Yap?: d?viz ?eridi + man?et + kategori bloklar? (yerel haber)
   G?r?n?m: temiz, profesyonel, mobil-?ncelikli
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Sora:wght@400;500;600;700;800&family=Figtree:wght@400;500;600;700&display=swap');

:root {
  --font-display: 'Sora', system-ui, sans-serif;
  --font-body: 'Figtree', system-ui, sans-serif;

  --crimson: #dc2626;
  --crimson-deep: #b91c1c;
  --ink: #0b1220;
  --ink-soft: #151d2e;

  --radius: 10px;
  --radius-sm: 6px;
  --radius-lg: 16px;
  --container: 1200px;
  --ease: cubic-bezier(.22, 1, .36, 1);
  --t: 200ms var(--ease);
}

:root, [data-theme="light"] {
  --bg: #f4f6f9;
  --bg-soft: #eef1f6;
  --surface: #ffffff;
  --surface-2: #f8fafc;
  --border: #e2e8f0;
  --border-strong: #cbd5e1;
  --text: #0f172a;
  --text-muted: #475569;
  --text-faint: #94a3b8;
  --accent: var(--crimson);
  --accent-soft: rgba(220, 38, 38, .1);
  --header: var(--ink);
  --topbar: #070b14;
  --nav: var(--crimson);
  --footer: #0b1220;
  --shadow: 0 1px 2px rgba(15, 23, 42, .04), 0 8px 24px rgba(15, 23, 42, .06);
  --shadow-lg: 0 12px 40px rgba(15, 23, 42, .12);
  --up: #16a34a;
  --down: #dc2626;
  --overlay: linear-gradient(180deg, transparent 20%, rgba(7, 11, 20, .55) 60%, rgba(7, 11, 20, .92) 100%);
  --video-badge-bg: var(--ink);
  --video-badge-fg: #fff;
  --video-badge-play: #dc2626;
  --pager-active-bg: var(--ink);
  --pager-active-fg: #fff;
}

[data-theme="dark"] {
  --bg: #0a0e16;
  --bg-soft: #111827;
  --surface: #121826;
  --surface-2: #1a2234;
  --border: #243044;
  --border-strong: #334155;
  --text: #f1f5f9;
  --text-muted: #94a3b8;
  --text-faint: #64748b;
  --accent: #ef4444;
  --accent-soft: rgba(220, 38, 38, .18);
  --header: #070b14;
  --topbar: #04060c;
  --nav: #b91c1c;
  --footer: #04060c;
  --shadow: 0 1px 2px rgba(0,0,0,.3), 0 8px 24px rgba(0,0,0,.25);
  --shadow-lg: 0 16px 48px rgba(0,0,0,.45);
  --up: #4ade80;
  --down: #ef4444;
  --overlay: linear-gradient(180deg, transparent 15%, rgba(0,0,0,.5) 55%, rgba(0,0,0,.92) 100%);
  --video-badge-bg: #1a2234;
  --video-badge-fg: #f8fafc;
  --video-badge-play: #ef4444;
  --pager-active-bg: var(--accent);
  --pager-active-fg: #fff;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: clip; }
body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; margin: 0; padding: 0; }
button, input, textarea, select { font: inherit; }
h1, h2, h3, h4 { font-family: var(--font-display); margin: 0; line-height: 1.2; letter-spacing: -.02em; }
p { margin: 0 0 1em; }
svg { display: block; flex-shrink: 0; max-width: 100%; }

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 18px; }
.skip-link { position: absolute; left: -999px; top: 0; z-index: 999; background: var(--accent); color: #fff; padding: 10px 16px; font-weight: 700; }
.skip-link:focus { left: 0; }
.fade-in { animation: fadeUp .45s var(--ease) both; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--font-display); font-weight: 600; font-size: 13.5px;
  padding: 11px 18px; border-radius: 999px; border: 1px solid transparent;
  cursor: pointer; transition: background var(--t), color var(--t), border-color var(--t), transform var(--t);
}
.btn:active { transform: scale(.98); }
.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { background: var(--crimson-deep); }
.btn-outline { background: transparent; border-color: var(--border-strong); color: var(--text); }
.btn-outline:hover { border-color: var(--accent); color: var(--accent); }
.btn-sm { padding: 7px 14px; font-size: 12.5px; }

.field-input {
  width: 100%; padding: 12px 14px; border-radius: var(--radius-sm);
  border: 1px solid var(--border-strong); background: var(--surface); color: var(--text);
  transition: border-color var(--t), box-shadow var(--t);
}
.field-input:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-soft); }
textarea.field-input { min-height: 110px; resize: vertical; }

.badge {
  display: inline-flex; align-items: center; gap: 5px;
  font-family: var(--font-display); font-weight: 700; font-size: 10.5px;
  letter-spacing: .06em; text-transform: uppercase;
  padding: 5px 10px; border-radius: 999px;
}
.badge-category { background: var(--accent); color: #fff; }
.badge-breaking { background: #fff; color: var(--crimson-deep); box-shadow: var(--shadow); }
.badge-video {
  background: var(--video-badge-bg); color: var(--video-badge-fg);
  display: inline-flex; align-items: center; gap: 6px;
  border: 1px solid color-mix(in srgb, var(--video-badge-fg) 12%, transparent);
}
.badge-video::before {
  content: ""; width: 0; height: 0;
  border-left: 7px solid var(--video-badge-fg); border-top: 5px solid transparent; border-bottom: 5px solid transparent;
}

/* Video Haber etiket (kategori yan? / k??e) */
.video-haber-badge {
  display: inline-flex; align-items: center; gap: 7px;
  background: var(--video-badge-bg); color: var(--video-badge-fg);
  font-family: var(--font-display); font-size: 10px; font-weight: 800;
  letter-spacing: .05em; text-transform: uppercase;
  padding: 5px 8px 5px 10px; border-radius: var(--radius-sm);
  line-height: 1; white-space: nowrap;
  border: 1px solid color-mix(in srgb, var(--video-badge-fg) 10%, transparent);
  box-shadow: var(--shadow);
}
.video-haber-badge::after {
  content: "";
  width: 15px; height: 15px; border-radius: 50%; flex-shrink: 0;
  background-color: var(--video-badge-fg);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath fill='%23dc2626' d='M4.2 2.4v7.2L9.6 6z'/%3E%3C/svg%3E");
  background-position: center;
  background-size: 8px 8px;
  background-repeat: no-repeat;
}
[data-theme="dark"] .video-haber-badge::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath fill='%23ef4444' d='M4.2 2.4v7.2L9.6 6z'/%3E%3C/svg%3E");
}
.video-haber-badge-corner {
  position: absolute; top: 10px; right: 10px; z-index: 3;
}
.manset-tags, .news-tags, .article-badges {
  display: flex; flex-wrap: wrap; align-items: center; gap: 8px;
  margin-bottom: 10px;
}
.manset-tags .manset-cat { margin-bottom: 0; }
.news-tags { margin-bottom: 6px; }
.news-tags .news-cat { margin: 0; }

/* ========== HEADER (modern) ========== */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: color-mix(in srgb, var(--header) 88%, transparent);
  backdrop-filter: blur(16px) saturate(1.2);
  -webkit-backdrop-filter: blur(16px) saturate(1.2);
  border-bottom: 1px solid rgba(255,255,255,.06);
  box-shadow: 0 10px 40px rgba(0,0,0,.18);
}
[data-theme="light"] .site-header {
  background: rgba(255,255,255,.86);
  border-bottom-color: var(--border);
  box-shadow: 0 8px 30px rgba(15,23,42,.06);
}

.header-utility {
  background: rgba(0,0,0,.28);
  border-bottom: 1px solid rgba(255,255,255,.05);
  font-size: 12px; color: rgba(255,255,255,.62);
}
[data-theme="light"] .header-utility {
  background: var(--bg-soft); color: var(--text-muted); border-bottom-color: var(--border);
}
.header-utility-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 14px;
  padding-top: 7px; padding-bottom: 7px;
}
.utility-left, .utility-fx { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.utility-fx { flex: 1; justify-content: center; min-width: 0; }
.utility-sep { width: 1px; height: 12px; background: rgba(255,255,255,.18); }
[data-theme="light"] .utility-sep { background: var(--border-strong); }
.header-date { font-weight: 500; letter-spacing: .01em; }
.weather-box { display: inline-flex; align-items: center; gap: 6px; font-weight: 500; }
.weather-box-link {
  display: inline-flex; align-items: center; gap: 6px;
  color: inherit; text-decoration: none;
}
.weather-box-link:hover { color: #fff; }
.fx-item {
  display: inline-flex; align-items: center; gap: 5px; white-space: nowrap;
  padding: 2px 8px; border-radius: 999px; background: rgba(255,255,255,.04);
  transition: background .35s var(--ease), box-shadow .35s var(--ease);
}
[data-theme="light"] .fx-item { background: var(--surface); border: 1px solid var(--border); }
.fx-name { font-size: 10px; font-weight: 700; letter-spacing: .06em; opacity: .55; }
.fx-rate {
  font-weight: 700; font-variant-numeric: tabular-nums; color: #fff;
  display: inline-block; min-width: 2.5ch;
}
[data-theme="light"] .fx-rate { color: var(--text); }
.fx-change { font-size: 10px; font-weight: 700; }
.fx-change.up { color: var(--up); }
.fx-change.up::before { content: "? "; font-size: 8px; }
.fx-change.down { color: #fb7185; }
.fx-change.down::before { content: "? "; font-size: 8px; }

/* Borsa tarz? anl?k fla? */
.fx-item.is-flash-up {
  animation: fxFlashUp .9s var(--ease);
}
.fx-item.is-flash-down {
  animation: fxFlashDown .9s var(--ease);
}
.fx-rate.is-tick {
  animation: fxTick .55s var(--ease);
}
@keyframes fxFlashUp {
  0% { background: rgba(34, 197, 94, .55); box-shadow: 0 0 0 0 rgba(34, 197, 94, .45); }
  40% { background: rgba(34, 197, 94, .28); box-shadow: 0 0 12px rgba(34, 197, 94, .25); }
  100% { background: rgba(255,255,255,.04); box-shadow: none; }
}
@keyframes fxFlashDown {
  0% { background: rgba(220, 38, 38, .5); box-shadow: 0 0 0 0 rgba(220, 38, 38, .4); }
  40% { background: rgba(220, 38, 38, .24); box-shadow: 0 0 12px rgba(220, 38, 38, .22); }
  100% { background: rgba(255,255,255,.04); box-shadow: none; }
}
[data-theme="light"] .fx-item.is-flash-up {
  animation-name: fxFlashUpLight;
}
[data-theme="light"] .fx-item.is-flash-down {
  animation-name: fxFlashDownLight;
}
@keyframes fxFlashUpLight {
  0% { background: #bbf7d0; border-color: #86efac; }
  100% { background: var(--surface); border-color: var(--border); }
}
@keyframes fxFlashDownLight {
  0% { background: #fecaca; border-color: #fca5a5; }
  100% { background: var(--surface); border-color: var(--border); }
}
@keyframes fxTick {
  0% { transform: translateY(-4px); opacity: .35; }
  55% { transform: translateY(1px); opacity: 1; }
  100% { transform: translateY(0); }
}
@media (prefers-reduced-motion: reduce) {
  .fx-item.is-flash-up, .fx-item.is-flash-down, .fx-rate.is-tick { animation: none; }
}

.header-main { position: relative; }
.header-main-inner {
  display: grid; grid-template-columns: auto minmax(180px, 1fr) auto;
  align-items: center; gap: 20px; padding: 14px 18px;
}
.brand { display: flex; align-items: center; gap: 11px; min-width: 0; }
.brand-mark { display: grid; place-items: center; color: var(--accent); }
.brand-mark-bg { fill: var(--accent); }
.brand-text {
  font-family: var(--font-display); font-size: clamp(18px, 3.5vw, 23px); font-weight: 800;
  letter-spacing: -.03em; color: #fff; white-space: nowrap; line-height: 1;
}
.brand-text span { color: #ef4444; }
[data-theme="light"] .brand-text { color: var(--ink); }
[data-theme="light"] .brand-text span { color: var(--crimson); }
[data-theme="dark"] .brand-text span { color: #fca5a5; }

.header-search {
  position: relative; display: flex; align-items: center; max-width: 460px; width: 100%; margin: 0 auto;
}
.header-search .search-icon {
  position: absolute; left: 14px; color: rgba(255,255,255,.4); pointer-events: none;
}
[data-theme="light"] .header-search .search-icon { color: var(--text-faint); }
.header-search input {
  width: 100%; height: 44px; padding: 0 48px 0 42px;
  border-radius: 999px; border: 1px solid rgba(255,255,255,.1);
  background: rgba(255,255,255,.07); color: #fff; outline: none;
  transition: border-color var(--t), background var(--t), box-shadow var(--t);
}
[data-theme="light"] .header-search input {
  background: var(--bg-soft); border-color: var(--border); color: var(--text);
}
.header-search input::placeholder { color: rgba(255,255,255,.35); }
[data-theme="light"] .header-search input::placeholder { color: var(--text-faint); }
.header-search input:focus {
  border-color: rgba(239, 68, 68, .65); background: rgba(255,255,255,.1);
  box-shadow: 0 0 0 4px rgba(220,38,38,.18);
}
[data-theme="light"] .header-search input:focus {
  background: var(--surface); border-color: var(--accent);
}
.search-kbd {
  position: absolute; right: 12px; font-size: 11px; font-family: var(--font-display);
  padding: 3px 7px; border-radius: 6px; border: 1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.35); background: rgba(0,0,0,.2);
}
[data-theme="light"] .search-kbd { border-color: var(--border); color: var(--text-faint); background: var(--surface); }

.header-actions { display: flex; align-items: center; gap: 8px; }
.icon-btn {
  display: inline-flex; align-items: center; justify-content: center;
  width: 42px; height: 42px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,.12); background: rgba(255,255,255,.05); color: #fff;
  cursor: pointer; transition: background var(--t), border-color var(--t), transform var(--t);
}
[data-theme="light"] .icon-btn {
  border-color: var(--border); background: var(--surface); color: var(--text-muted);
  box-shadow: var(--shadow);
}
.icon-btn:hover { background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.25); }
[data-theme="light"] .icon-btn:hover { color: var(--accent); border-color: color-mix(in srgb, var(--accent) 35%, var(--border)); }
.icon-btn svg { width: 18px; height: 18px; }
.theme-toggle .icon-moon { display: none; }
[data-theme="dark"] .theme-toggle .icon-sun { display: none; }
[data-theme="dark"] .theme-toggle .icon-moon { display: block; }

.btn-auth {
  display: inline-flex; align-items: center; gap: 8px; height: 42px; padding: 0 16px;
  border-radius: 999px; font-family: var(--font-display); font-size: 13px; font-weight: 700;
  color: #fff; background: linear-gradient(135deg, #ef4444, #b91c1c);
  box-shadow: 0 8px 20px rgba(220, 38, 38, .32);
  transition: transform var(--t), box-shadow var(--t), filter var(--t);
}
.btn-auth:hover { transform: translateY(-1px); box-shadow: 0 12px 24px rgba(220,38,38,.4); filter: brightness(1.05); }
.btn-auth svg { opacity: .95; }

.site-nav {
  background: transparent;
  border-top: 1px solid rgba(255,255,255,.06);
  position: relative;
  z-index: 40;
}
[data-theme="light"] .site-nav { border-top-color: var(--border); }
.nav-shell {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 52px;
  /* Yatay padding .container'dan gelsin ? 8px 0 yazmak kenar bo?lu?unu silerdi */
  padding-block: 8px;
}
.nav-track {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
  min-width: 0;
  overflow: hidden;
}
.nav-link {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 14px;
  border-radius: 999px;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 650;
  color: rgba(255,255,255,.72);
  transition: background var(--t), color var(--t), opacity var(--t);
  white-space: nowrap;
}
[data-theme="light"] .nav-link { color: var(--text-muted); }
.nav-link:hover { color: #fff; background: rgba(255,255,255,.08); }
[data-theme="light"] .nav-link:hover { color: var(--text); background: var(--bg-soft); }
.nav-link.is-active {
  color: #fff; background: var(--accent); box-shadow: 0 6px 16px rgba(220,38,38,.3);
}
.nav-link.nav-home svg { opacity: .85; }
.nav-link.is-overflow {
  position: absolute;
  visibility: hidden;
  pointer-events: none;
}

.nav-more {
  position: relative;
  flex-shrink: 0;
  margin-left: auto;
}
.nav-more-btn {
  appearance: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.88);
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: background .15s, border-color .15s, color .15s;
}
[data-theme="light"] .nav-more-btn {
  border-color: var(--border);
  background: var(--surface);
  color: var(--text);
}
.nav-more-btn:hover,
.nav-more.is-open .nav-more-btn {
  border-color: color-mix(in srgb, var(--accent) 45%, transparent);
  background: color-mix(in srgb, var(--accent) 14%, transparent);
  color: #fff;
}
[data-theme="light"] .nav-more-btn:hover,
[data-theme="light"] .nav-more.is-open .nav-more-btn {
  color: var(--accent);
  background: color-mix(in srgb, var(--accent) 8%, var(--surface));
}
.nav-more-btn svg { transition: transform .18s ease; }
.nav-more.is-open .nav-more-btn svg { transform: rotate(180deg); }

.nav-mega {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  width: min(520px, calc(100vw - 32px));
  padding: 14px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.1);
  background: #121826;
  box-shadow: 0 24px 48px rgba(0,0,0,.45);
  z-index: 60;
}
[data-theme="light"] .nav-mega {
  background: var(--surface);
  border-color: var(--border);
  box-shadow: var(--shadow-lg);
}
.nav-mega-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
  padding: 0 4px 10px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
[data-theme="light"] .nav-mega-head { border-bottom-color: var(--border); }
.nav-mega-head strong {
  font-size: 14px;
  font-weight: 800;
  letter-spacing: .02em;
  text-transform: uppercase;
  color: #fff;
}
[data-theme="light"] .nav-mega-head strong { color: var(--text); }
.nav-mega-hint {
  font-size: 12px;
  color: rgba(255,255,255,.45);
}
[data-theme="light"] .nav-mega-hint { color: var(--text-faint); }
.nav-mega-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 6px;
  max-height: min(60vh, 360px);
  overflow-y: auto;
  padding-right: 2px;
}
.nav-mega-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 12px;
  border-radius: 12px;
  color: rgba(255,255,255,.86);
  font-size: 14px;
  font-weight: 650;
  text-decoration: none;
  transition: background .15s, color .15s;
}
[data-theme="light"] .nav-mega-link { color: var(--text); }
.nav-mega-link:hover {
  background: rgba(255,255,255,.07);
  color: #fff;
}
[data-theme="light"] .nav-mega-link:hover {
  background: var(--bg-soft);
  color: var(--accent);
}
.nav-mega-link.is-active {
  background: color-mix(in srgb, var(--accent) 16%, transparent);
  color: #fff;
}
.nav-mega-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 0 0 3px rgba(255,255,255,.08);
}

.mobile-nav-section {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid var(--border);
}
.mobile-nav-label {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--text-faint);
  padding: 6px 4px 8px;
}
.mobile-nav-section a {
  display: flex !important;
  align-items: center;
  gap: 10px;
}
.mobile-nav-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

.mobile-nav-toggle { display: none; }
@media (max-width: 960px) {
  .mobile-nav-toggle { display: inline-flex; }
  /* Grid + gizlenen arama baz? WebKit?lerde ortada bo? ?hayalet? kolon b?rak?r */
  .header-main-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 10px 16px;
    min-height: 56px;
  }
  .header-search { display: none !important; }
  .utility-fx, .btn-auth span, .search-kbd { display: none; }
  .brand {
    flex: 1 1 auto;
    min-width: 0;
    gap: 8px;
  }
  .brand-mark {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
  }
  .brand-mark svg { width: 32px; height: 32px; }
  .brand-text {
    font-size: 17px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .header-actions {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    gap: 6px;
  }
  .icon-btn,
  .btn-auth {
    width: 38px;
    height: 38px;
    min-width: 38px;
    padding: 0;
    justify-content: center;
    border-radius: 999px;
    box-shadow: none !important;
    transform: none !important;
  }
  .btn-auth:hover,
  .btn-auth:focus-visible {
    transform: none;
    box-shadow: none !important;
    filter: brightness(1.06);
  }
  .site-nav { display: none; }
  .header-utility-inner {
    flex-wrap: nowrap;
    gap: 8px;
    overflow: hidden;
    padding-top: 7px;
    padding-bottom: 7px;
  }
  .utility-left {
    flex: 1 1 auto;
    min-width: 0;
    flex-wrap: nowrap;
    gap: 8px;
    overflow: hidden;
  }
  .header-date {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .weather-box {
    flex-shrink: 0;
    margin-left: auto;
  }
  .utility-sep { display: none; }
  /* ?st payla??m sadece masa?st? ? mobilde haber alt?nda zaten var */
  .article-share-top { display: none !important; }
}
@media (max-width: 560px) {
  .nav-mega { width: min(100vw - 24px, 420px); }
  .nav-mega-grid { grid-template-columns: 1fr; }
}

.mobile-nav { position: fixed; inset: 0; z-index: 300; visibility: hidden; pointer-events: none; }
.mobile-nav.open { visibility: visible; pointer-events: auto; }
.mobile-nav-backdrop { position: absolute; inset: 0; background: rgba(0,0,0,.55); opacity: 0; transition: opacity var(--t); backdrop-filter: blur(3px); }
.mobile-nav.open .mobile-nav-backdrop { opacity: 1; }
.mobile-nav-panel {
  position: absolute; top: 0; right: 0; bottom: 0; width: min(340px, 90vw);
  background: var(--surface); padding: 18px; transform: translateX(100%);
  transition: transform .38s var(--ease); display: flex; flex-direction: column; gap: 2px; overflow-y: auto;
  box-shadow: var(--shadow-lg);
}
.mobile-nav.open .mobile-nav-panel { transform: none; }
.mobile-nav-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; }
.mobile-nav-head .brand-text { color: var(--text); font-size: 20px; }
.mobile-nav-head .brand-text span { color: var(--accent); }
.mobile-nav-close { color: var(--text); border-color: var(--border); background: var(--surface-2); }
.mobile-auth {
  display: flex; align-items: center; justify-content: center; margin-bottom: 10px;
  padding: 13px !important; border-radius: var(--radius); border: none !important;
  background: var(--accent) !important; color: #fff !important; font-weight: 700 !important;
}
.mobile-nav-panel a {
  padding: 14px 8px; border-bottom: 1px solid var(--border);
  font-family: var(--font-display); font-weight: 700; font-size: 15px; color: var(--text);
}
.mobile-nav-panel a:hover { color: var(--accent); }

/* ========== BREAKING ========== */
.breaking-bar {
  background: linear-gradient(90deg, rgba(220,38,38,.16), rgba(255,255,255,.03) 28%, transparent);
  border-top: 1px solid rgba(255,255,255,.05);
}
[data-theme="light"] .breaking-bar {
  background: linear-gradient(90deg, rgba(220,38,38,.08), transparent 40%);
  border-top-color: var(--border);
}
.breaking-inner {
  display: flex; align-items: center; gap: 12px; padding: 8px 18px;
}
.breaking-label {
  flex-shrink: 0; display: inline-flex; align-items: center; gap: 8px;
  background: var(--accent); color: #fff; padding: 7px 12px;
  font-family: var(--font-display); font-size: 11px; font-weight: 800; letter-spacing: .04em;
  border-radius: 999px; text-transform: uppercase;
}
.breaking-label i {
  width: 7px; height: 7px; border-radius: 50%; background: #fff; display: block;
  animation: pulse 1.2s ease infinite;
}
@keyframes pulse { 50% { opacity: .35; transform: scale(.75); } }
.breaking-track-wrap { flex: 1; overflow: hidden; min-width: 0; }
.breaking-track { display: flex; gap: 36px; white-space: nowrap; width: max-content; animation: ticker 32s linear infinite; }
.breaking-bar:hover .breaking-track { animation-play-state: paused; }
.breaking-track a { color: rgba(255,255,255,.88); font-size: 13.5px; font-weight: 550; }
.breaking-label { color: #fff; text-decoration: none; }
.live-bar {
  background: linear-gradient(90deg, rgba(127,29,29,.95), rgba(153,27,27,.85));
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.live-bar-inner {
  display: flex; align-items: center; gap: 12px;
  min-height: 40px; padding: 6px 18px;
}
.live-bar-label {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 11px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase;
  flex-shrink: 0; color: #fecaca;
}
.live-bar-label i {
  width: 8px; height: 8px; border-radius: 50%; background: #f87171;
  animation: pulse 1.2s ease infinite;
}
.live-bar-items {
  display: flex; flex-wrap: wrap; gap: 10px 16px; flex: 1; min-width: 0;
}
.live-bar-items a {
  color: #fff; font-size: 13px; font-weight: 700; text-decoration: none;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 280px;
}
.live-bar-more { flex-shrink: 0; color: #fecaca; font-size: 12px; font-weight: 800; text-decoration: none; }
[data-theme="light"] .live-bar {
  background: linear-gradient(90deg, #b91c1c, #dc2626);
}
[data-theme="light"] .breaking-track a { color: var(--text); }
.breaking-track a:hover { color: var(--accent); }
@keyframes ticker { to { transform: translateX(-50%); } }

/* ========== PAGE ========== */
.page-wrap { padding: 22px 0 48px; }

/* ========== MAN?ET ========== */
.manset-wrap {
  display: grid; grid-template-columns: 1.55fr .95fr; gap: 16px;
  margin-bottom: 28px;
}
.manset-main {
  position: relative; min-height: 420px; border-radius: var(--radius-lg);
  overflow: hidden; background: var(--surface-2); box-shadow: var(--shadow);
}
.manset-main-link { position: absolute; inset: 0; display: block; color: #fff; }
.manset-main img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .8s var(--ease), opacity .35s ease;
}
.manset-main:hover img { transform: scale(1.04); }
.manset-overlay {
  position: absolute; inset: auto 0 0 0; padding: 28px 24px 22px;
  background: var(--overlay);
}
.manset-cat {
  display: inline-block; background: var(--accent); color: #fff;
  font-family: var(--font-display); font-size: 11px; font-weight: 700;
  letter-spacing: .06em; text-transform: uppercase; padding: 5px 10px;
  border-radius: 999px; margin-bottom: 12px;
}
.manset-title {
  font-size: clamp(22px, 3.2vw, 34px); font-weight: 800; color: #fff;
  text-wrap: balance; max-width: 18ch;
}
.manset-summary { margin: 10px 0 0; font-size: 14.5px; color: rgba(255,255,255,.82); max-width: 52ch; line-height: 1.5; }

.manset-list {
  display: flex; flex-direction: column; gap: 6px;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 10px; box-shadow: var(--shadow);
  max-height: 420px; overflow: auto;
}
.manset-list-item {
  display: grid; grid-template-columns: 28px 72px 1fr; gap: 12px; align-items: center;
  padding: 8px; border-radius: var(--radius); cursor: pointer;
  transition: background var(--t), transform var(--t);
}
.manset-list-item:hover, .manset-list-item.is-active { background: var(--bg-soft); }
.manset-list-item.is-active { box-shadow: inset 3px 0 0 var(--accent); }
.manset-num {
  font-family: var(--font-display); font-size: 18px; font-weight: 800;
  color: var(--text-faint); text-align: center;
}
.manset-list-item.is-active .manset-num { color: var(--accent); }
.manset-thumb { border-radius: var(--radius-sm); overflow: hidden; height: 54px; }
.manset-thumb img { width: 100%; height: 100%; object-fit: cover; }
.manset-list-title {
  font-size: 13.5px; font-weight: 600; line-height: 1.35; color: var(--text);
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.manset-list-item.is-active .manset-list-title { color: var(--accent); }

/* ========== MAN?ET: S?NEMA ========== */
.manset { margin-bottom: 28px; }
.manset-cinema { display: flex; flex-direction: column; gap: 12px; }
.manset-cinema-stage {
  position: relative; min-height: 460px; border-radius: var(--radius-lg);
  overflow: hidden; background: var(--surface-2); box-shadow: var(--shadow);
}
.manset-cinema-stage .manset-main-link { position: absolute; inset: 0; display: block; color: #fff; }
.manset-cinema-stage img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .85s var(--ease), opacity .35s ease;
}
.manset-cinema-stage:hover img { transform: scale(1.03); }
.manset-overlay-wide {
  position: absolute; inset: auto 0 0 0; padding: 36px 32px 28px;
  background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,.72) 55%, rgba(0,0,0,.88) 100%);
}
.manset-overlay-wide .manset-title { max-width: 28ch; font-size: clamp(26px, 4vw, 42px); }
.manset-cinema-strip {
  display: grid; grid-auto-flow: column; grid-auto-columns: minmax(160px, 1fr);
  gap: 10px; overflow-x: auto; padding-bottom: 4px;
  scrollbar-width: thin;
}
.manset-cinema-chip {
  display: grid; grid-template-columns: 56px 1fr; gap: 10px; align-items: center;
  text-align: left; padding: 8px; border-radius: var(--radius);
  border: 1px solid var(--border); background: var(--surface);
  cursor: pointer; transition: border-color var(--t), box-shadow var(--t), background var(--t);
  color: inherit; font: inherit;
}
.manset-cinema-chip:hover { background: var(--bg-soft); }
.manset-cinema-chip.is-active {
  border-color: var(--accent); box-shadow: 0 0 0 1px var(--accent);
  background: color-mix(in srgb, var(--accent) 8%, var(--surface));
}
.manset-cinema-chip-img {
  width: 56px; height: 42px; border-radius: var(--radius-sm); overflow: hidden; flex-shrink: 0;
}
.manset-cinema-chip-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.manset-cinema-chip-title {
  font-size: 12.5px; font-weight: 600; line-height: 1.3;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}

/* ========== MAN?ET: MAGAZ?N ========== */
.manset-magazine {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  grid-template-rows: 220px 180px;
  gap: 12px;
}
.manset-mag-card {
  position: relative; display: block; overflow: hidden; border-radius: var(--radius-lg);
  background: var(--surface-2); color: #fff; box-shadow: var(--shadow);
  min-height: 0;
}
.manset-mag-0 { grid-row: 1 / 3; grid-column: 1; }
.manset-mag-1 { grid-column: 2; grid-row: 1; }
.manset-mag-2 { grid-column: 3; grid-row: 1; }
.manset-mag-3 { grid-column: 2; grid-row: 2; }
.manset-mag-4 { grid-column: 3; grid-row: 2; }
.manset-mag-card img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform .7s var(--ease);
}
.manset-mag-card:hover img { transform: scale(1.05); }
.manset-mag-overlay {
  position: absolute; inset: auto 0 0 0; padding: 16px 14px 14px;
  background: linear-gradient(180deg, transparent, rgba(0,0,0,.78));
  display: flex; flex-direction: column; align-items: flex-start; gap: 6px;
}
.manset-mag-0 .manset-mag-overlay { padding: 28px 22px 20px; }
.manset-mag-title {
  font-size: 15px; font-weight: 700; line-height: 1.3; text-wrap: balance;
  display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden;
}
.manset-mag-0 .manset-mag-title { font-size: clamp(22px, 2.6vw, 32px); -webkit-line-clamp: 4; }
.manset-mag-summary {
  font-size: 13.5px; color: rgba(255,255,255,.82); line-height: 1.45;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
  max-width: 48ch;
}

/* ========== MAN?ET: KARTLAR ========== */
.manset-cards {
  display: grid; grid-template-columns: 1.35fr 1fr 1fr; gap: 14px;
}
.manset-card {
  display: flex; flex-direction: column; border-radius: var(--radius-lg); overflow: hidden;
  background: var(--surface); border: 1px solid var(--border); box-shadow: var(--shadow);
  color: inherit; transition: transform var(--t), box-shadow var(--t);
}
.manset-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md, 0 12px 28px rgba(0,0,0,.1)); }
.manset-card-media {
  display: block; aspect-ratio: 16 / 10; overflow: hidden; background: var(--surface-2);
}
.manset-card.is-lead .manset-card-media { aspect-ratio: 16 / 11; }
.manset-card-media img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform .7s var(--ease);
}
.manset-card:hover .manset-card-media img { transform: scale(1.04); }
.manset-card-body {
  display: flex; flex-direction: column; gap: 8px; padding: 16px 16px 18px; flex: 1;
}
.manset-card-title {
  font-size: 17px; font-weight: 700; line-height: 1.3; color: var(--text);
  display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden;
}
.manset-card.is-lead .manset-card-title { font-size: clamp(20px, 2.2vw, 26px); }
.manset-card-summary {
  font-size: 13.5px; color: var(--text-muted); line-height: 1.45;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.manset-card-meta { margin-top: auto; font-size: 12px; color: var(--text-faint); }
.manset-card .manset-cat { margin-bottom: 2px; }
.manset-card-media { position: relative; }

/* ========== MAN?ET: NUMARALI (PAGER) ========== */
.manset-pager {
  display: grid;
  grid-template-columns: 1.7fr .95fr;
  gap: 16px;
  align-items: stretch;
}
.manset-pager-main {
  display: flex; flex-direction: column; gap: 0;
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow); background: var(--surface-2);
  border: 1px solid var(--border);
  min-height: 420px;
}
.manset-pager-stage {
  position: relative; flex: 1; min-height: 360px; display: block; color: #fff;
  overflow: hidden;
}
.manset-pager-media {
  position: absolute; inset: 0; z-index: 0;
  overflow: hidden;
}
.manset-pager-media img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transform: scale(1.001); /* avoid subpixel gap */
  transform-origin: center center;
  transition: transform .85s var(--ease);
  will-change: transform;
}
.manset-pager-stage:hover .manset-pager-media img { transform: scale(1.04); }
.manset-pager-overlay {
  position: absolute; inset: auto 0 0 0; z-index: 2;
  padding: 48px 28px 22px;
  background: linear-gradient(180deg, transparent 0%, rgba(7, 11, 20, .55) 45%, rgba(7, 11, 20, .92) 100%);
  display: flex; flex-direction: column; align-items: flex-start; gap: 8px;
  pointer-events: none;
  transform: none !important;
}
.manset-pager-title {
  font-size: clamp(22px, 3vw, 34px); font-weight: 800; line-height: 1.2;
  text-wrap: balance; max-width: 22ch; color: #fff;
  text-shadow: 0 2px 16px rgba(0,0,0,.35);
}
.manset-pager-nums {
  display: flex; flex-wrap: nowrap; gap: 0;
  background: var(--surface); border-top: 1px solid var(--border);
  overflow-x: auto; scrollbar-width: thin;
}
.manset-pager-num {
  flex: 1 0 0; min-width: 0; height: 40px;
  display: grid; place-items: center;
  border: 0; border-right: 1px solid var(--border);
  background: var(--surface); color: var(--text);
  font-family: var(--font-display); font-size: 13px; font-weight: 700;
  cursor: pointer; text-decoration: none;
  transition: background var(--t), color var(--t);
}
.manset-pager-num:last-child { border-right: 0; }
.manset-pager-num:hover {
  background: var(--bg-soft);
  color: var(--accent);
}
.manset-pager-num.is-active {
  background: var(--pager-active-bg);
  color: var(--pager-active-fg);
}
.manset-pager-num.is-active:hover {
  background: var(--pager-active-bg);
  color: var(--pager-active-fg);
}
.manset-pager-all { font-weight: 800; }
.manset-pager-all:hover { color: var(--accent); }
.manset-pager-side {
  display: flex; flex-direction: column; gap: 12px; min-height: 0;
}
.manset-pager-side-list {
  display: flex; flex-direction: column; gap: 12px; flex: 1; height: 100%;
}
.manset-pager-card {
  position: relative; flex: 1; min-height: 170px;
  border-radius: var(--radius-lg); overflow: hidden;
  display: block; color: #fff; box-shadow: var(--shadow);
  background: var(--surface-2);
  border: 1px solid var(--border);
}
.manset-pager-card img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  position: absolute; inset: 0;
  transform: scale(1.001);
  transform-origin: center center;
  transition: transform .7s var(--ease);
}
.manset-pager-card:hover img { transform: scale(1.05); }
.manset-pager-card-overlay {
  position: absolute; inset: auto 0 0 0; z-index: 2;
  padding: 36px 14px 14px;
  background: linear-gradient(180deg, transparent 0%, rgba(7, 11, 20, .75) 55%, rgba(7, 11, 20, .92) 100%);
  text-align: center;
  pointer-events: none;
  transform: none !important;
}
.manset-pager-card-title {
  font-size: 15px; font-weight: 700; line-height: 1.35; color: #fff;
  display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden;
}

/* ========== HOME GRID ========== */
.home-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 24px;
  align-items: start;
}
.home-main, .sidebar { min-width: 0; }
.section-block { margin-bottom: 32px; }
.section-title {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  margin-bottom: 16px; padding-bottom: 12px; border-bottom: 2px solid var(--border);
  position: relative;
  flex-wrap: wrap;
}
.section-title::after {
  content: ""; position: absolute; left: 0; bottom: -2px; width: 72px; height: 2px;
  background: var(--accent); border-radius: 2px;
}
.section-title h2 {
  font-size: 18px; font-weight: 800; text-transform: uppercase; letter-spacing: .02em;
  min-width: 0;
}
.section-title .more, .section-title a.more {
  font-family: var(--font-body); font-size: 13px; font-weight: 600;
  color: var(--text-muted); text-transform: none; letter-spacing: 0;
}
.section-title .more:hover { color: var(--accent); }

.news-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
@media (min-width: 900px) {
  .news-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

.news-item {
  display: flex; flex-direction: column; background: var(--surface);
  border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow); transition: transform var(--t), box-shadow var(--t), border-color var(--t);
  height: 100%;
}
.news-item:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); border-color: transparent; }
.news-thumb { aspect-ratio: 16/10; overflow: hidden; background: var(--bg-soft); }
.news-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s var(--ease); }
.news-item:hover .news-thumb img { transform: scale(1.05); }
.news-body { padding: 14px; display: flex; flex-direction: column; gap: 7px; flex: 1; }
.news-cat {
  font-family: var(--font-display); font-size: 11px; font-weight: 700;
  letter-spacing: .05em; text-transform: uppercase; color: var(--accent);
}
.news-item h3 { font-size: 15.5px; font-weight: 700; line-height: 1.35; }
.news-item h3 a:hover { color: var(--accent); }
.news-meta { margin-top: auto; font-size: 12px; color: var(--text-faint); display: flex; gap: 8px; }

.cat-block {
  --cat-color: var(--accent);
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 18px; box-shadow: var(--shadow); border-top: 3px solid var(--cat-color);
}
.cat-block .section-title { border-bottom-color: var(--border); }
.cat-block .section-title::after { background: var(--cat-color); }
.cat-block .section-title h2 { color: var(--text); }

.news-row-list { display: flex; flex-direction: column; }
.news-item-lead {
  display: grid; grid-template-columns: 1.15fr 1fr; gap: 16px; align-items: stretch;
  padding-bottom: 16px; margin-bottom: 8px; border-bottom: 1px solid var(--border);
  background: transparent; border-radius: 0; box-shadow: none; height: auto;
}
.news-item-lead:hover { transform: none; box-shadow: none; }
.news-item-lead .news-thumb { border-radius: var(--radius); overflow: hidden; aspect-ratio: 16/10; }
.news-item-lead .news-body { padding: 4px 0; }
.news-item-lead h3 { font-size: clamp(18px, 2.2vw, 24px); font-weight: 800; }
.news-item-lead p { font-size: 14.5px; color: var(--text-muted); margin: 0; }

.news-row {
  display: flex; gap: 12px; align-items: center;
  padding: 11px 0; border-bottom: 1px solid var(--border);
  min-width: 0;
}
.news-row:last-child { border-bottom: none; }
.news-thumb.sm {
  width: 88px; height: 66px; flex-shrink: 0; border-radius: var(--radius-sm);
  overflow: hidden; aspect-ratio: auto; display: block;
}
.news-thumb.sm img { width: 100%; height: 100%; object-fit: cover; }
.news-row .news-body { padding: 0; min-width: 0; flex: 1; }
.news-row h3 { font-size: 14px; font-weight: 650; margin: 0; }

/* ========== KATEGOR? ST?LLER? ========== */
.cat-spot-lead {
  position: relative; display: block; border-radius: var(--radius);
  overflow: hidden; min-height: 240px; margin-bottom: 12px; color: #fff;
  background: var(--surface-2);
}
.cat-spot-lead img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  position: absolute; inset: 0; min-height: 240px;
  transition: transform .7s var(--ease);
}
.cat-spot-lead:hover img { transform: scale(1.04); }
.cat-spot-overlay {
  position: absolute; inset: auto 0 0 0; z-index: 2;
  padding: 40px 16px 16px;
  background: linear-gradient(180deg, transparent, rgba(7,11,20,.88));
  display: flex; flex-direction: column; gap: 6px;
}
.cat-spot-title {
  font-size: clamp(18px, 2.2vw, 24px); font-weight: 800; line-height: 1.25;
  display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden;
}
.cat-spot-meta { font-size: 12px; color: rgba(255,255,255,.75); }
.cat-spot-list { display: flex; flex-direction: column; }
.cat-spot-row {
  display: flex; justify-content: space-between; gap: 12px; align-items: baseline;
  padding: 12px 0; border-bottom: 1px solid var(--border); color: inherit;
}
.cat-spot-row:last-child { border-bottom: none; }
.cat-spot-row:hover .cat-spot-row-title { color: var(--cat-color, var(--accent)); }
.cat-spot-row-title {
  font-size: 14.5px; font-weight: 650; line-height: 1.35;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.cat-spot-row-date { flex-shrink: 0; font-size: 12px; color: var(--text-faint); }

.cat-mosaic-grid {
  display: grid; grid-template-columns: 1.4fr 1fr; grid-template-rows: 160px 160px; gap: 10px;
}
.cat-mosaic-card {
  position: relative; display: block; overflow: hidden; border-radius: var(--radius);
  background: var(--surface-2); color: #fff; min-height: 0;
}
.cat-mosaic-card.is-lead { grid-row: 1 / 3; }
.cat-mosaic-card img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform .7s var(--ease);
}
.cat-mosaic-card:hover img { transform: scale(1.05); }
.cat-mosaic-overlay {
  position: absolute; inset: auto 0 0 0; z-index: 2;
  padding: 28px 12px 12px;
  background: linear-gradient(180deg, transparent, rgba(7,11,20,.85));
  display: flex; flex-direction: column; gap: 4px;
}
.cat-mosaic-title {
  font-size: 14px; font-weight: 700; line-height: 1.3;
  display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden;
}
.cat-mosaic-card.is-lead .cat-mosaic-title { font-size: clamp(18px, 2vw, 22px); }
.cat-mosaic-meta { font-size: 11px; color: rgba(255,255,255,.72); }

.cat-cards-grid {
  display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px;
}
.cat-card {
  display: flex; flex-direction: column; border-radius: var(--radius);
  overflow: hidden; background: var(--bg-soft); border: 1px solid var(--border);
  color: inherit; transition: transform var(--t), box-shadow var(--t);
}
.cat-card:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.cat-card-media {
  position: relative; display: block; aspect-ratio: 16 / 10; overflow: hidden; background: var(--surface-2);
}
.cat-card-media img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .7s var(--ease); }
.cat-card:hover .cat-card-media img { transform: scale(1.04); }
.cat-card-body { display: flex; flex-direction: column; gap: 6px; padding: 12px; flex: 1; }
.cat-card-title {
  font-size: 14.5px; font-weight: 700; line-height: 1.35; color: var(--text);
  display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden;
}
.cat-card-meta { margin-top: auto; font-size: 12px; color: var(--text-faint); }

/* Vitrin: 2 b?y?k + 3 k???k */
.cat-style-showcase {
  background: transparent; border: none; box-shadow: none; padding: 0;
  border-top: none; border-radius: 0;
}
.cat-showcase { display: flex; flex-direction: column; gap: 16px; }
.cat-showcase-large {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
}
.cat-showcase-small {
  display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px;
}
.cat-show-card {
  display: flex; flex-direction: column;
  background: transparent; border: none;
  border-radius: 0; overflow: visible; color: inherit;
  box-shadow: none; transition: transform var(--t);
}
.cat-show-card:hover { transform: translateY(-2px); box-shadow: none; }
.cat-show-media {
  position: relative; display: block; overflow: hidden;
  background: var(--surface-2); border-radius: var(--radius-lg);
}
.cat-show-card.is-large .cat-show-media { aspect-ratio: 16 / 10; }
.cat-show-card.is-small .cat-show-media { aspect-ratio: 16 / 10; }
.cat-show-media img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform .7s var(--ease);
}
.cat-show-card:hover .cat-show-media img { transform: scale(1.04); }
.cat-show-media::after {
  content: ""; position: absolute; inset: auto 0 0 0; height: 40%;
  background: linear-gradient(180deg, transparent, rgba(7,11,20,.35));
  pointer-events: none; border-radius: 0 0 var(--radius-lg) var(--radius-lg);
}
.cat-show-body {
  display: flex; flex-direction: column; gap: 4px;
  padding: 12px 2px 0; flex: 1; background: transparent;
}
.cat-show-title {
  font-size: 15px; font-weight: 700; line-height: 1.35; color: var(--text);
  display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden;
}
.cat-show-card.is-large .cat-show-title {
  font-size: clamp(16px, 1.7vw, 19px); font-weight: 800; -webkit-line-clamp: 3;
}
.cat-show-card.is-small .cat-show-title {
  font-size: 14px; font-weight: 700; -webkit-line-clamp: 3;
}
.cat-show-meta { margin-top: auto; font-size: 12px; color: var(--text-faint); }

/* Kalan kategoriler ? sekme sistemi */
.cat-tabs-section {
  margin-top: 8px;
  padding: 22px 0 8px;
  border-top: 1px solid var(--border);
}
.cat-tabs-head {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 18px;
}
.cat-tabs-heading .cat-tabs-kicker {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 4px;
}
.cat-tabs-heading h2 {
  margin: 0;
  font-size: clamp(22px, 2.4vw, 28px);
  font-weight: 800;
  letter-spacing: -.02em;
}
.cat-tabs-nav {
  display: flex;
  gap: 6px;
  overflow-x: auto;
  padding-bottom: 4px;
  scrollbar-width: thin;
  -webkit-overflow-scrolling: touch;
}
.cat-tabs-btn {
  appearance: none;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text-muted);
  font: inherit;
  font-size: 13.5px;
  font-weight: 700;
  padding: 9px 14px;
  border-radius: 999px;
  cursor: pointer;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: color .2s, border-color .2s, background .2s, box-shadow .2s;
}
.cat-tabs-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--tab-color, var(--accent));
  opacity: .55;
  flex-shrink: 0;
}
.cat-tabs-btn:hover {
  color: var(--text);
  border-color: color-mix(in srgb, var(--tab-color, var(--accent)) 45%, var(--border));
}
.cat-tabs-btn.is-active {
  color: #fff;
  background: var(--tab-color, var(--accent));
  border-color: transparent;
  box-shadow: 0 8px 20px color-mix(in srgb, var(--tab-color, var(--accent)) 28%, transparent);
}
.cat-tabs-btn.is-active .cat-tabs-dot {
  background: #fff;
  opacity: 1;
}
.cat-tabs-panel[hidden] { display: none !important; }
.cat-tabs-panel.is-active { display: block; animation: catTabsIn .28s ease; }
@keyframes catTabsIn {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: none; }
}
.cat-tabs-digest {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
  gap: 18px;
  align-items: stretch;
}
.cat-tabs-lead {
  position: relative;
  display: block;
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 320px;
  color: #fff;
  background: var(--surface-2);
}
.cat-tabs-lead-media {
  position: absolute; inset: 0;
}
.cat-tabs-lead-media img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform .7s var(--ease);
}
.cat-tabs-lead:hover .cat-tabs-lead-media img { transform: scale(1.04); }
.cat-tabs-lead-media::after {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(7,11,20,.08) 0%, rgba(7,11,20,.72) 72%, rgba(7,11,20,.88) 100%);
}
.cat-tabs-lead-body {
  position: absolute; left: 0; right: 0; bottom: 0;
  z-index: 1;
  display: flex; flex-direction: column; gap: 8px;
  padding: 22px 22px 24px;
}
.cat-tabs-lead-cat {
  align-self: flex-start;
  font-size: 11px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase;
  padding: 4px 9px; border-radius: 999px;
  background: var(--cat-color, var(--accent));
  color: #fff;
}
.cat-tabs-lead-title {
  font-size: clamp(20px, 2.2vw, 26px);
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: -.02em;
  display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden;
}
.cat-tabs-lead-meta {
  font-size: 12.5px; opacity: .82;
}
.cat-tabs-list {
  display: flex; flex-direction: column; gap: 0;
  min-width: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--surface);
  overflow: hidden;
}
.cat-tabs-row {
  display: grid;
  grid-template-columns: 36px 72px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  padding: 12px 14px;
  color: inherit;
  border-bottom: 1px solid var(--border);
  transition: background .18s;
}
.cat-tabs-row:hover { background: var(--bg-soft, var(--surface-2)); }
.cat-tabs-num {
  font-family: var(--font-display, inherit);
  font-size: 13px; font-weight: 800;
  color: var(--cat-color, var(--accent));
  letter-spacing: .04em;
  text-align: center;
}
.cat-tabs-row-media {
  display: block; aspect-ratio: 1;
  border-radius: 10px; overflow: hidden; background: var(--surface-2);
}
.cat-tabs-row-media img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.cat-tabs-row-body { min-width: 0; display: flex; flex-direction: column; gap: 4px; }
.cat-tabs-row-title {
  font-size: 14.5px; font-weight: 700; line-height: 1.35;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.cat-tabs-row-meta { font-size: 12px; color: var(--text-faint); }
.cat-tabs-more {
  display: block;
  padding: 14px 16px;
  font-size: 13.5px; font-weight: 700;
  color: var(--cat-color, var(--accent));
  text-align: center;
  background: color-mix(in srgb, var(--cat-color, var(--accent)) 7%, transparent);
}
.cat-tabs-more:hover { text-decoration: underline; }

/* Yan yana ?ift kategori: 1 b?y?k + 2 k???k */
.cat-duo-wrap { display: flex; flex-direction: column; gap: 8px; }
.cat-duo-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: start;
  margin-bottom: 20px;
}
.cat-duo-row.is-solo {
  grid-template-columns: 1fr;
}
.cat-duo-col {
  background: transparent; border: none; box-shadow: none; padding: 0;
  border-radius: 0; border-top: none; min-width: 0;
}
.cat-duo-col.is-empty { visibility: hidden; pointer-events: none; }
.cat-style-duo .section-title {
  margin-bottom: 12px; padding-bottom: 10px;
}
.cat-style-duo .section-title::after {
  width: 48px; height: 2px; background: var(--cat-color, var(--accent));
}
.cat-duo-lead {
  display: flex; flex-direction: column; gap: 10px;
  margin-bottom: 12px; color: inherit;
}
.cat-duo-media {
  position: relative; display: block; overflow: hidden;
  border-radius: var(--radius); background: var(--surface-2);
  aspect-ratio: 16 / 10;
}
.cat-duo-media img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform .7s var(--ease);
}
.cat-duo-lead:hover .cat-duo-media img,
.cat-duo-card:hover .cat-duo-media img { transform: scale(1.04); }
.cat-duo-flag {
  position: absolute; top: 10px; right: 10px; z-index: 3;
  background: var(--accent); color: #fff;
  font-size: 10px; font-weight: 800; letter-spacing: .04em; text-transform: uppercase;
  padding: 4px 8px; border-radius: 6px;
}
.cat-duo-lead-title {
  font-size: clamp(15px, 1.6vw, 18px); font-weight: 800; line-height: 1.3;
  display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden;
}
.cat-duo-pair {
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px;
}
.cat-duo-card {
  display: flex; flex-direction: column; gap: 8px; color: inherit; min-width: 0;
}
.cat-duo-card .cat-duo-media { aspect-ratio: 16 / 11; }
.cat-duo-card-title {
  font-size: 13.5px; font-weight: 700; line-height: 1.35;
  display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden;
}

.cat-style-minimal {
  background: transparent;
  border: none;
  box-shadow: none;
  border-radius: 0;
  padding: 0;
  margin-bottom: 44px;
}
.cat-style-minimal + .cat-style-minimal {
  margin-top: 8px;
  padding-top: 8px;
}
.cat-style-minimal .section-title {
  margin-bottom: 6px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
  align-items: baseline;
}
.cat-style-minimal .section-title::after {
  display: none; /* ?ift ?izgiyi kald?r ? vurgu h2 alt?nda */
}
.cat-style-minimal .section-title h2 {
  position: relative;
  display: inline-block;
  padding-bottom: 10px;
  margin: 0;
  line-height: 1.1;
}
.cat-style-minimal .section-title h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 3px;
  background: var(--cat-color, var(--accent));
  border-radius: 1px;
}
.cat-style-minimal .section-title .more {
  align-self: center;
  margin-bottom: 2px;
}
.cat-minimal-list { display: flex; flex-direction: column; gap: 0; }
.cat-minimal-row {
  display: grid; grid-template-columns: 36px minmax(0, 1fr); gap: 12px; align-items: center;
  padding: 14px 0; border-bottom: 1px solid var(--border); color: inherit;
}
.cat-minimal-row:last-child { border-bottom: none; }
.cat-minimal-row.is-lead { grid-template-columns: 36px minmax(0, 1fr) 120px; padding-top: 16px; }
.cat-minimal-row:hover .cat-minimal-title { color: var(--cat-color, var(--accent)); }
.cat-minimal-num {
  font-family: var(--font-display); font-size: 20px; font-weight: 800; color: var(--text-faint);
  text-align: center; line-height: 1;
}
.cat-minimal-row.is-lead .cat-minimal-num { color: var(--cat-color, var(--accent)); }
.cat-minimal-text { display: flex; flex-direction: column; gap: 4px; min-width: 0; }
.cat-minimal-title {
  font-size: 15px; font-weight: 700; line-height: 1.35;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.cat-minimal-row.is-lead .cat-minimal-title { font-size: 18px; font-weight: 800; }
.cat-minimal-meta { font-size: 12px; color: var(--text-faint); }
.cat-minimal-thumb {
  display: block; width: 120px; height: 80px; border-radius: var(--radius-sm); overflow: hidden;
}
.cat-minimal-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ========== SIDEBAR ========== */
.sidebar { display: flex; flex-direction: column; gap: 18px; position: sticky; top: 120px; }
.widget {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 16px; box-shadow: var(--shadow);
}
.widget-title {
  font-size: 14px; font-weight: 800; text-transform: uppercase; letter-spacing: .04em;
  padding-bottom: 10px; margin-bottom: 8px; border-bottom: 2px solid var(--accent);
}
.rank-list { display: flex; flex-direction: column; }
.home-popular-list {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 8px 14px; box-shadow: var(--shadow);
}
.rank-item {
  display: grid; grid-template-columns: 28px 1fr; gap: 10px; align-items: start;
  padding: 11px 0; border-bottom: 1px solid var(--border);
}
.rank-item:last-child { border-bottom: none; }
.rank-num {
  font-family: var(--font-display); font-size: 20px; font-weight: 800; color: var(--accent);
  line-height: 1;
}
.rank-item a { font-size: 13.5px; font-weight: 600; line-height: 1.35; }
.rank-item a:hover { color: var(--accent); }
.service-links li a {
  display: block; padding: 10px 0; border-bottom: 1px solid var(--border);
  font-size: 14px; font-weight: 500; color: var(--text-muted);
}
.service-links li:last-child a { border-bottom: none; }
.service-links li a:hover { color: var(--accent); }
.widget-news .news-row { padding: 10px 0; }
.widget-news .news-row h3 { font-size: 13px; }

/* ========== FOOTER ========== */
.site-footer { background: var(--footer); color: rgba(255,255,255,.72); margin-top: 24px; }
.footer-newsletter { background: linear-gradient(135deg, #991b1b, #dc2626 55%, #ea580c); color: #fff; }
.container.footer-newsletter-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  padding: 28px 18px; flex-wrap: wrap;
}
.footer-newsletter h3 { font-size: 22px; font-weight: 800; color: #fff; margin-bottom: 4px; }
.footer-newsletter p { margin: 0; color: rgba(255,255,255,.85); }
.newsletter-form { display: flex; gap: 8px; flex-wrap: wrap; align-items: center; }
.newsletter-form input {
  min-width: min(280px, 70vw); height: 44px; padding: 0 16px; border: none;
  border-radius: 999px; background: rgba(255,255,255,.95); color: #0f172a;
  box-sizing: border-box;
}
.newsletter-form .btn { height: 44px; flex-shrink: 0; }
.newsletter-msg { width: 100%; font-size: 13px; }
.newsletter-msg.success { color: #bbf7d0; }
.newsletter-msg.error { color: #fecaca; }

.footer-main { padding: 36px 0 20px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr repeat(3, minmax(0, 1fr)); gap: 28px; }
.footer-brand strong {
  display: block; font-family: var(--font-display); font-size: 22px; font-weight: 800;
  color: #fff; margin-bottom: 10px;
}
.footer-brand p { color: rgba(255,255,255,.55); font-size: 14px; max-width: 36ch; margin: 0 0 14px; line-height: 1.5; }
.footer-brand .social-icons--footer { margin-top: 2px; }
.footer-col h4 {
  color: #fff; font-size: 13px; font-weight: 700; letter-spacing: .06em;
  text-transform: uppercase; margin-bottom: 14px;
}
.footer-col a {
  display: block; padding: 5px 0; font-size: 14px; color: rgba(255,255,255,.55);
  transition: color var(--t);
}
.footer-col a:hover { color: #fff; }
.footer-bottom {
  display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap;
  padding: 16px 18px 24px; border-top: 1px solid rgba(255,255,255,.08);
  font-size: 12.5px; color: rgba(255,255,255,.4);
}
.footer-copy {
  display: flex; align-items: center; flex-wrap: wrap; gap: 10px 14px;
}
.footer-credit {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 14px 7px 8px;
  border-radius: 12px;
  color: #fff !important;
  text-decoration: none !important;
  background:
    linear-gradient(135deg, rgba(220, 38, 38, .92), rgba(153, 27, 27, .95) 55%, rgba(127, 29, 29, .9));
  border: 1px solid rgba(255, 255, 255, .14);
  box-shadow:
    0 8px 20px rgba(220, 38, 38, .28),
    inset 0 1px 0 rgba(255, 255, 255, .18);
  transition: transform .18s ease, box-shadow .18s ease, filter .18s ease;
}
.footer-credit-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 9px;
  background: rgba(0, 0, 0, .22);
  border: 1px solid rgba(255, 255, 255, .12);
  color: #fecaca;
  flex-shrink: 0;
}
.footer-credit-text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
  gap: 2px;
}
.footer-credit-text em {
  font-style: normal;
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(254, 202, 202, .88);
}
.footer-credit-text strong {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: -.02em;
  color: #fff;
}
.footer-credit:hover {
  transform: translateY(-2px);
  filter: brightness(1.06);
  box-shadow:
    0 12px 28px rgba(220, 38, 38, .4),
    inset 0 1px 0 rgba(255, 255, 255, .22);
}
.footer-credit:active { transform: translateY(0); }
.footer-bottom-links {
  display: flex; flex-wrap: wrap; gap: 8px 16px;
}
.footer-bottom-links a {
  color: rgba(255,255,255,.45);
  transition: color var(--t);
}
.footer-bottom-links a:hover { color: #fff; }

/* ========== INFO PAGES (ileti?im / k?nye / gizlilik) ========== */
.info-page { max-width: 860px; }
.info-page-head { margin-bottom: 20px; }
.info-page-lead {
  margin: 8px 0 0; color: var(--text-muted); font-size: 15.5px; max-width: 52ch;
}
.info-page-body.surface-card,
.surface-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px 22px;
  box-shadow: var(--shadow);
}
.info-page-content { color: var(--text-muted); font-size: 15px; line-height: 1.65; }
.info-page-content .info-section + .info-section { margin-top: 28px; padding-top: 24px; border-top: 1px solid var(--border); }
.info-page-content h2 {
  font-family: var(--font-display); font-size: 17px; font-weight: 800;
  color: var(--text); margin: 0 0 10px;
}
.info-page-content p { margin: 0 0 12px; }
.info-page-content ul { margin: 0 0 12px; padding-left: 1.15em; list-style: disc; }
.info-page-content li { margin: 6px 0; }
.info-page-content a { color: var(--accent); font-weight: 600; }
.info-page-content a:hover { text-decoration: underline; }
.info-page-content strong { color: var(--text); }
.info-section h2 {
  font-size: 17px; font-weight: 800; margin-bottom: 10px;
}
.info-section p, .info-section li {
  color: var(--text-muted); font-size: 15px; line-height: 1.65;
}
.info-section ul { margin: 0 0 8px; padding-left: 1.15em; list-style: disc; }
.info-section li { margin: 6px 0; }
.info-section a { color: var(--accent); font-weight: 600; }
.info-section a:hover { text-decoration: underline; }
.info-dl { margin: 0; display: flex; flex-direction: column; gap: 12px; }
.info-dl > div {
  display: grid; grid-template-columns: 120px minmax(0, 1fr); gap: 10px;
  padding-bottom: 12px; border-bottom: 1px solid var(--border);
}
.info-dl > div:last-child { border-bottom: none; padding-bottom: 0; }
.info-dl dt { font-size: 12px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; color: var(--text-faint); }
.info-dl dd { margin: 0; font-size: 15px; font-weight: 600; color: var(--text); }
.info-dl a { color: var(--accent); }
.contact-grid {
  display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px;
  margin-bottom: 28px;
}
.contact-card {
  padding: 18px 16px; border-radius: var(--radius);
  background: var(--bg-soft); border: 1px solid var(--border);
}
.contact-card h2 { font-size: 16px; margin-bottom: 8px; }
.contact-card p { margin: 0 0 12px; color: var(--text-muted); font-size: 14.5px; }
.contact-email {
  display: inline-flex; font-weight: 700; color: var(--accent); font-size: 15px;
  word-break: break-all;
}
.contact-links { list-style: none; margin: 0; padding: 0; }
.contact-links a {
  display: block; padding: 7px 0; border-bottom: 1px solid var(--border);
  font-weight: 600; color: var(--text-muted);
}
.contact-links li:last-child a { border-bottom: none; }
.contact-links a:hover { color: var(--accent); }
.contact-form h2 { font-size: 16px; margin-bottom: 6px; }
.contact-form .form-row { margin-bottom: 14px; }
.contact-form label {
  display: block; font-size: 12.5px; font-weight: 700; margin-bottom: 6px; color: var(--text-muted);
}
.contact-form input,
.contact-form textarea {
  width: 100%; box-sizing: border-box;
  border: 1px solid var(--border); border-radius: 10px;
  background: var(--bg); color: var(--text);
  padding: 11px 14px; font: inherit;
}
.contact-form textarea { resize: vertical; min-height: 120px; }
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none; border-color: rgba(220, 38, 38, .45);
  box-shadow: 0 0 0 3px var(--accent-soft);
}
@media (max-width: 720px) {
  .contact-grid { grid-template-columns: 1fr; }
  .info-dl > div { grid-template-columns: 1fr; gap: 4px; }
  .surface-card { padding: 18px 14px; }
}

/* ========== ARTICLE ========== */
.article-layout { display: grid; grid-template-columns: minmax(0, 1fr) 300px; gap: 28px; align-items: start; }
.breadcrumb {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  margin: 0 0 12px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-faint);
  line-height: 1;
}
.breadcrumb a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--text-muted);
  text-decoration: none;
  transition: color .15s ease, background .15s ease;
}
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb-home {
  padding: 7px 10px;
  border-radius: 999px;
  background: var(--surface);
  border: 1px solid var(--border);
}
.breadcrumb-home:hover {
  border-color: color-mix(in srgb, var(--accent) 30%, var(--border));
  background: color-mix(in srgb, var(--accent) 6%, var(--surface));
}
.breadcrumb-home svg { flex-shrink: 0; opacity: .75; }
.breadcrumb-sep {
  width: 5px; height: 5px;
  border-right: 1.5px solid var(--text-faint);
  border-bottom: 1.5px solid var(--text-faint);
  transform: rotate(-45deg);
  opacity: .55;
  margin: 0 2px;
}
.breadcrumb-current {
  padding: 7px 12px;
  border-radius: 999px;
  color: var(--text) !important;
  background: color-mix(in srgb, var(--accent) 10%, var(--surface));
  border: 1px solid color-mix(in srgb, var(--accent) 22%, var(--border));
}
.breadcrumb-current:hover {
  color: var(--accent) !important;
  border-color: color-mix(in srgb, var(--accent) 40%, var(--border));
}
.article-head { margin: 8px 0 16px; }
.article-head h1 {
  font-size: clamp(28px, 4.4vw, 42px);
  font-weight: 800;
  letter-spacing: -.03em;
  line-height: 1.18;
  color: var(--text);
}
.article-summary-lead {
  margin: 14px 0 0;
  max-width: none;
  width: 100%;
  font-size: clamp(16px, 2.1vw, 19px);
  font-weight: 500;
  line-height: 1.55;
  color: var(--text-muted);
}
.article-byline {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 12px;
  margin: 0 0 22px;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: var(--surface);
  box-shadow: var(--shadow-sm, 0 4px 14px rgba(15, 23, 42, .04));
}
.byline-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  flex: 1;
  min-width: 0;
}
.byline-item {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--bg-soft);
  border: 1px solid transparent;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--text-muted);
  line-height: 1.2;
  min-width: 0;
}
.byline-item strong {
  font-weight: 750;
  color: var(--text);
}
.byline-item a {
  color: inherit;
  text-decoration: none;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.byline-icon {
  display: inline-flex;
  color: var(--text-faint);
  opacity: .95;
  flex-shrink: 0;
}
.byline-icon svg { display: block; }
.byline-author {
  background: color-mix(in srgb, var(--accent) 8%, var(--bg-soft));
  color: var(--text);
}
.byline-author .byline-icon { color: var(--accent); }
button.byline-listen {
  cursor: pointer;
  font: inherit;
  appearance: none;
  margin-left: auto;
  border-color: color-mix(in srgb, var(--accent) 28%, var(--border));
  color: var(--text);
  transition: background .15s, border-color .15s, color .15s;
}
button.byline-listen:hover {
  border-color: color-mix(in srgb, var(--accent) 45%, var(--border));
  background: color-mix(in srgb, var(--accent) 10%, var(--surface));
  color: var(--accent);
}
button.byline-listen.is-playing,
button.byline-listen.is-paused {
  border-color: color-mix(in srgb, var(--accent) 45%, var(--border));
  background: color-mix(in srgb, var(--accent) 12%, var(--surface));
  color: var(--accent);
}
button.byline-listen .listen-icon-pause,
button.byline-listen .listen-icon-stop { display: none; }
button.byline-listen.is-playing .listen-icon-play { display: none; }
button.byline-listen.is-playing .listen-icon-pause { display: block; }
button.byline-listen.is-paused .listen-icon-play { display: block; }
button.byline-listen.is-paused .listen-icon-pause,
button.byline-listen.is-paused .listen-icon-stop { display: none; }

.article-listen {
  appearance: none;
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 5px 14px 5px 5px;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font: inherit;
  color: #fff;
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent) 92%, #7f1d1d) 0%, var(--accent) 55%, color-mix(in srgb, var(--accent) 75%, #fb7185) 100%);
  box-shadow: 0 6px 14px color-mix(in srgb, var(--accent) 22%, transparent);
  transition: transform .15s ease, box-shadow .15s ease, filter .15s ease;
  flex-shrink: 0;
}
.article-listen:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 22px color-mix(in srgb, var(--accent) 36%, transparent);
  filter: brightness(1.03);
}
.article-listen:active { transform: translateY(0); }
.article-listen-orb {
  position: relative;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,.18);
  border: 1px solid rgba(255,255,255,.22);
  flex-shrink: 0;
}
.article-listen-orb svg { display: block; }
.article-listen .listen-icon-pause { display: none; }
.article-listen-waves {
  display: none;
  align-items: flex-end;
  gap: 2px;
  height: 14px;
}
.article-listen-waves i {
  display: block;
  width: 2.5px;
  border-radius: 2px;
  background: #fff;
  animation: listenWave 0.9s ease-in-out infinite;
}
.article-listen-waves i:nth-child(1) { height: 6px; animation-delay: 0s; }
.article-listen-waves i:nth-child(2) { height: 12px; animation-delay: .15s; }
.article-listen-waves i:nth-child(3) { height: 8px; animation-delay: .3s; }
@keyframes listenWave {
  0%, 100% { transform: scaleY(.55); opacity: .75; }
  50% { transform: scaleY(1); opacity: 1; }
}
.article-listen-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1px;
  padding-right: 4px;
  line-height: 1.1;
}
.article-listen .listen-label {
  font-size: 13.5px;
  font-weight: 800;
  letter-spacing: .01em;
}
.article-listen .listen-hint {
  font-size: 10.5px;
  font-weight: 600;
  opacity: .82;
}
.article-listen.is-playing .listen-icon-play { display: none; }
.article-listen.is-playing .listen-icon-pause { display: none; }
.article-listen.is-playing .article-listen-waves { display: inline-flex; }
.article-listen.is-paused .listen-icon-play { display: block; }
.article-listen.is-paused .listen-icon-pause { display: none; }
.article-listen.is-paused .article-listen-waves { display: none; }
.article-listen.is-playing,
.article-listen.is-paused {
  background: linear-gradient(135deg, #991b1b 0%, var(--accent) 60%, #e11d48 100%);
}

.byline-short { display: none; }

@media (max-width: 640px) {
  .article-byline {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    padding: 10px;
    margin: 0 0 20px;
    border-radius: 14px;
    box-shadow: none;
  }
  .byline-meta {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    gap: 6px;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .byline-meta::-webkit-scrollbar { display: none; }
  .byline-item {
    width: auto;
    max-width: none;
    box-sizing: border-box;
    padding: 6px 8px;
    font-size: 11.5px;
    border-radius: 999px;
    background: var(--bg-soft);
    border: 0;
    flex: 0 0 auto;
    white-space: nowrap;
  }
  .byline-author {
    flex: 1 1 auto;
    min-width: 0;
    max-width: 38%;
    background: color-mix(in srgb, var(--accent) 7%, var(--bg-soft));
  }
  .byline-date,
  .byline-reading,
  .byline-views {
    flex: 0 0 auto;
  }
  .byline-full { display: none; }
  .byline-short { display: inline; }
  .byline-item time,
  .byline-item strong,
  .byline-item a {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    min-width: 0;
  }
  .article-listen {
    width: 100%;
    margin: 0;
    justify-content: center;
    gap: 8px;
    padding: 8px 14px 8px 8px;
    box-shadow: none;
  }
  .article-listen-orb {
    width: 30px;
    height: 30px;
  }
  .article-listen .listen-label { font-size: 13px; }
  .article-listen .listen-hint { display: none; }
  .article-body-wrap > .ad-slot[data-ad-slot="article_after_hero"] {
    margin-top: 4px;
    margin-bottom: 20px;
  }
}
.article-top-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px 16px;
  flex-wrap: wrap;
  margin-bottom: 6px;
}
.article-top-row .article-badges { margin: 0; }
.article-share-top { margin-left: auto; }
.share-bar--top { gap: 6px; }
.share-bar--top .share-btn {
  width: 34px; height: 34px; border-radius: 9px;
}

/* Klasik: ba?l?k/?zet tam geni?lik ? g?rsel+metin | sa? men? */
.article-classic { margin-bottom: 24px; }
.article-classic-head {
  margin-bottom: 20px;
}
.article-classic-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px 16px;
  margin-bottom: 14px;
  min-height: 34px;
}
.article-classic-meta .breadcrumb { margin-bottom: 0; }
.article-classic-meta .article-share-top {
  margin-left: auto;
  flex-shrink: 0;
  margin-top: 0;
}
.article-classic-head .article-badges { margin-bottom: 8px; }
.article-classic-head .article-head {
  margin: 0;
  max-width: none;
}
.article-classic-head .article-summary-lead {
  max-width: none;
  width: 100%;
}
.article-classic-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 28px;
  align-items: start;
}
.article-classic-main .article-hero-media {
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  background: var(--surface-2, #e8eef5);
}
.article-classic-main .article-hero-media img {
  display: block;
  width: 100%;
  height: auto;
  max-height: none;
  min-height: 320px;
  object-fit: cover;
  aspect-ratio: 16 / 10;
}
.article-classic-main .article-byline { margin-top: 16px; }
.article-classic-grid > .sidebar { margin-top: 0; }

@media (max-width: 900px) {
  .article-classic-grid { display: block; }
  .article-classic-main .article-hero-media img {
    min-height: 220px;
    aspect-ratio: 16 / 9;
  }
}

.widget-related { padding: 14px 14px 10px; }
.related-aside-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.related-aside-item {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  min-height: 72px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  color: inherit;
  text-decoration: none;
}
.related-aside-item:last-child { border-bottom: none; }
.related-aside-item:hover .related-aside-title { color: var(--accent); }
.related-aside-thumb {
  display: block;
  width: 72px;
  height: 72px;
  border-radius: 10px;
  overflow: hidden;
  flex-shrink: 0;
  background: var(--surface-2, #eef2f7);
  border: 1px solid var(--border);
}
.related-aside-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.related-aside-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  min-width: 0;
  min-height: 72px;
}
.related-aside-title {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin: 0;
  font-size: 14px;
  font-weight: 750;
  line-height: 1.35;
  color: var(--text);
  min-height: calc(1.35em * 2);
}
.related-aside-meta {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-faint);
  line-height: 1;
}
.article-hero-media {
  border-radius: var(--radius-lg); overflow: hidden; margin-bottom: 22px;
  border: 1px solid var(--border); box-shadow: var(--shadow);
}
.article-hero-media img { width: 100%; max-height: 480px; object-fit: cover; display: block; }
.article-hero-caption {
  margin: 0; padding: 10px 14px; font-size: 13px; color: var(--text-muted);
  background: var(--surface); border-top: 1px solid var(--border);
}

/* Article layout variants (settings: article_layout) */
.article-layout--reader {
  display: block;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}
.article-layout--reader .article-reader { max-width: 100%; }
.article-layout--reader .article-head h1 { font-size: clamp(28px, 4.5vw, 44px); }
.article-layout--reader .article-body { font-size: 18px; line-height: 1.75; }
.article-layout--reader .article-hero-media img { max-height: 420px; }

.article-immersive-hero {
  margin: 0 0 8px;
  padding: 0 0 8px;
}
.article-immersive-hero .article-hero-media {
  margin-bottom: 0;
  border-radius: 18px;
  max-height: none;
}
.article-immersive-hero .article-hero-media img {
  max-height: min(62vh, 560px);
}
.article-layout--immersive .article-head { margin-top: 8px; }

.article-cover-hero {
  position: relative;
  min-height: min(58vh, 520px);
  margin: 0 0 28px;
  overflow: hidden;
  background: #0f172a;
}
.article-cover-hero > img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; transform: scale(1.02);
}
.article-cover-overlay {
  position: relative;
  min-height: inherit;
  display: flex;
  align-items: flex-end;
  padding: 48px 0 36px;
  background: linear-gradient(180deg, rgba(15,23,42,.15) 0%, rgba(15,23,42,.55) 45%, rgba(15,23,42,.88) 100%);
  color: #fff;
}
.article-cover-inner { width: 100%; max-width: 920px; }
.article-cover-overlay .badge-category,
.article-cover-overlay .badge-breaking,
.article-cover-overlay .video-haber-badge {
  background: rgba(255,255,255,.16);
  color: #fff;
  border-color: transparent;
}
.article-cover-overlay h1 {
  margin: 10px 0 0;
  font-size: clamp(28px, 5vw, 48px);
  font-weight: 800;
  letter-spacing: -.03em;
  line-height: 1.15;
  text-shadow: 0 2px 18px rgba(0,0,0,.35);
}
.article-cover-overlay .article-summary-lead {
  color: rgba(255,255,255,.86);
  max-width: 42rem;
}
.article-cover-overlay .article-byline {
  background: rgba(15, 23, 42, .28);
  border-color: rgba(255,255,255,.14);
  box-shadow: none;
}
.article-cover-overlay .byline-item {
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.16);
  color: rgba(255,255,255,.82);
}
.article-cover-overlay .byline-item strong { color: #fff; }
.article-cover-overlay .byline-icon { color: #fff; }
.article-cover-overlay .byline-author {
  background: rgba(255,255,255,.16);
  border-color: rgba(255,255,255,.22);
}
.article-layout--cover { margin-top: 0; }

@media (max-width: 900px) {
  .article-layout--classic,
  .article-layout--immersive,
  .article-layout--cover { display: block; }
  .article-cover-hero { min-height: 420px; }
}

/* ---- Video article template ---- */
.video-article-wrap { padding-top: 12px; }
.video-stage {
  background: linear-gradient(180deg, #0b1220 0%, #111827 100%);
  padding: 10px 0 28px; margin-bottom: 22px;
}
.video-player-shell {
  max-width: 960px; margin: 0 auto;
  border-radius: 16px; overflow: hidden;
  box-shadow: 0 24px 48px rgba(0,0,0,.35);
  border: 1px solid rgba(255,255,255,.08);
  background: #000;
}
.video-player-ratio {
  position: relative; width: 100%; aspect-ratio: 16 / 9; background: #000;
}
.video-player-ratio > iframe,
.video-player-ratio > .video-player-frame,
.video-player-ratio > .video-player-native,
.video-player-ratio > video {
  position: absolute; inset: 0; width: 100%; height: 100%; border: 0;
  background: #000;
}
.video-fallback-cover img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .45;
}
.video-missing {
  position: absolute; inset: 0; display: grid; place-items: center;
  margin: 0; color: rgba(255,255,255,.8); font-weight: 600; z-index: 1;
}
.video-badges { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 10px; }
.video-article-layout { margin-top: 0; }

.news-thumb, .card-media { position: relative; }
.news-thumb.is-video::after,
.card-media.is-video::after { content: none; }
.video-play-badge {
  position: absolute; left: 50%; top: 50%;
  width: 44px; height: 44px; margin: -22px 0 0 -22px;
  border-radius: 50%;
  background: rgba(15, 23, 42, .72);
  border: 2px solid rgba(255,255,255,.9);
  box-shadow: 0 8px 20px rgba(0,0,0,.35);
  pointer-events: none; z-index: 2;
}
.video-play-badge::before {
  content: ""; position: absolute; left: 17px; top: 13px;
  border-left: 14px solid #fff;
  border-top: 9px solid transparent;
  border-bottom: 9px solid transparent;
}
.news-item:hover .video-play-badge,
.article-card:hover .video-play-badge {
  background: var(--crimson);
  border-color: #fff;
  transform: scale(1.05);
}
.video-play-badge { transition: background var(--t), transform var(--t); }

.article-body { font-size: 17.5px; line-height: 1.75; color: var(--text); overflow: hidden; }
.article-body::after {
  content: "";
  display: table;
  clear: both;
}
.article-body p {
  margin: 0 0 1.15em;
  display: block;
}
.article-body p:last-child { margin-bottom: 0; }
.article-body > br { display: none; }
.article-body p:empty,
.article-body p:has(> br:only-child) { display: none; margin: 0; height: 0; padding: 0; }
.article-body h2 { font-size: 24px; margin: 1.2em 0 .5em; font-weight: 800; letter-spacing: -.02em; clear: both; }
.article-body h3 { font-size: 20px; margin: 1.1em 0 .45em; clear: both; }
.article-body img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  margin: 1em 0;
  display: block;
  float: none !important;
}
.article-body blockquote {
  margin: 1.2em 0;
  padding: 12px 16px;
  border-left: 4px solid var(--accent, #dc2626);
  background: color-mix(in srgb, var(--accent, #dc2626) 8%, transparent);
  color: var(--text-muted);
  font-style: italic;
}
.article-gallery {
  margin: 28px 0 8px;
  padding-top: 8px;
  border-top: 1px solid var(--border);
}
.article-gallery-title {
  font-size: 18px;
  margin: 0 0 14px;
  letter-spacing: -.02em;
}
.article-gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 12px;
}
.article-gallery-item {
  margin: 0;
  border-radius: 12px;
  overflow: hidden;
  background: var(--surface-2, #f1f5f9);
  border: 1px solid var(--border);
}
.article-gallery-item a { display: block; }
.article-gallery-item img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  display: block;
  margin: 0;
  border-radius: 0;
}
.article-gallery-item figcaption {
  padding: 8px 10px;
  font-size: 12.5px;
  color: var(--text-muted);
  line-height: 1.35;
}
.article-gallery-item .gallery-trigger {
  cursor: zoom-in;
}
.article-gallery-item .gallery-trigger:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

/* Gallery lightbox */
.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(8, 10, 14, .88);
  opacity: 0;
  visibility: hidden;
  transition: opacity .2s ease, visibility .2s ease;
}
.gallery-lightbox.is-open {
  opacity: 1;
  visibility: visible;
}
.gallery-lightbox-inner {
  position: relative;
  max-width: min(96vw, 1100px);
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.gallery-lightbox-inner img {
  max-width: 100%;
  max-height: calc(90vh - 64px);
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 20px 60px rgba(0,0,0,.45);
  background: #111;
}
.gallery-lightbox-caption {
  margin: 0;
  color: rgba(255,255,255,.88);
  font-size: 14px;
  text-align: center;
  max-width: 40rem;
  line-height: 1.4;
}
.gallery-lightbox-close,
.gallery-lightbox-nav {
  position: absolute;
  border: 0;
  background: rgba(255,255,255,.12);
  color: #fff;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  line-height: 1;
  transition: background .15s ease;
}
.gallery-lightbox-close:hover,
.gallery-lightbox-nav:hover {
  background: rgba(255,255,255,.22);
}
.gallery-lightbox-close {
  top: 16px;
  right: 16px;
  position: fixed;
  z-index: 10001;
}
.gallery-lightbox-prev { left: 12px; position: fixed; top: 50%; transform: translateY(-50%); }
.gallery-lightbox-next { right: 12px; position: fixed; top: 50%; transform: translateY(-50%); }
.gallery-lightbox-counter {
  position: fixed;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,.75);
  font-size: 13px;
  letter-spacing: .02em;
}
@media (max-width: 640px) {
  .gallery-lightbox { padding: 12px; }
  .gallery-lightbox-prev { left: 6px; }
  .gallery-lightbox-next { right: 6px; }
  .gallery-lightbox-close { top: 10px; right: 10px; }
}

.article-tags {
  clear: both;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 28px 0 12px;
  padding-top: 18px;
  border-top: 1px solid var(--border);
}
.tag-pill {
  padding: 6px 12px; border-radius: 999px; background: var(--bg-soft);
  border: 1px solid var(--border); font-size: 12.5px; font-weight: 600; color: var(--text-muted);
}
.tag-pill:hover { color: var(--accent); border-color: var(--accent); }
.author-box {
  display: flex; gap: 14px; align-items: center; padding: 16px;
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg);
  margin-top: 20px;
}
.author-avatar {
  width: 48px; height: 48px; border-radius: 50%; background: var(--accent); color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 800; font-size: 18px; flex-shrink: 0;
}
.author-box h4 { font-size: 16px; margin-bottom: 2px; }
.author-box p { margin: 0; font-size: 13.5px; color: var(--text-muted); }

.article-tools { margin: 16px 0 20px; }
.share-bar {
  display: flex; flex-wrap: wrap; align-items: center; gap: 8px;
}
.share-label {
  font-size: 12.5px; font-weight: 750; letter-spacing: .04em; text-transform: uppercase;
  color: var(--text-faint); margin-right: 4px;
}
.share-btn {
  width: 38px; height: 38px; border-radius: 10px;
  border: 1px solid var(--border); background: var(--surface);
  color: var(--text-muted); display: inline-flex; align-items: center; justify-content: center;
  transition: background .15s ease, color .15s ease, border-color .15s ease, transform .15s ease;
}
.share-btn:hover {
  color: var(--accent); border-color: color-mix(in srgb, var(--accent) 35%, var(--border));
  background: color-mix(in srgb, var(--accent) 8%, var(--surface));
  transform: translateY(-1px);
}
.share-btn.is-copied {
  color: var(--up); border-color: color-mix(in srgb, var(--up) 40%, var(--border));
}
.article-source {
  clear: both;
  margin: 4px 0 16px; font-size: 13.5px; color: var(--text-muted);
}
.article-source span { font-weight: 700; color: var(--text-faint); margin-right: 6px; }
.article-source a { color: var(--accent); font-weight: 650; }

.reading-progress {
  position: fixed; top: 0; left: 0; right: 0; height: 3px; z-index: 80;
  background: transparent; pointer-events: none;
}
.reading-progress span {
  display: block; height: 100%; width: 0;
  background: linear-gradient(90deg, var(--accent), color-mix(in srgb, var(--accent) 55%, #f59e0b));
  transition: width .05s linear;
}
.back-to-top {
  position: fixed; right: 18px; bottom: 18px; z-index: 70;
  width: 44px; height: 44px; border-radius: 14px;
  border: 1px solid var(--border); background: var(--surface);
  color: var(--text); box-shadow: var(--shadow);
  display: inline-flex; align-items: center; justify-content: center;
  opacity: 0; transform: translateY(8px); pointer-events: none;
  transition: opacity .2s ease, transform .2s ease;
}
.back-to-top.is-visible {
  opacity: 1; transform: translateY(0); pointer-events: auto;
}
.back-to-top:hover { color: var(--accent); border-color: var(--accent); }

.footer-social {
  display: flex; flex-wrap: wrap; gap: 8px;
}
.footer-social-link {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 34px; padding: 0 12px; border-radius: 999px;
  border: 1px solid rgba(255,255,255,.14); color: rgba(255,255,255,.78) !important;
  font-size: 12.5px; font-weight: 650;
}
.footer-social-link:hover { color: #fff !important; border-color: rgba(255,255,255,.35); }

.social-icons {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.social-icon-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.16);
  color: rgba(255,255,255,.82) !important;
  background: rgba(255,255,255,.04);
  transition: color .15s ease, border-color .15s ease, background .15s ease, transform .15s ease;
}
.social-icon-link:hover {
  color: #fff !important;
  border-color: rgba(255,255,255,.4);
  background: rgba(255,255,255,.1);
  transform: translateY(-1px);
}
.social-icons--header {
  flex-shrink: 0;
}
.social-icons--header .social-icon-link {
  width: 28px;
  height: 28px;
}
[data-theme="light"] .header-utility .social-icon-link {
  border-color: var(--border-strong);
  color: var(--text-muted) !important;
  background: var(--surface);
}
[data-theme="light"] .header-utility .social-icon-link:hover {
  color: var(--accent) !important;
  border-color: color-mix(in srgb, var(--accent) 40%, var(--border));
  background: color-mix(in srgb, var(--accent) 8%, var(--surface));
}
.social-icons--footer .social-icon-link {
  width: 36px;
  height: 36px;
}

@media (max-width: 960px) {
  .social-icons--header { display: none; }
  .utility-fx { justify-content: flex-end; }
}

@media print {
  .site-header, .site-footer, .sidebar, .share-bar, .back-to-top, .reading-progress,
  .comments-section, .breaking-bar, .mobile-nav { display: none !important; }
  .article-layout { display: block !important; }
  .article-body { font-size: 12pt; color: #000; }
}

.related-section, .comments-section { margin-top: 36px; padding-top: 24px; border-top: 1px solid var(--border); }
.comments-accordion { padding-top: 0; border-top: none; }
.comments-acc-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--surface);
  color: var(--text);
  font: inherit;
  cursor: pointer;
  text-align: left;
  transition: border-color .18s, background .18s;
}
.comments-acc-toggle:hover { border-color: color-mix(in srgb, var(--accent) 35%, var(--border)); }
.comments-acc-toggle[aria-expanded="true"] {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  border-bottom-color: transparent;
}
.comments-acc-title {
  font-size: 17px;
  font-weight: 800;
  letter-spacing: -.01em;
}
.comments-acc-title em {
  font-style: normal;
  font-weight: 650;
  color: var(--text-muted);
}
.comments-acc-hint {
  margin-left: auto;
  font-size: 13px;
  color: var(--text-faint);
}
.comments-acc-icon {
  width: 10px; height: 10px;
  border-right: 2px solid var(--text-muted);
  border-bottom: 2px solid var(--text-muted);
  transform: rotate(45deg);
  transition: transform .2s;
  flex-shrink: 0;
}
.comments-acc-toggle[aria-expanded="true"] .comments-acc-icon {
  transform: rotate(-135deg);
  margin-top: 4px;
}
.comments-acc-toggle[aria-expanded="true"] .comments-acc-hint { display: none; }
.comments-acc-panel {
  border: 1px solid var(--border);
  border-top: none;
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  padding: 18px 16px 16px;
  background: var(--surface);
}
.comments-acc-panel[hidden] { display: none !important; }
.form-row { margin-bottom: 12px; }
.form-row.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.comment-list { display: flex; flex-direction: column; gap: 14px; margin-top: 20px; }
.comment-item {
  display: flex; gap: 12px; padding: 14px; background: var(--bg-soft, var(--surface-2));
  border: 1px solid var(--border); border-radius: var(--radius);
}
.comment-head { display: flex; gap: 10px; align-items: baseline; margin-bottom: 4px; font-size: 13px; color: var(--text-faint); }
.comment-head strong { color: var(--text); font-size: 14px; }
.comment-text { margin: 0; font-size: 14.5px; }
.comment-form-msg, .newsletter-msg.show { margin-top: 8px; }
.comment-form-msg.success { color: var(--up); }
.comment-form-msg.error { color: var(--accent); }
.comment-as {
  margin: 0 0 12px;
  font-size: 13px;
  color: var(--text-muted);
}
.comment-login-gate {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 16px;
  padding: 14px 16px;
  margin-bottom: 16px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--bg-soft);
}
.comment-login-gate p {
  margin: 0;
  flex: 1 1 auto;
  font-size: 14px;
  color: var(--text-muted);
}
.no-comments { color: var(--text-muted); font-size: 14px; margin: 12px 0 0; }

.article-reactions {
  margin: 22px 0 8px;
  padding: 18px 0 4px;
  border-top: 1px solid var(--border);
}
.article-reactions-label {
  margin: 0 0 14px;
  font-size: 14px;
  font-weight: 700;
  color: var(--text-muted);
}
.article-reactions-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 4px;
  justify-content: space-between;
  max-width: 420px;
}
.reaction-btn {
  appearance: none;
  border: none;
  background: transparent;
  color: inherit;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  min-width: 52px;
  padding: 6px 4px;
  border-radius: 12px;
  transition: transform .15s, background .15s;
}
.reaction-btn:hover { background: color-mix(in srgb, var(--text) 5%, transparent); transform: translateY(-2px); }
.reaction-btn.is-active {
  background: color-mix(in srgb, var(--accent) 12%, transparent);
}
.reaction-count {
  font-size: 13px;
  font-weight: 800;
  color: var(--text-muted);
  line-height: 1;
  min-height: 1em;
}
.reaction-btn.is-active .reaction-count { color: var(--accent); }
.reaction-emoji {
  font-size: 28px;
  line-height: 1;
  filter: grayscale(.15);
  transition: transform .15s, filter .15s;
}
.reaction-btn:hover .reaction-emoji,
.reaction-btn.is-active .reaction-emoji {
  filter: none;
  transform: scale(1.08);
}
.reaction-bar {
  width: 22px;
  height: 2px;
  border-radius: 2px;
  background: var(--border-strong, var(--border));
}
.reaction-btn.is-active .reaction-bar { background: var(--accent); }

/* ========== LISTING ========== */
.listing-head { margin-bottom: 22px; padding-bottom: 16px; border-bottom: 2px solid var(--border); position: relative; }
.listing-head::after {
  content: ""; position: absolute; left: 0; bottom: -2px; width: 80px; height: 2px; background: var(--accent);
}
.listing-head h1 { font-size: clamp(24px, 4vw, 34px); font-weight: 800; margin-bottom: 6px; }
.listing-head p { color: var(--text-muted); margin: 0 0 6px; }
.result-count { font-size: 13px; color: var(--text-faint); }
.pagination { display: flex; gap: 6px; justify-content: center; margin-top: 28px; flex-wrap: wrap; }
.pagination a, .pagination span {
  min-width: 40px; height: 40px; padding: 0 12px; display: inline-flex; align-items: center; justify-content: center;
  border-radius: var(--radius-sm); border: 1px solid var(--border); background: var(--surface);
  font-weight: 700; font-size: 14px;
}
.pagination a:hover { border-color: var(--accent); color: var(--accent); }
.pagination .is-active { background: var(--accent); color: #fff; border-color: var(--accent); }
.empty-state { text-align: center; padding: 48px 20px; color: var(--text-muted); background: var(--surface); border-radius: var(--radius-lg); border: 1px dashed var(--border-strong); }

/* ========== CARD COMPAT ========== */
.article-card {
  display: flex; flex-direction: column; background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); height: 100%;
}
.article-card.card-horizontal { flex-direction: row; align-items: stretch; }
.article-card.card-horizontal .card-media { width: 140px; flex-shrink: 0; aspect-ratio: auto; }
.article-card.card-compact { box-shadow: none; border: none; background: transparent; flex-direction: row; gap: 12px; }
.card-media { position: relative; aspect-ratio: 16/10; overflow: hidden; background: var(--bg-soft); }
.card-media img { width: 100%; height: 100%; object-fit: cover; }
.card-cat {
  position: absolute; left: 10px; bottom: 10px; background: var(--accent); color: #fff;
  font-size: 10px; font-weight: 700; text-transform: uppercase; padding: 4px 8px; border-radius: 999px;
}
.card-body { padding: 14px; display: flex; flex-direction: column; gap: 6px; }
.card-body h3 { font-size: 15px; font-weight: 700; }
.card-summary { font-size: 13.5px; color: var(--text-muted); margin: 0; }
.card-meta { font-size: 12px; color: var(--text-faint); }
.rank-badge {
  position: absolute; z-index: 2; left: 10px; top: 10px; width: 28px; height: 28px;
  border-radius: 50%; background: var(--accent); color: #fff; display: grid; place-items: center;
  font-family: var(--font-display); font-weight: 800; font-size: 13px;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 980px) {
  .manset-wrap, .home-grid, .article-layout, .news-item-lead, .form-row.two-col {
    grid-template-columns: 1fr;
  }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .footer-brand { grid-column: 1 / -1; }
  .home-grid { gap: 28px; }
  .manset-main { min-height: 280px; }
  .manset-list { max-height: none; display: grid; grid-template-columns: 1fr 1fr; }
  .manset-cinema-stage { min-height: 320px; }
  .manset-magazine {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 240px 160px 160px;
  }
  .manset-mag-0 { grid-column: 1 / 3; grid-row: 1; }
  .manset-mag-1 { grid-column: 1; grid-row: 2; }
  .manset-mag-2 { grid-column: 2; grid-row: 2; }
  .manset-mag-3 { grid-column: 1; grid-row: 3; }
  .manset-mag-4 { grid-column: 2; grid-row: 3; }
  .manset-cards { grid-template-columns: 1fr; }
  .manset-pager { grid-template-columns: 1fr; }
  .manset-pager-stage { min-height: 300px; }
  .manset-pager-side-list { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
  .manset-pager-card { min-height: 180px; }
  .cat-mosaic-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 180px 140px 140px;
  }
  .cat-mosaic-card.is-lead { grid-column: 1 / 3; grid-row: 1; }
  .cat-cards-grid { grid-template-columns: 1fr 1fr; }
  .cat-showcase-large { grid-template-columns: 1fr; }
  .cat-showcase-small { grid-template-columns: 1fr; }
  .cat-tabs-digest { grid-template-columns: 1fr; }
  .cat-tabs-lead { min-height: 240px; }
  .cat-duo-row { grid-template-columns: 1fr; gap: 28px; }
  .cat-duo-col.is-empty { display: none; }
  .cat-minimal-row.is-lead { grid-template-columns: 36px minmax(0, 1fr) 100px; }
  .sidebar { position: static; width: 100%; }
  .container.footer-newsletter-inner { flex-direction: column; align-items: stretch; gap: 16px; padding: 28px 18px; }
  .newsletter-form {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }
  .newsletter-form input {
    flex: none;
    min-width: 0;
    width: 100%;
  }
  .newsletter-form .btn {
    width: 100%;
    justify-content: center;
  }
  .widget { max-width: 100%; }
}

/* B?y?k telefon / k???k tablet: man?et alt? tek s?tun */
@media (max-width: 720px) {
  .news-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .cat-mosaic-grid {
    grid-template-columns: 1fr;
    grid-template-rows: none;
    auto-rows: minmax(180px, auto);
  }
  .cat-mosaic-card.is-lead {
    grid-column: 1;
    grid-row: auto;
    min-height: 220px;
  }
  .cat-cards-grid { grid-template-columns: 1fr; }
  .cat-duo-pair { grid-template-columns: 1fr; }
  .cat-spot-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }
  .cat-spot-row-date { flex-shrink: 1; }
  .cat-tabs-row {
    grid-template-columns: 28px 64px minmax(0, 1fr) !important;
    gap: 10px;
  }
  .section-block { margin-bottom: 26px; }
  .cat-block { padding: 14px; }
}

@media (max-width: 640px) {
  .container { padding: 0 14px; }
  .page-wrap { padding: 14px 0 36px; }
  .container.footer-newsletter-inner { padding: 24px 14px; }
  .footer-newsletter h3 { font-size: 18px; }
  .footer-newsletter p { font-size: 13.5px; line-height: 1.4; }
  .news-grid, .manset-list { grid-template-columns: 1fr; }
  .manset-main { min-height: 240px; border-radius: var(--radius); }
  .manset-overlay { padding: 18px 16px 14px; }
  .manset-title { max-width: none; }
  .manset-summary { display: none; }
  .manset-cinema-stage { min-height: 240px; }
  .manset-overlay-wide { padding: 22px 16px 16px; }
  .manset-cinema-chip { grid-template-columns: 48px 1fr; }
  .manset-magazine {
    grid-template-columns: 1fr;
    grid-template-rows: none;
    auto-rows: 200px;
  }
  .manset-mag-0, .manset-mag-1, .manset-mag-2, .manset-mag-3, .manset-mag-4 {
    grid-column: 1; grid-row: auto;
  }
  .manset-mag-0 { min-height: 260px; }
  .manset-mag-summary { display: none; }
  .manset-pager-nums { overflow-x: auto; flex-wrap: nowrap; }
  .manset-pager-num { flex: 1 0 0; min-width: 36px; }
  .manset-pager-side-list { grid-template-columns: 1fr; }
  .cat-showcase-large,
  .cat-showcase-small { grid-template-columns: 1fr; }
  .cat-duo-pair { grid-template-columns: 1fr; gap: 14px; }
  .cat-duo-lead-title { -webkit-line-clamp: 4; }
  .cat-minimal-row,
  .cat-minimal-row.is-lead { grid-template-columns: 32px minmax(0, 1fr); }
  .cat-minimal-thumb { display: none; }
  .cat-minimal-title { font-size: 14.5px; }
  .cat-spot-lead { min-height: 200px; }
  .cat-tabs-section { padding-top: 16px; }
  .cat-tabs-heading h2 { font-size: 20px; }
  .cat-tabs-btn { flex: 0 0 auto; white-space: nowrap; }
  .cat-tabs-lead { min-height: 200px; }
  .cat-tabs-lead-title { font-size: 18px; }
  .news-item-lead { gap: 12px; }
  .news-item h3 { font-size: 15px; }
  .news-body { padding: 12px; }
  .news-thumb.sm { width: 72px; height: 54px; flex: 0 0 auto; }
  .news-row {
    display: grid !important;
    grid-template-columns: 72px minmax(0, 1fr);
    gap: 10px;
    align-items: start;
  }
  .breaking-inner { padding: 8px 14px; }
  .header-main-inner { padding: 10px 12px; gap: 8px; }
  .header-utility-inner { padding-left: 12px; padding-right: 12px; }
  .brand-text { font-size: 16px; }
  .icon-btn,
  .btn-auth {
    width: 36px;
    height: 36px;
    min-width: 36px;
  }
  .article-classic-meta {
    align-items: center;
  }
  .article-classic-meta .breadcrumb {
    flex: 1 1 auto;
    min-width: 0;
  }
  .footer-grid { grid-template-columns: 1fr; gap: 22px; }
  .footer-brand { grid-column: auto; }
  .footer-col { min-width: 0; }
  .footer-col a { display: block; padding: 4px 0; }
  .pharmacy-widget-head { flex-wrap: wrap; }
  .pharmacy-cal { min-width: 48px; }
  .standings-toolbar { flex-wrap: wrap; }
  /* Mobilde sidebar tablosu zaten s??ar; s?tun gizleme P'yi kaybettiriyordu ? kald?r?ld? */
  .widget-list a,
  .service-links a {
    word-break: break-word;
  }
  .rank-list .rank-item {
    gap: 10px;
  }
}

@media (max-width: 420px) {
  .container { padding: 0 12px; }
  .container.footer-newsletter-inner { padding: 22px 12px; }
  .section-title h2 { font-size: 16px; }
  .cat-block { padding: 12px; border-radius: 12px; }
  .cat-tabs-digest { gap: 12px; }
  .fx-board { padding: 14px 12px 16px; }
  .fx-board-top { gap: 12px; }
  .fx-match {
    grid-template-columns: 1fr;
    gap: 10px; text-align: center; padding: 14px 12px;
  }
  .fx-match-side.is-home,
  .fx-match-side.is-away {
    justify-content: center; text-align: center;
  }
  .fx-match-side.is-home .fx-crest { order: 0; }
  .fx-match-mid { order: -1; }
  .fx-team { white-space: normal; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  .fx-match { animation: none !important; }
}

/* ---- Standings widget ---- */
.standings-head { display: flex; align-items: baseline; justify-content: space-between; gap: 10px; }
.standings-head .widget-title { margin-bottom: 0; padding-bottom: 0; border-bottom: none; }
.standings-toolbar { display: flex; align-items: center; justify-content: space-between; gap: 8px; margin: 8px 0 4px; }
.standings-select {
  flex: 1; min-width: 0; max-width: 100%;
  font: inherit; font-size: 12.5px; font-weight: 600;
  color: var(--text); background: var(--bg-elevated, var(--bg));
  border: 1px solid var(--border); border-radius: 8px;
  padding: 7px 10px; cursor: pointer;
}
.standings-season { font-size: 11px; color: var(--text-faint); font-weight: 600; white-space: nowrap; flex: 0 0 auto; }
.standings-table-wrap { margin-top: 10px; overflow-x: auto; -webkit-overflow-scrolling: touch; }
.standings-table { width: 100%; border-collapse: collapse; font-size: 12.5px; }
.standings-table th { text-align: left; font-size: 11px; color: var(--text-faint); font-weight: 700; padding: 6px 4px; border-bottom: 1px solid var(--border); }
.standings-table th:nth-child(n+3), .standings-table td:nth-child(n+3) { text-align: center; }
.standings-table td { padding: 7px 4px; border-bottom: 1px solid var(--border); vertical-align: middle; }
.standings-table td.team { font-weight: 600; white-space: normal; word-break: break-word; }
.standings-table tr.is-top td:first-child { color: var(--accent); font-weight: 800; }
.standings-table tr.is-releg td:first-child { color: var(--text-faint); }
.standings-table tr:last-child td { border-bottom: none; }
.standings-more {
  display: block; margin-top: 12px; padding-top: 10px;
  border-top: 1px solid var(--border);
  font-size: 12.5px; font-weight: 700; color: var(--accent); text-align: center;
}
.standings-more:hover { text-decoration: underline; }

/* Sidebar widget: dar s?tunda yatay scroll olmas?n, P her zaman g?r?ns?n */
[data-standings-widget] {
  overflow: hidden;
  max-width: 100%;
}
[data-standings-widget] .standings-table-wrap {
  overflow: hidden;
  margin-top: 8px;
}
[data-standings-widget] .standings-table {
  table-layout: fixed;
  width: 100%;
  min-width: 0;
  font-size: 11.5px;
}
[data-standings-widget] .standings-table th,
[data-standings-widget] .standings-table td {
  padding: 6px 2px;
  overflow: hidden;
}
[data-standings-widget] .standings-table th:nth-child(1),
[data-standings-widget] .standings-table td:nth-child(1) {
  width: 1.25rem;
  padding-left: 0;
}
[data-standings-widget] .standings-table th:nth-child(2),
[data-standings-widget] .standings-table td:nth-child(2) {
  width: auto;
  padding-right: 4px;
}
[data-standings-widget] .standings-table th:nth-child(n+3),
[data-standings-widget] .standings-table td:nth-child(n+3) {
  width: 1.55rem;
  padding-left: 0;
  padding-right: 0;
  font-variant-numeric: tabular-nums;
}
[data-standings-widget] .standings-table th:last-child,
[data-standings-widget] .standings-table td:last-child {
  width: 1.7rem;
  padding-right: 0;
}
[data-standings-widget] .standings-table td.team {
  max-width: none;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  word-break: normal;
  font-size: 11.5px;
  line-height: 1.25;
}
[data-standings-widget] .standings-table td:last-child strong {
  font-weight: 800;
}

/* ---- Sport / puan durumu page ---- */
.sport-head p { margin-top: 6px; color: var(--text-muted, var(--text-faint)); max-width: 52ch; }
.sport-page { margin-top: 8px; margin-bottom: 40px; }
.sport-tabs {
  display: flex; gap: 6px; flex-wrap: wrap;
  border-bottom: 1px solid var(--border); margin-bottom: 18px;
}
.sport-tab {
  appearance: none; border: 0; background: transparent; cursor: pointer;
  font: inherit; font-size: 14px; font-weight: 700;
  color: var(--text-faint); padding: 10px 14px 12px;
  border-bottom: 2px solid transparent; margin-bottom: -1px;
}
.sport-tab.is-active { color: var(--accent); border-bottom-color: var(--accent); }
.sport-toolbar { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; max-width: 420px; }
.sport-select { max-width: 280px; }
.sport-table-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 8px 14px 12px; box-shadow: var(--shadow);
  overflow-x: auto;
}
.sport-table { font-size: 14px; }
.sport-table th, .sport-table td { padding: 10px 6px; }

/* ---- S?per Lig Fikst?r panosu ---- */
.fx-board {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background:
    radial-gradient(900px 420px at 8% -20%, rgba(220, 38, 38, .10), transparent 55%),
    radial-gradient(700px 360px at 100% 0%, rgba(15, 23, 42, .06), transparent 50%),
    linear-gradient(180deg, color-mix(in srgb, var(--surface) 92%, #0b1220) 0%, var(--surface) 42%, var(--surface-2) 100%);
  box-shadow: var(--shadow);
  padding: 18px 18px 20px;
}
.fx-board::before {
  content: "";
  position: absolute; inset: 0 0 auto 0; height: 3px;
  background: linear-gradient(90deg, var(--crimson), #f59e0b 45%, transparent 85%);
  pointer-events: none;
}
.fx-board-top {
  display: flex; align-items: flex-end; justify-content: space-between; gap: 16px;
  flex-wrap: wrap; margin-bottom: 14px;
}
.fx-board-kicker {
  display: block;
  font-family: var(--font-display);
  font-size: 11px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 4px;
}
.fx-board-title-row {
  display: flex; align-items: baseline; gap: 10px; flex-wrap: wrap;
}
.fx-board-title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.4vw, 1.75rem);
  font-weight: 800; letter-spacing: -.02em; color: var(--text);
}
.fx-board-season {
  font-size: 12px; font-weight: 700; letter-spacing: .04em;
  color: var(--text-muted);
  padding: 4px 9px;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: color-mix(in srgb, var(--surface) 80%, transparent);
}
.fx-week-nav {
  display: flex; align-items: center; gap: 8px;
}
.fx-week-btn {
  width: 40px; height: 40px; border-radius: 12px;
  display: grid; place-items: center;
  border: 1px solid var(--border); background: var(--surface);
  color: var(--text); cursor: pointer;
  transition: border-color var(--t), color var(--t), transform var(--t), background var(--t);
}
.fx-week-btn:hover:not(:disabled) {
  border-color: color-mix(in srgb, var(--accent) 45%, var(--border));
  color: var(--accent);
  transform: translateY(-1px);
}
.fx-week-btn:disabled { opacity: .35; cursor: not-allowed; }
.fx-week-select {
  min-width: 128px; height: 40px;
  border-radius: 12px; border: 1px solid var(--border);
  background: var(--surface); color: var(--text);
  font: inherit; font-size: 13px; font-weight: 700;
  padding: 0 12px; cursor: pointer;
}
.fx-week-select:focus {
  outline: none; border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-soft);
}
.fx-week-rail {
  display: flex; gap: 6px; overflow-x: auto;
  padding: 2px 2px 12px; margin: 0 0 8px;
  scrollbar-width: thin;
  scroll-snap-type: x proximity;
}
.fx-rail-chip {
  flex: 0 0 auto; scroll-snap-align: center;
  min-width: 38px; height: 34px; padding: 0 10px;
  border-radius: 10px; border: 1px solid transparent;
  background: color-mix(in srgb, var(--surface-2) 80%, transparent);
  color: var(--text-muted); font: inherit; font-size: 12.5px; font-weight: 800;
  cursor: pointer; transition: background var(--t), color var(--t), border-color var(--t), transform var(--t);
}
.fx-rail-chip:hover { color: var(--text); border-color: var(--border); }
.fx-rail-chip.is-active {
  color: #fff; background: var(--accent); border-color: var(--accent);
  box-shadow: 0 6px 16px rgba(220, 38, 38, .25);
  transform: translateY(-1px);
}
.fx-match-list { display: flex; flex-direction: column; gap: 16px; }
.fx-week { display: flex; flex-direction: column; gap: 18px; }
.fx-day-head {
  display: flex; align-items: center; gap: 12px;
  margin: 0 0 10px;
  font-family: var(--font-display);
  font-size: 12px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  color: var(--text-muted);
}
.fx-day-head::after {
  content: ""; flex: 1; height: 1px;
  background: linear-gradient(90deg, var(--border), transparent);
}
.fx-day-matches { display: flex; flex-direction: column; gap: 8px; }
.fx-match {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 108px minmax(0, 1fr);
  gap: 10px; align-items: center;
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: color-mix(in srgb, var(--surface) 88%, transparent);
  backdrop-filter: blur(6px);
  transition: border-color var(--t), transform var(--t), box-shadow var(--t);
  animation: fx-rise .45s var(--ease) both;
  animation-delay: calc(var(--i, 0) * 45ms);
}
.fx-match:hover {
  border-color: color-mix(in srgb, var(--accent) 28%, var(--border));
  transform: translateY(-1px);
  box-shadow: 0 10px 28px rgba(15, 23, 42, .07);
}
@keyframes fx-rise {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}
.fx-match-side {
  display: flex; align-items: center; gap: 10px; min-width: 0;
}
.fx-match-side.is-home { justify-content: flex-end; text-align: right; }
.fx-match-side.is-home .fx-crest { order: 2; }
.fx-match-side.is-away { justify-content: flex-start; text-align: left; }
.fx-crest {
  flex: 0 0 auto;
  width: 40px; height: 40px; border-radius: 12px;
  display: grid; place-items: center;
  font-family: var(--font-display);
  font-size: 12px; font-weight: 800; letter-spacing: .02em;
  color: var(--text);
  background: linear-gradient(160deg, var(--surface-2), color-mix(in srgb, var(--accent-soft) 55%, var(--surface-2)));
  border: 1px solid color-mix(in srgb, var(--border) 80%, var(--accent));
}
.fx-team {
  font-family: var(--font-display);
  font-size: 14px; font-weight: 700; line-height: 1.25;
  color: var(--text);
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.fx-match-mid {
  display: flex; flex-direction: column; align-items: center; gap: 6px;
}
.fx-scoreboard {
  min-width: 72px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 1px;
  padding: 8px 10px;
  border-radius: 12px;
  background: var(--ink);
  color: #fff;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08);
}
.fx-scoreboard.is-played {
  flex-direction: row; gap: 6px;
  font-family: var(--font-display);
  font-size: 18px; font-weight: 800; font-variant-numeric: tabular-nums;
  letter-spacing: .02em;
}
.fx-score-sep { opacity: .45; font-weight: 600; }
.fx-kick-time {
  font-family: var(--font-display);
  font-size: 15px; font-weight: 800; font-variant-numeric: tabular-nums;
  letter-spacing: .02em;
}
.fx-vs-label {
  font-size: 10px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: rgba(255,255,255,.55);
}
.fx-status {
  font-size: 10.5px; font-weight: 700; letter-spacing: .04em;
  color: var(--text-faint);
}
.fx-status.is-ft {
  color: var(--accent);
  background: var(--accent-soft);
  padding: 2px 7px; border-radius: 999px;
}
.fx-empty {
  margin: 28px 0; text-align: center;
  color: var(--text-faint); font-weight: 600;
}
[data-theme="dark"] .fx-board {
  background:
    radial-gradient(900px 420px at 8% -20%, rgba(239, 68, 68, .16), transparent 55%),
    radial-gradient(700px 360px at 100% 0%, rgba(255,255,255,.04), transparent 50%),
    linear-gradient(180deg, #141c2c 0%, var(--surface) 50%, var(--surface-2) 100%);
}
[data-theme="dark"] .fx-scoreboard { background: #070b14; }
[data-theme="dark"] .fx-match:hover { box-shadow: 0 12px 30px rgba(0,0,0,.28); }

.muted { color: var(--text-faint); }

/* ---- Pharmacies ---- */
.pharmacy-widget { position: relative; overflow: hidden; }
.pharmacy-widget::before {
  content: ""; position: absolute; inset: 0 auto auto 0; width: 100%; height: 3px;
  background: linear-gradient(90deg, var(--crimson), #f97316 55%, transparent);
}
.pharmacy-widget-head {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 14px; padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}
.pharmacy-widget-head .widget-title {
  margin: 0; padding: 0; border: 0; font-size: 13px; letter-spacing: .05em;
}
.pharmacy-widget-titles { flex: 1; min-width: 0; }
.pharmacy-sub {
  margin: 3px 0 0; font-size: 11.5px; font-weight: 600;
  color: var(--text-faint); letter-spacing: .01em;
}
.pharmacy-badge {
  flex: 0 0 auto; width: 36px; height: 36px; border-radius: 11px;
  display: grid; place-items: center;
  color: var(--crimson); background: var(--accent-soft);
  box-shadow: inset 0 0 0 1px rgba(220, 38, 38, .12);
}
.pharmacy-cal {
  flex: 0 0 auto;
  display: flex !important; flex-direction: column; align-items: center;
  min-width: 54px; border-radius: 10px; overflow: hidden;
  border: 1px solid var(--border); background: var(--surface);
  box-shadow: 0 4px 10px rgba(15, 23, 42, .04);
  line-height: 1; text-align: center;
}
.pharmacy-cal:empty { display: none !important; }
.pharmacy-cal-month {
  width: 100%; padding: 4px 8px;
  font-size: 9px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase;
  color: #fff; background: linear-gradient(145deg, #ef4444, #b91c1c);
}
.pharmacy-cal-day {
  font-family: var(--font-display); font-size: 20px; font-weight: 800;
  color: var(--text); padding: 5px 8px 2px;
}
.pharmacy-cal-year {
  font-size: 10px; font-weight: 700; color: var(--text-faint);
  padding: 0 8px 6px;
}
.pharmacy-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.pharmacy-item {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 12px;
  transition: border-color var(--t), transform var(--t), box-shadow var(--t);
}
.pharmacy-item:hover {
  border-color: rgba(220, 38, 38, .25);
  box-shadow: 0 8px 20px rgba(15, 23, 42, .05);
  transform: translateY(-1px);
}
.pharmacy-item-top { display: flex; gap: 10px; align-items: flex-start; }
.pharmacy-item-body { display: flex; flex-direction: column; gap: 4px; min-width: 0; }
.pharmacy-item strong {
  font-family: var(--font-display); font-size: 13.5px; font-weight: 700; line-height: 1.25;
}
.pharmacy-cross {
  flex: 0 0 auto; width: 26px; height: 26px; border-radius: 8px;
  display: grid; place-items: center;
  font-family: var(--font-display); font-size: 16px; font-weight: 800; line-height: 1;
  color: #fff; background: linear-gradient(145deg, #ef4444, #b91c1c);
}
.pharmacy-cross.lg { width: 34px; height: 34px; font-size: 20px; border-radius: 10px; }
.pharmacy-addr { font-size: 12px; color: var(--text-muted); line-height: 1.4; }
.pharmacy-actions { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 10px; }
.pharmacy-chip {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12px; font-weight: 700; text-decoration: none;
  border-radius: 999px; padding: 6px 10px;
  border: 1px solid var(--border); background: var(--surface);
  color: var(--text); transition: background var(--t), border-color var(--t), color var(--t);
}
.pharmacy-chip:hover { border-color: rgba(220, 38, 38, .35); color: var(--crimson); background: var(--accent-soft); }
.pharmacy-chip svg { flex: 0 0 auto; }
.pharmacy-more {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  margin-top: 14px; padding-top: 12px; border-top: 1px solid var(--border);
  font-size: 12.5px; font-weight: 700; color: var(--accent);
}
.pharmacy-more:hover { gap: 11px; }
.pharmacy-more svg { transition: transform var(--t); }
.pharmacy-more:hover svg { transform: translateX(2px); }

.pharmacy-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 14px; margin-bottom: 40px;
}
.pharmacy-card {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 18px; box-shadow: var(--shadow);
  transition: border-color var(--t), transform var(--t), box-shadow var(--t);
}
.pharmacy-card:hover {
  border-color: rgba(220, 38, 38, .22);
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(15, 23, 42, .07);
}
.pharmacy-card-top { display: flex; gap: 12px; align-items: flex-start; margin-bottom: 10px; }
.pharmacy-card h2 { font-family: var(--font-display); font-size: 16px; margin: 0 0 4px; }
.pharmacy-dist { font-size: 12px; font-weight: 700; color: var(--accent); margin: 0; }
.pharmacy-card .pharmacy-addr { margin: 0 0 4px; }

@media (prefers-reduced-motion: reduce) {
  .pharmacy-item, .pharmacy-card, .pharmacy-more { transition: none; }
}

/* ?? Son Depremler ?? */
.quake-widget { position: relative; overflow: hidden; }
.quake-widget::before {
  content: ""; position: absolute; inset: 0 auto auto 0; width: 100%; height: 3px;
  background: linear-gradient(90deg, #b45309, #dc2626 55%, #7f1d1d);
}
.quake-widget-head {
  display: flex; align-items: center; gap: 12px; margin-bottom: 14px;
}
.quake-widget-titles { flex: 1; min-width: 0; }
.quake-widget-head .widget-title { margin: 0; }
.quake-sub {
  margin: 2px 0 0; font-size: 12px; color: var(--text-muted); font-weight: 600;
}
.quake-badge {
  flex: 0 0 auto; width: 40px; height: 40px; border-radius: 12px;
  display: grid; place-items: center; color: #b45309;
  background: linear-gradient(160deg, rgba(245, 158, 11, .16), rgba(220, 38, 38, .1));
  border: 1px solid rgba(180, 83, 9, .18);
}
.quake-widget-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 8px; }
.quake-widget-item {
  display: flex; gap: 10px; align-items: flex-start;
  padding: 10px 11px; border-radius: 12px;
  background: var(--bg); border: 1px solid var(--border);
}
.quake-widget-body { min-width: 0; display: flex; flex-direction: column; gap: 2px; }
.quake-widget-body strong {
  font-size: 13px; line-height: 1.35; font-weight: 700;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.quake-widget-body span { font-size: 11.5px; color: var(--text-muted); }
.quake-mag {
  flex: 0 0 auto; min-width: 42px; height: 42px; border-radius: 11px;
  display: grid; place-items: center; font-weight: 800; font-size: 14px;
  font-variant-numeric: tabular-nums; letter-spacing: -.02em;
}
.quake-mag.level-low { background: #ecfdf5; color: #047857; }
.quake-mag.level-mid { background: #fffbeb; color: #b45309; }
.quake-mag.level-high { background: #fff7ed; color: #c2410c; }
.quake-mag.level-severe { background: #fef2f2; color: #b91c1c; box-shadow: inset 0 0 0 1px rgba(185, 28, 28, .2); }
.quake-more {
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: 14px; padding-top: 12px; border-top: 1px solid var(--border);
  font-size: 12.5px; font-weight: 700; color: var(--accent);
}
.quake-more:hover { gap: 11px; }
.quake-more svg { transition: transform var(--t); }
.quake-more:hover svg { transform: translateX(2px); }

.quake-page { padding-top: 0; }
.quake-hero {
  position: relative; overflow: hidden;
  background:
    radial-gradient(1200px 420px at 12% -10%, rgba(245, 158, 11, .18), transparent 55%),
    radial-gradient(900px 380px at 88% 0%, rgba(220, 38, 38, .14), transparent 50%),
    linear-gradient(180deg, #0f172a 0%, #1e293b 55%, var(--bg) 100%);
  color: #f8fafc;
  margin-bottom: 28px;
  padding: 28px 0 36px;
}
.quake-hero::after {
  content: ""; position: absolute; inset: auto 0 0; height: 48px;
  background: linear-gradient(180deg, transparent, var(--bg));
  pointer-events: none;
}
.quake-hero-inner { position: relative; z-index: 1; }
.quake-crumb { color: rgba(248, 250, 252, .65); margin-bottom: 14px; }
.quake-crumb a { color: #fff; }
.quake-kicker {
  display: inline-block; margin: 0 0 8px; font-size: 11px; font-weight: 800;
  letter-spacing: .14em; text-transform: uppercase; color: #fbbf24;
}
.quake-hero h1 {
  font-family: var(--font-display); font-size: clamp(28px, 4vw, 42px);
  margin: 0 0 10px; letter-spacing: -.02em; color: #fff;
}
.quake-lead {
  margin: 0; max-width: 52ch; font-size: 15px; line-height: 1.55;
  color: rgba(248, 250, 252, .78);
}
.quake-hero-copy { margin-bottom: 22px; }
.quake-stats {
  display: grid; grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px; max-width: 560px;
}
.quake-stat {
  padding: 12px 14px; border-radius: 14px;
  background: rgba(15, 23, 42, .35);
  border: 1px solid rgba(248, 250, 252, .12);
  backdrop-filter: blur(8px);
}
.quake-stat-val {
  display: block; font-size: 20px; font-weight: 800;
  font-variant-numeric: tabular-nums; letter-spacing: -.02em;
}
.quake-stat-label {
  display: block; margin-top: 2px; font-size: 11px; font-weight: 700;
  letter-spacing: .06em; text-transform: uppercase; color: rgba(248, 250, 252, .55);
}

.quake-filters {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr auto;
  gap: 12px; align-items: end;
  padding: 16px; margin-bottom: 16px;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-lg); box-shadow: var(--shadow);
}
.quake-filter { display: flex; flex-direction: column; gap: 6px; min-width: 0; }
.quake-filter label {
  font-size: 11px; font-weight: 800; letter-spacing: .06em;
  text-transform: uppercase; color: var(--text-muted);
}
.quake-filter select,
.quake-filters .standings-select {
  width: 100%;
  min-height: 42px;
  font: inherit;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--text);
  background: var(--bg-elevated, var(--bg));
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 7px 10px;
  cursor: pointer;
}
.quake-refresh {
  min-height: 42px; padding: 0 18px; border: 0; border-radius: 12px;
  background: linear-gradient(135deg, #b45309, #dc2626);
  color: #fff; font-weight: 800; font-size: 13px; cursor: pointer;
  white-space: nowrap;
}
.quake-refresh:hover { filter: brightness(1.05); }
.quake-legend {
  display: flex; flex-wrap: wrap; gap: 12px 18px;
  margin: 0 0 16px; font-size: 12px; color: var(--text-muted); font-weight: 600;
}
.quake-dot {
  display: inline-block; width: 10px; height: 10px; border-radius: 50%;
  margin-right: 6px; vertical-align: middle;
}
.quake-dot.level-low { background: #10b981; }
.quake-dot.level-mid { background: #f59e0b; }
.quake-dot.level-high { background: #ea580c; }
.quake-dot.level-severe { background: #dc2626; }

.quake-map-shell {
  margin: 0 0 22px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.quake-map-head {
  padding: 16px 18px 12px;
  border-bottom: 1px solid var(--border);
}
.quake-map-head h2 {
  margin: 0 0 4px;
  font-family: var(--font-display);
  font-size: 18px;
}
.quake-map-head p {
  margin: 0;
  font-size: 13px;
  color: var(--text-muted);
}
.quake-map-frame {
  position: relative;
  height: min(52vh, 460px);
  min-height: 280px;
  background:
    radial-gradient(ellipse at 30% 40%, rgba(245, 158, 11, .08), transparent 50%),
    #e8eef5;
  z-index: 0;
}
.quake-map-frame .leaflet-container {
  width: 100%;
  height: 100%;
  font: inherit;
  background: #e8eef5;
}
.quake-map-loading {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-size: 13px;
  font-weight: 700;
  color: var(--text-muted);
  z-index: 2;
}
.quake-popup {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  min-width: 160px;
  max-width: 240px;
}
.quake-popup-mag {
  flex: 0 0 auto;
  min-width: 40px;
  height: 40px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 14px;
}
.quake-popup-mag.level-low { background: #ecfdf5; color: #047857; }
.quake-popup-mag.level-mid { background: #fffbeb; color: #b45309; }
.quake-popup-mag.level-high { background: #fff7ed; color: #c2410c; }
.quake-popup-mag.level-severe { background: #fef2f2; color: #b91c1c; }
.quake-popup-body { min-width: 0; }
.quake-popup-place {
  margin: 0 0 4px;
  font-weight: 700;
  font-size: 13px;
  line-height: 1.35;
}
.quake-popup-meta {
  margin: 0 0 6px;
  font-size: 11.5px;
  color: #64748b;
}
.quake-popup a {
  font-size: 12px;
  font-weight: 700;
  color: var(--accent, #c41e3a);
}
.quake-tooltip {
  font-size: 12px !important;
  font-weight: 700;
  border: none !important;
  box-shadow: 0 8px 20px rgba(15, 23, 42, .16) !important;
}

.quake-list {
  display: flex; flex-direction: column; gap: 10px;
  margin-bottom: 20px;
}
.quake-row {
  display: grid; grid-template-columns: 72px 1fr auto;
  gap: 14px; align-items: center;
  padding: 14px 16px;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 16px; box-shadow: var(--shadow);
  border-left: 4px solid #10b981;
  transition: transform var(--t), border-color var(--t), box-shadow var(--t);
}
.quake-row.level-mid { border-left-color: #f59e0b; }
.quake-row.level-high { border-left-color: #ea580c; }
.quake-row.level-severe { border-left-color: #dc2626; }
.quake-row:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 26px rgba(15, 23, 42, .07);
}
.quake-mag-block { display: flex; flex-direction: column; align-items: center; gap: 4px; }
.quake-row .quake-mag { width: 54px; height: 54px; min-width: 54px; font-size: 17px; border-radius: 14px; }
.quake-mag-type {
  font-size: 10px; font-weight: 800; letter-spacing: .08em;
  text-transform: uppercase; color: var(--text-muted);
}
.quake-row-body h2 {
  margin: 0 0 4px; font-family: var(--font-display); font-size: 16px; line-height: 1.35;
}
.quake-meta { margin: 0; font-size: 12.5px; color: var(--text-muted); }
.quake-map {
  font: inherit;
  font-size: 12px; font-weight: 800; color: var(--accent);
  padding: 8px 12px; border-radius: 999px;
  border: 1px solid var(--border); background: var(--bg);
  white-space: nowrap; cursor: pointer;
  text-decoration: none;
}
.quake-map:hover { border-color: rgba(220, 38, 38, .3); background: var(--accent-soft); }
.quake-row.is-focused {
  border-color: rgba(220, 38, 38, .28);
  box-shadow: 0 12px 28px rgba(220, 38, 38, .1);
}
.quake-source {
  margin: 0 0 40px; font-size: 12.5px; color: var(--text-muted);
}
.quake-source a { font-weight: 700; color: var(--accent); }

@media (max-width: 860px) {
  .quake-filters { grid-template-columns: 1fr 1fr; }
  .quake-refresh { grid-column: 1 / -1; }
}
@media (max-width: 640px) {
  .quake-stats { grid-template-columns: 1fr; max-width: none; }
  .quake-filters { grid-template-columns: 1fr; }
  .quake-map-frame { height: 300px; min-height: 240px; }
  .quake-row { grid-template-columns: 58px 1fr; }
  .quake-map { grid-column: 2; justify-self: start; }
  .quake-row .quake-mag { width: 48px; height: 48px; min-width: 48px; font-size: 15px; }
}
@media (prefers-reduced-motion: reduce) {
  .quake-row, .quake-more { transition: none; }
}

/* ?? Vefat Edenler ?? */
.obit-widget { position: relative; overflow: hidden; }
.obit-widget::before {
  content: ""; position: absolute; inset: 0 auto auto 0; width: 100%; height: 3px;
  background: linear-gradient(90deg, #64748b, #334155 60%, #0f172a);
}
.obit-widget-head {
  display: flex; align-items: center; gap: 12px; margin-bottom: 14px;
}
.obit-widget-titles { flex: 1; min-width: 0; }
.obit-widget-head .widget-title { margin: 0; }
.obit-sub {
  margin: 2px 0 0; font-size: 12px; color: var(--text-muted); font-weight: 600;
}
.obit-badge {
  flex: 0 0 auto; width: 40px; height: 40px; border-radius: 12px;
  display: grid; place-items: center; color: #475569;
  background: linear-gradient(160deg, rgba(100, 116, 139, .14), rgba(15, 23, 42, .06));
  border: 1px solid rgba(71, 85, 105, .16);
}
.obit-widget-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 8px; }
.obit-widget-item {
  display: flex; flex-direction: column; gap: 2px;
  padding: 10px 11px; border-radius: 12px;
  background: var(--bg); border: 1px solid var(--border);
}
.obit-widget-item strong {
  font-size: 13px; line-height: 1.35; font-weight: 700;
}
.obit-widget-item span { font-size: 11.5px; color: var(--text-muted); }
.obit-more {
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: 14px; padding-top: 12px; border-top: 1px solid var(--border);
  font-size: 12.5px; font-weight: 700; color: var(--accent);
}
.obit-more:hover { gap: 11px; }
.obit-more svg { transition: transform var(--t); }
.obit-more:hover svg { transform: translateX(2px); }

.obit-page { padding-top: 0; }
.obit-hero {
  background:
    radial-gradient(900px 360px at 10% -20%, rgba(100, 116, 139, .16), transparent 55%),
    linear-gradient(180deg, #0f172a 0%, #1e293b 70%, var(--bg) 100%);
  color: #f8fafc;
  padding: 28px 0 34px;
  margin-bottom: 24px;
}
.obit-crumb { color: rgba(248, 250, 252, .65); margin-bottom: 12px; }
.obit-crumb a { color: #fff; }
.obit-kicker {
  margin: 0 0 8px; font-size: 11px; font-weight: 800;
  letter-spacing: .14em; text-transform: uppercase; color: #94a3b8;
}
.obit-hero h1 {
  font-family: var(--font-display); font-size: clamp(28px, 4vw, 40px);
  margin: 0 0 8px; color: #fff; letter-spacing: -.02em;
}
.obit-lead {
  margin: 0; max-width: 48ch; font-size: 15px; line-height: 1.55;
  color: rgba(248, 250, 252, .75);
}
.obit-filters {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr auto;
  gap: 12px;
  align-items: end;
  padding: 16px;
  margin-bottom: 16px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}
.obit-filter { display: flex; flex-direction: column; gap: 6px; min-width: 0; }
.obit-filter label {
  font-size: 11px; font-weight: 800; letter-spacing: .06em;
  text-transform: uppercase; color: var(--text-muted);
}
.obit-filter input,
.obit-filter select,
.obit-filters .standings-select {
  width: 100%;
  min-height: 42px;
  font: inherit;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--text);
  background: var(--bg-elevated, var(--bg));
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 7px 10px;
}
.obit-filter-actions {
  display: flex; gap: 8px; align-items: end; flex-wrap: wrap;
}
.obit-apply {
  min-height: 42px; padding: 0 16px; border: 0; border-radius: 12px;
  background: #0f172a; color: #fff; font-weight: 800; font-size: 13px; cursor: pointer;
}
.obit-apply:hover { filter: brightness(1.08); }
.obit-reset {
  min-height: 42px; padding: 0 14px; border-radius: 12px;
  border: 1px solid var(--border); background: var(--bg);
  color: var(--text); font-weight: 700; font-size: 13px; cursor: pointer;
}
.obit-toolbar {
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px; flex-wrap: wrap; margin-bottom: 14px;
}
.obit-updated {
  margin: 0; font-size: 12.5px; color: var(--text-muted); font-weight: 600;
}
.obit-pager {
  display: flex; flex-wrap: wrap; gap: 6px; align-items: center;
}
.obit-pager-bottom { margin: 16px 0 8px; justify-content: center; }
.obit-page-btn {
  min-width: 36px; height: 36px; padding: 0 10px;
  border-radius: 10px; border: 1px solid var(--border);
  background: var(--surface); color: var(--text);
  font: inherit; font-size: 13px; font-weight: 700; cursor: pointer;
}
.obit-page-btn:hover:not(:disabled):not(.is-active) {
  border-color: rgba(15, 23, 42, .2);
}
.obit-page-btn.is-active {
  background: #0f172a; color: #fff; border-color: #0f172a;
}
.obit-page-btn:disabled { opacity: .45; cursor: default; }
.obit-page-gap { color: var(--text-muted); font-weight: 700; padding: 0 2px; }

.obit-table-wrap {
  overflow-x: auto;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}
.obit-table {
  width: 100%; border-collapse: collapse; font-size: 14px;
}
.obit-table th {
  text-align: left; font-size: 11px; font-weight: 800;
  letter-spacing: .06em; text-transform: uppercase;
  color: var(--text-muted); padding: 14px 16px;
  border-bottom: 1px solid var(--border); background: var(--bg);
  white-space: nowrap;
}
.obit-table td {
  padding: 14px 16px; border-bottom: 1px solid var(--border);
  vertical-align: top; color: var(--text);
}
.obit-table tbody tr:last-child td { border-bottom: none; }
.obit-table tbody tr:hover td { background: rgba(15, 23, 42, .02); }
.obit-table td strong { font-weight: 700; }
.obit-source {
  margin: 18px 0 40px; font-size: 12.5px; color: var(--text-muted);
}
.obit-source a { font-weight: 700; color: var(--accent); }

@media (max-width: 900px) {
  .obit-filters { grid-template-columns: 1fr 1fr; }
  .obit-filter-actions { grid-column: 1 / -1; }
}
@media (max-width: 720px) {
  .obit-filters { grid-template-columns: 1fr; }
  .obit-table thead { display: none; }
  .obit-table, .obit-table tbody, .obit-table tr, .obit-table td { display: block; width: 100%; }
  .obit-table tr {
    padding: 12px 14px;
    border-bottom: 1px solid var(--border);
  }
  .obit-table tr:last-child { border-bottom: none; }
  .obit-table td {
    padding: 4px 0; border: 0;
  }
  .obit-table td::before {
    content: attr(data-label);
    display: block;
    font-size: 10px; font-weight: 800; letter-spacing: .06em;
    text-transform: uppercase; color: var(--text-muted); margin-bottom: 2px;
  }
  .obit-table td[colspan]::before { display: none; }
}
@media (prefers-reduced-motion: reduce) {
  .obit-more { transition: none; }
}

@media (max-width: 640px) {
  .fx-week-nav { width: 100%; justify-content: space-between; }
  .fx-week-select { flex: 1; }
}

/* ?? Hava Durumu (81 il) ?? */
.weather-page { padding-top: 0; }
.weather-hero {
  background:
    radial-gradient(900px 380px at 12% -10%, rgba(14, 165, 233, .18), transparent 55%),
    radial-gradient(700px 320px at 90% 0%, rgba(245, 158, 11, .14), transparent 50%),
    linear-gradient(180deg, #0c1929 0%, #132337 55%, var(--bg) 100%);
  color: #f8fafc;
  padding: 28px 0 36px;
  margin-bottom: 8px;
}
.weather-crumb { color: rgba(248, 250, 252, .6); margin-bottom: 14px; }
.weather-crumb a { color: rgba(248, 250, 252, .8); }
.weather-hero-grid {
  display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 24px; align-items: stretch;
}
.weather-kicker {
  margin: 0 0 8px; font-size: 11px; font-weight: 800;
  letter-spacing: .12em; text-transform: uppercase; color: #38bdf8;
}
.weather-hero h1 {
  margin: 0 0 10px; font-size: clamp(28px, 4vw, 40px); font-weight: 800;
}
.weather-lead {
  margin: 0 0 18px; color: rgba(248, 250, 252, .72); max-width: 42ch; line-height: 1.5;
}
.weather-toolbar { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; }
.weather-city-select {
  min-width: min(260px, 100%); background: rgba(255,255,255,.08) !important;
  color: #fff !important; border-color: rgba(255,255,255,.18) !important;
}
.weather-city-select option { color: #0f172a; }
.weather-refresh {
  appearance: none; border: 1px solid rgba(255,255,255,.22);
  background: rgba(255,255,255,.1); color: #fff;
  font: inherit; font-weight: 700; font-size: 13px;
  padding: 10px 16px; border-radius: 10px; cursor: pointer;
}
.weather-refresh:hover { background: rgba(255,255,255,.18); }
.weather-now {
  display: grid; grid-template-columns: auto 1fr; grid-template-rows: auto auto;
  gap: 10px 16px; align-content: center;
  padding: 22px 20px; border-radius: 18px;
  background: rgba(15, 23, 42, .35);
  border: 1px solid rgba(255,255,255,.12);
  backdrop-filter: blur(10px);
}
.weather-now-loading { grid-column: 1 / -1; color: rgba(248,250,252,.65); }
.weather-now-icon { font-size: 48px; line-height: 1; grid-row: 1 / 3; align-self: center; }
.weather-now-city { margin: 0; font-size: 15px; font-weight: 700; opacity: .85; }
.weather-now-temp {
  margin: 2px 0 0; font-size: clamp(42px, 6vw, 56px); font-weight: 800; line-height: 1;
  font-family: var(--font-display);
}
.weather-now-temp span { font-size: .45em; font-weight: 700; opacity: .75; margin-left: 2px; }
.weather-now-desc { margin: 4px 0 0; color: rgba(248,250,252,.7); font-size: 14px; }
.weather-now-meta {
  grid-column: 1 / -1; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px; margin-top: 6px; padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,.1);
}
.weather-now-meta div { display: flex; flex-direction: column; gap: 2px; }
.weather-now-meta span { font-size: 11px; color: rgba(248,250,252,.5); font-weight: 600; }
.weather-now-meta strong { font-size: 14px; font-weight: 800; }

.weather-body { display: flex; flex-direction: column; gap: 22px; padding-bottom: 40px; }
.weather-panel {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 18px 16px; box-shadow: var(--shadow);
}
.weather-panel-head { margin-bottom: 14px; }
.weather-panel-head h2 { margin: 0 0 4px; font-size: 18px; font-weight: 800; }
.weather-panel-head p { margin: 0; font-size: 13px; color: var(--text-muted); }
.weather-panel-head-row {
  display: flex; flex-wrap: wrap; gap: 12px; align-items: end; justify-content: space-between;
}
.weather-search { max-width: 240px; }

.weather-hourly {
  display: grid; grid-auto-flow: column; grid-auto-columns: minmax(72px, 1fr);
  gap: 8px; overflow-x: auto; padding-bottom: 4px;
  -webkit-overflow-scrolling: touch;
}
.weather-hour-card {
  display: flex; flex-direction: column; align-items: center; gap: 4px;
  padding: 12px 8px; border-radius: 12px; background: var(--bg-soft);
  border: 1px solid var(--border); min-width: 72px;
}
.wh-time { font-size: 12px; font-weight: 700; color: var(--text-muted); }
.wh-icon { font-size: 22px; line-height: 1; }
.wh-temp { font-size: 16px; font-weight: 800; }
.wh-precip { font-size: 11px; color: #0ea5e9; font-weight: 600; }

.weather-daily {
  display: grid; grid-template-columns: repeat(7, minmax(0, 1fr)); gap: 10px;
}
.weather-day-card {
  display: flex; flex-direction: column; gap: 6px; align-items: flex-start;
  padding: 14px 12px; border-radius: 14px;
  background: var(--bg-soft); border: 1px solid var(--border);
}
.wd-label { font-size: 13px; font-weight: 800; }
.wd-icon { font-size: 26px; line-height: 1; }
.wd-desc { font-size: 12px; color: var(--text-muted); line-height: 1.3; }
.wd-temps { font-size: 13px; color: var(--text-muted); }
.wd-temps b { color: var(--text); font-weight: 800; }

.weather-temp-legend {
  display: flex; flex-wrap: wrap; gap: 10px 14px; margin-bottom: 12px;
  font-size: 12px; color: var(--text-muted); font-weight: 600;
}
.wt-dot {
  display: inline-block; width: 10px; height: 10px; border-radius: 50%;
  margin-right: 6px; vertical-align: middle;
}
.wt-dot.cold { background: #2563eb; }
.wt-dot.cool { background: #0ea5e9; }
.wt-dot.mild { background: #10b981; }
.wt-dot.warm { background: #f59e0b; }
.wt-dot.hot { background: #dc2626; }

.weather-map-frame {
  height: 420px; min-height: 280px; border-radius: 14px; overflow: hidden;
  border: 1px solid var(--border); background: #e8eef5; position: relative;
}
.weather-map-loading {
  position: absolute; inset: 0; display: grid; place-items: center;
  color: var(--text-muted); font-weight: 600; z-index: 2;
  background: rgba(248, 250, 252, .7);
}

.weather-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 10px;
}
.weather-city-card {
  appearance: none; border: 1px solid var(--border); background: var(--bg-soft);
  border-radius: 14px; padding: 12px; text-align: left; cursor: pointer;
  display: grid; grid-template-columns: 1fr auto; gap: 4px 8px;
  color: inherit; transition: border-color .15s, transform .15s, box-shadow .15s;
}
.weather-city-card:hover {
  border-color: rgba(14, 165, 233, .4);
  transform: translateY(-1px); box-shadow: var(--shadow);
}
.weather-city-card.is-active {
  border-color: #0ea5e9;
  box-shadow: 0 0 0 3px rgba(14, 165, 233, .15);
  background: #fff;
}
.wc-name { font-size: 13.5px; font-weight: 750; grid-column: 1; }
.wc-icon { font-size: 20px; grid-column: 2; grid-row: 1 / 3; align-self: center; }
.wc-temp { font-size: 20px; font-weight: 800; font-family: var(--font-display); }
.wc-temp.cold { color: #2563eb; }
.wc-temp.cool { color: #0284c7; }
.wc-temp.mild { color: #059669; }
.wc-temp.warm { color: #d97706; }
.wc-temp.hot { color: #dc2626; }
.wc-desc { grid-column: 1 / -1; font-size: 12px; color: var(--text-faint); }

.weather-source {
  margin: 0; font-size: 12.5px; color: var(--text-muted);
}
.weather-source a { font-weight: 700; color: var(--accent); }

/* Man?et ?st? hava durumu banner */
.weather-banner {
  --wb-ink: #0f172a;
  --wb-muted: #475569;
  --wb-faint: #64748b;
  --wb-line: rgba(15, 23, 42, .08);
  --wb-sky: linear-gradient(105deg, #e8f4ff 0%, #f4f8fc 42%, #eef6fb 100%);
  --wb-accent: #0284c7;
  --wb-sun: #f59e0b;
  position: relative;
  overflow: hidden;
  margin: 0 0 16px;
  padding: 0;
  border: 1px solid color-mix(in srgb, #7dd3fc 35%, var(--border));
  border-radius: 18px;
  background: var(--wb-sky);
  box-shadow: 0 10px 28px rgba(14, 116, 144, .07);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .45s ease, transform .45s ease;
}
.weather-banner.is-below {
  margin: 16px 0 18px;
}
.weather-banner.is-ready {
  opacity: 1;
  transform: none;
}
.weather-banner[data-sky="clear"] {
  --wb-sky: linear-gradient(110deg, #fff7e0 0%, #eaf6ff 48%, #f7fbff 100%);
  --wb-accent: #d97706;
  border-color: color-mix(in srgb, #fbbf24 40%, var(--border));
}
.weather-banner[data-sky="partly"] {
  --wb-sky: linear-gradient(110deg, #e6f3ff 0%, #f5f9fc 50%, #eef4f8 100%);
}
.weather-banner[data-sky="rain"],
.weather-banner[data-sky="storm"] {
  --wb-sky: linear-gradient(110deg, #dbe7f3 0%, #e8eef5 45%, #f2f5f8 100%);
  --wb-accent: #334155;
  border-color: color-mix(in srgb, #94a3b8 40%, var(--border));
}
.weather-banner[data-sky="snow"] {
  --wb-sky: linear-gradient(110deg, #eef4ff 0%, #f7faff 55%, #f1f5f9 100%);
  --wb-accent: #3b82f6;
}
.weather-banner[data-sky="fog"] {
  --wb-sky: linear-gradient(110deg, #e8edf2 0%, #f4f6f8 100%);
  --wb-accent: #64748b;
}

[data-theme="dark"] .weather-banner {
  --wb-ink: #f1f5f9;
  --wb-muted: #94a3b8;
  --wb-faint: #64748b;
  --wb-line: rgba(148, 163, 184, .16);
  --wb-sky: linear-gradient(110deg, #0f1a2a 0%, #121826 45%, #152033 100%);
  --wb-accent: #38bdf8;
  --wb-sun: #fbbf24;
  border-color: color-mix(in srgb, #38bdf8 22%, var(--border));
  box-shadow: 0 12px 32px rgba(0, 0, 0, .35);
}
[data-theme="dark"] .weather-banner[data-sky="clear"] {
  --wb-sky: linear-gradient(110deg, #1a160c 0%, #151c28 48%, #121826 100%);
  --wb-accent: #fbbf24;
  border-color: color-mix(in srgb, #fbbf24 28%, var(--border));
}
[data-theme="dark"] .weather-banner[data-sky="partly"] {
  --wb-sky: linear-gradient(110deg, #0f1c2e 0%, #131b2a 50%, #121826 100%);
}
[data-theme="dark"] .weather-banner[data-sky="rain"],
[data-theme="dark"] .weather-banner[data-sky="storm"] {
  --wb-sky: linear-gradient(110deg, #0d1520 0%, #111827 45%, #151c28 100%);
  --wb-accent: #94a3b8;
  border-color: color-mix(in srgb, #64748b 35%, var(--border));
}
[data-theme="dark"] .weather-banner[data-sky="snow"] {
  --wb-sky: linear-gradient(110deg, #101828 0%, #141e30 55%, #121826 100%);
  --wb-accent: #60a5fa;
}
[data-theme="dark"] .weather-banner[data-sky="fog"] {
  --wb-sky: linear-gradient(110deg, #141820 0%, #171d28 100%);
  --wb-accent: #94a3b8;
}
[data-theme="dark"] .wb-glow {
  background: radial-gradient(circle, rgba(56, 189, 248, .22), transparent 68%);
}
[data-theme="dark"] .weather-banner[data-sky="clear"] .wb-glow {
  background: radial-gradient(circle, rgba(251, 191, 36, .22), transparent 68%);
}
[data-theme="dark"] .wb-drift {
  background: radial-gradient(circle, rgba(148, 163, 184, .18), transparent 70%);
}
[data-theme="dark"] .wb-icon {
  filter: drop-shadow(0 8px 18px rgba(14, 165, 233, .22));
}
[data-theme="dark"] .wb-cloud {
  fill: #334155;
  stroke: #475569;
}
[data-theme="dark"] .weather-banner[data-sky="rain"] .wb-cloud,
[data-theme="dark"] .weather-banner[data-sky="storm"] .wb-cloud {
  fill: #1e293b;
  stroke: #475569;
}
[data-theme="dark"] .wb-drops { stroke: #7dd3fc; }
[data-theme="dark"] .wb-fog { stroke: #64748b; }
[data-theme="dark"] .wb-flakes { color: #bae6fd; }
[data-theme="dark"] .wb-day {
  background: rgba(26, 34, 52, .72);
  border-color: rgba(148, 163, 184, .14);
  box-shadow: 0 4px 14px rgba(0, 0, 0, .22);
}
[data-theme="dark"] .wb-go {
  box-shadow: 0 8px 20px rgba(239, 68, 68, .28);
}
[data-theme="dark"] .wb-strip:hover .wb-go {
  box-shadow: 0 10px 24px rgba(239, 68, 68, .38);
}

.weather-banner-body { margin: 0; position: relative; z-index: 1; }

.wb-strip {
  position: relative;
  display: flex;
  align-items: center;
  gap: 22px;
  min-height: 92px;
  padding: 14px 16px 14px 18px;
  color: inherit;
  text-decoration: none;
  overflow: hidden;
}
.wb-strip:hover { color: inherit; }

.wb-glow {
  position: absolute; left: -8%; top: -70%;
  width: 220px; height: 220px; border-radius: 50%;
  background: radial-gradient(circle, rgba(56, 189, 248, .28), transparent 68%);
  pointer-events: none; filter: blur(2px);
  animation: wbPulse 6s ease-in-out infinite;
}
.weather-banner[data-sky="clear"] .wb-glow {
  background: radial-gradient(circle, rgba(251, 191, 36, .34), transparent 68%);
}
.wb-drift {
  position: absolute; border-radius: 50%; pointer-events: none;
  background: radial-gradient(circle, rgba(255,255,255,.7), transparent 70%);
  animation: wbDrift 12s ease-in-out infinite;
}
.wb-drift-a { width: 120px; height: 120px; right: 18%; top: -40%; opacity: .55; }
.wb-drift-b { width: 80px; height: 80px; right: 6%; bottom: -45%; opacity: .4; animation-duration: 16s; animation-direction: reverse; }

.wb-live {
  display: flex; align-items: center; gap: 14px;
  min-width: 0; flex: 0 1 280px;
  animation: wbRise .55s ease both;
}
.wb-icon {
  flex: 0 0 auto;
  width: 64px; height: 64px;
  display: grid; place-items: center;
  filter: drop-shadow(0 8px 14px rgba(14, 116, 144, .16));
}
.wb-svg { width: 58px; height: 58px; overflow: visible; }
.wb-sun { fill: var(--wb-sun); }
.weather-banner[data-sky="clear"] .wb-sun {
  animation: wbSpin 18s linear infinite;
  transform-box: fill-box;
  transform-origin: center;
}
.wb-rays { stroke: var(--wb-sun); fill: none; opacity: .85; animation: wbPulse 3.5s ease-in-out infinite; transform-origin: center; }
.wb-rays-sm { opacity: .7; }
.wb-cloud { fill: #e2e8f0; stroke: #cbd5e1; stroke-width: 1; animation: wbFloat 4.2s ease-in-out infinite; }
.weather-banner[data-sky="rain"] .wb-cloud,
.weather-banner[data-sky="storm"] .wb-cloud { fill: #cbd5e1; stroke: #94a3b8; }
.wb-drops { stroke: #38bdf8; fill: none; animation: wbRain .9s linear infinite; }
.wb-fog { stroke: #94a3b8; fill: none; animation: wbFog 2.8s ease-in-out infinite; }
.wb-flakes { color: #7dd3fc; animation: wbSnow 2.4s ease-in-out infinite; }
.wb-bolt { fill: #fbbf24; animation: wbFlash 2.2s ease-in-out infinite; }

.wb-copy { min-width: 0; }
.wb-kicker {
  margin: 0 0 4px;
  display: flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 700; letter-spacing: .06em;
  text-transform: uppercase; color: var(--wb-accent);
}
.wb-kicker i {
  width: 3px; height: 3px; border-radius: 50%;
  background: currentColor; opacity: .55;
}
.wb-kicker strong {
  font-weight: 800; letter-spacing: .02em;
  color: var(--wb-ink); text-transform: none; font-size: 12.5px;
}
.wb-headline {
  display: flex; align-items: baseline; gap: 10px; flex-wrap: wrap;
}
.wb-temp {
  margin: 0; font-size: 42px; font-weight: 800; line-height: .85;
  font-family: var(--font-display); letter-spacing: -.04em; color: var(--wb-ink);
}
.wb-temp span { font-size: .5em; font-weight: 700; color: var(--wb-faint); margin-left: 1px; }
.wb-desc {
  margin: 0; font-size: 14px; font-weight: 600; color: var(--wb-muted);
  max-width: 160px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}

.wb-metrics {
  display: flex; align-items: stretch;
  flex: 0 0 auto;
  border-left: 1px solid var(--wb-line);
  border-right: 1px solid var(--wb-line);
  padding: 0 4px;
  animation: wbRise .55s ease .08s both;
}
.wb-metric {
  display: flex; flex-direction: column; justify-content: center; gap: 3px;
  padding: 4px 16px; min-width: 78px;
}
.wb-metric + .wb-metric { border-left: 1px solid var(--wb-line); }
.wb-metric span {
  font-size: 10px; font-weight: 700; letter-spacing: .05em;
  text-transform: uppercase; color: var(--wb-faint);
}
.wb-metric strong {
  font-size: 15px; font-weight: 800; color: var(--wb-ink); letter-spacing: -.02em;
}
.wb-metric small {
  font-size: 10px; font-weight: 700; color: var(--wb-faint); margin-left: 2px;
}

.wb-days {
  display: flex; align-items: stretch; gap: 6px;
  flex: 1 1 auto; min-width: 0;
  justify-content: flex-end;
  animation: wbRise .55s ease .14s both;
}
.wb-day {
  flex: 1 1 0; min-width: 58px; max-width: 78px;
  display: flex; flex-direction: column; align-items: center; gap: 3px;
  padding: 8px 4px;
  border-radius: 14px;
  background: rgba(255,255,255,.55);
  border: 1px solid rgba(255,255,255,.7);
  backdrop-filter: blur(8px);
  box-shadow: 0 4px 12px rgba(15, 23, 42, .04);
  transition: transform .25s ease, background .25s ease;
  animation: wbRise .45s ease calc(.18s + var(--i, 0) * .05s) both;
}
.wb-strip:hover .wb-day { transform: translateY(-2px); }
.wb-day-label {
  font-size: 10px; font-weight: 800; letter-spacing: .04em;
  text-transform: uppercase; color: var(--wb-faint);
}
.wb-day-icon { font-size: 16px; line-height: 1; }
.wb-day-temps {
  display: flex; gap: 4px; align-items: baseline; font-size: 12px;
}
.wb-day-temps b { color: var(--wb-ink); font-weight: 800; }
.wb-day-temps i { font-style: normal; color: var(--wb-faint); font-weight: 600; }

.wb-go {
  flex: 0 0 auto;
  display: inline-flex; align-items: center; gap: 7px;
  padding: 10px 14px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--accent) 92%, #000);
  color: #fff;
  font-size: 12.5px; font-weight: 700;
  white-space: nowrap;
  box-shadow: 0 8px 18px color-mix(in srgb, var(--accent) 28%, transparent);
  transition: gap .25s ease, transform .25s ease, box-shadow .25s ease;
  animation: wbRise .55s ease .2s both;
}
.wb-strip:hover .wb-go {
  gap: 10px;
  transform: translateX(2px);
  box-shadow: 0 10px 22px color-mix(in srgb, var(--accent) 36%, transparent);
}
.wb-go svg { flex-shrink: 0; }

@keyframes wbRise {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: none; }
}
@keyframes wbFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-3px); }
}
@keyframes wbPulse {
  0%, 100% { opacity: .75; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.04); }
}
@keyframes wbSpin {
  to { transform: rotate(360deg); }
}
@keyframes wbRain {
  0% { transform: translateY(-2px); opacity: .35; }
  50% { opacity: 1; }
  100% { transform: translateY(4px); opacity: .35; }
}
@keyframes wbFog {
  0%, 100% { opacity: .45; transform: translateX(0); }
  50% { opacity: .9; transform: translateX(4px); }
}
@keyframes wbSnow {
  0%, 100% { transform: translateY(0); opacity: .7; }
  50% { transform: translateY(3px); opacity: 1; }
}
@keyframes wbFlash {
  0%, 40%, 60%, 100% { opacity: 1; }
  50% { opacity: .35; }
}
@keyframes wbDrift {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(-18px, 10px); }
}

@media (max-width: 1100px) {
  .wb-metrics { display: none; }
  .wb-live { flex: 0 1 auto; }
}
@media (max-width: 860px) {
  .wb-strip {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 12px 14px;
    padding: 14px;
    min-height: 0;
  }
  .wb-live { grid-column: 1; }
  .wb-go { grid-column: 2; align-self: center; }
  .wb-days {
    grid-column: 1 / -1;
    justify-content: stretch;
  }
  .wb-day { max-width: none; }
}
@media (max-width: 520px) {
  .weather-banner { border-radius: 14px; margin-bottom: 12px; }
  .wb-icon { width: 52px; height: 52px; }
  .wb-svg { width: 48px; height: 48px; }
  .wb-temp { font-size: 34px; }
  .wb-desc { max-width: 120px; font-size: 13px; }
  .wb-day { min-width: 0; padding: 7px 2px; border-radius: 12px; }
  .wb-go { padding: 9px 12px; font-size: 12px; }
}

@media (prefers-reduced-motion: reduce) {
  .weather-banner,
  .wb-live, .wb-metrics, .wb-days, .wb-day, .wb-go,
  .wb-sun, .wb-rays, .wb-cloud, .wb-drops, .wb-fog, .wb-flakes, .wb-bolt,
  .wb-glow, .wb-drift {
    animation: none !important;
    transition: none !important;
  }
  .weather-banner { opacity: 1; transform: none; }
}

/* Sidebar weather widget ? light tema uyumlu */
.weather-widget {
  position: relative;
  overflow: hidden;
}
.weather-widget::before {
  content: ""; position: absolute; inset: 0 auto auto 0; width: 100%; height: 3px;
  background: linear-gradient(90deg, #0ea5e9, #38bdf8 55%, transparent);
}
.weather-widget-body { margin: 0; }

.ww-hero {
  position: relative;
  overflow: hidden;
  padding: 2px 0 14px;
  color: var(--text);
  background: transparent;
}
.ww-hero-glow {
  position: absolute; right: -10%; top: -35%;
  width: 130px; height: 130px; border-radius: 50%;
  background: radial-gradient(circle, rgba(14, 165, 233, .12), transparent 70%);
  pointer-events: none;
}
.weather-widget[data-sky="clear"] .ww-hero-glow {
  background: radial-gradient(circle, rgba(251, 191, 36, .16), transparent 68%);
}
.weather-widget[data-sky="rain"] .ww-hero-glow,
.weather-widget[data-sky="storm"] .ww-hero-glow {
  background: radial-gradient(circle, rgba(100, 116, 139, .12), transparent 68%);
}
.weather-widget[data-sky="snow"] .ww-hero-glow {
  background: radial-gradient(circle, rgba(148, 163, 184, .16), transparent 68%);
}

.ww-top {
  position: relative; z-index: 1;
  display: flex; align-items: baseline; justify-content: space-between; gap: 10px;
  margin-bottom: 12px;
}
.ww-kicker {
  font-size: 11px; font-weight: 800; letter-spacing: .1em;
  text-transform: uppercase; color: #0284c7;
}
.ww-city {
  font-size: 13px; font-weight: 700; color: var(--text-muted);
  max-width: 55%; overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.ww-main {
  position: relative; z-index: 1;
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 14px;
}
.ww-glyph {
  flex: 0 0 auto;
  width: 64px; height: 64px; border-radius: 18px;
  display: grid; place-items: center;
  font-size: 34px; line-height: 1;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  animation: wwFloat 4.5s ease-in-out infinite;
}
.weather-widget[data-sky="clear"] .ww-glyph {
  background: color-mix(in srgb, #e0f2fe 70%, var(--bg-soft));
  border-color: color-mix(in srgb, #0ea5e9 22%, var(--border));
}
.weather-widget[data-sky="rain"] .ww-glyph,
.weather-widget[data-sky="storm"] .ww-glyph {
  background: color-mix(in srgb, #e2e8f0 55%, var(--bg-soft));
}
@keyframes wwFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-3px); }
}
.ww-temp {
  margin: 0; font-size: 46px; font-weight: 800; line-height: .9;
  font-family: var(--font-display); letter-spacing: -.03em; color: var(--text);
}
.ww-temp span { font-size: .55em; font-weight: 700; color: var(--text-muted); }
.ww-cond {
  margin: 6px 0 0; font-size: 14px; font-weight: 600; color: var(--text-muted);
}
.ww-stats {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 8px;
}
.ww-stat {
  padding: 10px 8px; border-radius: 12px;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  display: flex; flex-direction: column; gap: 3px; align-items: center; text-align: center;
}
.ww-stat span {
  font-size: 10px; font-weight: 700; letter-spacing: .04em;
  text-transform: uppercase; color: var(--text-faint);
}
.ww-stat strong {
  font-size: 14px; font-weight: 800; letter-spacing: -.01em; color: var(--text);
}
.ww-stat small {
  font-size: 9px; font-weight: 700; margin-left: 2px; color: var(--text-faint);
}

.ww-forecast {
  display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 6px;
  margin-top: 12px; padding-top: 12px;
  border-top: 1px solid var(--border);
}
.ww-day {
  display: flex; flex-direction: column; align-items: center; gap: 4px;
  padding: 10px 4px; border-radius: 12px;
  background: var(--bg-soft); border: 1px solid var(--border);
}
.ww-day-label {
  font-size: 10.5px; font-weight: 800; color: var(--text-faint);
  text-transform: uppercase; letter-spacing: .03em;
}
.ww-day-icon { font-size: 18px; line-height: 1; }
.ww-day-temps {
  display: flex; gap: 4px; align-items: baseline; font-size: 12px;
}
.ww-day-temps b { color: var(--text); font-weight: 800; }
.ww-day-temps i { font-style: normal; color: var(--text-faint); font-weight: 600; }

.ww-more {
  display: flex; align-items: center; justify-content: space-between;
  margin-top: 12px; padding-top: 12px;
  border-top: 1px solid var(--border);
  color: var(--accent); font-size: 12.5px; font-weight: 700;
  transition: gap var(--t), color var(--t);
  gap: 8px;
}
.ww-more:hover { gap: 11px; }
.ww-more svg { transition: transform var(--t); flex-shrink: 0; }
.ww-more:hover svg { transform: translateX(2px); }

@media (prefers-reduced-motion: reduce) {
  .ww-glyph { animation: none; }
  .ww-more { transition: none; }
}

@media (max-width: 900px) {
  .weather-hero-grid { grid-template-columns: 1fr; }
  .weather-daily { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .weather-now-meta { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 640px) {
  .weather-map-frame { height: 300px; }
  .weather-daily { grid-template-columns: 1fr; }
  .weather-search { max-width: none; width: 100%; }
  .weather-panel-head-row { align-items: stretch; }
}

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}
[hidden] { display: none !important; }

/* ?? Reklam alanlar? ?? */
.ad-slot {
  margin: 16px 0;
  width: 100%;
}

/* Anasayfa man?et ?st? ? men? ile reklam aras?n? s?k? tut */
.ad-slot[data-ad-slot="home_manset_top"] {
  margin: 0 0 12px;
}
.page-wrap:has([data-ad-slot="home_manset_top"]) {
  padding-top: 10px;
}
.page-wrap:has([data-weather-banner]:not([hidden]) + .ad-slot[data-ad-slot="home_manset_top"]),
.page-wrap:has([data-weather-banner]:not([hidden]) ~ .ad-slot[data-ad-slot="home_manset_top"]) {
  padding-top: 14px;
}
.ad-slot[data-ad-slot="home_manset_below"] {
  margin: 12px 0 16px;
}
.ad-slot-frame {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: 100%;
}
.ad-slot-inner {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 12px;
}
.ad-unit {
  display: block;
  width: 100%;
  max-width: 100%;
}
.ad-unit.ad-image {
  overflow: hidden;
  border-radius: 10px;
  background: var(--bg-soft);
  position: relative;
}
.ad-unit img,
.ad-unit .ad-img {
  width: 100%;
  height: auto;
  display: block;
}
/* Only one creative visible: hide dark + mobile by default */
.ad-unit.ad-image .ad-img-dark,
.ad-unit.ad-image .ad-img-mobile {
  display: none !important;
}
[data-theme="dark"] .ad-unit.ad-image.has-dark .ad-img-light.ad-img-desktop {
  display: none !important;
}
[data-theme="dark"] .ad-unit.ad-image.has-dark .ad-img-dark.ad-img-desktop {
  display: block !important;
}
.ad-code {
  width: 100%;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 50px;
}
.ad-code iframe,
.ad-code ins {
  max-width: 100%;
}

/* Yatay ?eritler ? banner?? bozmadan s??d?r */
.ad-leaderboard .ad-unit.ad-image img {
  width: 100%;
  height: auto;
  max-height: 120px;
  object-fit: contain;
  object-position: center;
  background: var(--bg-soft);
}
.ad-fluid .ad-unit.ad-image img {
  width: 100%;
  height: auto;
  max-height: 140px;
  object-fit: contain;
  object-position: center;
  background: var(--bg-soft);
}

/* Yan s?tun ? kutu geni?li?ini doldurur */
.ad-sidebar {
  margin: 0 0 16px;
}
.ad-sidebar .ad-unit.ad-image {
  border-radius: 12px;
  border: 1px solid var(--border);
}
.ad-sidebar .ad-unit.ad-image img {
  width: 100%;
  height: auto;
  max-height: 600px;
  object-fit: cover;
  object-position: center;
  aspect-ratio: 1 / 1;
}

.ad-slot[data-ad-slot="global_header"],
.ad-slot[data-ad-slot="global_footer"] {
  margin: 0;
  padding: 14px 0;
  background: color-mix(in srgb, var(--bg-soft) 70%, transparent);
  border-bottom: 1px solid var(--border);
}
.ad-slot[data-ad-slot="global_footer"] {
  border-bottom: 0;
  border-top: 1px solid var(--border);
  margin-top: 8px;
}
.ad-slot[data-ad-slot="global_header"] .ad-slot-frame,
.ad-slot[data-ad-slot="global_footer"] .ad-slot-frame {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 18px;
  box-sizing: border-box;
}

/* Anasayfa man?et ?st?/alt? */
.ad-slot[data-ad-slot="home_manset_top"] .ad-unit.ad-image img,
.ad-slot[data-ad-slot="home_manset_below"] .ad-unit.ad-image img {
  max-height: 140px;
  object-fit: contain;
  background: var(--bg-soft);
}

[data-theme="dark"] .ad-slot[data-ad-slot="global_header"],
[data-theme="dark"] .ad-slot[data-ad-slot="global_footer"] {
  background: rgba(15, 23, 42, .55);
}

@media (max-width: 720px) {
  /* Mobil ?zel g?rsel varsa masa?st? banner gizlenir */
  .ad-unit.ad-image.has-mobile .ad-img-desktop { display: none !important; }
  .ad-unit.ad-image.has-mobile .ad-img-mobile.ad-img-light { display: block !important; }
  .ad-unit.ad-image.has-mobile .ad-img-mobile.ad-img-dark { display: none !important; }
  [data-theme="dark"] .ad-unit.ad-image.has-mobile.has-mobile-dark .ad-img-desktop { display: none !important; }
  [data-theme="dark"] .ad-unit.ad-image.has-mobile.has-mobile-dark .ad-img-mobile.ad-img-light { display: none !important; }
  [data-theme="dark"] .ad-unit.ad-image.has-mobile.has-mobile-dark .ad-img-mobile.ad-img-dark { display: block !important; }
  /* Mobil light var, dark mobile yok: masa?st? dark?a d?? */
  [data-theme="dark"] .ad-unit.ad-image.has-mobile.has-dark:not(.has-mobile-dark) .ad-img-mobile { display: none !important; }
  [data-theme="dark"] .ad-unit.ad-image.has-mobile.has-dark:not(.has-mobile-dark) .ad-img-light.ad-img-desktop { display: none !important; }
  [data-theme="dark"] .ad-unit.ad-image.has-mobile.has-dark:not(.has-mobile-dark) .ad-img-dark.ad-img-desktop { display: block !important; }

  .ad-leaderboard .ad-unit.ad-image.has-mobile .ad-img-mobile,
  .ad-fluid .ad-unit.ad-image.has-mobile .ad-img-mobile,
  .ad-slot[data-ad-slot="home_manset_top"] .ad-unit.ad-image.has-mobile .ad-img-mobile,
  .ad-slot[data-ad-slot="home_manset_below"] .ad-unit.ad-image.has-mobile .ad-img-mobile {
    max-height: 160px;
    object-fit: contain;
    object-position: center;
    border-radius: 10px;
  }

  /* Mobil g?rsel yoksa mevcut banner biraz daha y?ksek olsun */
  .ad-leaderboard .ad-unit.ad-image:not(.has-mobile) img,
  .ad-fluid .ad-unit.ad-image:not(.has-mobile) img {
    aspect-ratio: auto;
    max-height: 120px;
    object-fit: contain;
    object-position: center;
    background: var(--bg-soft);
    border-radius: 8px;
  }
  .ad-sidebar .ad-unit.ad-image img {
    aspect-ratio: 16 / 9;
    max-height: 220px;
  }
  .ad-slot[data-ad-slot="global_header"] .ad-slot-frame,
  .ad-slot[data-ad-slot="global_footer"] .ad-slot-frame {
    padding: 0 14px;
  }
}

/* ?? G?nl?k gazeteler (Gazeteoku kapaklar?) ?? */
.newspapers-widget-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 10px;
}
.newspapers-widget-head .widget-title { margin: 0; }
.newspapers-widget-all {
  font-size: 12.5px;
  font-weight: 700;
  color: var(--accent);
  text-decoration: none;
}
.newspapers-grid {
  display: grid;
  gap: 12px;
}
.newspapers-grid.is-sidebar {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.newspapers-grid.is-page {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin: 8px 0 40px;
}
@media (min-width: 640px) {
  .newspapers-grid.is-page { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (min-width: 980px) {
  .newspapers-grid.is-page { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; }
}
.newspaper-card {
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: inherit;
  text-decoration: none;
  min-width: 0;
}
.newspaper-card-cover {
  display: block;
  overflow: hidden;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: var(--bg-soft);
  box-shadow: var(--shadow);
  aspect-ratio: 230 / 336;
}
.newspaper-card-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .25s ease;
}
.newspaper-card:hover .newspaper-card-cover img {
  transform: scale(1.03);
}
.newspaper-card-meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}
.newspaper-card-meta strong {
  font-size: 12.5px;
  font-weight: 800;
  letter-spacing: -.01em;
  line-height: 1.25;
  color: var(--text);
}
.newspapers-grid.is-page .newspaper-card-meta strong {
  font-size: 14px;
}
.newspaper-card-meta small {
  font-size: 11px;
  font-weight: 600;
  color: var(--text-faint);
}

/* Alt banner ? yatay geni? ?erit */
.newspapers-banner {
  margin: 28px 0 8px;
  padding: 18px 18px 14px;
  border-radius: 18px;
  border: 1px solid var(--border);
  background:
    radial-gradient(90% 120% at 0% 0%, color-mix(in srgb, var(--accent) 10%, transparent), transparent 55%),
    var(--surface);
  box-shadow: var(--shadow);
}
.newspapers-banner-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}
.newspapers-banner-kicker {
  display: block;
  margin: 0 0 4px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--accent);
}
.newspapers-banner-title {
  margin: 0;
  font-size: clamp(22px, 3vw, 30px);
  letter-spacing: -.03em;
}
.newspapers-banner-date {
  margin: 4px 0 0;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-faint);
}
.newspapers-banner-track {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  padding: 4px 2px 10px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}
.newspapers-banner-track::-webkit-scrollbar {
  height: 8px;
}
.newspapers-banner-track::-webkit-scrollbar-thumb {
  background: color-mix(in srgb, var(--accent) 35%, var(--border));
  border-radius: 999px;
}
.newspaper-card.is-banner {
  flex: 0 0 auto;
  width: 132px;
  scroll-snap-align: start;
}
@media (min-width: 720px) {
  .newspaper-card.is-banner { width: 148px; }
}
.newspaper-card.is-banner .newspaper-card-meta strong {
  font-size: 12px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
[data-theme="dark"] .newspapers-banner {
  background:
    radial-gradient(90% 120% at 0% 0%, rgba(239, 68, 68, .12), transparent 55%),
    var(--surface);
}

.newspaper-lightbox {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: grid;
  place-items: center;
  padding: 12px;
  background: rgba(8, 10, 14, .88);
  backdrop-filter: blur(6px);
}
.newspaper-lightbox[hidden] { display: none !important; }
.newspaper-lightbox-panel {
  width: min(960px, 96vw);
  height: min(92vh, 980px);
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-height: 0;
}
.newspaper-lightbox-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}
.newspaper-lightbox-cap {
  margin: 0;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  min-width: 0;
}
.newspaper-lightbox-actions {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-left: auto;
}
.newspaper-zoom-btn,
.newspaper-lightbox-close {
  min-width: 36px;
  height: 34px;
  padding: 0 10px;
  border: 0;
  border-radius: 10px;
  background: rgba(255,255,255,.92);
  color: #111;
  font-size: 15px;
  font-weight: 800;
  line-height: 1;
  cursor: pointer;
  box-shadow: var(--shadow);
}
.newspaper-zoom-btn:disabled {
  opacity: .85;
  cursor: default;
  font-variant-numeric: tabular-nums;
  font-size: 12px;
  font-weight: 700;
}
.newspaper-lightbox-close {
  font-size: 22px;
  min-width: 34px;
}
.newspaper-lightbox-stage {
  position: relative;
  flex: 1;
  min-height: 0;
  overflow: hidden;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.12);
  background: #0b0d10;
  touch-action: none;
  cursor: zoom-in;
  user-select: none;
}
.newspaper-lightbox-stage.is-zoomed { cursor: grab; }
.newspaper-lightbox-stage.is-dragging { cursor: grabbing; }
.newspaper-lightbox-stage img {
  position: absolute;
  inset: 0;
  margin: auto;
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  transform-origin: center center;
  will-change: transform;
  pointer-events: none;
}
.newspaper-lightbox-hint {
  margin: 0;
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,.62);
}
@media (max-width: 640px) {
  .newspaper-lightbox-panel { width: 100%; height: 94vh; }
  .newspaper-lightbox-hint { display: none; }
}
@media (prefers-reduced-motion: reduce) {
  .newspaper-card:hover .newspaper-card-cover img { transform: none; }
}

/* ?? K??e yazarlar? sidebar widget ?? */
.columnists-widget-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 12px;
}
.columnists-widget-head .widget-title {
  margin: 0;
}
.columnists-widget-all {
  font-size: 12.5px;
  font-weight: 700;
  color: var(--accent);
  text-decoration: none;
}
.columnists-widget-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.columnists-widget-item {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
}
.columnists-widget-item:last-child {
  border-bottom: none;
  padding-bottom: 2px;
}
.columnists-widget-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  overflow: hidden;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, color-mix(in srgb, var(--accent) 85%, #111), #7f1d1d);
  color: #fff;
  text-decoration: none;
  flex: 0 0 auto;
}
.columnists-widget-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.columnists-widget-avatar .columnist-initials {
  font-size: 13px;
}
.columnists-widget-copy {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.columnists-widget-name {
  font-size: 12px;
  font-weight: 800;
  color: var(--accent);
  text-decoration: none;
  width: fit-content;
}
.columnists-widget-name:hover { text-decoration: underline; }
.columnists-widget-title {
  font-size: 13.5px;
  font-weight: 700;
  line-height: 1.35;
  color: var(--text);
  text-decoration: none;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.columnists-widget-title:hover { color: var(--accent); }
.columnists-widget-more {
  display: inline-flex;
  margin-top: 10px;
  font-size: 13px;
  font-weight: 700;
  color: var(--accent);
  text-decoration: none;
}
.column-inline-widget {
  max-width: 680px;
  margin: 28px auto 8px;
}
.column-inline-widget .columnists-widget {
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 16px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

/* ?? K??e yazarlar? ?? */
.columnists-section .section-title {
  align-items: flex-end;
}
.columnists-more-links {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.columnists-kicker {
  display: block;
  margin: 0 0 4px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--accent);
}

/* Ana sayfa: gazete tarz? yazar sat?rlar? (H?rriyet / S?zc?) */
.columnists-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: var(--surface);
  overflow: hidden;
  box-shadow: var(--shadow);
}
@media (min-width: 900px) {
  .columnists-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .columnists-list .columnist-row:nth-child(odd) {
    border-right: 1px solid var(--border);
  }
  .columnists-list .columnist-row:nth-last-child(1):nth-child(odd) {
    grid-column: 1 / -1;
    border-right: none;
  }
}
.columnist-row {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  border-bottom: 1px solid var(--border);
  min-width: 0;
  transition: background .2s ease;
}
.columnists-list .columnist-row:last-child {
  border-bottom: none;
}
@media (min-width: 900px) {
  .columnists-list .columnist-row:nth-last-child(2):nth-child(odd) {
    border-bottom: none;
  }
  .columnists-list .columnist-row:nth-last-child(2):nth-child(even) {
    border-bottom: none;
  }
}
.columnist-row:hover {
  background: color-mix(in srgb, var(--accent) 5%, var(--surface));
}
.columnist-row-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  overflow: hidden;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  background: linear-gradient(145deg, color-mix(in srgb, var(--accent) 85%, #111), #7f1d1d);
  color: #fff;
  text-decoration: none;
  box-shadow: 0 0 0 2px color-mix(in srgb, var(--accent) 14%, transparent);
}
.columnist-row-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.columnist-row-main {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.columnist-row-name {
  font-size: 12.5px;
  font-weight: 800;
  letter-spacing: .02em;
  color: var(--accent);
  text-decoration: none;
  width: fit-content;
}
.columnist-row-name:hover {
  text-decoration: underline;
}
.columnist-row-title {
  font-family: var(--font-display);
  font-size: clamp(15px, 1.6vw, 17px);
  font-weight: 800;
  letter-spacing: -.02em;
  line-height: 1.3;
  color: var(--text);
  text-decoration: none;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.columnist-row-title:hover {
  color: var(--accent);
}
.columnist-row-empty {
  font-size: 14px;
  color: var(--text-faint);
}
.columnist-row-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
  flex: 0 0 auto;
  text-decoration: none;
  color: var(--text-faint);
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
}
.columnist-row-arrow {
  color: var(--accent);
  font-size: 14px;
  line-height: 1;
  transition: transform .2s ease;
}
.columnist-row:hover .columnist-row-arrow {
  transform: translateX(3px);
}

.columnists-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
@media (min-width: 900px) {
  .columnists-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}
.columnists-grid-page {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}
@media (min-width: 640px) {
  .columnists-grid-page { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (min-width: 980px) {
  .columnists-grid-page { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

.columnist-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0;
  border-radius: 18px;
  border: 1px solid var(--border);
  background:
    radial-gradient(120% 80% at 0% 0%, color-mix(in srgb, var(--accent) 10%, transparent), transparent 55%),
    var(--surface);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease);
}
.columnist-card:hover {
  transform: translateY(-3px);
  border-color: color-mix(in srgb, var(--accent) 28%, var(--border));
  box-shadow: var(--shadow-lg);
}
.columnist-card-link {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px 16px 12px;
  color: inherit;
  text-decoration: none;
  min-width: 0;
}
.columnist-avatar {
  flex: 0 0 auto;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  overflow: hidden;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, color-mix(in srgb, var(--accent) 85%, #111), #7f1d1d);
  color: #fff;
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent) 18%, transparent);
}
.columnist-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.columnist-initials {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 800;
  letter-spacing: .02em;
}
.columnist-body {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.columnist-role {
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--text-faint);
}
.columnist-name {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 800;
  letter-spacing: -.02em;
  color: var(--text);
  line-height: 1.2;
}
.columnist-bio {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.45;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.columnist-count {
  font-size: 12px;
  font-weight: 700;
  color: var(--text-faint);
  margin-top: 2px;
}
.columnist-latest {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: auto;
  padding: 12px 16px 14px;
  border-top: 1px solid var(--border);
  background: color-mix(in srgb, var(--bg-soft) 70%, transparent);
  text-decoration: none;
  color: inherit;
  transition: background .2s ease;
}
.columnist-latest:hover {
  background: color-mix(in srgb, var(--accent) 8%, var(--bg-soft));
}
.columnist-latest-label {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--accent);
}
.columnist-latest-title {
  font-size: 13.5px;
  font-weight: 700;
  line-height: 1.35;
  color: var(--text);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.columnists-page-head {
  margin: 8px 0 22px;
}
.columnists-page-head h1 {
  margin: 0 0 8px;
  font-size: clamp(28px, 4vw, 40px);
}
.columnists-page-lead {
  margin: 0;
  max-width: 42rem;
  color: var(--text-muted);
  font-size: 16px;
}

.author-profile {
  margin: 8px 0 28px;
  padding: 22px;
  border-radius: 22px;
  border: 1px solid var(--border);
  background:
    radial-gradient(90% 120% at 0% 0%, color-mix(in srgb, var(--accent) 14%, transparent), transparent 50%),
    var(--surface);
  box-shadow: var(--shadow);
}
.author-profile-inner {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 14px;
}
.author-profile-avatar {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  overflow: hidden;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  background: linear-gradient(145deg, color-mix(in srgb, var(--accent) 85%, #111), #7f1d1d);
  color: #fff;
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--accent) 16%, transparent);
}
.author-profile-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.author-profile-avatar .columnist-initials { font-size: 28px; }
.author-profile-copy { min-width: 0; }
.author-profile-copy h1 {
  margin: 0 0 8px;
  font-size: clamp(26px, 3.5vw, 36px);
}
.author-profile-bio {
  margin: 0 0 8px;
  color: var(--text-muted);
  max-width: 40rem;
  line-height: 1.55;
}
.author-profile-meta {
  margin: 0;
  font-size: 13px;
  font-weight: 700;
  color: var(--text-faint);
}
.author-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 22px;
  padding: 6px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: var(--surface);
}
.author-tab {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 14px;
  border-radius: 10px;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--text-muted);
  text-decoration: none;
  transition: background .2s ease, color .2s ease;
}
.author-tab span {
  display: inline-flex;
  min-width: 1.5em;
  justify-content: center;
  padding: 1px 7px;
  border-radius: 999px;
  font-size: 11.5px;
  background: var(--bg-soft);
  color: var(--text-faint);
}
.author-tab:hover {
  color: var(--text);
  background: color-mix(in srgb, var(--accent) 6%, transparent);
}
.author-tab.is-active {
  color: #fff;
  background: var(--accent);
}
.author-tab.is-active span {
  background: rgba(255,255,255,.22);
  color: #fff;
}
.author-section {
  margin-bottom: 28px;
}
.author-section .section-title {
  margin-bottom: 14px;
}
.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.byline-author a {
  color: inherit;
  text-decoration: none;
}
.byline-author a:hover strong { color: var(--accent); }

@media (max-width: 640px) {
  .author-profile-inner { flex-direction: column; align-items: flex-start; }
  .columnists-grid { grid-template-columns: 1fr; }
  .columnist-row {
    grid-template-columns: auto minmax(0, 1fr);
    gap: 12px;
  }
  .columnist-row-meta {
    display: none;
  }
  .columnist-row-avatar {
    width: 46px;
    height: 46px;
  }
}
[data-theme="dark"] .columnists-list,
[data-theme="dark"] .columnist-card {
  background:
    radial-gradient(120% 80% at 0% 0%, rgba(239, 68, 68, .08), transparent 55%),
    var(--surface);
}
[data-theme="dark"] .columnist-row:hover {
  background: color-mix(in srgb, var(--accent) 8%, var(--surface));
}
[data-theme="dark"] .author-profile {
  background:
    radial-gradient(90% 120% at 0% 0%, rgba(239, 68, 68, .16), transparent 50%),
    var(--surface);
}
@media (prefers-reduced-motion: reduce) {
  .columnist-card { transition: none; }
  .columnist-card:hover { transform: none; }
  .columnist-row:hover .columnist-row-arrow { transform: none; }
}

/* K??e yaz?s? rozeti & detay */
.column-yazisi-badge {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .08em;
  padding: 5px 9px;
  border-radius: var(--radius-sm);
  background: #0f172a;
  color: #fff;
}
[data-theme="dark"] .column-yazisi-badge {
  background: #e2e8f0;
  color: #0f172a;
}
.column-yazisi-badge-corner {
  position: absolute;
  left: 10px;
  top: 10px;
  z-index: 2;
}
.news-thumb { position: relative; }

/* ?? K??e yaz?s? okuma sayfas? ?? */
.page-article--column {
  background:
    radial-gradient(1200px 500px at 10% -10%, color-mix(in srgb, var(--accent) 10%, transparent), transparent 60%),
    radial-gradient(900px 420px at 90% 0%, rgba(14, 165, 233, .08), transparent 55%),
    var(--bg);
}
.column-read {
  position: relative;
  overflow: clip;
}
.column-read-glow {
  pointer-events: none;
  position: absolute;
  inset: 0 0 auto 0;
  height: 420px;
  background:
    linear-gradient(180deg, color-mix(in srgb, var(--surface) 70%, transparent), transparent);
}
.column-article {
  position: relative;
  z-index: 1;
  max-width: none;
  margin: 0 auto 48px;
}
.column-read-top {
  padding-top: 18px;
}
.column-article-head {
  margin: 8px 0 8px;
  padding-bottom: 8px;
}
.column-head-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
}
.column-read-title {
  margin: 0 0 14px;
  max-width: none;
  width: 100%;
  font-size: clamp(34px, 5.5vw, 56px);
  font-weight: 800;
  letter-spacing: -.04em;
  line-height: 1.08;
  color: var(--text);
}
.column-read-dek {
  max-width: none;
  width: 100%;
  margin: 0 0 22px;
  font-size: clamp(17px, 2.2vw, 20px);
  line-height: 1.55;
  color: var(--text-muted);
  font-weight: 500;
}
.column-toolbar {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 8px;
}
.column-author-card {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0;
  padding: 12px 14px;
  border-radius: 18px;
  border: 1px solid var(--border);
  background: color-mix(in srgb, var(--surface) 88%, transparent);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow);
  min-width: min(100%, 320px);
  flex: 1 1 280px;
}
.column-listen {
  margin: 0 !important;
  align-self: center;
  flex: 0 0 auto;
  box-shadow: 0 10px 24px color-mix(in srgb, var(--accent) 18%, transparent);
}
.column-author-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  overflow: hidden;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  background: linear-gradient(145deg, color-mix(in srgb, var(--accent) 85%, #111), #7f1d1d);
  color: #fff;
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent) 16%, transparent);
}
.column-author-avatar.lg {
  width: 72px;
  height: 72px;
}
.column-author-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.column-author-meta { min-width: 0; flex: 1; }
.column-author-name {
  display: block;
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 800;
  color: var(--text);
  text-decoration: none;
  margin-top: 2px;
}
.column-author-name:hover { color: var(--accent); }
.column-author-dates {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 4px;
  font-size: 13px;
  color: var(--text-faint);
  font-weight: 600;
}

.column-read-hero {
  margin: 22px 0 8px;
}
.column-read-hero-frame {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid var(--border);
  background: var(--bg-soft);
  box-shadow: var(--shadow-lg);
  max-height: 460px;
}
.column-read-hero-frame img {
  width: 100%;
  height: min(52vw, 460px);
  object-fit: cover;
  display: block;
}
.column-read-hero-frame figcaption {
  padding: 10px 14px 12px;
  font-size: 13px;
  color: var(--text-muted);
  background: var(--surface);
  border-top: 1px solid var(--border);
}

.column-read-body {
  max-width: 680px;
  margin: 28px auto 0;
}
.column-read-body .article-body-wrap {
  margin: 0;
}
.column-read-body .ad-slot {
  margin: 0 0 22px;
}
.page-article--column .article-body {
  font-size: 18.5px;
  line-height: 1.8;
  color: var(--text);
}
.page-article--column .article-body > p:first-of-type::first-letter {
  float: left;
  font-family: var(--font-display);
  font-size: 3.4em;
  font-weight: 800;
  line-height: .82;
  padding: 8px 10px 0 0;
  color: var(--accent);
}
.page-article--column .article-body p {
  margin: 0 0 1.15em;
}
.page-article--column .article-body h2,
.page-article--column .article-body h3 {
  margin: 1.6em 0 .55em;
  letter-spacing: -.02em;
}
.page-article--column .article-body blockquote {
  margin: 1.4em 0;
  padding: 14px 18px;
  border-left: 3px solid var(--accent);
  background: color-mix(in srgb, var(--accent) 6%, var(--surface));
  border-radius: 0 14px 14px 0;
  font-style: italic;
  color: var(--text-muted);
}

.column-author-footer {
  max-width: 680px;
  margin: 36px auto 8px;
  padding: 22px;
  border-radius: 20px;
  border: 1px solid var(--border);
  background:
    radial-gradient(120% 100% at 0% 0%, color-mix(in srgb, var(--accent) 12%, transparent), transparent 55%),
    var(--surface);
  box-shadow: var(--shadow);
}
.column-author-footer-inner {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.column-author-footer p {
  margin: 8px 0 10px;
  color: var(--text-muted);
  line-height: 1.55;
}
.column-author-more {
  display: inline-flex;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--accent);
  text-decoration: none;
}
.column-author-more:hover { gap: 4px; }

.page-article--column .related-section,
.page-article--column .article-comments {
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

[data-theme="dark"] .page-article--column {
  background:
    radial-gradient(1100px 480px at 8% -8%, rgba(239, 68, 68, .14), transparent 58%),
    radial-gradient(800px 380px at 92% 0%, rgba(56, 189, 248, .08), transparent 55%),
    var(--bg);
}
[data-theme="dark"] .column-author-card,
[data-theme="dark"] .column-author-footer {
  background:
    radial-gradient(120% 100% at 0% 0%, rgba(239, 68, 68, .12), transparent 55%),
    var(--surface);
}

@media (max-width: 720px) {
  .column-toolbar { flex-direction: column; align-items: stretch; }
  .column-listen { width: 100%; justify-content: center; }
  .column-head-row { flex-direction: column; align-items: flex-start; }
  .page-article--column .article-body { font-size: 17px; }
  .column-read-hero-frame img { height: 220px; }
}
@media (prefers-reduced-motion: reduce) {
  .column-listen { box-shadow: none; }
}

/* ?? ?ye paneli ?? */
.member-auth-page { padding: 32px 0 56px; }
.member-auth-card {
  max-width: 440px; margin: 0 auto;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 22px 22px 26px;
  box-shadow: var(--shadow);
}
.member-auth-tabs {
  display: grid; grid-template-columns: 1fr 1fr; gap: 6px;
  margin-bottom: 18px; padding: 4px; border-radius: 12px;
  background: var(--surface-2);
}
.member-auth-tabs button {
  appearance: none; border: 0; background: transparent; cursor: pointer;
  font: inherit; font-weight: 700; font-size: 13px; padding: 10px;
  border-radius: 10px; color: var(--text-muted);
}
.member-auth-tabs button.is-active {
  background: var(--surface); color: var(--text);
  box-shadow: 0 1px 3px rgba(15,23,42,.08);
}
.member-auth-form h1 {
  margin: 0 0 6px; font-family: var(--font-display);
  font-size: 1.45rem; font-weight: 800;
}
.member-auth-lead { margin: 0 0 16px; color: var(--text-muted); font-size: 14px; }
.member-auth-form label {
  display: flex; flex-direction: column; gap: 6px;
  font-size: 12px; font-weight: 700; color: var(--text-muted);
  margin-bottom: 12px;
}
.member-auth-form .btn { width: 100%; margin-top: 6px; }
.member-auth-error { color: var(--down); font-size: 13px; font-weight: 600; margin: 0 0 8px; }

.member-dash-page { padding: 24px 0 56px; }
.member-dash-head {
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  margin-bottom: 22px;
}
.member-kicker {
  margin: 0 0 4px; font-size: 11px; font-weight: 800; letter-spacing: .12em;
  text-transform: uppercase; color: var(--accent);
}
.member-dash-head h1 {
  margin: 0; font-family: var(--font-display); font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 800;
}
.member-dash-head p { margin: 6px 0 0; color: var(--text-muted); }
.member-dash-actions { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; }
.member-badge {
  display: inline-grid; place-items: center;
  min-width: 18px; height: 18px; padding: 0 5px; margin-left: 4px;
  border-radius: 999px; background: var(--accent); color: #fff;
  font-size: 10px; font-weight: 800;
}
.member-prefs, .member-feed {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 14px 16px; margin-bottom: 16px;
  box-shadow: var(--shadow);
}
.member-prefs.is-collapsed { padding: 10px 14px; }
.member-prefs-summary {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
}
.member-prefs-summary-text {
  display: flex; flex-direction: column; gap: 2px; min-width: 0;
}
.member-prefs-summary-text strong {
  font-size: 13px; font-weight: 800; letter-spacing: -.01em;
}
.member-prefs-summary-text span {
  font-size: 12.5px; color: var(--text-muted); line-height: 1.35;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.member-prefs-editor {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--border);
}
.member-prefs-tabs {
  display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 10px;
}
.member-prefs-tabs button {
  appearance: none; border: 1px solid var(--border); background: var(--surface-2);
  color: var(--text-muted); font: inherit; font-size: 12.5px; font-weight: 700;
  padding: 7px 12px; border-radius: 999px; cursor: pointer;
}
.member-prefs-tabs button.is-active {
  color: var(--accent);
  border-color: color-mix(in srgb, var(--accent) 40%, var(--border));
  background: var(--accent-soft);
}
.member-pref-panel { margin-bottom: 8px; }
.member-pref-panel[hidden] { display: none !important; }
.member-prefs-actions {
  display: flex; align-items: center; justify-content: space-between; gap: 10px;
  margin-top: 8px; flex-wrap: wrap;
}
.member-prefs-actions-btns { display: flex; gap: 8px; margin-left: auto; }
.member-prefs-head, .member-feed-head {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  margin-bottom: 8px;
}
.member-prefs-head h2, .member-feed-head h2 {
  margin: 0; font-family: var(--font-display); font-size: 1.1rem; font-weight: 800;
}
.member-prefs-hint { margin: 0 0 12px; color: var(--text-faint); font-size: 12.5px; }
.member-prefs-subhint { margin: 0 0 10px; color: var(--text-muted); font-size: 12.5px; line-height: 1.45; }
.member-city-tools {
  display: flex; flex-wrap: wrap; gap: 10px; align-items: center;
  margin-bottom: 10px;
}
.member-city-tools .member-tag-search { flex: 1; min-width: 160px; }
.member-city-grid { max-height: 160px; overflow: auto; padding: 4px 0; min-height: 40px; }
.member-tag-suggest-item small {
  opacity: .55; font-weight: 600; margin-left: 4px;
}
.member-auth-note {
  margin: 12px 0 0; font-size: 12.5px; color: var(--text-faint); text-align: center;
}
.member-pref-block { margin-bottom: 16px; }
.member-pref-block h3 {
  margin: 0 0 8px; font-size: 12px; font-weight: 800; letter-spacing: .06em;
  text-transform: uppercase; color: var(--text-muted);
}
.member-chip-grid { display: flex; flex-wrap: wrap; gap: 8px; }
.member-chip-grid[data-pref-cats] { max-height: 180px; overflow: auto; }
.member-chip {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 7px 11px; border-radius: 999px; cursor: pointer;
  border: 1px solid var(--border); background: var(--surface-2);
  font-size: 12.5px; font-weight: 700; color: var(--text-muted);
  transition: border-color var(--t), background var(--t), color var(--t);
}
.member-chip input { position: absolute; opacity: 0; pointer-events: none; }
.member-chip.is-on {
  color: var(--accent); border-color: color-mix(in srgb, var(--accent) 45%, var(--border));
  background: var(--accent-soft);
}
.member-chip:disabled { opacity: .72; cursor: default; }
button.member-chip {
  font: inherit; font-size: 12.5px; font-weight: 700;
  color: var(--text-muted); appearance: none; -webkit-appearance: none;
}
.member-tag-picker { display: flex; flex-direction: column; gap: 10px; }
.member-tag-selected { min-height: 36px; }
.member-tag-empty {
  font-size: 12.5px; color: var(--text-faint); font-weight: 600;
}
.member-tag-search-wrap { position: relative; max-width: 420px; }
.member-tag-search {
  width: 100%; box-sizing: border-box;
  padding: 10px 12px; border-radius: 12px;
  border: 1px solid var(--border); background: var(--surface-2);
  color: var(--text); font-size: 14px; font-weight: 600;
}
.member-tag-search:focus {
  outline: none;
  border-color: color-mix(in srgb, var(--accent) 45%, var(--border));
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent) 16%, transparent);
}
.member-tag-suggest {
  position: absolute; left: 0; right: 0; top: calc(100% + 4px); z-index: 20;
  max-height: 240px; overflow: auto;
  border: 1px solid var(--border); border-radius: 12px;
  background: var(--surface); box-shadow: var(--shadow);
}
.member-tag-suggest-item {
  display: block; width: 100%; text-align: left;
  padding: 10px 12px; border: 0; background: transparent;
  color: var(--text); font-size: 13px; font-weight: 650; cursor: pointer;
}
.member-tag-suggest-item:hover,
.member-tag-suggest-item:focus {
  background: var(--accent-soft); color: var(--accent); outline: none;
}
.member-tag-suggest-empty {
  padding: 12px; font-size: 12.5px; color: var(--text-faint); font-weight: 600;
}
.member-tag-popular-label {
  margin: 2px 0 0; font-size: 11px; font-weight: 800;
  letter-spacing: .05em; text-transform: uppercase; color: var(--text-muted);
}
.member-prefs-status { margin: 0; font-size: 13px; font-weight: 600; color: var(--up); }
.member-feed-list { display: flex; flex-direction: column; gap: 10px; }
.member-feed-item {
  display: grid; grid-template-columns: 112px 1fr; gap: 14px;
  padding: 10px; border-radius: 14px; border: 1px solid var(--border);
  background: color-mix(in srgb, var(--surface-2) 65%, transparent);
  text-decoration: none; color: inherit;
  transition: border-color var(--t), transform var(--t);
}
.member-feed-item:hover {
  border-color: color-mix(in srgb, var(--accent) 35%, var(--border));
  transform: translateY(-1px);
}
.member-feed-media {
  border-radius: 10px; overflow: hidden; aspect-ratio: 4/3; background: var(--bg-soft);
}
.member-feed-media img, .member-feed-ph { width: 100%; height: 100%; object-fit: cover; display: block; }
.member-feed-ph { background: linear-gradient(135deg, var(--bg-soft), var(--border)); }
.member-feed-body { min-width: 0; display: flex; flex-direction: column; gap: 4px; justify-content: center; }
.member-feed-cat {
  font-size: 11px; font-weight: 800; letter-spacing: .04em; text-transform: uppercase; color: var(--accent);
}
.member-feed-body strong {
  font-family: var(--font-display); font-size: 15px; font-weight: 750; line-height: 1.3;
}
.member-feed-body p {
  margin: 0; font-size: 13px; color: var(--text-muted);
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.member-empty { margin: 12px 0; color: var(--text-faint); font-weight: 600; }
.member-submit-card, .member-submit-list {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 18px; margin-bottom: 18px;
  box-shadow: var(--shadow);
}
.member-submit-list h2 {
  margin: 0 0 12px; font-family: var(--font-display); font-size: 1.1rem; font-weight: 800;
}
.member-submit-form { display: flex; flex-direction: column; gap: 14px; width: 100%; max-width: none; }
.member-field label {
  display: block; margin-bottom: 6px; font-size: 13px; font-weight: 750; color: var(--text);
}
.member-field .opt { font-weight: 600; color: var(--text-faint); }
.member-field input[type="text"],
.member-field textarea {
  width: 100%; box-sizing: border-box;
  padding: 10px 12px; border-radius: 12px;
  border: 1px solid var(--border); background: var(--surface-2);
  color: var(--text); font: inherit; font-size: 14px; font-weight: 600;
}
.member-field textarea { resize: vertical; min-height: 160px; line-height: 1.5; }
.member-field-hint {
  display: block; margin-top: 6px; font-size: 12px; color: var(--text-faint); font-weight: 600;
}
.member-dropzone {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 8px; width: 100%; box-sizing: border-box;
  padding: 34px 20px; text-align: center; cursor: pointer;
  border: 2px dashed color-mix(in srgb, var(--border) 85%, var(--text-muted));
  border-radius: 16px;
  background: color-mix(in srgb, var(--surface-2) 70%, transparent);
  color: var(--text-muted);
  transition: border-color .18s ease, background .18s ease, color .18s ease, box-shadow .18s ease;
}
.member-dropzone svg {
  width: 34px; height: 34px; opacity: .8; color: color-mix(in srgb, var(--text-muted) 80%, #64748b);
}
.member-dropzone strong {
  font-size: 14px; font-weight: 750; color: var(--text);
  letter-spacing: -.01em;
}
.member-dropzone > span {
  font-size: 12.5px; font-weight: 600; color: var(--text-faint); max-width: 42ch; line-height: 1.4;
}
.member-dropzone:hover,
.member-dropzone:focus-visible,
.member-dropzone.is-drag {
  outline: none;
  border-color: color-mix(in srgb, var(--accent) 55%, var(--border));
  color: var(--accent);
  background: color-mix(in srgb, var(--accent) 7%, var(--surface-2));
  box-shadow: inset 0 0 0 1px color-mix(in srgb, var(--accent) 18%, transparent);
}
.member-dropzone:hover strong,
.member-dropzone.is-drag strong { color: var(--accent); }
.member-dropzone:hover svg,
.member-dropzone.is-drag svg { color: var(--accent); opacity: 1; }
.member-media-preview {
  margin-top: 12px;
  display: grid; grid-template-columns: repeat(auto-fill, minmax(112px, 1fr)); gap: 10px;
}
.member-media-preview[hidden] { display: none !important; }
.member-media-thumb {
  position: relative; border-radius: 12px; overflow: hidden;
  border: 1px solid var(--border); background: var(--surface-2);
  aspect-ratio: 1;
}
.member-media-thumb img,
.member-media-thumb video {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.member-media-thumb.is-video { grid-column: 1 / -1; aspect-ratio: 16 / 9; max-height: 280px; }
.member-media-thumb .member-media-remove {
  position: absolute; top: 6px; right: 6px;
  width: 28px; height: 28px; border: 0; border-radius: 999px;
  background: rgba(15, 23, 42, .72); color: #fff;
  font-size: 16px; line-height: 1; cursor: pointer;
  display: grid; place-items: center;
}
.member-media-thumb .member-media-remove:hover { background: var(--accent); }
.member-media-thumb .member-media-badge {
  position: absolute; left: 6px; bottom: 6px;
  padding: 3px 7px; border-radius: 999px;
  background: rgba(15, 23, 42, .7); color: #fff;
  font-size: 10px; font-weight: 800; letter-spacing: .04em; text-transform: uppercase;
}
.member-submit-error { margin: 0; color: var(--down, #dc2626); font-weight: 700; font-size: 13px; }
.member-submit-ok { margin: 0; color: var(--up); font-weight: 700; font-size: 13px; }
.member-submit-item {
  padding: 12px 0; border-bottom: 1px solid var(--border);
}
.member-submit-item:last-child { border-bottom: 0; }
.member-submit-item-main {
  display: flex; align-items: center; justify-content: space-between; gap: 10px;
}
.member-submit-item-main strong { font-size: 14px; }
.member-submit-status {
  font-size: 11px; font-weight: 800; letter-spacing: .04em; text-transform: uppercase;
  padding: 4px 8px; border-radius: 999px; background: var(--surface-2); color: var(--text-muted);
}
.member-submit-actions { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; }
.member-edit-banner {
  margin: 0 0 4px; padding: 10px 12px; border-radius: 10px;
  background: color-mix(in srgb, var(--accent) 12%, transparent);
  color: var(--accent); font-size: 13px; font-weight: 700;
}
.member-submit-item-actions {
  display: flex; flex-wrap: wrap; gap: 8px; margin-top: 10px;
}
.member-btn-danger { color: var(--down, #dc2626) !important; border-color: color-mix(in srgb, #dc2626 35%, var(--border)) !important; }
.member-submit-status.status-unpub { color: #b45309; background: color-mix(in srgb, #f59e0b 16%, transparent); }
.member-submit-status.status-pending { color: #b45309; background: color-mix(in srgb, #f59e0b 16%, transparent); }
.member-submit-status.status-approved { color: var(--up); background: color-mix(in srgb, var(--up) 14%, transparent); }
.member-submit-status.status-rejected { color: var(--down, #dc2626); background: color-mix(in srgb, #dc2626 12%, transparent); }
.member-submit-note { margin: 6px 0 0; font-size: 12.5px; color: var(--text-faint); }
.member-notif-list { display: flex; flex-direction: column; gap: 8px; }
.member-notif-item {
  display: flex; flex-direction: column; gap: 4px;
  padding: 14px 16px; border-radius: 12px; border: 1px solid var(--border);
  background: var(--surface); text-decoration: none; color: inherit;
}
.member-notif-item.is-unread {
  border-color: color-mix(in srgb, var(--accent) 35%, var(--border));
  background: color-mix(in srgb, var(--accent-soft) 55%, var(--surface));
}
.member-notif-item strong { font-size: 14px; }
.member-notif-item span { font-size: 13px; color: var(--text-muted); }
@media (max-width: 640px) {
  .member-feed-item { grid-template-columns: 88px 1fr; gap: 10px; }
  .member-dash-actions { width: 100%; }
}

/* PWA install / notify toast */
.pwa-toast {
  position: fixed; left: 16px; right: 16px; bottom: 18px; z-index: 80;
  max-width: 520px; margin: 0 auto;
}
.pwa-toast-inner {
  display: flex; align-items: center; gap: 12px; flex-wrap: wrap;
  padding: 14px 16px; border-radius: 16px;
  background: var(--ink, #0b1220); color: #f8fafc;
  box-shadow: 0 18px 40px rgba(2, 6, 23, .35);
  border: 1px solid rgba(255,255,255,.08);
}
.pwa-toast-text { flex: 1; min-width: 160px; display: flex; flex-direction: column; gap: 2px; }
.pwa-toast-text strong { font-size: 14px; font-weight: 800; }
.pwa-toast-text span { font-size: 12.5px; opacity: .78; }
.pwa-toast-actions { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.pwa-toast .btn-sm { padding: 8px 12px; font-size: 12.5px; border-radius: 999px; }
.pwa-toast .btn-primary { background: var(--crimson, #c41e3a); border-color: transparent; color: #fff; }
.pwa-toast .btn-outline { background: transparent; border: 1px solid rgba(255,255,255,.28); color: #fff; }
.pwa-toast .btn-ghost { background: transparent; border: 0; color: rgba(255,255,255,.7); font-size: 18px; line-height: 1; padding: 4px 8px; }
@media (max-width: 560px) {
  .pwa-toast { left: 10px; right: 10px; bottom: 12px; }
}




/* Events + B?lgem */
.event-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.event-item a {
  display: flex; flex-direction: column; gap: 4px;
  padding: 14px 16px; border-radius: 12px; border: 1px solid var(--border);
  background: var(--surface); text-decoration: none; color: inherit;
  transition: border-color .15s;
}
.event-item a:hover { border-color: var(--accent); }
.event-item-title { font-size: 16px; font-weight: 800; }
.event-item-meta { display: flex; flex-wrap: wrap; gap: 8px 14px; font-size: 13px; color: var(--text-muted); }
.announce-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.announce-item {
  padding: 14px 16px; border-radius: 12px; border: 1px solid var(--border); background: var(--surface);
}
.announce-item a { color: inherit; text-decoration: none; font-weight: 700; }
.announce-item a:hover { color: var(--accent); }
.announce-meta { display: block; margin-top: 4px; font-size: 12.5px; color: var(--text-muted); }
.bolgem-section { margin: 28px 0 8px; }
.bolgem-section h2 { font-size: 18px; margin: 0 0 12px; }
.bolgem-weather {
  display: flex; flex-direction: column; gap: 4px;
  padding: 16px 18px; border-radius: 12px; border: 1px solid var(--border); background: var(--surface);
}
.bolgem-weather .muted { font-size: 13px; color: var(--text-muted); }
.surface-card { border: 1px solid var(--border); background: var(--surface); border-radius: 12px; }

.announcement-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.announcement-item {
  padding: 14px 16px; border-radius: 12px; border: 1px solid var(--border); background: var(--surface);
}
.announcement-item a { color: inherit; text-decoration: none; }
.announcement-item a:hover strong { color: var(--accent); }
.announcement-item strong { font-size: 15px; font-weight: 800; }
.event-detail { padding: 18px 20px; }
.event-summary { font-size: 16px; line-height: 1.55; margin: 0 0 14px; color: var(--text-muted); }
.event-content { font-size: 15px; line-height: 1.7; }
.event-cover { margin: 0 0 16px; }
.event-cover img { width: 100%; max-height: 360px; object-fit: cover; border-radius: 10px; }
