/* SonDakika44 — Haber Arayüzü */
:root {
  --navy: #0c2340;
  --navy-2: #143456;
  --navy-3: #1a3f66;
  --red: #e30613;
  --red-dark: #c00510;
  --gold: #c9a227;
  --bg: #eef1f5;
  --surface: #ffffff;
  --text: #0f172a;
  --muted: #64748b;
  --line: #e2e8f0;
  --header-bg: #ffffff;
  --nav-bg: #0c2340;
  --nav-text: rgba(255, 255, 255, 0.9);
  --nav-text-hover: #ffffff;
  --search-bg: #f1f5f9;
  --search-border: #e2e8f0;
  --toggle-bg: #f1f5f9;
  --toggle-border: #e2e8f0;
  --radius: 12px;
  --shadow: 0 4px 20px rgba(12, 35, 64, 0.06);
  --max: 1240px;
  --font: system-ui, -apple-system, "Segoe UI", Roboto, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  color-scheme: light;
}

html[data-theme="dark"] {
  --navy: #e8eef7;
  --navy-2: #c5d0e0;
  --navy-3: #9aadc4;
  --bg: #0b1220;
  --surface: #121a2b;
  --text: #e8eef7;
  --muted: #94a3b8;
  --line: #243044;
  --header-bg: #0f172a;
  --nav-bg: #080e1a;
  --nav-text: rgba(232, 238, 247, 0.88);
  --nav-text-hover: #ffffff;
  --search-bg: #1a2438;
  --search-border: #2a3a55;
  --toggle-bg: #1a2438;
  --toggle-border: #2a3a55;
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.35);
  --red: #ff3b4a;
  --red-dark: #e30613;
  color-scheme: dark;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  transition: background 0.2s ease, color 0.2s ease;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }

.container {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

/* ========== CHROME: ince piyasa + tek satır header ========== */
.site-chrome {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--header-bg);
  border-bottom: 1px solid var(--line);
  box-shadow: none;
}

/* İnce piyasa — ekstra çizgi yok (chrome zaten border basıyor) */
.market-ticker {
  background: transparent;
  border-bottom: 0;
  /* Reserve vertical space even when empty → less CLS */
  min-height: 28px;
}

html[data-theme="dark"] .market-ticker {
  border-bottom: 0;
}

.market-ticker__bar {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.25rem 0.55rem;
  min-height: 26px;
  padding: 0.2rem 0;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.market-ticker__item {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-variant-numeric: tabular-nums;
  color: var(--muted);
}

.market-ticker__label {
  color: var(--muted);
  font-weight: 700;
  letter-spacing: 0.03em;
  font-size: 0.64rem;
  opacity: 0.85;
}

.market-ticker__value {
  color: var(--text);
  font-weight: 700;
}

.market-ticker__arrow {
  font-size: 0.5rem;
  line-height: 1;
}

.market-ticker__item--up .market-ticker__arrow,
.market-ticker__item--up .market-ticker__value {
  color: #16a34a;
}

.market-ticker__item--down .market-ticker__arrow,
.market-ticker__item--down .market-ticker__value {
  color: #dc2626;
}

.market-ticker__sep {
  color: var(--line);
  font-weight: 400;
  user-select: none;
  opacity: 0.9;
}

/* Tek satır: logo | menü | arama + koyu mod */
.header {
  background: transparent;
  border: 0;
  box-shadow: none;
}

.header__bar {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  min-height: 58px;
  padding: 0.45rem 0;
}

.header__left {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.header__left .logo,
.header__left .custom-logo-link {
  display: block;
  line-height: 0;
}

.header__left .logo img,
.header__left .custom-logo-link img,
.logo img,
.custom-logo-link img {
  height: 40px;
  width: auto;
  max-width: min(200px, 40vw);
  object-fit: contain;
}

html[data-theme="dark"] .header__left .logo,
html[data-theme="dark"] .header__left .custom-logo-link {
  background: #fff;
  border-radius: 8px;
  padding: 0.2rem 0.45rem;
}

/* Menü — ayrı şerit değil, header içinde */
.nav {
  flex: 1;
  min-width: 0;
  background: transparent;
  border: 0;
  display: flex;
  justify-content: center;
}

.nav__list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.1rem;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 0;
  margin: 0;
}

.nav__list::-webkit-scrollbar { display: none; }

.nav__list > li > a,
.nav__list > li > button.nav__drop {
  display: block;
  padding: 0.45rem 0.75rem;
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--text);
  white-space: nowrap;
  border-radius: 8px;
  border-bottom: 0;
  transition: background 0.12s, color 0.12s;
}

.nav__list > li > a:hover,
.nav__list > li > a.is-active,
.nav__list > li.current-menu-item > a,
.nav__list > li.current-menu-ancestor > a,
.nav__list > li > button.nav__drop:hover {
  color: var(--red);
  background: rgba(227, 6, 19, 0.08);
}

.nav__list > li.current-menu-item > a,
.nav__list > li.current-menu-ancestor > a {
  color: var(--red);
  background: rgba(227, 6, 19, 0.1);
  font-weight: 700;
}

.nav__item--drop { position: relative; }

.nav__drop {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  background: none;
  border: 0;
  cursor: pointer;
  font: inherit;
  color: inherit;
}

.nav__drop svg {
  width: 11px;
  height: 11px;
  opacity: 0.55;
}

.nav__submenu {
  display: none;
  position: absolute;
  top: calc(100% + 6px);
  left: 50%;
  transform: translateX(-50%);
  min-width: 180px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 10px;
  box-shadow: var(--shadow);
  padding: 0.35rem;
  z-index: 50;
}

.nav__item--drop.is-open .nav__submenu { display: block; }

.nav__submenu a {
  display: block;
  padding: 0.5rem 0.7rem;
  border-radius: 7px;
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--text);
}

.nav__submenu a:hover {
  background: var(--search-bg);
  color: var(--red);
}

.header__search {
  flex-shrink: 0;
  min-width: 0;
}

.header__actions {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

/* Kompakt arama — body.search ile çakışmaz */
.sd44-search {
  display: flex;
  align-items: center;
  width: 210px;
  max-width: 100%;
  background: var(--search-bg);
  border: 1px solid var(--search-border);
  border-radius: 999px;
  padding: 0.2rem 0.2rem 0.2rem 0.85rem;
  transition: border-color 0.15s, box-shadow 0.15s, background 0.15s;
}

.sd44-search:focus-within {
  border-color: rgba(227, 6, 19, 0.45);
  background: var(--surface);
  box-shadow: 0 0 0 3px rgba(227, 6, 19, 0.1);
}

.sd44-search input {
  border: 0;
  background: transparent;
  outline: none;
  width: 100%;
  font-size: 0.84rem;
  color: var(--text);
  min-width: 0;
  /* iOS zoom / kayma azalt */
  font-size: 16px;
}

@media (min-width: 821px) {
  .sd44-search input {
    font-size: 0.84rem;
  }
}

.sd44-search input::placeholder {
  color: var(--muted);
}

.sd44-search__submit {
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  display: grid;
  place-items: center;
  transition: background 0.15s;
}

html[data-theme="dark"] .sd44-search__submit {
  background: var(--red);
  color: #fff;
}

.sd44-search__submit:hover {
  background: var(--red);
}

/* Koyu / açık mod */
.theme-toggle {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--toggle-border);
  background: var(--toggle-bg);
  color: var(--text);
  display: grid;
  place-items: center;
  transition: background 0.15s, border-color 0.15s, color 0.15s;
}

.theme-toggle:hover {
  border-color: var(--red);
  color: var(--red);
}

.theme-toggle__icon { display: none; line-height: 0; }
html[data-theme="light"] .theme-toggle__icon--moon,
html:not([data-theme]) .theme-toggle__icon--moon { display: block; }
html[data-theme="dark"] .theme-toggle__icon--sun { display: block; }

.btn-menu {
  display: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--toggle-border);
  background: var(--toggle-bg);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
}

.btn-menu span {
  display: block;
  width: 15px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
}

/* ========== BREAKING — kırmızı / beyaz modern ========== */
.breaking {
  position: relative;
  display: flex;
  align-items: stretch;
  overflow: hidden;
  margin: 0 0 1.15rem;
  border-radius: 12px;
  background: #fff;
  border: 1px solid rgba(227, 6, 19, 0.18);
  box-shadow:
    0 1px 2px rgba(227, 6, 19, 0.06),
    0 8px 24px rgba(12, 35, 64, 0.06);
}

html[data-theme="dark"] .breaking {
  background: #fff;
  border-color: rgba(255, 59, 74, 0.35);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.35);
}

/* Sol kırmızı rozet paneli */
.breaking__badge {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0 1.1rem;
  background: linear-gradient(135deg, #e30613 0%, #c00510 55%, #a0040e 100%);
  color: #fff;
  position: relative;
  min-height: 52px;
}

.breaking__badge::after {
  content: "";
  position: absolute;
  top: 0;
  right: -10px;
  bottom: 0;
  width: 20px;
  background: linear-gradient(135deg, #c00510 0%, #c00510 100%);
  clip-path: polygon(0 0, 100% 50%, 0 100%);
}

.breaking__badge-text {
  position: relative;
  z-index: 1;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.12);
}

.breaking__live {
  position: relative;
  z-index: 1;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.6);
  animation: breaking-pulse 1.5s ease-out infinite;
}

@keyframes breaking-pulse {
  0% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.55); }
  70% { box-shadow: 0 0 0 8px rgba(255, 255, 255, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0); }
}

/* Sağ beyaz içerik */
.breaking__content {
  flex: 1;
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.55rem 0.85rem 0.55rem 1.35rem;
  background: #fff;
}

.breaking__viewport {
  position: relative;
  flex: 1;
  min-width: 0;
  height: 1.45rem;
  overflow: hidden;
}

.breaking__item {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  color: #0f172a;
  opacity: 0;
  transform: translateY(8px);
  pointer-events: none;
  transition: opacity 0.32s ease, transform 0.32s ease;
  text-decoration: none;
}

.breaking__item.is-active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  z-index: 1;
}

.breaking__item.is-exit {
  opacity: 0;
  transform: translateY(-8px);
  pointer-events: none;
}

.breaking__title {
  display: block;
  width: 100%;
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.35;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  letter-spacing: -0.015em;
  color: #0f172a;
  transition: color 0.15s;
}

.breaking__item:hover .breaking__title,
.breaking__item:focus-visible .breaking__title {
  color: #e30613;
}

.breaking__controls {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.breaking__counter {
  font-size: 0.72rem;
  font-weight: 800;
  color: #94a3b8;
  margin-right: 0.2rem;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

.breaking__counter-cur {
  color: #e30613;
}

.breaking__btn {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  color: #e30613;
  background: #fff5f5;
  border: 1px solid rgba(227, 6, 19, 0.2);
  transition: background 0.15s, border-color 0.15s, color 0.15s, transform 0.12s;
}

.breaking__btn:hover {
  background: #e30613;
  border-color: #e30613;
  color: #fff;
}

.breaking__btn:active {
  transform: scale(0.94);
}

.breaking__progress {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  background: rgba(227, 6, 19, 0.1);
  overflow: hidden;
}

.breaking__progress span {
  display: block;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, #e30613, #ff4d57);
}

.breaking__progress.is-running span {
  animation: breaking-progress var(--breaking-ms, 4500ms) linear forwards;
}

@keyframes breaking-progress {
  from { width: 0; }
  to { width: 100%; }
}

@media (max-width: 640px) {
  .breaking {
    border-radius: 10px;
    margin-bottom: 0.95rem;
  }

  .breaking__badge {
    padding: 0 0.85rem;
    min-height: 48px;
  }

  .breaking__badge::after {
    right: -8px;
    width: 16px;
  }

  .breaking__badge-text {
    font-size: 0.62rem;
    letter-spacing: 0.06em;
  }

  .breaking__content {
    padding: 0.45rem 0.55rem 0.45rem 1.05rem;
    gap: 0.4rem;
  }

  .breaking__title {
    font-size: 0.84rem;
  }

  .breaking__counter {
    display: none;
  }

  .breaking__btn {
    width: 28px;
    height: 28px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .breaking__live { animation: none; }
  .breaking__item { transition: none; }
  .breaking__progress.is-running span { animation: none; width: 100%; }
}

/* ========== ASAYİŞ MOBİL KUTULAR (sadece mobilde) ========== */
.asayis-mobile {
  display: none;
  margin: 0 0 1.15rem;
}

.asayis-mobile__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.65rem;
}

.asayis-mobile__title {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.02em;
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.asayis-mobile__title::before {
  content: "";
  width: 4px;
  height: 1.05em;
  border-radius: 2px;
  background: var(--red);
}

.asayis-mobile__all {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--red);
  white-space: nowrap;
}

.asayis-mobile__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.55rem;
}

.asayis-mobile__card {
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 1px 4px rgba(12, 35, 64, 0.05);
  min-width: 0;
  transition: border-color 0.15s, box-shadow 0.15s;
}

.asayis-mobile__card:hover {
  border-color: rgba(227, 6, 19, 0.3);
  box-shadow: 0 4px 14px rgba(12, 35, 64, 0.08);
}

.asayis-mobile__img {
  display: block;
  aspect-ratio: 16 / 10;
  background-size: cover;
  background-position: center;
  background-color: #0c2340;
}

.asayis-mobile__body {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  padding: 0.55rem 0.6rem 0.65rem;
  min-width: 0;
}

.asayis-mobile__badge {
  align-self: flex-start;
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #fff;
  background: var(--red);
  padding: 0.18rem 0.4rem;
  border-radius: 4px;
  line-height: 1.2;
}

.asayis-mobile__headline {
  font-size: 0.8rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--navy);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  letter-spacing: -0.01em;
}

.asayis-mobile__card:hover .asayis-mobile__headline {
  color: var(--red);
}

.asayis-mobile__time {
  font-size: 0.65rem;
  color: var(--muted);
  font-weight: 500;
  margin-top: 0.1rem;
}

/* ========== ÖZEL SERVİS BUTONLARI (manşet altı) ========== */
.services {
  margin: 1rem 0 1.35rem;
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0.75rem;
}

/* Servis kısayol butonları — hepsi tek satır yan yana */
.services--buttons .services__grid--buttons {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 0.55rem;
}

.service-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  text-align: center;
  min-height: 88px;
  min-width: 0;
  padding: 0.75rem 0.35rem;
  background: #fff;
  border: 1px solid rgba(12, 35, 64, 0.07);
  border-radius: 16px;
  box-shadow:
    0 1px 2px rgba(12, 35, 64, 0.04),
    0 8px 22px rgba(12, 35, 64, 0.05);
  transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
  color: var(--navy);
  text-decoration: none;
}

.service-btn:hover {
  transform: translateY(-2px);
  box-shadow:
    0 4px 10px rgba(12, 35, 64, 0.06),
    0 14px 28px rgba(12, 35, 64, 0.09);
  color: var(--navy);
}

.service-btn.is-current {
  border-color: var(--navy);
  box-shadow: 0 0 0 1px rgba(12, 35, 64, 0.12), 0 10px 24px rgba(12, 35, 64, 0.08);
}

.service-btn__icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.service-btn__label {
  font-size: 0.72rem;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--navy);
  max-width: 100%;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.service-btn--vefat .service-btn__icon { background: #f1f5f9; color: #64748b; }
.service-btn--altin .service-btn__icon { background: #fff8e1; color: #c9a227; }
.service-btn--deprem .service-btn__icon { background: #fdecea; color: #e30613; }
.service-btn--hava .service-btn__icon { background: #e8f3ff; color: #2563eb; }
.service-btn--eczane .service-btn__icon { background: #e8f8ef; color: #059669; }
.service-btn--namaz .service-btn__icon { background: #eef2ff; color: #4338ca; }

.service-btn--vefat:hover { border-color: rgba(100, 116, 139, 0.35); }
.service-btn--altin:hover { border-color: rgba(201, 162, 39, 0.4); }
.service-btn--deprem:hover { border-color: rgba(227, 6, 19, 0.35); }
.service-btn--hava:hover { border-color: rgba(37, 99, 235, 0.35); }
.service-btn--eczane:hover { border-color: rgba(5, 150, 105, 0.35); }
.service-btn--namaz:hover { border-color: rgba(67, 56, 202, 0.4); }

/* Eski .service sınıfları (geriye uyumluluk) */
.service {
  background: #fff;
  border: 1px solid rgba(12, 35, 64, 0.06);
  border-radius: 18px;
  padding: 1rem 1.05rem 1.05rem;
  box-shadow:
    0 1px 2px rgba(12, 35, 64, 0.04),
    0 10px 28px rgba(12, 35, 64, 0.06);
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  min-height: 108px;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
  cursor: pointer;
  position: relative;
}

.service:hover {
  transform: translateY(-3px);
  box-shadow:
    0 4px 8px rgba(12, 35, 64, 0.05),
    0 16px 36px rgba(12, 35, 64, 0.1);
  border-color: rgba(12, 35, 64, 0.1);
}

.service__head {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: #94a3b8;
}

.service__icon {
  width: 30px;
  height: 30px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.service__icon svg { width: 15px; height: 15px; }

.service--vefat .service__icon,
.service__icon.service--vefat { background: #f1f5f9; color: #64748b; }
.service--altin .service__icon,
.service__icon.service--altin { background: #fff8e1; color: #c9a227; }
.service--deprem .service__icon,
.service__icon.service--deprem { background: #fdecea; color: #e30613; }
.service--hava .service__icon,
.service__icon.service--hava { background: #e8f3ff; color: #2563eb; }
.service--eczane .service__icon,
.service__icon.service--eczane { background: #e8f8ef; color: #059669; }
.service--namaz .service__icon,
.service__icon.service--namaz { background: #eef2ff; color: #4338ca; }

/* Namaz vakitleri paneli */
.namaz-board {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--shadow);
  padding: 1.15rem;
  margin-bottom: 1.25rem;
}

.namaz-board__date {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--muted);
  margin-bottom: 0.85rem;
}

.namaz-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0.55rem;
}

.namaz-card {
  position: relative;
  text-align: center;
  padding: 0.9rem 0.4rem;
  border-radius: 12px;
  background: var(--bg);
  border: 1px solid transparent;
}

.namaz-card__name {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.35rem;
}

.namaz-card__time {
  display: block;
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.02em;
}

.namaz-card.is-next {
  background: linear-gradient(160deg, #0c2340, #1a3f66);
  border-color: transparent;
}

.namaz-card.is-next .namaz-card__name,
.namaz-card.is-next .namaz-card__time {
  color: #fff;
}

.namaz-card__badge {
  position: absolute;
  top: -0.35rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: var(--red);
  color: #fff;
  padding: 0.15rem 0.4rem;
  border-radius: 999px;
  white-space: nowrap;
}

.namaz-note {
  margin-top: 0.85rem;
  font-size: 0.75rem;
  color: var(--muted);
  line-height: 1.45;
}

/* Compact strip on special pages optional - reuse board */

.service__title {
  font-size: 1rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1.25;
  letter-spacing: -0.02em;
}

.service__meta {
  font-size: 0.78rem;
  color: #94a3b8;
  font-weight: 500;
}

.service__value {
  font-size: 1.08rem;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.02em;
}

.service__value span {
  font-size: 0.78rem;
  font-weight: 700;
  margin-left: 0.25rem;
}

.service__value.up { color: #059669; }
.service__value.down { color: var(--red); }

/* İç sayfa ortak */
.page-hero {
  padding: 1.75rem 0 1.25rem;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, #fff 0%, var(--bg) 100%);
  margin-bottom: 1.5rem;
}

.page-hero--inline {
  padding: 0 0 1.15rem;
  margin-bottom: 1.15rem;
  background: transparent;
  border-bottom: 2px solid var(--navy);
}

.page-hero__inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.page-hero__label {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.5rem;
}

.page-hero__label .service__icon {
  width: 26px;
  height: 26px;
}

.page-hero h1 {
  font-size: clamp(1.4rem, 3vw, 1.85rem);
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.03em;
  line-height: 1.2;
}

.page-hero p {
  margin-top: 0.4rem;
  color: var(--muted);
  font-size: 0.95rem;
  max-width: 48ch;
}

.page-back {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--navy);
  padding: 0.5rem 0.85rem;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.page-back:hover { border-color: rgba(227, 6, 19, 0.35); color: var(--red); }

.page-panel {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--shadow);
  overflow: hidden;
  margin-bottom: 1.25rem;
}

.page-panel__head {
  padding: 0.9rem 1.15rem;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.page-panel__head h2 {
  font-size: 1rem;
  font-weight: 800;
  color: var(--navy);
}

.page-panel__body { padding: 0.25rem 0; }

.page-row {
  display: grid;
  gap: 0.25rem;
  padding: 0.95rem 1.15rem;
  border-bottom: 1px solid var(--line);
}

.page-row:last-child { border-bottom: 0; }

.page-row strong {
  color: var(--navy);
  font-size: 0.98rem;
  font-weight: 700;
}

.page-row span {
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.45;
}

.page-row a {
  color: #059669;
  font-weight: 600;
  font-size: 0.88rem;
}

.data-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.data-table th,
.data-table td {
  padding: 0.85rem 1.15rem;
  text-align: left;
  border-bottom: 1px solid var(--line);
}

.data-table th {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--muted);
  font-weight: 700;
  background: #f8fafc;
}

.data-table tr:last-child td { border-bottom: 0; }

.data-table .up { color: #059669; font-weight: 700; }
.data-table .down { color: var(--red); font-weight: 700; }

.mag {
  display: inline-grid;
  place-items: center;
  min-width: 44px;
  height: 44px;
  border-radius: 10px;
  font-weight: 800;
  color: #fff;
  background: var(--navy);
}

.mag.mid { background: #d97706; }
.mag.high { background: var(--red); }

.quake-row {
  display: grid;
  grid-template-columns: 52px 1fr auto;
  gap: 0.85rem;
  align-items: center;
  padding: 0.9rem 1.15rem;
  border-bottom: 1px solid var(--line);
}

.quake-row:last-child { border-bottom: 0; }

.weather-big {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.25rem 1.15rem;
}

.weather-big__temp {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.05em;
  line-height: 1;
}

.weather-big__temp small {
  font-size: 1.4rem;
  font-weight: 700;
  vertical-align: super;
}

/* ========== SERVİS SAYFALARI (tam özel, full-width) ========== */
/* Screenshot_11: üst servis şeridi + generic hero + sağ sidebar YOK */
.main--service {
  padding-bottom: 2.75rem;
}

.main--service .layout,
.main--service .sidebar,
.main--service .services {
  display: none !important;
}

.svc-hero {
  padding: 1.85rem 0 2.1rem;
  margin-bottom: 1.65rem;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.svc-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.16;
  background:
    radial-gradient(ellipse at 15% 0%, #fff 0%, transparent 50%),
    radial-gradient(ellipse at 90% 100%, rgba(255, 255, 255, 0.35) 0%, transparent 45%);
  pointer-events: none;
}

.svc-hero--gold {
  background: linear-gradient(125deg, #6b4f0f 0%, #b8860b 38%, #e8c547 78%, #f5e6a3 100%);
  color: #1a1405;
}
.svc-hero--gold .svc-hero__back,
.svc-hero--gold .svc-hero__kicker,
.svc-hero--gold .svc-hero__meta,
.svc-hero--gold .svc-hero__lead { color: rgba(26, 20, 5, 0.78); }
.svc-hero--gold .svc-hero__title { color: #1a1405; }

.svc-hero--quake {
  background: linear-gradient(125deg, #450a0a 0%, #991b1b 42%, #e30613 100%);
}

.svc-hero--weather {
  background: linear-gradient(125deg, #0c4a6e 0%, #0284c7 48%, #7dd3fc 100%);
}

.svc-hero--pharma {
  background: linear-gradient(125deg, #022c22 0%, #047857 50%, #6ee7b7 100%);
}

.svc-hero--prayer {
  background: linear-gradient(125deg, #1e1b4b 0%, #4338ca 48%, #a5b4fc 100%);
}

.svc-hero--obit {
  background: linear-gradient(125deg, #0f172a 0%, #334155 55%, #94a3b8 100%);
}

.svc-hero__inner,
.svc-hero__grid,
.weather-dash {
  position: relative;
  z-index: 1;
}

.svc-hero__inner { max-width: 720px; }

.svc-hero__grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 1.25rem 1.75rem;
  align-items: center;
}

.svc-hero__back {
  display: inline-flex;
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 0.85rem;
}

.svc-hero__back:hover { color: #fff; text-decoration: underline; }

.svc-hero__kicker {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.88;
  margin: 0 0 0.35rem;
}

.svc-hero__title {
  margin: 0 0 0.55rem;
  font-size: clamp(1.7rem, 4.2vw, 2.35rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.12;
  color: #fff;
}

.svc-hero__lead {
  margin: 0 0 0.5rem;
  font-size: 0.95rem;
  line-height: 1.5;
  opacity: 0.92;
  max-width: 34rem;
}

.svc-hero__meta {
  margin: 0.65rem 0 0;
  font-size: 0.8rem;
  opacity: 0.82;
}

.svc-hero__spot-chg {
  display: inline-flex;
  font-size: 0.88rem;
  font-weight: 800;
  padding: 0.22rem 0.6rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.22);
  margin-top: 0.55rem;
}

.svc-hero__spot-chg.is-up { color: #14532d; background: rgba(22, 101, 52, 0.18); }
.svc-hero__spot-chg.is-down { color: #fff; background: rgba(127, 29, 29, 0.4); }

.svc-hero__spot-line {
  font-size: 1.05rem;
  font-weight: 600;
  opacity: 0.95;
  margin: 0.25rem 0 0;
}

.svc-wrap {
  max-width: 960px;
}

.svc-wrap--wide {
  max-width: 1100px;
}

.svc-empty {
  padding: 1.6rem;
  text-align: center;
  background: var(--surface);
  border: 1px dashed var(--line);
  border-radius: 16px;
  color: var(--muted);
  font-weight: 600;
}

.svc-empty--soft {
  padding: 1rem;
  font-size: 0.9rem;
}

.svc-section-title {
  margin: 0 0 0.9rem;
  font-size: 1.12rem;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.02em;
}

/* —— Altın —— */
.gold-featured {
  background: rgba(255, 255, 255, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 18px;
  padding: 1.15rem 1.25rem;
  backdrop-filter: blur(8px);
  box-shadow: 0 12px 32px rgba(80, 50, 0, 0.18);
}

.gold-featured__badge {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(26, 20, 5, 0.12);
  color: #1a1405;
  padding: 0.18rem 0.5rem;
  border-radius: 999px;
  margin-bottom: 0.45rem;
}

.gold-featured__type {
  display: block;
  font-size: 0.95rem;
  font-weight: 800;
  color: #1a1405;
  margin-bottom: 0.75rem;
}

.gold-featured__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.gold-featured__row .gold-card__lbl { color: rgba(26, 20, 5, 0.65); }
.gold-featured__row strong {
  display: block;
  font-size: 1.25rem;
  font-weight: 800;
  color: #1a1405;
}
.gold-featured__row .gold-card__sell { color: #5c4308; }

.gold-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 0.8rem;
}

.gold-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1.05rem 1.1rem;
  box-shadow: var(--shadow);
  border-top: 3px solid #c9a227;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.gold-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.08);
}

.gold-card.is-down { border-top-color: var(--red); }
.gold-card.is-up { border-top-color: #059669; }

.gold-card__top {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 0.75rem;
}

.gold-card__coin {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 0.78rem;
  font-weight: 800;
  background: linear-gradient(145deg, #f5e6a3, #c9a227);
  color: #1a1405;
}

.gold-card__type {
  margin: 0;
  font-size: 0.92rem;
  font-weight: 800;
  color: var(--navy);
}

.gold-card__prices {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem;
  margin-bottom: 0.65rem;
}

.gold-card__lbl {
  display: block;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--muted);
  margin-bottom: 0.2rem;
}

.gold-card__prices strong {
  font-size: 1.08rem;
  font-weight: 800;
  color: var(--text);
}

.gold-card__sell { color: #b8860b; }

.gold-card__chg {
  font-size: 0.82rem;
  font-weight: 800;
}

.gold-card.is-up .gold-card__chg { color: #059669; }
.gold-card.is-down .gold-card__chg { color: var(--red); }

/* —— Deprem —— */
.quake-featured {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.25rem;
  background: rgba(0, 0, 0, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 18px;
  padding: 1.15rem 1.25rem;
}

.quake-featured__label {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.8;
}

.quake-mag-lg {
  font-size: clamp(2.8rem, 8vw, 3.6rem);
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 1;
}

.quake-featured__loc {
  font-size: 1.1rem;
  font-weight: 800;
  margin-top: 0.25rem;
}

.quake-featured__time,
.quake-featured__meta {
  font-size: 0.86rem;
  opacity: 0.88;
}

.quake-timeline {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  padding-left: 0.35rem;
}

.quake-timeline::before {
  content: "";
  position: absolute;
  left: 2.05rem;
  top: 0.5rem;
  bottom: 0.5rem;
  width: 2px;
  background: linear-gradient(180deg, var(--red), transparent);
  opacity: 0.25;
  pointer-events: none;
}

.quake-card {
  display: grid;
  grid-template-columns: 56px 1fr auto;
  gap: 0.85rem;
  align-items: center;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 0.9rem 1rem;
  box-shadow: var(--shadow);
  position: relative;
}

.quake-card__mag {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--navy);
  color: #fff;
  font-weight: 800;
  font-size: 1.1rem;
  z-index: 1;
}

.quake-card.is-mid .quake-card__mag { background: #d97706; }
.quake-card.is-high .quake-card__mag {
  background: var(--red);
  box-shadow: 0 0 0 3px rgba(227, 6, 19, 0.18);
}

.quake-card h2 {
  margin: 0 0 0.2rem;
  font-size: 0.98rem;
  font-weight: 800;
  color: var(--navy);
}

.quake-card p {
  margin: 0;
  font-size: 0.82rem;
  color: var(--muted);
}

.quake-card__time {
  font-size: 0.78rem;
  color: var(--muted);
  white-space: nowrap;
}

/* —— Hava —— */
.weather-dash {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 1.25rem;
  align-items: end;
}

.weather-hero-temp {
  display: flex;
  align-items: flex-end;
  gap: 0.75rem;
  margin: 0.35rem 0 0.55rem;
}

.weather-hero-temp__n {
  font-size: clamp(3.2rem, 11vw, 5rem);
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 0.92;
}

.weather-hero-temp__n small {
  font-size: 0.4em;
  font-weight: 700;
  vertical-align: super;
}

.weather-hero-temp__c {
  font-size: 1.2rem;
  font-weight: 700;
  padding-bottom: 0.55rem;
  opacity: 0.95;
}

.weather-dash__stats {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.55rem;
}

.weather-dash__stats li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 0.7rem 0.9rem;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 12px;
  backdrop-filter: blur(6px);
}

.weather-dash__stats span {
  font-size: 0.82rem;
  opacity: 0.9;
}

.weather-dash__stats strong {
  font-size: 1.05rem;
  font-weight: 800;
}

.weather-forecast {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(128px, 1fr));
  gap: 0.7rem;
}

.weather-day {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1.05rem 0.8rem;
  text-align: center;
  box-shadow: var(--shadow);
}

.weather-day.is-today {
  border-color: #0284c7;
  background: linear-gradient(180deg, #e0f2fe, var(--surface));
}

.weather-day__badge {
  position: absolute;
  top: 0.4rem;
  right: 0.4rem;
  font-size: 0.58rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #fff;
  background: #0284c7;
  padding: 0.12rem 0.38rem;
  border-radius: 999px;
}

.weather-day__name {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--muted);
  margin-bottom: 0.45rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.weather-day__temp {
  display: block;
  font-size: 1.5rem;
  font-weight: 800;
  color: #0369a1;
  margin-bottom: 0.25rem;
}

.weather-day__cond {
  font-size: 0.8rem;
  color: var(--text);
}

/* —— Eczane —— */
.pharma-count {
  display: inline-flex;
  align-items: baseline;
  gap: 0.45rem;
  margin-top: 0.55rem;
  padding: 0.55rem 0.95rem;
  background: rgba(255, 255, 255, 0.16);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.pharma-count strong {
  font-size: 1.75rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
}

.pharma-count span {
  font-size: 0.9rem;
  font-weight: 600;
  opacity: 0.92;
}

.pharma-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 0.85rem;
}

.pharma-card {
  display: flex;
  gap: 0.9rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1.1rem 1.15rem;
  box-shadow: var(--shadow);
  border-left: 4px solid #059669;
  transition: transform 0.15s ease;
}

.pharma-card:hover { transform: translateY(-2px); }

.pharma-card__icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: #ecfdf5;
  color: #059669;
  font-size: 1.2rem;
  font-weight: 800;
}

.pharma-card h2 {
  margin: 0 0 0.35rem;
  font-size: 1.02rem;
  font-weight: 800;
  color: var(--navy);
}

.pharma-card__dist {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  color: #059669;
  background: #ecfdf5;
  padding: 0.15rem 0.5rem;
  border-radius: 999px;
  margin-bottom: 0.35rem;
}

.pharma-card__addr {
  margin: 0 0 0.55rem;
  font-size: 0.86rem;
  color: var(--muted);
  line-height: 1.45;
}

.pharma-card__tel {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.92rem;
  font-weight: 700;
  color: #fff;
  background: #059669;
  padding: 0.45rem 0.85rem;
  border-radius: 10px;
}

.pharma-card__tel:hover {
  background: #047857;
  color: #fff;
}

/* —— Namaz —— */
.prayer-next {
  display: inline-flex;
  flex-direction: column;
  gap: 0.15rem;
  padding: 0.7rem 1.05rem;
  background: rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.prayer-next--lg {
  min-width: 180px;
  padding: 1.15rem 1.35rem;
  text-align: center;
  align-items: center;
}

.prayer-next span {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.85;
}

.prayer-next strong {
  font-size: 1.35rem;
  font-weight: 800;
}

.prayer-next em {
  font-style: normal;
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.prayer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.7rem;
  margin-bottom: 1rem;
}

.prayer-card {
  position: relative;
  text-align: center;
  padding: 1.25rem 0.75rem 1.1rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--shadow);
}

.prayer-card.is-next {
  border-color: #4338ca;
  box-shadow: 0 0 0 1px rgba(67, 56, 202, 0.28), var(--shadow);
  background: linear-gradient(180deg, #eef2ff, var(--surface));
}

.prayer-card__badge {
  position: absolute;
  top: 0.45rem;
  right: 0.45rem;
  font-size: 0.6rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #fff;
  background: #4338ca;
  padding: 0.15rem 0.4rem;
  border-radius: 999px;
}

.prayer-card__name {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.4rem;
}

.prayer-card__time {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.02em;
}

.prayer-note {
  font-size: 0.8rem;
  color: var(--muted);
  margin: 0 0 1.5rem;
  text-align: center;
}

.prayer-week-wrap {
  overflow-x: auto;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--shadow);
}

.prayer-week {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.85rem;
  min-width: 560px;
}

.prayer-week th,
.prayer-week td {
  padding: 0.72rem 0.75rem;
  text-align: center;
  border-bottom: 1px solid var(--line);
}

.prayer-week th {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--muted);
  background: var(--bg);
}

.prayer-week td:first-child,
.prayer-week th:first-child {
  text-align: left;
  font-weight: 700;
}

/* —— Vefat —— */
.obit-count {
  display: inline-flex;
  align-items: baseline;
  gap: 0.45rem;
  margin-top: 0.55rem;
  padding: 0.55rem 0.95rem;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.obit-count strong {
  font-size: 1.75rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
}

.obit-count span {
  font-size: 0.9rem;
  font-weight: 600;
  opacity: 0.9;
}

.obit-section {
  margin-bottom: 1.85rem;
}

.obit-section__head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.5rem;
  margin-bottom: 0.9rem;
}

.obit-section__head .svc-section-title { margin: 0; }

.obit-section__date {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--muted);
}

.obit-list {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.obit-card {
  display: flex;
  gap: 0.9rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1.05rem 1.15rem;
  box-shadow: var(--shadow);
}

.obit-card__mark {
  flex-shrink: 0;
  width: 4px;
  border-radius: 4px;
  background: linear-gradient(180deg, #64748b, #94a3b8);
  align-self: stretch;
}

.obit-card h3 {
  margin: 0 0 0.4rem;
  font-size: 1.08rem;
  font-weight: 800;
  color: var(--navy);
}

.obit-card ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.85rem;
  font-size: 0.86rem;
  color: var(--muted);
}

.obit-card--sm {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 0.9rem 1.05rem;
}

.obit-card--sm strong {
  font-size: 0.95rem;
  color: var(--navy);
}

.obit-card--sm span {
  font-size: 0.82rem;
  color: var(--muted);
}

/* Dark mode servis kartları */
html[data-theme="dark"] .gold-card,
html[data-theme="dark"] .quake-card,
html[data-theme="dark"] .weather-day,
html[data-theme="dark"] .pharma-card,
html[data-theme="dark"] .prayer-card,
html[data-theme="dark"] .prayer-week-wrap,
html[data-theme="dark"] .obit-card,
html[data-theme="dark"] .svc-empty {
  background: var(--surface);
  border-color: var(--line);
}

html[data-theme="dark"] .pharma-card__icon {
  background: rgba(5, 150, 105, 0.18);
}

html[data-theme="dark"] .pharma-card__dist {
  background: rgba(5, 150, 105, 0.18);
}

html[data-theme="dark"] .prayer-card.is-next {
  background: linear-gradient(180deg, rgba(67, 56, 202, 0.22), var(--surface));
}

html[data-theme="dark"] .weather-day.is-today {
  background: linear-gradient(180deg, rgba(2, 132, 199, 0.2), var(--surface));
}

@media (max-width: 820px) {
  .svc-hero { padding: 1.4rem 0 1.55rem; margin-bottom: 1.2rem; }
  .svc-hero__grid,
  .weather-dash {
    grid-template-columns: 1fr;
  }
  .prayer-grid { grid-template-columns: repeat(2, 1fr); }
  .quake-card {
    grid-template-columns: 48px 1fr;
  }
  .quake-card__time {
    grid-column: 2;
    margin-top: -0.35rem;
  }
  .quake-timeline::before { left: 1.85rem; }
  .gold-cards { grid-template-columns: 1fr 1fr; }
  .prayer-next--lg { justify-self: start; }
}

@media (max-width: 520px) {
  .gold-cards { grid-template-columns: 1fr; }
  .pharma-grid { grid-template-columns: 1fr; }
  .weather-forecast { grid-template-columns: 1fr 1fr; }
}

.weather-days-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.65rem;
  padding: 0 1.15rem 1.15rem;
}

.weather-days-grid .day {
  text-align: center;
  padding: 0.85rem 0.5rem;
  background: var(--bg);
  border-radius: 12px;
}

.weather-days-grid .day strong {
  display: block;
  font-size: 1.15rem;
  color: var(--navy);
  margin: 0.25rem 0;
}

.weather-days-grid .day span {
  font-size: 0.78rem;
  color: var(--muted);
}

.service-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}

.service-nav a {
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--line);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--navy);
}

.service-nav a:hover,
.service-nav a.is-active {
  background: var(--navy);
  border-color: var(--navy);
  color: #fff;
}

/* ========== MAIN LAYOUT ========== */
.main {
  padding: 1.25rem 0 2.5rem;
}

.layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 1.25rem;
  align-items: start;
}

/* ========== SECTION HEAD ========== */
.section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.85rem;
  padding-bottom: 0.55rem;
  border-bottom: 2px solid var(--navy);
}

.section-head h2 {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.02em;
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.section-head h2::before {
  content: "";
  width: 4px;
  height: 1em;
  background: var(--red);
  border-radius: 2px;
}

.section-head a {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--red);
}

.section-head a:hover { text-decoration: underline; }

/* ========== MANŞET + ASAYİŞ ========== */
.manset-row {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 1rem;
  margin-bottom: 1.15rem;
  align-items: stretch;
  /* Reserve manset block height early → lower CLS */
  min-height: clamp(280px, 36vw, 420px);
}

.hero-slider {
  margin-bottom: 0;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(12, 35, 64, 0.12);
  background: #111;
  min-width: 0;
  display: flex;
  flex-direction: column;
  /* Match critical CSS + image 16:9 */
  min-height: clamp(280px, 36vw, 420px);
  aspect-ratio: 16 / 9;
}

/* Asayiş slider (manşet sağı — Screenshot stili) */
.asayis-slider {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(12, 35, 64, 0.12);
  background: #111;
  height: 100%;
  min-height: clamp(280px, 36vw, 420px);
  isolation: isolate;
}

.asayis-slider__track {
  position: absolute;
  inset: 0;
}

.asayis-slide {
  position: absolute;
  inset: 0;
  display: block;
  color: #fff;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
  z-index: 0;
}

.asayis-slide.is-active {
  opacity: 1;
  visibility: visible;
  z-index: 1;
}

.asayis-slide__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.asayis-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.08) 25%,
    rgba(0, 0, 0, 0.45) 55%,
    rgba(0, 0, 0, 0.9) 100%
  );
  pointer-events: none;
}

.asayis-slide__caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2.35rem;
  z-index: 2;
  padding: 0 0.9rem;
  text-align: center;
}

.asayis-slide__caption h3 {
  font-size: clamp(0.98rem, 1.5vw, 1.22rem);
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: -0.02em;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.75);
  color: #fff;
}

.asayis-slider__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.55);
  color: #fff;
  display: grid;
  place-items: center;
  border: 0;
  transition: background 0.15s;
}

.asayis-slider__nav:hover { background: rgba(0, 0, 0, 0.8); }
.asayis-slider__nav--prev { left: 10px; }
.asayis-slider__nav--next { right: 10px; }

.asayis-slider__dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0.7rem;
  z-index: 5;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.35rem;
  pointer-events: auto;
}

.asayis-slider__dots button {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.55);
  cursor: pointer;
  transition: transform 0.12s, background 0.12s;
}

.asayis-slider__dots button.is-active {
  background: var(--red);
  transform: scale(1.15);
  box-shadow: 0 0 0 2px rgba(227, 6, 19, 0.25);
}

.asayis-slider__dots button:hover {
  background: #fff;
}

.hero-slider__frame {
  position: relative;
  overflow: hidden;
  flex: 1;
  display: flex;
  flex-direction: column;
  min-height: 0;
}

.hero-slider__track {
  position: relative;
  flex: 1;
  min-height: clamp(280px, 36vw, 420px);
  aspect-ratio: 16 / 9;
  background: #111;
  width: 100%;
}

.hero-slide {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  color: #fff;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, visibility 0.2s ease;
  z-index: 0;
}

.hero-slide.is-active {
  opacity: 1;
  visibility: visible;
  z-index: 1;
}

.hero-slide__media {
  flex: 1;
  position: relative;
  min-height: 0;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.hero-slide__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-slide__media::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(circle at 50% 45%, rgba(255, 255, 255, 0.08), transparent 42%),
    linear-gradient(180deg, transparent 40%, rgba(0, 0, 0, 0.55) 100%);
  pointer-events: none;
}

.hero-slide__media--1 { background: radial-gradient(ellipse at center, #e30613 0%, #9b0610 45%, #5c040a 100%); }
.hero-slide__media--2 { background: radial-gradient(ellipse at center, #c41e1e 0%, #0c2340 70%); }
.hero-slide__media--3 { background: radial-gradient(ellipse at center, #b91c1c 0%, #1a1a1a 75%); }
.hero-slide__media--4 { background: radial-gradient(ellipse at center, #dc2626 0%, #0c2340 65%); }
.hero-slide__media--5 { background: radial-gradient(ellipse at center, #991b1b 0%, #111827 80%); }
.hero-slide__media--6 { background: radial-gradient(ellipse at center, #e30613 0%, #1e293b 75%); }
.hero-slide__media--7 { background: radial-gradient(ellipse at center, #be123c 0%, #0c2340 70%); }
.hero-slide__media--8 { background: radial-gradient(ellipse at center, #b91c1c 0%, #0f172a 80%); }

.hero-slide__brand {
  position: relative;
  z-index: 1;
  font-size: clamp(2.6rem, 8vw, 5rem);
  font-weight: 800;
  line-height: 0.92;
  letter-spacing: -0.03em;
  text-align: center;
  text-transform: uppercase;
  color: #fff;
  text-shadow: 0 4px 40px rgba(0, 0, 0, 0.35);
  user-select: none;
}

.hero-slide__caption {
  flex-shrink: 0;
  background: #1a1a1a;
  padding: 1rem 1.25rem 1.1rem;
}

.hero-slide__caption h2 {
  font-size: clamp(1rem, 2.2vw, 1.45rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.25;
  text-transform: uppercase;
  color: #fff;
  max-width: 48ch;
}

.hero-slider__nav {
  position: absolute;
  top: 42%;
  transform: translateY(-50%);
  z-index: 5;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.55);
  color: #fff;
  display: grid;
  place-items: center;
  transition: background 0.15s, transform 0.15s;
  border: 0;
}

.hero-slider__nav:hover {
  background: rgba(0, 0, 0, 0.8);
}

.hero-slider__nav--prev { left: 14px; }
.hero-slider__nav--next { right: 14px; }

/* Alt numara şeridi */
.hero-slider__pager {
  display: flex;
  align-items: stretch;
  background: #fff;
  border-top: 1px solid #eee;
  overflow-x: auto;
  scrollbar-width: none;
}

.hero-slider__pager::-webkit-scrollbar { display: none; }

.hero-slider__pager button {
  flex: 1 0 auto;
  min-width: 36px;
  height: 36px;
  padding: 0 0.35rem;
  font-size: 0.82rem;
  font-weight: 700;
  color: #333;
  background: #fff;
  border: 0;
  border-right: 1px solid #f0f0f0;
  transition: background 0.12s, color 0.12s;
}

.hero-slider__pager button:last-child { border-right: 0; }

.hero-slider__pager button:hover {
  background: #f5f5f5;
}

.hero-slider__pager button.is-active {
  background: var(--red);
  color: #fff;
}

.badge {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.28rem 0.55rem;
  border-radius: 999px;
  background: var(--red);
  color: #fff;
  margin-bottom: 0.65rem;
}

.badge--navy { background: var(--navy); }
.badge--soft {
  background: linear-gradient(135deg, #e30613, #ff4d57);
  color: #fff;
  box-shadow: 0 2px 8px rgba(227, 6, 19, 0.25);
}

/* ========== NEWS GRID ========== */
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.9rem;
  margin-bottom: 1.5rem;
}

.news-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(12, 35, 64, 0.05);
  transition: transform 0.18s ease, border-color 0.15s, box-shadow 0.18s;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.news-card__link {
  display: flex;
  flex-direction: column;
  height: 100%;
  color: inherit;
  text-decoration: none;
}

.news-card:hover {
  transform: translateY(-3px);
  border-color: rgba(227, 6, 19, 0.22);
  box-shadow: 0 12px 28px rgba(12, 35, 64, 0.1);
}

.news-card__media {
  position: relative;
  overflow: hidden;
}

.news-card__img {
  display: block;
  aspect-ratio: 16 / 10;
  background: linear-gradient(145deg, #1e4a78, #0c2340);
  background-size: cover;
  background-position: center;
  transition: transform 0.35s ease;
}

.news-card:hover .news-card__img {
  transform: scale(1.04);
}

.news-card__img--2 { background: linear-gradient(145deg, #2a4a3a, #0c2340); }
.news-card__img--3 { background: linear-gradient(145deg, #4a2a2a, #0c2340); }
.news-card__img--4 { background: linear-gradient(145deg, #2a3a5a, #0c2340); }
.news-card__img--5 { background: linear-gradient(145deg, #3a2a4a, #0c2340); }
.news-card__img--6 { background: linear-gradient(145deg, #1a4a4a, #0c2340); }

/* Modern kategori rozeti — görsel üzerinde */
.news-card__cat {
  position: absolute;
  left: 0.65rem;
  bottom: 0.65rem;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  max-width: calc(100% - 1.3rem);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  line-height: 1.2;
  padding: 0.32rem 0.65rem;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, #e30613 0%, #ff3b4a 100%);
  box-shadow: 0 4px 12px rgba(227, 6, 19, 0.35);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.news-card__media::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 45%;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.45));
  pointer-events: none;
}

.news-card__body {
  padding: 0.85rem 0.95rem 0.9rem;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  flex: 1;
}

.news-card__title,
.news-card h3 {
  margin: 0;
  font-size: 0.98rem;
  font-weight: 800;
  line-height: 1.35;
  color: var(--navy);
  letter-spacing: -0.02em;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color 0.15s;
}

.news-card:hover .news-card__title,
.news-card:hover h3 {
  color: var(--red);
}

.news-card__foot {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  padding-top: 0.15rem;
}

.news-card__time {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.72rem;
  color: var(--muted);
  font-weight: 500;
}

.news-card__time svg {
  opacity: 0.7;
  flex-shrink: 0;
}

.news-card__more {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  color: var(--red);
  background: rgba(227, 6, 19, 0.08);
  opacity: 0;
  transform: translateX(-4px);
  transition: opacity 0.15s, transform 0.15s, background 0.15s;
}

.news-card:hover .news-card__more {
  opacity: 1;
  transform: translateX(0);
}

html[data-theme="dark"] .news-card__cat {
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.35);
}

html[data-theme="dark"] .news-card__more {
  background: rgba(255, 59, 74, 0.15);
}

/* ========== SIDEBAR ========== */
/* Sidebar arama kutusu gizli — arama yalnızca üst barda */
.sidebar .widget_search,
.sidebar .wp-block-search,
.sidebar form.search,
.sidebar .sd44-search {
  display: none !important;
}

.sidebar {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: sticky;
  top: 120px;
}

.widget {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.widget__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 1rem;
  background: var(--navy);
  color: #fff;
}

.widget__head h3 {
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.widget__head a {
  font-size: 0.72rem;
  font-weight: 600;
  opacity: 0.85;
}

.widget__head a:hover { opacity: 1; }

.widget__body { padding: 0.75rem 1rem 1rem; }
.widget__body--tight { padding-top: 0.55rem; }

/* ========== En çok okunanlar (Screenshot_18: foto + başlık) ========== */
.widget--popular {
  padding: 0;
  overflow: hidden;
}

/* v2 — tam genişlik görsel, altta başlık, sade liste */
.popular-v2 {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.popular-v2__head {
  padding: 0.85rem 1rem 0.55rem;
}

.popular-v2__head h3 {
  margin: 0;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--navy);
}

.popular-v2__list {
  list-style: none;
  margin: 0;
  padding: 0 0.75rem 0.85rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.popular-v2__item {
  margin: 0;
}

.popular-v2__link {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  text-decoration: none;
  color: inherit;
}

.popular-v2__link:hover {
  color: inherit;
}

.popular-v2__media {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  border-radius: 12px;
  overflow: hidden;
  background: #1a1a1a;
}

.popular-v2__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.popular-v2__link:hover .popular-v2__media img {
  transform: scale(1.04);
}

.popular-v2__placeholder {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(145deg, #2a2a2a, #1a1a1a);
}

.popular-v2__title {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: -0.015em;
  color: var(--text);
  padding: 0 0.1rem;
}

.popular-v2__link:hover .popular-v2__title {
  color: var(--red);
}

html[data-theme="dark"] .popular-v2 {
  background: #141414;
  border-color: #2a2a2a;
}

html[data-theme="dark"] .popular-v2__head h3 {
  color: #f3f4f6;
}

html[data-theme="dark"] .popular-v2__title {
  color: #f3f4f6;
}

/* Eski popular list (geriye uyumluluk) */
.popular-widget__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.95rem 1rem;
  background: linear-gradient(135deg, #0c2340 0%, #1a3f66 55%, #1e4a78 100%);
  color: #fff;
  position: relative;
}

.popular-widget__head::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--red), #ff8a8a 50%, transparent);
}

.popular-widget__head-main {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  min-width: 0;
}

.popular-widget__icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: rgba(227, 6, 19, 0.2);
  color: #ffb4b4;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.popular-widget__kicker {
  display: block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 0.1rem;
}

.popular-widget__head h3 {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: #fff;
}

.popular-list {
  list-style: none;
  margin: 0;
  padding: 0.35rem 0;
}

.popular-list__item {
  margin: 0;
  border-bottom: 1px solid var(--line);
}

.popular-list__item:last-child {
  border-bottom: 0;
}

.popular-list__link {
  display: grid;
  grid-template-columns: 28px 56px 1fr auto;
  gap: 0.65rem;
  align-items: center;
  padding: 0.75rem 0.85rem;
  transition: background 0.15s ease;
}

.popular-list__item--top .popular-list__link {
  grid-template-columns: 28px 72px 1fr auto;
  padding: 0.9rem 0.85rem;
  background: linear-gradient(90deg, rgba(227, 6, 19, 0.04), transparent 70%);
}

.popular-list__link:hover {
  background: #f8fafc;
}

.popular-list__item--top .popular-list__link:hover {
  background: linear-gradient(90deg, rgba(227, 6, 19, 0.07), #f8fafc 70%);
}

.popular-list__rank {
  display: grid;
  place-items: center;
  align-self: start;
  margin-top: 0.15rem;
}

.popular-list__rank-num {
  width: 26px;
  height: 26px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  font-size: 0.78rem;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
  color: var(--navy);
  background: var(--bg);
  border: 1px solid var(--line);
}

.popular-list__item.is-rank-1 .popular-list__rank-num {
  background: linear-gradient(145deg, #e30613, #ff4d57);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 4px 10px rgba(227, 6, 19, 0.28);
  width: 28px;
  height: 28px;
}

.popular-list__item.is-rank-2 .popular-list__rank-num {
  background: linear-gradient(145deg, #334155, #64748b);
  color: #fff;
  border-color: transparent;
}

.popular-list__item.is-rank-3 .popular-list__rank-num {
  background: linear-gradient(145deg, #b45309, #d97706);
  color: #fff;
  border-color: transparent;
}

.popular-list__media {
  display: block;
  width: 56px;
  height: 56px;
  border-radius: 12px;
  overflow: hidden;
  flex-shrink: 0;
  background: var(--bg);
  border: 1px solid var(--line);
  box-shadow: 0 2px 8px rgba(12, 35, 64, 0.06);
}

.popular-list__item--top .popular-list__media {
  width: 72px;
  height: 72px;
  border-radius: 14px;
}

.popular-list__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.25s ease;
}

.popular-list__link:hover .popular-list__media img {
  transform: scale(1.06);
}

.popular-list__media--fallback {
  display: grid;
  place-items: center;
  color: var(--muted);
  background: linear-gradient(145deg, #e2e8f0, #f8fafc);
}

.popular-list__body {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.popular-list__cat {
  display: inline-block;
  align-self: flex-start;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--red);
  background: rgba(227, 6, 19, 0.08);
  border-radius: 999px;
  padding: 0.12rem 0.45rem;
  line-height: 1.3;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.popular-list__title {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-size: 0.86rem;
  font-weight: 700;
  line-height: 1.35;
  color: var(--navy);
  letter-spacing: -0.015em;
  transition: color 0.12s;
}

.popular-list__item--top .popular-list__title {
  font-size: 0.92rem;
  -webkit-line-clamp: 3;
}

.popular-list__link:hover .popular-list__title {
  color: var(--red);
}

.popular-list__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 0.65rem;
  margin-top: 0.15rem;
}

.popular-list__views {
  display: inline-flex;
  align-items: center;
  gap: 0.28rem;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--muted);
}

.popular-list__views svg {
  flex-shrink: 0;
  opacity: 0.75;
}

.popular-list__date {
  font-size: 0.7rem;
  font-weight: 500;
  color: #94a3b8;
}

.popular-list__arrow {
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  color: #94a3b8;
  background: transparent;
  opacity: 0;
  transform: translateX(-4px);
  transition: opacity 0.15s, transform 0.15s, color 0.15s, background 0.15s;
}

.popular-list__link:hover .popular-list__arrow {
  opacity: 1;
  transform: translateX(0);
  color: var(--red);
  background: rgba(227, 6, 19, 0.08);
}

@media (max-width: 520px) {
  .popular-list__link {
    grid-template-columns: 26px 52px 1fr;
  }
  .popular-list__item--top .popular-list__link {
    grid-template-columns: 26px 64px 1fr;
  }
  .popular-list__arrow { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  .popular-list__media img { transition: none; }
  .popular-list__link:hover .popular-list__media img { transform: none; }
}

/* Lig puan durumu */
.league-tabs {
  display: flex;
  gap: 0.35rem;
  margin-bottom: 0.65rem;
}

.league-tabs button {
  flex: 1;
  padding: 0.4rem 0.5rem;
  border-radius: 8px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--muted);
  background: var(--bg);
  border: 1px solid transparent;
}

.league-tabs button.is-active {
  color: var(--navy);
  background: #fff;
  border-color: var(--line);
  box-shadow: 0 1px 2px rgba(12, 35, 64, 0.04);
}

.standings {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.8rem;
}

.standings th {
  text-align: left;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--muted);
  font-weight: 600;
  padding: 0.4rem 0.25rem 0.55rem;
  border-bottom: 1px solid var(--line);
}

.standings th:nth-child(3),
.standings th:nth-child(4),
.standings th:nth-child(5),
.standings td:nth-child(3),
.standings td:nth-child(4),
.standings td:nth-child(5) {
  text-align: center;
}

.standings td {
  padding: 0.55rem 0.25rem;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  vertical-align: middle;
}

.standings tr:last-child td { border-bottom: 0; }

.standings .team {
  color: var(--navy);
  font-weight: 600;
  text-align: left !important;
  white-space: nowrap;
}

.standings .pts {
  font-weight: 800;
  color: var(--navy);
}

.standings tr.is-highlight {
  background: rgba(227, 6, 19, 0.06);
}

.standings tr.is-highlight .team {
  color: var(--red);
}

.pos {
  display: inline-grid;
  place-items: center;
  min-width: 22px;
  height: 22px;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--navy);
  background: var(--bg);
}

.pos--up { background: #dcfce7; color: #166534; }
.pos--down { background: #fee2e2; color: #991b1b; }
.pos--home { background: var(--red); color: #fff; }

.league-note {
  font-size: 0.7rem;
  color: var(--muted);
  margin-top: 0.65rem;
  line-height: 1.4;
}

/* ========== CATEGORY STRIPS ========== */
.cat-block {
  margin-top: 0.5rem;
  margin-bottom: 1.5rem;
}

.cat-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.cat-list a {
  display: grid;
  grid-template-columns: 8px 1fr auto;
  gap: 0.75rem;
  align-items: center;
  padding: 0.85rem 1rem;
  border-bottom: 1px solid var(--line);
  transition: background 0.12s;
}

.cat-list a:last-child { border-bottom: 0; }
.cat-list a:hover { background: #f8fafc; }

.cat-list a::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--red);
}

.cat-list strong {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.35;
}

.cat-list time {
  font-size: 0.75rem;
  color: var(--muted);
  white-space: nowrap;
}

/* ========== FOOTER (modern) ========== */
.footer {
  position: relative;
  background:
    radial-gradient(ellipse at 10% 0%, rgba(227, 6, 19, 0.18), transparent 45%),
    radial-gradient(ellipse at 90% 100%, rgba(37, 99, 235, 0.12), transparent 40%),
    linear-gradient(165deg, #0b1628 0%, #0a1422 50%, #071018 100%);
  color: rgba(255, 255, 255, 0.9);
  padding: 2.35rem 0 1.25rem;
  margin-top: 1.75rem;
  overflow: hidden;
}

.footer__accent {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 3px;
  background: linear-gradient(90deg, #e30613 0%, #ff6b6b 35%, #3b82f6 70%, transparent 100%);
}

html[data-theme="dark"] .footer {
  background:
    radial-gradient(ellipse at 10% 0%, rgba(227, 6, 19, 0.14), transparent 45%),
    linear-gradient(165deg, #070b14 0%, #050810 100%);
}

.footer__top {
  display: grid;
  grid-template-columns: 1.15fr 2fr;
  gap: 2rem 2.5rem;
  margin-bottom: 1.75rem;
  align-items: start;
}

.footer__brand .logo-wrap {
  display: inline-flex;
  align-items: center;
  margin-bottom: 0.9rem;
  padding: 0.55rem 0.8rem;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.25);
}

.footer__brand .logo-wrap img,
.footer__brand .logo-wrap .custom-logo {
  height: 36px;
  width: auto;
  max-width: 210px;
  object-fit: contain;
  display: block;
  filter: none;
}

.footer__brand .custom-logo-link {
  display: block;
  line-height: 0;
}

.footer__tagline,
.footer__brand p {
  font-size: 0.9rem;
  line-height: 1.55;
  max-width: 34ch;
  color: rgba(226, 232, 240, 0.72);
  margin: 0 0 1.1rem;
}

.footer__social {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.footer__social-btn {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition: transform 0.15s ease, background 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease;
}

.footer__social-btn:hover {
  transform: translateY(-2px);
  color: #fff;
  background: rgba(227, 6, 19, 0.9);
  border-color: rgba(227, 6, 19, 0.9);
  box-shadow: 0 8px 20px rgba(227, 6, 19, 0.35);
}

.footer__social-btn--facebook:hover { background: #1877f2; border-color: #1877f2; box-shadow: 0 8px 20px rgba(24, 119, 242, 0.35); }
.footer__social-btn--twitter:hover { background: #111; border-color: #333; }
.footer__social-btn--instagram:hover {
  background: linear-gradient(135deg, #f58529, #dd2a7b 50%, #8134af);
  border-color: transparent;
}
.footer__social-btn--youtube:hover { background: #ff0000; border-color: #ff0000; box-shadow: 0 8px 20px rgba(255, 0, 0, 0.3); }
.footer__social-btn--whatsapp:hover { background: #25d366; border-color: #25d366; box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3); }
.footer__social-btn--telegram:hover { background: #229ed9; border-color: #229ed9; }
.footer__social-btn--tiktok:hover { background: #010101; border-color: #25f4ee; }
.footer__social-btn--linkedin:hover { background: #0a66c2; border-color: #0a66c2; }

.footer__cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem 1.5rem;
}

.footer__col h4,
.footer h4 {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin: 0 0 0.85rem;
  color: #fff;
  position: relative;
  padding-bottom: 0.55rem;
}

.footer__col h4::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 22px;
  height: 2px;
  border-radius: 2px;
  background: var(--red);
}

.footer__menu,
.footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer__menu li,
.footer ul li {
  margin-bottom: 0.45rem;
}

.footer__menu a,
.footer ul a {
  font-size: 0.88rem;
  color: rgba(226, 232, 240, 0.72);
  transition: color 0.12s, transform 0.12s;
  display: inline-block;
}

.footer__menu a:hover,
.footer ul a:hover {
  color: #fff;
  transform: translateX(2px);
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 1.05rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem 1rem;
  flex-wrap: wrap;
  font-size: 0.78rem;
  color: rgba(226, 232, 240, 0.55);
}

.footer__bottom-social {
  display: flex;
  gap: 0.55rem;
  align-items: center;
}

.footer__bottom-social a {
  color: rgba(226, 232, 240, 0.45);
  transition: color 0.12s;
}

.footer__bottom-social a:hover {
  color: #fff;
}

/* ========== MOBILE ========== */
@media (max-width: 1100px) {
  .services__grid { grid-template-columns: repeat(3, 1fr); }
  /* 6 servis butonu tek satır */
  .services--buttons .services__grid--buttons {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 0.4rem;
  }
  .services--buttons .service-btn {
    min-height: 78px;
    padding: 0.55rem 0.2rem;
  }
  .services--buttons .service-btn__icon {
    width: 34px;
    height: 34px;
  }
  .services--buttons .service-btn__label {
    font-size: 0.62rem;
  }
  .namaz-grid { grid-template-columns: repeat(3, 1fr); }
  .manset-row { grid-template-columns: 1fr; }
  .asayis-slider { min-height: 380px; }
  .layout { grid-template-columns: 1fr; }
  .sidebar { position: static; display: grid; grid-template-columns: 1fr; max-width: 420px; }
  .footer__top { grid-template-columns: 1fr; gap: 1.25rem; }
  .footer__cols { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 1024px) {
  .sd44-search { width: 170px; }
  .nav__list > li > a,
  .nav__list > li > button.nav__drop {
    padding: 0.4rem 0.55rem;
    font-size: 0.82rem;
  }
}

@media (max-width: 820px) {
  .hero-slider__nav { width: 36px; height: 36px; }
  .hero-slider__nav--prev { left: 8px; }
  .hero-slider__nav--next { right: 8px; }
  .hero-slide__caption { padding: 0.85rem 1rem; }
  .news-grid { grid-template-columns: 1fr 1fr; }

  /* Manşet tam genişlik, asayiş gizli */
  .manset-row {
    grid-template-columns: 1fr;
    margin-bottom: 0.85rem;
  }
  .asayis-slider {
    display: none !important;
  }
  .hero-slider {
    border-radius: 12px;
    min-height: 220px;
    aspect-ratio: 16 / 9;
  }
  .hero-slider__track {
    min-height: 220px;
    aspect-ratio: 16 / 9;
  }
  .manset-row {
    min-height: 220px;
  }

  /*
   * Mobil header: satır1 logo + aksiyonlar, satır2 tam genişlik arama.
   * Odakta width animasyonu yok → sayfa aşağı kaymaz.
   */
  .header__bar {
    display: grid;
    grid-template-columns: 1fr auto;
    grid-template-areas:
      "logo actions"
      "search search"
      "nav nav";
    align-items: center;
    column-gap: 0.65rem;
    row-gap: 0.55rem;
    min-height: 0;
    padding: 0.55rem 0 0.65rem;
  }

  .header__left { grid-area: logo; }
  .header__actions { grid-area: actions; justify-self: end; }
  .header__search {
    grid-area: search;
    width: 100%;
  }

  .sd44-search {
    width: 100%;
    max-width: none;
    transition: border-color 0.15s, box-shadow 0.15s, background 0.15s;
  }

  .sd44-search:focus-within {
    width: 100%;
    /* genişleme yok — kayma engeli */
  }

  .sd44-search input {
    font-size: 16px; /* iOS otomatik zoom kapanır, sayfa zıplamaz */
  }

  .nav {
    grid-area: nav;
    width: 100%;
    justify-content: stretch;
    display: none;
    border-top: 1px solid var(--line);
    padding-top: 0.35rem;
    margin: 0;
  }
  .nav.is-open { display: block; }

  .nav__list {
    flex-direction: column;
    align-items: stretch;
    padding: 0.25rem 0 0.15rem;
  }

  .nav__list > li > a,
  .nav__list > li > button.nav__drop {
    padding: 0.65rem 0.5rem;
    border-radius: 8px;
  }

  .nav__submenu {
    position: static;
    transform: none;
    left: auto;
    box-shadow: none;
    border: 0;
    background: var(--search-bg);
    margin: 0.15rem 0 0.35rem;
  }

  .nav__item--drop.is-open .nav__submenu { display: block; }

  .btn-menu { display: flex; }

  /* Sticky header + focus kaymasını yumuşat */
  .site-chrome {
    overscroll-behavior: none;
  }

  .sd44-search input:focus {
    scroll-margin: 0;
  }

  .market-ticker__bar {
    justify-content: flex-start;
    overflow-x: auto;
    flex-wrap: nowrap;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .market-ticker__bar::-webkit-scrollbar { display: none; }

  /* Servisler: küçük kutucuk grid — alt alta tek kolon yok */
  .services {
    margin: 0.75rem 0 0.85rem;
  }

  .services__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
  }

  /* Servis butonları: tek satır, dar ekranda yatay kaydırma */
  .services--buttons .services__grid--buttons {
    display: flex;
    flex-wrap: nowrap;
    gap: 0.45rem;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 0.15rem;
  }
  .services--buttons .services__grid--buttons::-webkit-scrollbar { display: none; }
  .services--buttons .service-btn {
    flex: 0 0 auto;
    width: 6.5rem;
    min-height: 76px;
    padding: 0.55rem 0.35rem;
    border-radius: 12px;
    gap: 0.35rem;
  }
  .services--buttons .service-btn__icon {
    width: 32px;
    height: 32px;
    border-radius: 10px;
  }
  .services--buttons .service-btn__label {
    font-size: 0.62rem;
  }

  /* Mobil asayiş kutuları görünür */
  .asayis-mobile {
    display: block;
  }

  .service--eczane,
  .service--namaz {
    grid-column: auto;
  }

  .service {
    min-height: 0;
    padding: 0.65rem 0.55rem 0.7rem;
    border-radius: 12px;
    gap: 0.25rem;
    box-shadow: 0 1px 3px rgba(12, 35, 64, 0.05);
  }

  .service:hover {
    transform: none;
    box-shadow: 0 1px 3px rgba(12, 35, 64, 0.05);
  }

  .service__head {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.35rem;
    font-size: 0.6rem;
    letter-spacing: 0.04em;
    line-height: 1.2;
  }

  .service__icon {
    width: 28px;
    height: 28px;
  }

  .service__icon svg {
    width: 14px;
    height: 14px;
  }

  .service__value {
    font-size: 0.82rem;
    font-weight: 800;
    line-height: 1.25;
    word-break: break-word;
  }

  .service__title {
    font-size: 0.78rem;
    font-weight: 700;
    line-height: 1.25;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .service__meta {
    font-size: 0.65rem;
    line-height: 1.25;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    opacity: 0.85;
  }

  .namaz-grid { grid-template-columns: repeat(2, 1fr); }

  .breaking {
    margin-bottom: 0.75rem;
  }

  .main {
    padding: 0.85rem 0 1.75rem;
  }
}

@media (max-width: 520px) {
  .services__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.4rem;
  }

  .services--buttons .service-btn {
    width: 5.75rem;
    min-height: 72px;
    border-radius: 10px;
  }

  .service {
    padding: 0.55rem 0.4rem 0.6rem;
    border-radius: 10px;
  }

  .service__head {
    font-size: 0.55rem;
  }

  .service__value {
    font-size: 0.75rem;
  }

  .service__title {
    font-size: 0.72rem;
  }

  .service__meta {
    display: none; /* mobilde sade */
  }

  .namaz-grid { grid-template-columns: 1fr 1fr; }
  .news-grid { grid-template-columns: 1fr; }
  .sidebar { grid-template-columns: 1fr; max-width: none; }
  .hero-slider__track { min-height: 200px; aspect-ratio: 16 / 9; }
  .hero-slider { min-height: 200px; aspect-ratio: 16 / 9; }
  .hero-slider__pager button { min-width: 32px; height: 34px; font-size: 0.78rem; }

  /* Mobil footer: tamamen ortalı */
  .footer {
    padding: 1.35rem 0 1rem;
    margin-top: 1rem;
    text-align: center;
  }

  .footer__top {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
  }

  .footer__brand {
    text-align: center;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .footer__brand .logo-wrap {
    margin-bottom: 0.5rem;
    margin-left: auto;
    margin-right: auto;
  }

  .footer__brand p {
    max-width: 28ch;
    margin-left: auto;
    margin-right: auto;
    font-size: 0.8rem;
    line-height: 1.4;
    opacity: 0.7;
    text-align: center;
  }

  .footer__cols {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.65rem 0.5rem;
    width: 100%;
    text-align: center;
  }

  .footer__col {
    text-align: center;
  }

  .footer__col h4 {
    font-size: 0.68rem;
    margin-bottom: 0.45rem;
    letter-spacing: 0.04em;
    text-align: center;
  }

  .footer__menu,
  .footer__col ul {
    text-align: center;
  }

  .footer__menu a,
  .footer ul a {
    font-size: 0.78rem;
    line-height: 1.3;
    display: inline-block;
  }

  .footer__menu li,
  .footer ul li {
    margin-bottom: 0.28rem;
    text-align: center;
  }

  .footer__bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.25rem;
    font-size: 0.72rem;
    padding-top: 0.85rem;
    justify-content: center;
  }
}

@media (max-width: 360px) {
  .footer__cols {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.5rem 0.35rem;
  }
  .footer__col h4 {
    font-size: 0.62rem;
  }
  .footer__menu a,
  .footer ul a {
    font-size: 0.72rem;
  }
}

/* Çok dar ekran */
@media (max-width: 360px) {
  .services__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .services--buttons .service-btn {
    width: 5.35rem;
  }
}

html[data-theme="dark"] .service-btn {
  background: var(--surface);
  border-color: var(--line);
}

html[data-theme="dark"] .service-btn__label {
  color: var(--text);
}

@media (prefers-reduced-motion: reduce) {
  .breaking__pulse { animation: none; }
  .breaking__item { transition: none; }
  .breaking__progress.is-running span { animation: none; width: 100%; }
  .news-card:hover { transform: none; }
  .news-card:hover .news-card__img { transform: none; }
  .news-card__more { opacity: 1; transform: none; }
}

/* === WordPress entegrasyon (görsel bozmadan) === */
.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  word-wrap: normal !important;
}
.custom-logo-link { display: block; line-height: 0; }
.custom-logo-link img,
.logo img { height: 48px; width: auto; max-width: min(280px, 52vw); object-fit: contain; }
.nav__list .sub-menu { list-style: none; margin: 0; padding: 0; }
.nav__list .menu-item-has-children > .nav__drop { font: inherit; }
.footer ul { list-style: none; padding: 0; margin: 0; }
.footer li { margin-bottom: 0.45rem; }
.sd44-ad { margin: 1rem 0; text-align: center; }
.sd44-ad:empty { display: none; margin: 0; }
.sd44-single__title { font-size: clamp(1.4rem, 3vw, 1.85rem); font-weight: 800; color: var(--navy); letter-spacing: -0.03em; margin: 0.5rem 0; line-height: 1.25; }
.sd44-single__spot { color: var(--muted); font-size: 1.05rem; line-height: 1.5; margin-bottom: 0.75rem; }
.sd44-single__meta { display: flex; flex-wrap: wrap; gap: 0.75rem 1rem; font-size: 0.82rem; color: var(--muted); margin-bottom: 1rem; }
.sd44-single__thumb { margin: 0 0 1rem; border-radius: 12px; overflow: hidden; }
.sd44-single__thumb img { width: 100%; height: auto; display: block; }
.sd44-single__thumb figcaption { font-size: 0.8rem; color: var(--muted); padding: 0.4rem 0; }
.sd44-single__share { display: flex; gap: 0.5rem; margin-bottom: 1rem; flex-wrap: wrap; }
.sd44-single__share a { padding: 0.35rem 0.75rem; border-radius: 999px; background: var(--bg); border: 1px solid var(--line); font-size: 0.8rem; font-weight: 600; color: var(--navy); }
.sd44-single__share a:hover { border-color: var(--red); color: var(--red); }
.entry-content { font-size: 1.02rem; line-height: 1.75; color: var(--text); }
.entry-content h2, .entry-content h3 { color: var(--navy); margin: 1.25rem 0 0.5rem; }
.entry-content p { margin: 0 0 1rem; }
.entry-content img { max-width: 100%; height: auto; border-radius: 8px; }
.entry-content blockquote { border-left: 4px solid var(--red); padding: 0.5rem 1rem; margin: 1rem 0; background: var(--bg); color: var(--navy); }
.entry-content table { width: 100%; border-collapse: collapse; margin: 1rem 0; }
.entry-content th, .entry-content td { border: 1px solid var(--line); padding: 0.5rem 0.75rem; }
.sd44-single__tags { margin: 1rem 0; display: flex; flex-wrap: wrap; gap: 0.4rem; }
.sd44-single__tags a { font-size: 0.78rem; padding: 0.25rem 0.6rem; background: var(--bg); border-radius: 999px; color: var(--navy); }
.sd44-post-nav { display: flex; justify-content: space-between; gap: 1rem; margin: 1.5rem 0; font-size: 0.9rem; font-weight: 600; }
.sd44-post-nav a { color: var(--navy); }
.sd44-post-nav a:hover { color: var(--red); }
.sd44-breadcrumb { font-size: 0.82rem; color: var(--muted); margin-bottom: 0.75rem; }
.sd44-breadcrumb a { color: var(--navy); font-weight: 600; }
.sd44-author-box { display: flex; gap: 1rem; padding: 1rem; background: var(--bg); border-radius: 12px; margin: 1.5rem 0; }
.sd44-author-box img { border-radius: 50%; }
.sd44-related { margin-top: 1.5rem; }
.sd44-pagination { margin: 1.5rem 0; display: flex; gap: 0.35rem; flex-wrap: wrap; }
.sd44-pagination .page-numbers { display: inline-grid; place-items: center; min-width: 36px; height: 36px; padding: 0 0.5rem; border-radius: 8px; background: #fff; border: 1px solid var(--line); font-weight: 600; color: var(--navy); }
.sd44-pagination .current { background: var(--navy); color: #fff; border-color: var(--navy); }
.sd44-comments { margin-top: 2rem; padding-top: 1rem; border-top: 1px solid var(--line); }
.sd44-archive-desc { color: var(--muted); margin: -0.5rem 0 1rem; }
.alignwide { max-width: 1240px; }
.alignfull { width: 100vw; max-width: 100vw; margin-left: calc(50% - 50vw); }
a:focus-visible, button:focus-visible, .hero-slider__pager button:focus-visible, .asayis-slider__dots button:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 2px;
}
/* === Haber detay — modern + akışkan === */
.main--article {
  padding-bottom: 0.5rem;
}

/* Okuma ilerleme çubuğu */
.sd44-read-progress {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  z-index: 200;
  background: transparent;
  pointer-events: none;
}
.sd44-read-progress span {
  display: block;
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--red), #ff6b6b, #f59e0b);
  box-shadow: 0 0 10px rgba(227, 6, 19, 0.45);
  transition: width 0.08s linear;
}

.layout--article {
  align-items: start;
}

.sd44-article {
  background: transparent;
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
}

/* Tek yüzey: başlık → görsel → paylaş → metin */
.sd44-article__shell {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(12, 35, 64, 0.06);
  overflow: hidden;
  animation: sd44-article-in 0.45s ease both;
}

@keyframes sd44-article-in {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.sd44-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.3rem 0.4rem;
  font-size: 0.78rem;
  color: var(--muted);
  font-weight: 500;
  margin: 0;
  padding: 0.85rem 1.35rem 0;
}
.sd44-breadcrumb a {
  color: var(--navy);
  font-weight: 600;
  transition: color 0.15s;
}
.sd44-breadcrumb a:hover { color: var(--red); }
.sd44-breadcrumb__sep {
  opacity: 0.4;
  font-weight: 400;
}
.sd44-breadcrumb__current {
  color: var(--muted);
  max-width: 28ch;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.sd44-article__header {
  padding: 0.85rem 1.45rem 1.25rem;
  position: relative;
}
.sd44-article__badge {
  display: inline-flex;
  align-items: center;
  margin: 0 0 0.85rem;
  padding: 0.32rem 0.75rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--red), #ff4d57);
  color: #fff !important;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(227, 6, 19, 0.25);
  transition: transform 0.15s, box-shadow 0.15s;
}
.sd44-article__badge:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(227, 6, 19, 0.32);
}
.sd44-article__title {
  font-size: clamp(1.55rem, 3.6vw, 2.25rem);
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.04em;
  line-height: 1.18;
  margin: 0 0 0.9rem;
  text-wrap: balance;
}
.sd44-article__spot {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #64748b;
  font-weight: 500;
  margin: 0 0 1.15rem;
  max-width: 60ch;
  padding-left: 0.9rem;
  border-left: 3px solid rgba(227, 6, 19, 0.35);
}
.sd44-article__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem 0.5rem;
  font-size: 0.82rem;
  color: var(--muted);
  font-weight: 500;
}
.sd44-article__meta-item {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem 0.7rem;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 999px;
  line-height: 1;
}
.sd44-article__meta-item svg {
  flex-shrink: 0;
  opacity: 0.65;
}
.sd44-article__meta-item--link {
  color: var(--navy);
  font-weight: 600;
  transition: border-color 0.15s, color 0.15s, background 0.15s;
}
.sd44-article__meta-item--link:hover {
  color: var(--red);
  border-color: rgba(227, 6, 19, 0.35);
  background: rgba(227, 6, 19, 0.05);
}

.sd44-article__media {
  margin: 0 1.15rem 0;
  border-radius: 16px;
  overflow: hidden;
  background: var(--navy);
  position: relative;
  box-shadow: 0 12px 36px rgba(12, 35, 64, 0.12);
}
.sd44-article__media::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, transparent 70%, rgba(12, 35, 64, 0.12));
}
.sd44-article__img,
.sd44-article__media img {
  width: 100%;
  height: auto;
  display: block;
  max-height: 480px;
  object-fit: cover;
}
.sd44-article__media figcaption {
  position: relative;
  z-index: 1;
  font-size: 0.78rem;
  color: var(--muted);
  padding: 0.55rem 0.95rem;
  background: #fff;
  border-top: 1px solid var(--line);
}

/* Haber sonu paylaşım — ikon only */
.sd44-article__share {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem 1rem;
  margin: 0.25rem 1.15rem 1.25rem;
  padding: 0.85rem 1rem;
  background: linear-gradient(180deg, #f8fafc 0%, #fff 100%);
  border: 1px solid var(--line);
  border-radius: 16px;
}
.sd44-article__share-label {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}
.sd44-article__share-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
}
.sd44-share-icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid var(--line);
  color: var(--navy);
  box-shadow: 0 2px 8px rgba(12, 35, 64, 0.05);
  transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s, color 0.15s, background 0.15s;
}
.sd44-share-icon svg {
  display: block;
  width: 18px;
  height: 18px;
}
.sd44-share-icon:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(12, 35, 64, 0.1);
}
.sd44-share-icon--x:hover {
  color: #0f172a;
  border-color: #0f172a;
  background: #f1f5f9;
}
.sd44-share-icon--fb:hover {
  color: #fff;
  border-color: #1877f2;
  background: #1877f2;
}
.sd44-share-icon--wa:hover {
  color: #fff;
  border-color: #25d366;
  background: #25d366;
}
.sd44-share-icon--copy:hover {
  color: var(--navy);
  border-color: var(--navy);
  background: #eef2ff;
}
.sd44-share-icon--print:hover {
  color: #fff;
  border-color: var(--red);
  background: var(--red);
}
.sd44-share-icon.is-copied {
  color: #047857;
  border-color: #6ee7b7;
  background: #ecfdf5;
}
.sd44-share-icon .sd44-share-btn__icon--check { display: none; }
.sd44-share-icon.is-copied .sd44-share-btn__icon--copy { display: none; }
.sd44-share-icon.is-copied .sd44-share-btn__icon--check { display: block !important; }

.sd44-article__body.entry-content {
  font-size: 1.05rem;
  line-height: 1.65;
  color: #1e293b;
  text-align: justify;
  text-justify: inter-word;
  hyphens: auto;
  -webkit-hyphens: auto;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  padding: 1.15rem 1.5rem 0.35rem;
  margin: 0;
  max-width: none;
}
.sd44-article__body.entry-content > *:first-child { margin-top: 0; }
.sd44-article__body.entry-content h2,
.sd44-article__body.entry-content h3,
.sd44-article__body.entry-content h4 {
  color: var(--navy);
  font-weight: 800;
  letter-spacing: -0.025em;
  margin: 1.15rem 0 0.45rem;
  line-height: 1.25;
  text-align: left;
}
.sd44-article__body.entry-content p {
  margin: 0 0 0.7rem;
  text-align: justify;
}
.sd44-article__body.entry-content a {
  color: var(--red);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
  text-decoration-thickness: 1px;
}
.sd44-article__body.entry-content img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  margin: 0.55rem auto 0.75rem;
  box-shadow: 0 6px 18px rgba(12, 35, 64, 0.08);
  display: block;
}
.sd44-article__body.entry-content blockquote {
  border-left: 4px solid var(--red);
  margin: 0.9rem 0;
  padding: 0.75rem 1rem;
  background: linear-gradient(90deg, rgba(227, 6, 19, 0.06), #f8fafc);
  color: var(--navy);
  font-weight: 600;
  font-size: 1.02rem;
  border-radius: 0 12px 12px 0;
  text-align: left;
}
.sd44-article__body.entry-content ul,
.sd44-article__body.entry-content ol {
  margin: 0 0 0.7rem 1.2rem;
  text-align: left;
}
.sd44-article__body.entry-content li {
  margin-bottom: 0.2rem;
}
.sd44-article__body.entry-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.15rem 0;
  font-size: 0.95rem;
  border-radius: 12px;
  overflow: hidden;
}
.sd44-article__body.entry-content th,
.sd44-article__body.entry-content td {
  border: 1px solid var(--line);
  padding: 0.6rem 0.8rem;
}
.sd44-article__body.entry-content th {
  background: var(--bg);
  color: var(--navy);
  font-weight: 700;
}
.sd44-page-links {
  margin: 1rem 0;
  font-weight: 700;
  color: var(--navy);
}

.sd44-article__tags {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.4rem;
  margin: 0;
  padding: 0.25rem 1.35rem 0.85rem;
  border-top: 1px solid transparent;
}
.sd44-article__tags-label {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  margin-right: 0.2rem;
}
.sd44-article__tags a {
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.38rem 0.8rem;
  border-radius: 999px;
  background: var(--bg);
  border: 1px solid var(--line);
  color: var(--navy);
  transition: border-color 0.15s, color 0.15s, background 0.15s, transform 0.15s;
}
.sd44-article__tags a:hover {
  border-color: rgba(227, 6, 19, 0.4);
  color: var(--red);
  background: rgba(227, 6, 19, 0.05);
  transform: translateY(-1px);
}

.sd44-article > .sd44-reactions,
.sd44-article > .sd44-comments {
  animation: sd44-article-in 0.5s ease 0.08s both;
}

/* Yazdır: sade çıktı */
@media print {
  .site-chrome,
  .header,
  .nav,
  .market-ticker,
  .sidebar,
  .footer,
  .breaking,
  .sd44-read-progress,
  .sd44-article__share,
  .sd44-reactions,
  .sd44-comments,
  .sd44-ad,
  .btn-menu {
    display: none !important;
  }
  .layout--article {
    display: block !important;
  }
  .sd44-article__shell {
    box-shadow: none !important;
    border: 0 !important;
  }
  .main--article {
    padding: 0 !important;
  }
}

/* === Emoji reactions (comments üstü) === */
.sd44-reactions {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 4px 16px rgba(12, 35, 64, 0.04);
  padding: 1.1rem 1.2rem 1.2rem;
  margin: 0;
}
.sd44-reactions.is-loading { opacity: 0.72; pointer-events: none; }
.sd44-reactions__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.85rem;
}
.sd44-reactions__title {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.02em;
}
.sd44-reactions__total {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--muted);
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.25rem 0.65rem;
}
.sd44-reactions__list {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: center;
  gap: 0.55rem 0.75rem;
}
.sd44-reactions__btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  min-width: 52px;
  padding: 0.35rem 0.25rem 0.2rem;
  border-radius: 999px;
  background: transparent;
  border: 0;
  color: var(--muted);
  transition: transform 0.15s ease;
}
.sd44-reactions__emoji {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  font-size: 1.55rem;
  line-height: 1;
  border-radius: 50%;
  background: #f8fafc;
  border: 1.5px solid #e2e8f0;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
  transition: border-color 0.15s, background 0.15s, box-shadow 0.15s, transform 0.15s;
}
.sd44-reactions__count {
  font-size: 0.78rem;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  color: var(--muted);
  min-height: 1.1em;
}
.sd44-reactions__btn:hover .sd44-reactions__emoji {
  transform: scale(1.08);
  border-color: #cbd5e1;
  background: #fff;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.08);
}
.sd44-reactions__btn.is-active .sd44-reactions__emoji {
  border-color: rgba(227, 6, 19, 0.45);
  background: linear-gradient(180deg, #fff, #fff5f5);
  box-shadow: 0 0 0 4px rgba(227, 6, 19, 0.1), 0 4px 14px rgba(227, 6, 19, 0.12);
}
.sd44-reactions__btn.is-active .sd44-reactions__count {
  color: var(--red);
}
.sd44-reactions__btn.is-pop .sd44-reactions__emoji {
  animation: sd44-react-pop 0.32s ease;
}
@keyframes sd44-react-pop {
  0% { transform: scale(1); }
  40% { transform: scale(1.22); }
  100% { transform: scale(1); }
}

/* === Comments modern === */
.sd44-comments {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 4px 16px rgba(12, 35, 64, 0.04);
  padding: 1.25rem 1.35rem 1.5rem;
  margin: 0 0 0.5rem;
}
.sd44-comments__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.15rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid var(--navy);
}
.sd44-comments__kicker {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.25rem;
}
.sd44-comments__title {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--navy);
  margin: 0 0 0.35rem;
  letter-spacing: -0.02em;
}
.sd44-comments__lead {
  margin: 0;
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.45;
  max-width: 42ch;
}
.sd44-comments__jump {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 0.95rem;
  border-radius: 999px;
  background: var(--navy);
  color: #fff !important;
  font-size: 0.82rem;
  font-weight: 700;
  transition: background 0.15s;
}
.sd44-comments__jump:hover { background: var(--red); }

.sd44-comments__empty {
  text-align: center;
  padding: 1.5rem 1rem;
  margin-bottom: 1rem;
  background: var(--bg);
  border: 1px dashed var(--line);
  border-radius: 14px;
  color: var(--muted);
}
.sd44-comments__empty-icon {
  display: block;
  font-size: 1.75rem;
  margin-bottom: 0.4rem;
}
.sd44-comments__empty p { margin: 0; font-size: 0.92rem; font-weight: 500; }
.sd44-comments__closed {
  padding: 0.75rem 1rem;
  background: #fff7ed;
  border: 1px solid #fed7aa;
  border-radius: 10px;
  color: #9a3412;
  font-size: 0.9rem;
  font-weight: 600;
}

.sd44-comment-list {
  list-style: none;
  margin: 0 0 1.25rem;
  padding: 0;
}
.sd44-comment-list .children {
  list-style: none;
  margin: 0.75rem 0 0 0.5rem;
  padding: 0 0 0 0.85rem;
  border-left: 2px solid var(--line);
}
.sd44-comment {
  margin: 0;
  padding: 0;
}
.sd44-comment__inner {
  display: flex;
  gap: 0.85rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--line);
}
.sd44-comment-list > .sd44-comment:last-child > .sd44-comment__inner {
  border-bottom: 0;
}
.sd44-comment__avatar { flex-shrink: 0; }
.sd44-comment__avatar-img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: block;
  object-fit: cover;
  background: var(--bg);
  border: 2px solid #fff;
  box-shadow: 0 0 0 1px var(--line);
}
.sd44-comment__body { flex: 1; min-width: 0; }
.sd44-comment__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 0.65rem;
  margin-bottom: 0.4rem;
}
.sd44-comment__author {
  font-weight: 800;
  color: var(--navy);
  font-size: 0.92rem;
}
.sd44-comment__author a { color: inherit; }
.sd44-comment__author a:hover { color: var(--red); }
.sd44-comment__date {
  font-size: 0.78rem;
  color: var(--muted);
  font-weight: 500;
}
.sd44-comment__date:hover { color: var(--navy); }
.sd44-comment__pending {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #b45309;
  background: #fffbeb;
  border: 1px solid #fcd34d;
  border-radius: 999px;
  padding: 0.15rem 0.5rem;
}
.sd44-comment__content {
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--text);
}
.sd44-comment__content p { margin: 0 0 0.5rem; }
.sd44-comment__content p:last-child { margin-bottom: 0; }
.sd44-comment__reply { margin-top: 0.45rem; }
.sd44-comment__reply a {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--navy);
  padding: 0.25rem 0.65rem;
  border-radius: 999px;
  background: var(--bg);
  border: 1px solid var(--line);
}
.sd44-comment__reply a:hover {
  color: var(--red);
  border-color: rgba(227, 6, 19, 0.35);
}

/* Comment form + warning notice */
.sd44-comment-respond {
  margin-top: 0.5rem;
  padding-top: 1.15rem;
  border-top: 1px solid var(--line);
}
.sd44-comment-form__title {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--navy);
  margin: 0 0 0.85rem;
  letter-spacing: -0.02em;
}
.sd44-comment-form__cancel a {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--red);
}
.sd44-comment-notice {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  padding: 0.9rem 1rem;
  margin: 0 0 1rem;
  background: linear-gradient(135deg, #fff7ed 0%, #fffbeb 100%);
  border: 1px solid #fdba74;
  border-left: 4px solid #f59e0b;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(245, 158, 11, 0.08);
}
.sd44-comment-notice__icon {
  flex-shrink: 0;
  font-size: 1.15rem;
  line-height: 1.3;
}
.sd44-comment-notice__body strong {
  display: block;
  font-size: 0.88rem;
  font-weight: 800;
  color: #9a3412;
  margin-bottom: 0.25rem;
}
.sd44-comment-notice__body p {
  margin: 0 !important;
  font-size: 0.84rem;
  line-height: 1.5;
  color: #7c2d12;
  font-weight: 500;
}

.sd44-comment-form {
  display: flex;
  flex-wrap: wrap;
  gap: 0 0.75rem;
}
.sd44-comment-form__field {
  margin: 0 0 0.85rem;
  width: 100%;
}
.sd44-comment-form__field--half {
  width: calc(50% - 0.375rem);
}
.sd44-comment-form__field label {
  display: block;
  font-weight: 700;
  color: var(--navy);
  font-size: 0.82rem;
  margin-bottom: 0.35rem;
}
.sd44-comment-form__field .required { color: var(--red); }
.sd44-comment-form__field input,
.sd44-comment-form__field textarea,
.sd44-comment-form input[type="text"],
.sd44-comment-form input[type="email"],
.sd44-comment-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.7rem 0.9rem;
  font-family: inherit;
  font-size: 0.95rem;
  background: #fafbfc;
  color: var(--text);
  transition: border-color 0.15s, box-shadow 0.15s, background 0.15s;
}
.sd44-comment-form__field input:focus,
.sd44-comment-form__field textarea:focus,
.sd44-comment-form input:focus,
.sd44-comment-form textarea:focus {
  outline: none;
  border-color: rgba(12, 35, 64, 0.35);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(12, 35, 64, 0.08);
}
.sd44-comment-form__field textarea {
  min-height: 120px;
  resize: vertical;
  line-height: 1.55;
}
.sd44-comment-form__cookies {
  width: 100%;
  margin: 0 0 0.85rem;
  font-size: 0.82rem;
  color: var(--muted);
  display: flex;
  gap: 0.45rem;
  align-items: flex-start;
}
.sd44-comment-form__cookies input { margin-top: 0.2rem; }
.sd44-comment-form__submit {
  width: 100%;
  margin: 0.25rem 0 0;
}
.sd44-comment-form__submit button,
.sd44-comment-form .form-submit button,
.comment-form .form-submit input {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 100%);
  color: #fff;
  border: 0;
  border-radius: 999px;
  padding: 0.7rem 1.4rem;
  font-weight: 700;
  font-size: 0.92rem;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(12, 35, 64, 0.2);
  transition: background 0.15s, transform 0.12s, box-shadow 0.15s;
}
.sd44-comment-form__submit button:hover,
.sd44-comment-form .form-submit button:hover,
.comment-form .form-submit input:hover {
  background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(227, 6, 19, 0.25);
}

.comment-navigation,
.comments-navigation {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  margin: 0 0 1rem;
  font-size: 0.85rem;
  font-weight: 700;
}
.comment-navigation a,
.comments-navigation a { color: var(--navy); }
.comment-navigation a:hover,
.comments-navigation a:hover { color: var(--red); }

@media (max-width: 820px) {
  .sd44-article__body.entry-content { padding: 1.15rem 1.1rem 0.35rem; font-size: 1.05rem; }
  .sd44-article__header { padding: 0.75rem 1.1rem 1.05rem; }
  .sd44-breadcrumb { padding: 0.75rem 1.1rem 0; }
  .sd44-article__media { margin: 0 0.85rem; border-radius: 14px; }
  .sd44-article__share { margin: 0.15rem 0.85rem 1.05rem; }
  .sd44-article__tags { padding: 0.15rem 1.1rem 0.75rem; }
  .sd44-article__img, .sd44-article__media img { max-height: 300px; }
  .sd44-comments__header { flex-direction: column; }
  .sd44-comment-form__field--half { width: 100%; }
}
@media (max-width: 520px) {
  .sd44-article__title { font-size: 1.4rem; }
  .sd44-article__spot { font-size: 1rem; }
  .sd44-article__shell { border-radius: 16px; }
  .sd44-article__share {
    flex-direction: column;
    align-items: flex-start;
  }
  .sd44-share-icon {
    width: 42px;
    height: 42px;
  }
  .sd44-reactions__emoji { width: 42px; height: 42px; font-size: 1.35rem; }
  .sd44-reactions__btn { min-width: 44px; }
  .sd44-comment__inner { gap: 0.65rem; }
  .sd44-comment__avatar-img { width: 40px; height: 40px; }
}
@media (prefers-reduced-motion: reduce) {
  .sd44-article__shell,
  .sd44-article > .sd44-reactions,
  .sd44-article > .sd44-comments {
    animation: none;
  }
  .sd44-read-progress span { transition: none; }
  .sd44-share-icon:hover { transform: none; }
}

/* === Arama sayfası === */
.sd44-search-hero {
  margin: 0 0 1.35rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--shadow);
  overflow: hidden;
  position: relative;
}
.sd44-search-hero::before {
  content: "";
  position: absolute;
  left: 0; right: 0; top: 0;
  height: 3px;
  background: var(--red);
}
.sd44-search-hero__inner {
  padding: 1.5rem 1.35rem 1.4rem;
}
.sd44-search-hero__kicker {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--red);
  margin: 0 0 0.45rem;
}
.sd44-search-hero__title {
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.03em;
  line-height: 1.25;
  margin: 0 0 0.4rem;
  word-break: break-word;
}
.sd44-search-hero__count {
  margin: 0 0 1.1rem;
  font-size: 0.92rem;
  color: var(--muted);
  font-weight: 500;
}
.sd44-search-hero__form {
  display: flex;
  gap: 0.55rem;
  align-items: stretch;
  max-width: 640px;
  width: 100%;
}
.sd44-search-hero__input {
  flex: 1 1 auto;
  min-width: 0;
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.7rem 1.1rem;
  font-size: 0.95rem;
  font-family: inherit;
  color: var(--text);
  background: var(--bg);
  outline: none;
  transition: border-color 0.15s, box-shadow 0.15s;
  box-sizing: border-box;
}
.sd44-search-hero__input:focus {
  border-color: rgba(12, 35, 64, 0.35);
  box-shadow: 0 0 0 3px rgba(12, 35, 64, 0.08);
  background: var(--surface);
}
.sd44-search-hero__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  flex: 0 0 auto;
  padding: 0 1.15rem;
  border: 0;
  border-radius: 999px;
  background: var(--navy);
  color: #fff;
  font-size: 0.9rem;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.15s;
}
html[data-theme="dark"] .sd44-search-hero__btn {
  background: var(--red);
}
.sd44-search-hero__btn:hover { background: var(--red); }

/* Sonuç listesi */
.sd44-search-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
  width: 100%;
}
.sd44-search-item {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: border-color 0.15s, transform 0.15s, box-shadow 0.15s;
  width: 100%;
}
.sd44-search-item:hover {
  border-color: rgba(227, 6, 19, 0.28);
  transform: translateY(-1px);
  box-shadow: 0 8px 28px rgba(12, 35, 64, 0.1);
}
.sd44-search-item__link {
  display: grid;
  grid-template-columns: minmax(120px, 168px) minmax(0, 1fr);
  gap: 0;
  min-height: 132px;
  color: inherit;
  text-decoration: none;
  width: 100%;
}
.sd44-search-item__media {
  background-size: cover;
  background-position: center;
  background-color: #0c2340;
  min-height: 100%;
  min-width: 0;
}
.sd44-search-item__media--fallback {
  background-image: linear-gradient(145deg, #1e4a78, #0c2340);
}
.sd44-search-item__media--2 { background-image: linear-gradient(145deg, #2a4a3a, #0c2340); }
.sd44-search-item__media--3 { background-image: linear-gradient(145deg, #4a2a2a, #0c2340); }
.sd44-search-item__media--4 { background-image: linear-gradient(145deg, #2a3a5a, #0c2340); }
.sd44-search-item__media--5 { background-image: linear-gradient(145deg, #3a2a4a, #0c2340); }
.sd44-search-item__media--6 { background-image: linear-gradient(145deg, #1a4a4a, #0c2340); }

.sd44-search-item__body {
  padding: 0.95rem 1.1rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  min-width: 0;
}
.sd44-search-item__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}
.sd44-search-item__top .badge { margin-bottom: 0; }
.sd44-search-item__date {
  font-size: 0.75rem;
  color: var(--muted);
  font-weight: 500;
  white-space: nowrap;
}
.sd44-search-item__title {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.02em;
  line-height: 1.3;
  overflow-wrap: anywhere;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.sd44-search-item:hover .sd44-search-item__title { color: var(--red); }
.sd44-search-item__excerpt {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.5;
  color: var(--muted);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.sd44-search-item__more {
  margin-top: auto;
  padding-top: 0.35rem;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--red);
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}

/* Boş durum */
.sd44-empty {
  text-align: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--shadow);
  padding: 2.25rem 1.5rem 2rem;
  max-width: 520px;
  margin: 0 auto 1rem;
}
.sd44-empty__icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  background: var(--bg);
  color: var(--navy);
  display: grid;
  place-items: center;
}
.sd44-empty__title {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--navy);
  margin: 0 0 0.5rem;
  letter-spacing: -0.02em;
}
.sd44-empty__text {
  margin: 0 0 1.15rem;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.55;
}
.sd44-empty__form {
  display: flex;
  gap: 0.45rem;
  max-width: 400px;
  margin: 0 auto 1rem;
}
.sd44-empty__input {
  flex: 1;
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.6rem 1rem;
  font-family: inherit;
  background: var(--bg);
}
.sd44-empty__btn {
  border: 0;
  border-radius: 999px;
  padding: 0 1rem;
  background: var(--navy);
  color: #fff;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
}
.sd44-empty__btn:hover { background: var(--red); }
.sd44-empty__home {
  display: inline-block;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--navy);
}
.sd44-empty__home:hover { color: var(--red); }

@media (max-width: 820px) {
  .sd44-search-item__link { grid-template-columns: 120px 1fr; min-height: 110px; }
  .sd44-search-hero__form { flex-direction: column; }
  .sd44-search-hero__btn { justify-content: center; padding: 0.75rem 1rem; }
}
@media (max-width: 520px) {
  .sd44-search-item__link { grid-template-columns: 1fr; }
  .sd44-search-item__media { min-height: 160px; aspect-ratio: 16/9; }
  .sd44-empty__form { flex-direction: column; }
}

/* ========== KOYU MOD — sabit #fff yüzeyleri ========== */
html[data-theme="dark"] .asayis-mobile__card {
  background: var(--surface);
  border-color: var(--line);
}
html[data-theme="dark"] .asayis-mobile__headline {
  color: var(--text);
}
html[data-theme="dark"] .asayis-mobile__title {
  color: var(--text);
}

html[data-theme="dark"] .widget,
html[data-theme="dark"] .news-card,
html[data-theme="dark"] .service,
html[data-theme="dark"] .sd44-article__shell,
html[data-theme="dark"] .sd44-reactions,
html[data-theme="dark"] .sd44-comments,
html[data-theme="dark"] .sd44-related,
html[data-theme="dark"] .sd44-article__share,
html[data-theme="dark"] .sd44-search-hero,
html[data-theme="dark"] .sd44-search-item,
html[data-theme="dark"] .hero-slider,
html[data-theme="dark"] .asayis-slider,
html[data-theme="dark"] .footer {
  background: var(--surface);
  border-color: var(--line);
}

html[data-theme="dark"] .footer {
  background: #080e1a;
  color: rgba(232, 238, 247, 0.85);
}

html[data-theme="dark"] .popular-widget__head,
html[data-theme="dark"] .widget__head {
  background: linear-gradient(135deg, #0a1424 0%, #152238 100%);
}

html[data-theme="dark"] .sd44-article__body.entry-content {
  color: var(--text);
}

html[data-theme="dark"] .sd44-article__title,
html[data-theme="dark"] .sd44-comments__title,
html[data-theme="dark"] .popular-list__title {
  color: var(--text);
}

html[data-theme="dark"] .sd44-share-icon {
  background: var(--search-bg);
  border-color: var(--line);
  color: var(--text);
}

html[data-theme="dark"] .hero-slide__caption,
html[data-theme="dark"] .asayis-slide__caption {
  color: #fff;
}

/* ========== KURUMSAL / YASAL SAYFALAR ========== */
.main--legal {
  padding-bottom: 2.75rem;
}

.legal-hero {
  background: linear-gradient(125deg, #0c2340 0%, #1a3a5c 55%, #2d5a87 100%);
  color: #fff;
  padding: 1.75rem 0 1.5rem;
  margin-bottom: 1.5rem;
  position: relative;
  overflow: hidden;
}

.legal-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.12;
  background: radial-gradient(ellipse at 20% 0%, #fff, transparent 55%);
  pointer-events: none;
}

.legal-hero__inner {
  position: relative;
  z-index: 1;
}

.legal-hero__back {
  display: inline-flex;
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 0.75rem;
}

.legal-hero__back:hover { color: #fff; text-decoration: underline; }

.legal-hero__kicker {
  margin: 0 0 0.3rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.85;
}

.legal-hero__title {
  margin: 0 0 1rem;
  font-size: clamp(1.65rem, 4vw, 2.2rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: #fff;
}

/* Eski pill navigasyon — kaldırıldı, gizli tut */
.legal-nav,
.legal-links {
  display: none !important;
}

.legal-wrap {
  max-width: 820px;
}

.legal-panel {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow);
  padding: 1.35rem 1.4rem 1.6rem;
}

.legal-content {
  font-size: 0.98rem;
  line-height: 1.7;
  color: var(--text);
}

.legal-content h2 {
  margin: 1.6rem 0 0.65rem;
  font-size: 1.12rem;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.02em;
}

.legal-content h2:first-child { margin-top: 0.5rem; }

.legal-content p { margin: 0 0 0.85rem; }

.legal-content ul {
  margin: 0 0 1rem 1.15rem;
  padding: 0;
}

.legal-content li { margin-bottom: 0.35rem; }

.legal-content a {
  color: var(--red);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.legal-doc__updated {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--muted);
  margin-bottom: 1rem !important;
}

.legal-note {
  font-size: 0.88rem;
  color: var(--muted);
  background: var(--bg);
  border: 1px dashed var(--line);
  border-radius: 12px;
  padding: 0.75rem 0.9rem;
}

.legal-table {
  width: 100%;
  border-collapse: collapse;
  margin: 0 0 1.15rem;
  font-size: 0.92rem;
}

.legal-table th,
.legal-table td {
  text-align: left;
  padding: 0.65rem 0.75rem;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}

.legal-table th {
  width: 38%;
  font-weight: 700;
  color: var(--navy);
  background: var(--bg);
}

.legal-table--wide th {
  width: auto;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--muted);
}

.legal-contact-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 0.75rem;
  margin: 1rem 0 1.35rem;
}

.legal-contact-card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 0.95rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.legal-contact-card__label {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}

.legal-contact-card a,
.legal-contact-card span:not(.legal-contact-card__label) {
  font-weight: 700;
  color: var(--navy);
  text-decoration: none;
  font-size: 0.95rem;
  line-height: 1.4;
}

.legal-links {
  list-style: none !important;
  margin-left: 0 !important;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.legal-links li { margin: 0 !important; }

.legal-links a {
  display: inline-flex;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: var(--bg);
  border: 1px solid var(--line);
  color: var(--navy) !important;
  text-decoration: none !important;
  font-size: 0.85rem;
}

.legal-links a:hover {
  border-color: var(--red);
  color: var(--red) !important;
}

/* Cookie bar */
.sd44-cookie {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  padding: 0.85rem 1rem calc(0.85rem + env(safe-area-inset-bottom, 0px));
  background: rgba(12, 35, 64, 0.96);
  color: #fff;
  box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(10px);
}

.sd44-cookie[hidden] { display: none !important; }

.sd44-cookie__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.85rem 1.25rem;
}

.sd44-cookie__text {
  margin: 0;
  flex: 1 1 280px;
  font-size: 0.88rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.92);
}

.sd44-cookie__text a {
  color: #fbbf24;
  font-weight: 700;
  text-decoration: underline;
}

.sd44-cookie__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.sd44-cookie__btn {
  font-size: 0.85rem;
  font-weight: 700;
  padding: 0.5rem 1rem;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: transparent;
  color: #fff;
  cursor: pointer;
}

.sd44-cookie__btn--primary {
  background: #e30613;
  border-color: #e30613;
}

.sd44-cookie__btn:hover { opacity: 0.92; }

html[data-theme="dark"] .legal-panel {
  background: var(--surface);
  border-color: var(--line);
}

html[data-theme="dark"] .legal-content h2,
html[data-theme="dark"] .legal-table th,
html[data-theme="dark"] .legal-contact-card a,
html[data-theme="dark"] .legal-contact-card span:not(.legal-contact-card__label) {
  color: var(--text);
}

@media (max-width: 640px) {
  .legal-panel { padding: 1.1rem 1rem 1.25rem; }
  .legal-table th { width: 42%; font-size: 0.82rem; }
  .legal-table td { font-size: 0.86rem; }
}

/* Kategori arşiv hero */
.sd44-cat-hero {
  margin-bottom: 1.15rem;
}
.sd44-cat-hero__kicker {
  margin: 0 0 0.25rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}
.sd44-cat-hero .section-head { margin-bottom: 0.35rem; }
.sd44-archive-desc {
  margin: 0 0 0.5rem;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.55;
  max-width: 48rem;
}

/* ========== HABER GÖNDER CTA + form + popular cards ========== */
.tip-cta {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.85rem;
  padding: 0.95rem 1rem;
  border-radius: 16px;
  overflow: hidden;
  text-decoration: none;
  color: #fff;
  background: linear-gradient(125deg, #b91c1c 0%, #e30613 45%, #ff4d4d 100%);
  box-shadow:
    0 8px 24px rgba(227, 6, 19, 0.35),
    0 0 0 1px rgba(255, 255, 255, 0.12) inset;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.tip-cta:hover {
  transform: translateY(-2px);
  color: #fff;
  box-shadow:
    0 12px 32px rgba(227, 6, 19, 0.45),
    0 0 0 1px rgba(255, 255, 255, 0.18) inset;
}
.tip-cta__glow {
  position: absolute;
  inset: -40% -20% auto auto;
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, rgba(255,255,255,0.35), transparent 70%);
  pointer-events: none;
}
.tip-cta__icon {
  position: relative;
  z-index: 1;
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.25);
}
.tip-cta__text {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  min-width: 0;
  flex: 1;
}
.tip-cta__kicker {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.9;
}
.tip-cta__label {
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  line-height: 1.15;
}
.tip-cta__arrow {
  position: relative;
  z-index: 1;
  font-size: 1.25rem;
  font-weight: 700;
  opacity: 0.9;
}

/* Popular: card layout (photo + text, 4 items stacked) */
.popular-list--cards {
  list-style: none;
  margin: 0;
  padding: 0.55rem;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}
.popular-list--cards .popular-list__item {
  border: 0;
  margin: 0;
}
.popular-list__card {
  display: flex;
  flex-direction: column;
  background: var(--surface, #fff);
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: box-shadow 0.15s ease, transform 0.15s ease;
}
.popular-list__card:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 22px rgba(12, 35, 64, 0.08);
  color: inherit;
}
.popular-list__card-media {
  position: relative;
  display: block;
  aspect-ratio: 16 / 9;
  background: #e2e8f0;
  overflow: hidden;
}
.popular-list__card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.25s ease;
}
.popular-list__card:hover .popular-list__card-media img {
  transform: scale(1.04);
}
.popular-list__card-fallback {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  color: #94a3b8;
  background: linear-gradient(145deg, #f1f5f9, #e2e8f0);
}
.popular-list__card-rank {
  position: absolute;
  top: 0.5rem;
  left: 0.5rem;
  min-width: 1.65rem;
  height: 1.65rem;
  padding: 0 0.4rem;
  border-radius: 8px;
  display: grid;
  place-items: center;
  font-size: 0.78rem;
  font-weight: 800;
  color: #fff;
  background: var(--navy, #0c2340);
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}
.popular-list--cards .is-rank-1 .popular-list__card-rank {
  background: linear-gradient(145deg, #e30613, #b91c1c);
}
.popular-list--cards .is-rank-2 .popular-list__card-rank { background: #334155; }
.popular-list--cards .is-rank-3 .popular-list__card-rank { background: #b45309; }
.popular-list__card-body {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  padding: 0.7rem 0.8rem 0.8rem;
}
.popular-list--cards .popular-list__cat {
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--red);
}
.popular-list--cards .popular-list__title {
  font-size: 0.92rem;
  font-weight: 800;
  line-height: 1.35;
  color: var(--navy);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.popular-list--cards .popular-list__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem 0.75rem;
  font-size: 0.75rem;
  color: var(--muted);
}

/* Haber Gönder page */
.main--tip { padding-bottom: 2.5rem; }
.tip-hero {
  background: linear-gradient(125deg, #7f1d1d 0%, #e30613 55%, #f87171 100%);
  color: #fff;
  padding: 1.75rem 0 1.85rem;
  margin-bottom: 1.35rem;
}
.tip-hero__inner { max-width: 640px; position: relative; }
.tip-hero__back {
  display: inline-flex;
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255,255,255,0.88);
  margin-bottom: 0.75rem;
}
.tip-hero__back:hover { color: #fff; text-decoration: underline; }
.tip-hero__kicker {
  margin: 0 0 0.3rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.9;
}
.tip-hero__title {
  margin: 0 0 0.5rem;
  font-size: clamp(1.7rem, 4vw, 2.2rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #fff;
}
.tip-hero__lead {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.5;
  opacity: 0.95;
  max-width: 36rem;
}
.tip-wrap { max-width: 720px; }
.tip-alert {
  padding: 0.95rem 1.1rem;
  border-radius: 14px;
  margin-bottom: 1rem;
  font-weight: 600;
  line-height: 1.45;
}
.tip-alert--ok {
  background: #ecfdf5;
  border: 1px solid #a7f3d0;
  color: #065f46;
}
.tip-alert--err {
  background: #fef2f2;
  border: 1px solid #fecaca;
  color: #991b1b;
}
.tip-form {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow);
  padding: 1.35rem 1.4rem 1.5rem;
}
.tip-form__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem 1rem;
}
.tip-field { margin: 0; }
.tip-field--full { grid-column: 1 / -1; }
.tip-field label {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.35rem;
}
.tip-field label span { color: var(--red); }
.tip-field input[type="text"],
.tip-field input[type="email"],
.tip-field input[type="tel"],
.tip-field textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.7rem 0.85rem;
  font: inherit;
  background: var(--bg);
  color: var(--text);
}
.tip-field input:focus,
.tip-field textarea:focus {
  outline: none;
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(227, 6, 19, 0.12);
}
.tip-field__hint {
  display: block;
  margin-top: 0.3rem;
  font-size: 0.75rem;
  color: var(--muted);
}
.tip-hp {
  position: absolute !important;
  left: -9999px !important;
  height: 0 !important;
  overflow: hidden !important;
}
.tip-form__note {
  margin: 1rem 0 1.15rem;
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.45;
}
.tip-form__submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border: 0;
  border-radius: 12px;
  padding: 0.8rem 1.35rem;
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: #fff;
  background: linear-gradient(125deg, #b91c1c, #e30613);
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(227, 6, 19, 0.28);
  text-decoration: none;
}
.tip-form__submit:hover { filter: brightness(1.05); color: #fff; }
.tip-form__submit--ghost {
  background: var(--navy);
  box-shadow: none;
}
.tip-again { margin-top: 0.5rem; }

.service-btn--haber .service-btn__icon {
  background: #fdecea;
  color: #e30613;
}
.service-btn--haber:hover { border-color: rgba(227, 6, 19, 0.4); }

html[data-theme="dark"] .tip-form,
html[data-theme="dark"] .popular-list__card {
  background: var(--surface);
  border-color: var(--line);
}
html[data-theme="dark"] .popular-list--cards .popular-list__title {
  color: var(--text);
}
html[data-theme="dark"] .tip-alert--ok {
  background: rgba(5, 150, 105, 0.15);
  border-color: rgba(5, 150, 105, 0.35);
  color: #6ee7b7;
}
html[data-theme="dark"] .tip-alert--err {
  background: rgba(185, 28, 28, 0.2);
  border-color: rgba(248, 113, 113, 0.35);
  color: #fecaca;
}

@media (max-width: 820px) {
  .tip-form__grid { grid-template-columns: 1fr; }
}
@media (max-width: 520px) {
  .tip-cta__label { font-size: 0.95rem; }
}

/* ========== TÜM HABERLER ARŞİV + DETAYLI ARAMA ========== */
.main--archive-news { padding-bottom: 2.5rem; }

.archive-news-hero {
  background: linear-gradient(125deg, #0c2340 0%, #1a3f66 55%, #2563eb 100%);
  color: #fff;
  padding: 1.75rem 0 1.9rem;
  margin-bottom: 1.25rem;
}
.archive-news-hero__inner { max-width: 720px; }
.archive-news-hero__back {
  display: inline-flex;
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255,255,255,0.88);
  margin-bottom: 0.75rem;
}
.archive-news-hero__back:hover { color: #fff; text-decoration: underline; }
.archive-news-hero__kicker {
  margin: 0 0 0.3rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.9;
}
.archive-news-hero__title {
  margin: 0 0 0.45rem;
  font-size: clamp(1.65rem, 4vw, 2.2rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #fff;
}
.archive-news-hero__lead {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.5;
  opacity: 0.92;
  max-width: 40rem;
}

.archive-news-filters {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--shadow);
  padding: 1rem 1.1rem 1.15rem;
  margin-bottom: 1.25rem;
}
.archive-news-filters__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 0.9fr 0.9fr 1fr auto;
  gap: 0.65rem 0.75rem;
  align-items: end;
}
.archive-news-filters__field {
  margin: 0;
  min-width: 0;
}
.archive-news-filters__field--grow { min-width: 10rem; }
.archive-news-filters__field label,
.archive-news-filters__spacer {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--muted);
  margin-bottom: 0.3rem;
  letter-spacing: 0.02em;
}
.archive-news-filters__field input,
.archive-news-filters__field select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 0.6rem 0.75rem;
  font: inherit;
  background: var(--bg);
  color: var(--text);
}
.archive-news-filters__field input:focus,
.archive-news-filters__field select:focus {
  outline: none;
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(227, 6, 19, 0.12);
}
.archive-news-filters__actions {
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  align-items: flex-end;
}
.archive-news-filters__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  border: 0;
  border-radius: 10px;
  padding: 0.65rem 1.05rem;
  font-weight: 800;
  font-size: 0.88rem;
  color: #fff;
  background: linear-gradient(125deg, #b91c1c, #e30613);
  cursor: pointer;
  white-space: nowrap;
}
.archive-news-filters__btn:hover { filter: brightness(1.05); }
.archive-news-filters__reset {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--muted);
  padding: 0.55rem 0.5rem;
  white-space: nowrap;
}
.archive-news-filters__reset:hover { color: var(--red); }

.section-head__title-link {
  color: inherit;
  text-decoration: none;
}
.section-head__title-link:hover { color: var(--red); }

html[data-theme="dark"] .archive-news-filters {
  background: var(--surface);
  border-color: var(--line);
}

@media (max-width: 1100px) {
  .archive-news-filters__grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
  .archive-news-filters__field--grow { grid-column: 1 / -1; }
  .archive-news-filters__actions { grid-column: 1 / -1; }
}
@media (max-width: 640px) {
  .archive-news-filters__grid {
    grid-template-columns: 1fr 1fr;
  }
}
