/* ============================================================
   KarşıyakaHaber – Ana Stil Dosyası
   Renk Paleti: Kırmızı #d60000 + Yeşil #16a34a
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --red:    #d60000;
  --green:  #15803d;
  --dark:   #0d1117;
  --navy:   #1a2332;
  --slate:  #374151;
  --mid:    #64748b;
  --light:  #f1f5f9;
  --white:  #ffffff;
  --border: #e2e8f0;
}

html  { scroll-behavior: smooth; }
body  { font-family: 'Inter', sans-serif; background: #f8fafc; color: var(--dark); font-size: 15px; line-height: 1.6; }
a     { text-decoration: none; color: inherit; }
img   { display: block; width: 100%; object-fit: cover; }

/* ── TICKER ─────────────────────────────────────────────── */
.ticker-wrap {
  background: #111;                    /* ← Tüm şerit SİYAH */
  color: #fff;
  display: flex;
  align-items: center;
  overflow: hidden;
  height: 34px;
}
.ticker-label {
  background: var(--red);             /* ← "⚡ Son Dakika" etiketi KIRMIZI */
  padding: 0 18px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  height: 100%;
  display: flex;
  align-items: center;
  white-space: nowrap;
  flex-shrink: 0;
}
.ticker-overflow { overflow: hidden; flex: 1; display: flex; }
.ticker-track {
  display: flex;
  animation: ticker 35s linear infinite;
  white-space: nowrap;
}
.ticker-track span { font-size: 12.5px; padding: 0 32px; border-right: 1px solid rgba(255,255,255,.25); }
.ticker-track span a { color: #fff; }
.ticker-track span a:hover { text-decoration: underline; }
@keyframes ticker { 0% { transform:translateX(0); } 100% { transform:translateX(-50%); } }

/* ── HEADER ─────────────────────────────────────────────── */
header {
  background: var(--red);
  position: sticky;
  top: 0;
  z-index: 200;
}
.header-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: 80px;
  gap: 16px;
}
.header-left  { display: flex; align-items: center; gap: 8px; position: relative; }
.header-right { display: flex; align-items: center; gap: 10px; justify-content: flex-end; }

/* Arama ikonu — yeşil */
.header-icon-only {
  color: var(--green); padding: 6px;
  transition: color .2s, opacity .2s; cursor: pointer;
  display: flex; align-items: center;
  opacity: 1;
}
.header-icon-only:hover { color: #4ade80; }

/* Logo */
.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}
.logo-main {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 52px; font-weight: 900; font-style: italic;
  color: #fff;
  /* Kalın 3D gölge — California Post stili */
  text-shadow:
    1px 1px 0 #000,
    2px 2px 0 #000,
    3px 3px 0 #000,
    4px 4px 0 #000,
    5px 5px 0 #000,
    6px 6px 0 #000,
    7px 7px 0 #000,
    8px 8px 0 #000;
  line-height: 1;
  letter-spacing: -1px;
  text-transform: uppercase;
}

/* Arama kutusu */
.arama-kutu { display: none; position: absolute; top: 100%; left: 0; z-index: 300; }
.arama-kutu.open { display: flex; }
.arama-kutu form {
  display: flex;
  background: var(--dark);
  border: 2px solid rgba(255,255,255,.3);
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,.4);
}
.arama-kutu input {
  background: transparent; border: none; outline: none;
  color: #fff; padding: 10px 14px; font-size: 14px; font-family: inherit;
  width: 260px;
}
.arama-kutu input::placeholder { color: rgba(255,255,255,.5); }
.arama-kutu button {
  background: var(--green); border: none; cursor: pointer;
  color: #fff; padding: 0 16px; transition: background .2s;
}
.arama-kutu button:hover { background: #15803d; }

/* Hamburger butonu — masaüstünde gizli */
.header-icon-btn {
  display: none;
  align-items: center; justify-content: center;
  width: 38px; height: 38px;
  background: rgba(255,255,255,.12); border: none; border-radius: 6px;
  cursor: pointer; color: #fff;
  transition: background .2s;
}
.header-icon-btn:hover { background: rgba(255,255,255,.22); }
.header-icon-btn .close-icon { display: none; }
.header-icon-btn.active .burger-icon { display: none; }
.header-icon-btn.active .close-icon { display: block; }

/* Header sosyal medya ikonları */
.hdr-social { display: flex; align-items: center; gap: 6px; }
.hdr-soc {
  display: flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; border-radius: 6px;
  color: #fff; transition: transform .2s, opacity .2s;
  opacity: .85;
}
.hdr-soc:hover { opacity: 1; transform: translateY(-2px); }
.hdr-fb { background: #1877f2; }
.hdr-tw { background: #000; }
.hdr-ig { background: radial-gradient(circle at 30% 107%, #fdf497 0%,#fd5949 45%,#d6249f 60%,#285aeb 90%); }
.hdr-yt { background: #ff0000; }

/* ── NAVBAR — California Post stili ─────────────────────── */
.navbar { background: #111; position: relative; z-index: 190; }
.navbar-inner {
  max-width: 1320px; margin: 0 auto; padding: 0 20px;
  display: flex; align-items: stretch; justify-content: space-between; height: 42px;
}
.navbar-links { display: flex; flex-wrap: nowrap; align-items: stretch; }
.navbar-links a {
  display: flex; align-items: center;
  color: #fff;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 14.5px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase;
  padding: 0 15px;
  transition: color .15s;
  white-space: nowrap;
  line-height: 1;
  border-right: 1px solid rgba(255,255,255,.1);
}
.navbar-links a:first-child { border-left: 1px solid rgba(255,255,255,.1); }
.navbar-links a:hover  { color: var(--green); }
.navbar-links a.active { color: var(--green); }

/* Tarih + hava durumu sağ taraf */
.navbar-edition {
  display: flex; align-items: center; gap: 6px;
  font-size: 12px; color: rgba(255,255,255,.55);
  white-space: nowrap; flex-shrink: 0;
}
.nav-sep { color: rgba(255,255,255,.25); }
.nav-hava { display: flex; align-items: center; gap: 4px; color: rgba(255,255,255,.75); font-size: 12px; }

/* Diğer kategoriler dropdown */
.nav-diger-wrap {
  position: relative;
  display: flex; align-items: center;
  border-left: 1px solid rgba(255,255,255,.2);
}
.nav-diger-btn {
  display: flex; align-items: center; gap: 4px;
  background: transparent; border: none; cursor: pointer;
  color: #fff;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 14.5px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase;
  padding: 0 15px; height: 100%;
  transition: color .15s;
  white-space: nowrap; line-height: 1;
}
.nav-diger-btn         { color: #fff; }
.nav-diger-btn:hover,
.nav-diger-wrap.open .nav-diger-btn { color: var(--green); }
.nav-diger-menu {
  display: none;
  position: absolute; top: 100%; right: 0;
  background: #111; border: none;
  min-width: 190px;
  box-shadow: 0 8px 24px rgba(0,0,0,.3);
  z-index: 300;
}
.nav-diger-wrap.open .nav-diger-menu { display: block; }
.nav-diger-menu a {
  display: block; padding: 10px 18px;
  color: #fff;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 14px; font-weight: 700; letter-spacing: .8px; text-transform: uppercase;
  border-bottom: 1px solid rgba(255,255,255,.15);
  transition: background .15s;
}
.nav-diger-menu a:last-child { border-bottom: none; }
.nav-diger-menu a:hover { background: rgba(255,255,255,.05); color: var(--green); }

/* ── REKLAM ŞERİTLERİ ───────────────────────────────────── */
.reklam-serit {
  background: #f1f5f9;
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  padding: 10px 0;
}
.reklam-serit-inner {
  max-width: 1320px; margin: 0 auto; padding: 0 24px;
  display: flex; justify-content: center;
}
.reklam-serit-inner img { max-height: 90px; width: auto; display: block; }
.reklam-serit-footer {
  background: #f8fafc;
  border-top: 2px solid var(--border); border-bottom: none;
  padding: 14px 0;
  margin-top: 8px;
}
.reklam-orta {
  display: flex; justify-content: center;
  margin: 28px 0; padding: 10px 0;
  background: #f1f5f9;
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
}
.reklam-orta img { max-height: 90px; width: auto; display: block; }
.reklam-placeholder {
  width: 728px; max-width: 100%; height: 90px;
  background: #e2e8f0; border: 2px dashed #cbd5e1;
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  color: #94a3b8; font-size: 13px; font-weight: 600;
}

/* ── SEKSİYON BAŞLIĞI — California Post stili ───────────── */
.seksyon-baslik {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 0; margin-bottom: 20px;
  border-top: 3px solid #111; border-bottom: 2px solid #111;
}
.seksyon-kat-badge {
  position: relative; flex-shrink: 0;
  background: #fff; border: 3px solid #111;
  transform: skewX(-8deg);
  padding: 5px 20px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 22px; font-weight: 900; font-style: italic;
  color: var(--green); text-transform: uppercase;
  /* 3D gölge */
  box-shadow: 4px 4px 0 #111;
  letter-spacing: .5px;
}
.seksyon-cizgi {
  flex: 0 0 32px; height: 2px; background: #111;
}
.seksyon-cizgi-uzun { flex: 1; }
.seksyon-slogan {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 15px; font-weight: 800; font-style: italic;
  color: #111; text-transform: uppercase; letter-spacing: .8px;
  white-space: nowrap;
}
.seksyon-tumunu-gor {
  flex-shrink: 0;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px; font-weight: 800; letter-spacing: 1px;
  text-transform: uppercase; color: #111;
  border: 2px solid #111; padding: 4px 12px;
  transition: background .15s, color .15s;
  white-space: nowrap;
}
.seksyon-tumunu-gor:hover { background: #111; color: #fff; }

/* 4'lü grid — ayrı kartlar, gap ile */
.news-grid-4 {
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 20px !important;
  margin-bottom: 32px;
  border: none;
  border-radius: 0;
  overflow: visible;
}
.news-grid-4 .news-card {
  border-radius: 12px;
  border-right: none;
  border-bottom: none;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}
.news-grid-4 .news-card:nth-child(4n) { border-right: none; }

/* ── HERO — Overlay Stili ─────────────────────────────── */
.hero-wrap {
  max-width: 1320px; margin: 22px auto; padding: 0 24px;
}
.hero {
  display: grid; grid-template-columns: 1fr 340px; gap: 0;
  border-radius: 14px; overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
}

/* Ana haber: resim + gradient overlay */
.hero-main {
  display: block; cursor: pointer;
  border-right: 1px solid var(--border);
  text-decoration: none;
  position: relative;
}
.hero-main-img-wrap {
  position: relative; overflow: hidden;
  height: 100%; min-height: 440px;
}
.hero-main-img-wrap img {
  height: 100%; min-height: 440px; width: 100%; object-fit: cover; display: block;
  transition: transform .5s;
}
.hero-main:hover .hero-main-img-wrap img { transform: scale(1.04); }

/* Karanlık gradient overlay — metin resmin üzerinde */
.hero-main-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.88) 0%, rgba(0,0,0,0.55) 55%, transparent 100%);
  padding: 80px 22px 22px;
}
.hero-main-kat-badge {
  display: inline-block;
  background: var(--green); color: #fff;
  font-size: 10px; font-weight: 800; letter-spacing: 1.5px; text-transform: uppercase;
  padding: 4px 10px; border-radius: 4px;
  margin-bottom: 10px;
}
.hero-main-overlay h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 30px; font-weight: 900; line-height: 1.2;
  color: #fff; margin-bottom: 12px;
  text-shadow: 0 2px 10px rgba(0,0,0,0.4);
}
/* hover renk değişikliği yok */
.hero-main-meta {
  color: rgba(255,255,255,0.82); font-size: 12px;
  display: flex; gap: 14px; flex-wrap: wrap;
}

/* Yan haberler sütunu */
.hero-side { display: flex; flex-direction: column; background: #fff; }
.hero-side-card {
  display: flex; gap: 12px;
  border-bottom: 1px solid var(--border);
  cursor: pointer; transition: background .15s;
  text-decoration: none; padding: 14px;
  flex: 1; align-items: flex-start;
}
.hero-side-card:last-child { border-bottom: none; }
.hero-side-card:hover { background: #f8fafc; }
.hero-side-card img { width: 96px; height: 72px; flex-shrink: 0; border-radius: 6px; object-fit: cover; }
.hero-side-body { display: flex; flex-direction: column; gap: 4px; flex: 1; }
.hero-side-kat {
  font-size: 10px; font-weight: 800; letter-spacing: 1px; text-transform: uppercase; color: var(--red);
}
.hero-side-body h3 { font-size: 13px; font-weight: 700; line-height: 1.35; color: var(--dark); }
.hero-side-card:hover .hero-side-body h3 { color: var(--red); }
.hero-side-body .meta { font-size: 11px; color: var(--mid); }

/* ── SECTION HEADER ──────────────────────────────────────── */
.section-header {
  display: flex; align-items: center; gap: 10px; margin-bottom: 18px;
}
.section-header .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green); flex-shrink: 0; }
.section-header h2 { font-size: 17px; font-weight: 800; color: var(--dark); }
.section-header .line { flex: 1; height: 2px; background: var(--border); }

/* ── ANA İÇERİK ─────────────────────────────────────────── */
.main-wrapper {
  max-width: 1320px; margin: 0 auto 48px; padding: 0 24px;
  display: grid; grid-template-columns: 1fr 300px; gap: 32px;
}

/* ── HABER GRID ─────────────────────────────────────────── */
.news-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; }

.news-card {
  background: var(--white);
  cursor: pointer;
  border-right: none;
  border-bottom: none;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
  transition: box-shadow .2s, transform .2s;
  text-decoration: none;
}
.news-card:hover { box-shadow: 0 8px 24px rgba(0,0,0,0.13); transform: translateY(-2px); background: var(--white); }
/* Resim sarmalayıcı */
.news-card-img-wrap {
  position: relative; overflow: hidden;
}
.news-card-img-wrap img {
  height: 190px; width: 100%; object-fit: cover;
  transition: transform .35s; display: block;
}
.news-card:hover .news-card-img-wrap img { transform: scale(1.04); }
/* Overlay badge kaldırıldı — badge artık resmin altında */
.news-card-img-wrap .badge-sm { display: none; }
/* Kategori badge — pill şeklinde, resmin altında */
.news-card-kat {
  display: inline-block;
  background: var(--red); color: #fff;
  font-size: 10px; font-weight: 800; letter-spacing: 1px; text-transform: uppercase;
  padding: 3px 12px; border-radius: 20px;
  margin-bottom: 8px;
}
.news-card-body { padding: 14px 16px 18px; }
.news-card-body h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 19px; font-weight: 800; line-height: 1.3;
  color: var(--dark); margin: 0;
}
.news-card:hover .news-card-body h3 { color: var(--red); }
.news-card-body p  { font-size: 12.5px; color: var(--mid); line-height: 1.55; margin-bottom: 9px; }
.news-card-footer {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 11px; color: var(--mid);
  border-top: 1px solid var(--border); padding-top: 9px; margin-top: 10px;
}
.news-card-footer .read { color: var(--green); font-weight: 700; }

/* Geniş kart */
.news-card-wide {
  grid-column: 1/-1;
  display: flex; background: var(--white); border-radius: 10px; overflow: hidden;
  box-shadow: 0 2px 10px rgba(0,0,0,.06); cursor: pointer; transition: box-shadow .2s;
}
.news-card-wide:hover { box-shadow: 0 8px 24px rgba(0,0,0,.11); }
.news-card-wide img { width: 340px; flex-shrink: 0; height: 210px; }
.news-card-wide-body {
  padding: 22px 26px;
  display: flex; flex-direction: column; justify-content: center; gap: 9px;
}
.news-card-wide-body h3 { font-family: 'Merriweather', serif; font-size: 19px; line-height: 1.4; }
.news-card-wide-body p  { font-size: 13px; color: var(--mid); line-height: 1.65; }

/* ── KATEGORİ STRIP ─────────────────────────────────────── */
.cat-strip { background: var(--navy); padding: 28px 24px; margin-bottom: 36px; }
.cat-strip-inner { max-width: 1320px; margin: 0 auto; }
.cat-strip h2 { color: #fff; font-size: 17px; font-weight: 800; margin-bottom: 18px; }
.cat-cards { display: grid; grid-template-columns: repeat(6, 1fr); gap: 12px; }
.cat-card {
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.1);
  border-radius: 8px; padding: 16px 12px; cursor: pointer;
  transition: background .2s; text-align: center;
}
.cat-card:hover { background: rgba(255,255,255,.14); }
.cat-card .icon { font-size: 24px; margin-bottom: 6px; }
.cat-card .name { font-size: 12.5px; font-weight: 700; color: #fff; }

/* ── SIDEBAR ────────────────────────────────────────────── */
.sidebar { display: flex; flex-direction: column; gap: 24px; }
.widget {
  background: var(--white); border-radius: 10px; padding: 18px;
  box-shadow: 0 2px 10px rgba(0,0,0,.06);
}
.widget-title {
  font-size: 12.5px; font-weight: 800; letter-spacing: 1px; text-transform: uppercase;
  color: var(--dark); padding-bottom: 12px;
  border-bottom: 2px solid var(--green); margin-bottom: 14px;
}

/* Trending */
.trending-item { display: flex; gap: 10px; align-items: flex-start; padding: 9px 0; border-bottom: 1px solid var(--border); }
.trending-item:last-child { border-bottom: none; padding-bottom: 0; }
.trending-num { font-size: 20px; font-weight: 900; color: var(--light); line-height: 1; flex-shrink: 0; width: 26px; }
.trending-item:nth-child(1) .trending-num { color: var(--red); }
.trending-item:nth-child(2) .trending-num { color: var(--green); }
.trending-item:nth-child(3) .trending-num { color: #0ea5e9; }
.trending-text h4 { font-size: 13px; font-weight: 700; line-height: 1.4; }
.trending-text h4 a:hover { color: var(--green); }
.trending-text span { font-size: 11px; color: var(--mid); }

/* Hava */
.weather-widget { text-align: center; }
.weather-city { font-size: 12px; font-weight: 700; color: var(--mid); margin-bottom: 4px; }
.weather-temp { font-size: 48px; font-weight: 900; color: var(--dark); line-height: 1; margin: 8px 0; }
.weather-temp span { font-size: 22px; font-weight: 500; }
.weather-desc { font-size: 13px; color: var(--mid); margin-bottom: 12px; }
.weather-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 6px; }
.weather-item { background: var(--light); border-radius: 7px; padding: 8px 4px; font-size: 10.5px; color: var(--slate); text-align: center; }
.weather-item strong { display: block; font-size: 13px; font-weight: 800; color: var(--dark); }

/* Sidebar küçük haber */
.sb-news-item { display: flex; gap: 10px; padding: 10px 0; border-bottom: 1px solid var(--border); }
.sb-news-item:last-child { border-bottom: none; padding-bottom: 0; }
.sb-news-item img { width: 70px; height: 54px; border-radius: 6px; flex-shrink: 0; }
.sb-news-body { display: flex; flex-direction: column; gap: 3px; }
.sb-cat { font-size: 10px; font-weight: 800; color: var(--green); text-transform: uppercase; letter-spacing: 1px; }
.sb-news-body h4 { font-size: 12.5px; font-weight: 700; line-height: 1.4; }
.sb-news-body h4 a:hover { color: var(--green); }
.sb-news-body small { font-size: 11px; color: var(--mid); }

/* Social */
.social-row {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 0; border-bottom: 1px solid var(--border);
}
.social-row:last-child { border-bottom: none; }
.social-icon {
  width: 34px; height: 34px; border-radius: 7px;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 900; color: #fff; flex-shrink: 0;
}
.social-row.fb .social-icon { background: #1877f2; }
.social-row.ig .social-icon { background: linear-gradient(135deg,#f58529,#dd2a7b,#8134af); }
.social-row.yt .social-icon { background: #ff0000; }
.social-info { flex: 1; }
.social-info strong { font-size: 13px; font-weight: 700; display: block; }
.social-info span   { font-size: 11px; color: var(--mid); }
.social-btn {
  font-size: 11px; font-weight: 700;
  padding: 4px 10px; border-radius: 5px;
  border: 2px solid var(--green); color: var(--green);
  transition: all .2s;
}
.social-row:hover .social-btn { background: var(--green); color: #fff; }

.ad-banner {
  background: linear-gradient(135deg, var(--navy), var(--slate));
  border-radius: 10px; padding: 20px; text-align: center;
  color: rgba(255,255,255,.5); font-size: 11px; letter-spacing: 1px;
  border: 1px dashed rgba(255,255,255,.15);
}
.ad-banner strong { display: block; font-size: 13px; color: #fff; margin-bottom: 4px; }

/* ── HABER DETAY ────────────────────────────────────────── */
.haber-detay-wrap { max-width: 1320px; margin: 0 auto 48px; padding: 0 24px; display: grid; grid-template-columns: 1fr 300px; gap: 32px; }
.haber-detay { background: var(--white); border-radius: 12px; padding: 30px; box-shadow: 0 2px 10px rgba(0,0,0,.06); }
.haber-ust-meta { display: flex; gap: 10px; align-items: center; flex-wrap: wrap; margin-bottom: 14px; }
.haber-kat-badge {
  background: var(--green); color: #fff;
  font-size: 10.5px; font-weight: 800; letter-spacing: 1px; text-transform: uppercase;
  padding: 4px 10px; border-radius: 4px;
}
.haber-kat-badge.red { background: var(--red); }
.haber-meta-item { font-size: 12px; color: var(--mid); }
.haber-detay h1 { font-family: 'Merriweather', serif; font-size: 26px; line-height: 1.4; margin-bottom: 14px; color: var(--dark); }
.haber-ozet { font-size: 16px; font-weight: 500; color: var(--slate); border-left: 3px solid var(--green); padding-left: 14px; margin-bottom: 20px; line-height: 1.6; }
.haber-resim { border-radius: 10px; overflow: hidden; margin-bottom: 24px; }
.haber-resim img { width: 100%; max-height: 460px; }
.haber-icerik { font-size: 15.5px; line-height: 1.85; color: #222; }
.haber-icerik p  { margin-bottom: 16px; }
.haber-icerik h2, .haber-icerik h3 { font-family: 'Merriweather', serif; margin: 24px 0 12px; }
.haber-icerik img { border-radius: 8px; margin: 20px auto; max-width: 100%; }
.haber-icerik blockquote {
  border-left: 4px solid var(--green); background: var(--light);
  padding: 14px 18px; margin: 20px 0; border-radius: 0 8px 8px 0;
  font-style: italic; color: var(--slate);
}
.haber-etiketler { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 24px; padding-top: 18px; border-top: 1px solid var(--border); }
.etiket {
  background: var(--light); color: var(--slate);
  font-size: 12px; font-weight: 600;
  padding: 5px 12px; border-radius: 999px;
  transition: background .2s;
}
.etiket:hover { background: var(--green); color: #fff; }

/* Yorum */
.yorumlar { margin-top: 32px; padding-top: 24px; border-top: 2px solid var(--border); }
.yorumlar h2 { font-size: 18px; font-weight: 800; margin-bottom: 18px; }
.yorum-item { padding: 14px; background: var(--light); border-radius: 8px; margin-bottom: 12px; }
.yorum-item .yorum-ad { font-size: 13px; font-weight: 700; margin-bottom: 4px; color: var(--green); }
.yorum-item .yorum-tarih { font-size: 11px; color: var(--mid); margin-bottom: 8px; }
.yorum-item .yorum-icerik { font-size: 13.5px; line-height: 1.6; }
.yorum-form { margin-top: 24px; }
.yorum-form h3 { font-size: 16px; font-weight: 800; margin-bottom: 14px; }
.form-group { margin-bottom: 14px; }
.form-group label { display: block; font-size: 13px; font-weight: 600; margin-bottom: 6px; }
.form-group input, .form-group textarea {
  width: 100%; padding: 10px 14px;
  border: 1.5px solid var(--border); border-radius: 7px;
  font-size: 14px; font-family: inherit;
  outline: none; transition: border .2s;
}
.form-group input:focus, .form-group textarea:focus { border-color: var(--green); }
.btn-gonder {
  background: var(--green); color: #fff;
  padding: 11px 24px; border: none; border-radius: 7px;
  font-size: 14px; font-weight: 700; cursor: pointer;
  font-family: inherit; transition: background .2s;
}
.btn-gonder:hover { background: #15803d; }

/* ── KATEGORİ SAYFA ─────────────────────────────────────── */
.kat-baslik {
  background: var(--green); color: #fff;
  padding: 20px 24px; border-radius: 10px;
  margin-bottom: 22px; display: flex; align-items: center; gap: 12px;
}
.kat-baslik h1 { font-size: 22px; font-weight: 800; }
.kat-baslik .dot-kat { width: 10px; height: 10px; border-radius: 50%; background: var(--red); flex-shrink: 0; }

/* Sayfalama */
.pagination { display: flex; gap: 8px; justify-content: center; margin-top: 28px; flex-wrap: wrap; }
.pagination a, .pagination span {
  display: flex; align-items: center; justify-content: center;
  width: 38px; height: 38px; border-radius: 7px;
  font-size: 13px; font-weight: 700;
  background: var(--white); border: 1.5px solid var(--border);
  transition: all .2s;
}
.pagination a:hover { background: var(--green); color: #fff; border-color: var(--green); }
.pagination .aktif { background: var(--green); color: #fff; border-color: var(--green); }

/* ── ARAMA SAYFASI ──────────────────────────────────────── */
.arama-baslik { font-size: 20px; font-weight: 800; margin-bottom: 20px; color: var(--dark); }
.arama-baslik span { color: var(--green); }

/* ── FOOTER ─────────────────────────────────────────────── */
footer { background: var(--green); color: rgba(255,255,255,.85); }
.footer-top {
  max-width: 1320px; margin: 0 auto;
  padding: 44px 24px 30px;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 36px;
}
.footer-logo {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 30px; font-weight: 900; font-style: italic;
  color: #fff; margin-bottom: 10px;
}
.footer-brand p { font-size: 13px; line-height: 1.7; max-width: 260px; }
.footer-social { display: flex; gap: 8px; margin-top: 14px; }
.fsoc {
  width: 32px; height: 32px; border-radius: 7px;
  background: rgba(255,255,255,.12); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 900;
  transition: background .2s;
}
.fsoc:hover { background: var(--green); }
.footer-col h4 { color: #fff; font-size: 12px; font-weight: 800; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 14px; border-bottom: 1px solid rgba(255,255,255,.1); padding-bottom: 8px; }
.footer-col ul  { list-style: none; display: flex; flex-direction: column; gap: 7px; }
.footer-col ul li a { font-size: 13px; transition: color .2s; }
.footer-col ul li a:hover { color: #fff; text-decoration: underline; }
.footer-col ul li { font-size: 13px; }
.footer-bottom {
  background: var(--red);
  padding: 16px 24px; text-align: center;
  font-size: 12px; color: rgba(255,255,255,.9);
}
.footer-bottom a { color: rgba(255,255,255,.7); }
.footer-bottom a:hover { color: #fff; }

/* ── İÇERİK WRAP ────────────────────────────────────────── */
.icerik-wrap {
  max-width: 1320px; margin: 0 auto 8px; padding: 0 24px;
}

/* ── ANASAYFA 2 SÜTUN (sol içerik + sağ sidebar) ─────── */
.anasayfa-grid {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 32px;
  align-items: start;
}
.anasayfa-sol { min-width: 0; }

/* ── SIDEBAR WIDGET ─────────────────────────────────────── */
.anasayfa-sidebar {
  display: flex; flex-direction: column; gap: 24px;
  position: sticky; top: 90px; /* header yüksekliği kadar */
}
.sb-widget {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
}
.sb-widget-baslik {
  background: #111; color: #fff;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 16px; font-weight: 800; font-style: italic;
  letter-spacing: .5px; text-transform: uppercase;
  padding: 10px 16px;
}

/* En çok okunanlar item */
.sb-trending-item {
  display: flex; gap: 12px; align-items: flex-start;
  padding: 10px 16px;
  border-bottom: 1px solid var(--border);
  transition: background .15s;
}
.sb-trending-item:last-child { border-bottom: none; }
.sb-trending-item:hover { background: #f8fafc; }
.sb-trending-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 28px; font-weight: 900; line-height: 1;
  color: var(--border); flex-shrink: 0; width: 28px;
}
.sb-trending-item:nth-child(2) .sb-trending-num { color: var(--red); }
.sb-trending-item:nth-child(3) .sb-trending-num { color: #f97316; }
.sb-trending-item:nth-child(4) .sb-trending-num { color: var(--green); }
.sb-trending-body h4 {
  font-size: 13px; font-weight: 700; line-height: 1.4;
  color: var(--dark); margin-bottom: 3px;
}
.sb-trending-item:hover .sb-trending-body h4 { color: var(--red); }
.sb-trending-body span { font-size: 11px; color: var(--mid); }

/* Sağ reklam */
.sb-reklam { text-align: center; }
.sb-reklam img { width: 100%; border-radius: 8px; }

/* Sidebar başlık satırı (yazarlar - tümünü gör) */
.sb-widget-baslik-row {
  display: flex; align-items: center; justify-content: space-between;
  background: #111; color: #fff;
  padding: 10px 16px; font-size: 12px; font-weight: 800;
  text-transform: uppercase; letter-spacing: .5px;
}
.sb-tumunu-gor {
  font-size: 11px; font-weight: 600; color: var(--green);
  text-decoration: none; letter-spacing: 0;
}
.sb-tumunu-gor:hover { color: #fff; }

/* Sidebar slider sarmalayıcı */
.sb-slide-wrap {
  position: relative;
}
.sb-slide-track {
  max-height: 320px;
  overflow-y: auto; overflow-x: hidden;
  scrollbar-width: none;
}
.sb-slide-track::-webkit-scrollbar { display: none; }

/* Sidebar kaydırma butonları */
.sb-slide-btn {
  position: absolute; left: 50%; transform: translateX(-50%);
  background: #fff; border: 1px solid var(--border);
  width: 28px; height: 28px; border-radius: 50%;
  font-size: 18px; line-height: 1; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  z-index: 5; box-shadow: 0 2px 6px rgba(0,0,0,.1);
  transition: background .2s, color .2s;
}
.sb-slide-btn:hover { background: var(--red); color: #fff; border-color: var(--red); }
.sb-slide-prev { top: -14px; }
.sb-slide-next { bottom: -14px; }

/* Sidebar yazarlar kayan (yatay) */
.sb-yazar-track {
  display: flex; flex-direction: row; flex-wrap: wrap;
  max-height: 180px; gap: 10px; padding: 12px 14px;
  overflow-y: auto; overflow-x: hidden;
}
.sb-yazar-kart {
  display: flex; flex-direction: column; align-items: center; gap: 5px;
  text-decoration: none; color: var(--dark);
  font-size: 11px; font-weight: 600; text-align: center; line-height: 1.2;
  width: calc(33.3% - 7px);
}
.sb-yazar-kart img {
  width: 56px; height: 56px; border-radius: 50%; object-fit: cover;
  border: 2px solid var(--border); transition: border-color .2s;
}
.sb-yazar-kart:hover img { border-color: var(--green); }
.sb-yazar-kart:hover span { color: var(--green); }

/* Günün haberleri item */
.sb-haber-item {
  display: flex; gap: 10px;
  padding: 10px 16px;
  border-bottom: 1px solid var(--border);
  transition: background .15s;
}
.sb-haber-item:last-child { border-bottom: none; }
.sb-haber-item:hover { background: #f8fafc; }
.sb-haber-item img {
  width: 72px; height: 56px; flex-shrink: 0;
  border-radius: 6px; object-fit: cover;
}
.sb-haber-body { flex: 1; min-width: 0; }
.sb-kat {
  font-size: 9.5px; font-weight: 800; letter-spacing: 1px;
  text-transform: uppercase; color: var(--green);
  display: block; margin-bottom: 3px;
}
.sb-haber-body h4 {
  font-size: 13px; font-weight: 700; line-height: 1.35;
  color: var(--dark); margin-bottom: 4px;
  display: -webkit-box; -webkit-line-clamp: 2;
  -webkit-box-orient: vertical; overflow: hidden;
}
.sb-haber-item:hover .sb-haber-body h4 { color: var(--red); }
.sb-haber-body small { font-size: 11px; color: var(--mid); }

/* ── ALT MANŞET — Yatay Kayan Slider ───────────────────── */
.alt-manset-bolum {
  border-top: 3px solid #111;
  margin-bottom: 28px;
}
.alt-manset-slider-wrap {
  position: relative;
  overflow: hidden;
  padding: 18px 0 8px;
}
.alt-manset-slider-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(.4,0,.2,1);
}
.alt-mk-kart {
  flex: 0 0 100%;
  display: flex;
  gap: 0;
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 2px 16px rgba(0,0,0,0.07);
  text-decoration: none;
  color: inherit;
  transition: box-shadow .25s;
  min-height: 220px;
}
.alt-mk-kart:hover { box-shadow: 0 6px 28px rgba(0,0,0,0.13); }
.alt-mk-img-wrap {
  flex: 0 0 38%;
  overflow: hidden;
}
.alt-mk-img-wrap img {
  width: 100%; height: 100%; object-fit: cover;
  display: block;
  transition: transform .45s;
}
.alt-mk-kart:hover .alt-mk-img-wrap img { transform: scale(1.04); }
.alt-mk-body {
  flex: 1;
  padding: 26px 30px;
  display: flex;
  flex-direction: column;
}
.alt-mk-kat {
  font-size: 12px; color: var(--mid);
  letter-spacing: 0.5px; text-transform: uppercase; font-weight: 600;
  margin-bottom: 10px;
}
.alt-mk-body h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 28px; font-weight: 900; line-height: 1.2;
  color: var(--dark); margin-bottom: 12px;
}
.alt-mk-kart:hover .alt-mk-body h3 { color: var(--red); }
.alt-mk-ozet {
  font-size: 14px; line-height: 1.65; color: #555;
  display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden;
  flex: 1;
  margin-bottom: 18px;
}
.alt-mk-footer {
  display: flex; align-items: center;
  justify-content: space-between; flex-wrap: wrap; gap: 8px;
}
.alt-mk-footer-left { font-size: 12px; color: var(--mid); }
.alt-mk-oku { font-size: 13px; font-weight: 700; color: var(--red); }

/* Slider butonları */
.am-btn {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: #fff; color: #333; border: 1px solid var(--border); cursor: pointer;
  width: 38px; height: 38px; border-radius: 50%;
  font-size: 24px; line-height: 1;
  display: flex; align-items: center; justify-content: center;
  z-index: 10; box-shadow: 0 2px 10px rgba(0,0,0,0.12);
  transition: background .2s, color .2s, border-color .2s;
}
.am-btn:hover { background: var(--red); color: #fff; border-color: var(--red); }
.am-btn-prev { left: 10px; }
.am-btn-next { right: 10px; }

/* Nokta indikatörleri */
.alt-manset-dots {
  display: flex; justify-content: center; gap: 7px;
  padding: 0 0 14px;
}
.alt-manset-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--border); cursor: pointer; border: none; padding: 0;
  transition: background .25s, transform .25s;
}
.alt-manset-dot.aktif { background: var(--red); transform: scale(1.35); }

/* ── GALERİ BÖLÜM ───────────────────────────────────────── */
.galeri-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 32px;
}
.galeri-kart {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  background: var(--dark);
  cursor: pointer;
}
.galeri-kart img {
  width: 100%; height: 140px; object-fit: cover;
  display: block; transition: transform .3s, opacity .3s;
}
.galeri-kart:hover img { transform: scale(1.06); opacity: .85; }
.galeri-overlay {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  background: rgba(0,0,0,.3);
  opacity: 0; transition: opacity .25s;
}
.galeri-kart:hover .galeri-overlay { opacity: 1; }
.play-btn {
  font-size: 36px; color: #fff;
  text-shadow: 0 2px 8px rgba(0,0,0,.5);
}
.galeri-baslik {
  padding: 8px 10px;
  font-size: 12px; font-weight: 700;
  color: var(--dark); line-height: 1.3;
  background: var(--white);
}
.galeri-placeholder {
  width: 100%; height: 140px;
  background: var(--light);
  display: flex; align-items: center; justify-content: center;
  font-size: 36px; color: var(--mid);
}
.galeri-placeholder-alan {
  border: 2px dashed var(--border);
  border-radius: 8px; padding: 28px;
  text-align: center; color: var(--mid);
  font-size: 14px; font-weight: 600;
  margin-bottom: 32px;
}
.seksyon-kat-badge-video { color: #e91e63 !important; }
.seksyon-kat-badge-galeri { color: var(--red) !important; }

/* ── SLIDER ─────────────────────────────────────────────── */
.slider-wrap {
  position: relative;
  margin-bottom: 32px;
}
.slider-track {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -ms-overflow-style: none;
  scrollbar-width: none;
  padding-bottom: 4px;
}
.slider-track::-webkit-scrollbar { display: none; }

.slider-card {
  flex: 0 0 calc(25% - 12px);
  min-width: 200px;
  scroll-snap-align: start;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  transition: box-shadow .2s, transform .2s;
  text-decoration: none;
}
.slider-card:hover { box-shadow: 0 6px 20px rgba(0,0,0,.1); transform: translateY(-2px); }
.slider-card-img { position: relative; overflow: hidden; }
.slider-card-img img { height: 140px; width: 100%; object-fit: cover; transition: transform .3s; }
.slider-card:hover .slider-card-img img { transform: scale(1.04); }
.slider-card-img .badge-sm {
  position: absolute; bottom: 8px; left: 8px;
  font-size: 9px; font-weight: 800; letter-spacing: 1px; text-transform: uppercase;
  color: #fff; background: var(--red); padding: 2px 7px; border-radius: 3px;
}
.slider-card-body { padding: 10px 12px 12px; }
.slider-card-body h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 15px; font-weight: 800; line-height: 1.3;
  color: var(--dark); margin-bottom: 4px;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.slider-card:hover .slider-card-body h4 { color: var(--red); }
.slider-card-body span { font-size: 11px; color: var(--mid); }

/* Slider butonları */
.slider-btn {
  position: absolute; top: 50%; transform: translateY(-60%);
  background: #111; color: #fff; border: none; cursor: pointer;
  width: 34px; height: 34px; border-radius: 50%;
  font-size: 22px; line-height: 1; display: flex; align-items: center; justify-content: center;
  z-index: 10; opacity: .75; transition: opacity .2s, background .2s;
}
.slider-btn:hover { opacity: 1; background: var(--red); }
.slider-btn-prev { left: -10px; }
.slider-btn-next { right: -10px; }

/* Yazar kartları */
.yazar-card {
  flex: 0 0 130px;
  scroll-snap-align: start;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 16px 12px;
  text-align: center;
  cursor: pointer;
  transition: box-shadow .2s, transform .2s;
  text-decoration: none;
}
.yazar-card:hover { box-shadow: 0 4px 16px rgba(0,0,0,.1); transform: translateY(-2px); }
.yazar-card img {
  width: 64px; height: 64px; border-radius: 50%; object-fit: cover;
  margin: 0 auto 8px; display: block;
  border: 2px solid var(--border);
}
.yazar-card-adi {
  font-size: 13px; font-weight: 700; color: var(--dark); margin-bottom: 3px;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.yazar-card:hover .yazar-card-adi { color: var(--green); }
.yazar-card-unvan { font-size: 11px; color: var(--mid); text-transform: uppercase; letter-spacing: .5px; }

/* ── MAKALE LİSTESİ (yazar sayfası) ─────────────────────── */
.makale-liste {
  display: flex; flex-direction: column; gap: 20px;
  padding: 8px 0 40px;
}
.makale-kart {
  display: flex; gap: 20px; align-items: flex-start;
  background: var(--white); border-radius: 12px;
  padding: 20px; box-shadow: 0 2px 12px rgba(0,0,0,.07);
  text-decoration: none; color: var(--dark);
  transition: box-shadow .2s, transform .2s;
}
.makale-kart:hover { box-shadow: 0 6px 20px rgba(0,0,0,.12); transform: translateY(-2px); }
.makale-kart-img { flex: 0 0 200px; height: 130px; border-radius: 8px; overflow: hidden; }
.makale-kart-img img { width: 100%; height: 100%; object-fit: cover; }
.makale-kart-body { flex: 1; display: flex; flex-direction: column; gap: 8px; }
.makale-kart-body h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 22px; font-weight: 800; line-height: 1.3; color: var(--dark);
}
.makale-kart:hover .makale-kart-body h3 { color: var(--red); }
.makale-kart-body p { font-size: 13px; color: var(--mid); line-height: 1.6; }
.makale-kart-footer {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 12px; color: var(--mid);
  border-top: 1px solid var(--border); padding-top: 10px; margin-top: auto;
}
.makale-oku { color: var(--green); font-weight: 700; }

/* ── MAKALE DETAY SAYFASI ───────────────────────────────── */
.makale-detay-baslik { margin-bottom: 20px; }
.makale-detay-baslik h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 36px; font-weight: 900; line-height: 1.2;
  color: var(--dark); margin-bottom: 14px;
}
.makale-detay-meta {
  display: flex; align-items: center; gap: 16px; flex-wrap: wrap;
  font-size: 13px; color: var(--mid);
}
.makale-yazar-link {
  display: flex; align-items: center; gap: 8px;
  text-decoration: none; color: var(--dark); font-weight: 600;
}
.makale-yazar-link img {
  width: 36px; height: 36px; border-radius: 50%; object-fit: cover;
  border: 2px solid var(--border);
}
.makale-yazar-link:hover { color: var(--green); }
.makale-tarih { color: var(--mid); }
.makale-kapak {
  border-radius: 12px; overflow: hidden; margin-bottom: 24px;
  box-shadow: 0 4px 16px rgba(0,0,0,.1);
}
.makale-kapak img { width: 100%; max-height: 460px; object-fit: cover; }
.makale-ozet {
  font-size: 17px; color: var(--slate); line-height: 1.7;
  border-left: 4px solid var(--red); padding-left: 18px;
  margin-bottom: 28px; font-style: italic;
}
.makale-icerik {
  font-size: 16px; line-height: 1.85; color: var(--dark);
  margin-bottom: 40px;
}
.makale-icerik p { margin-bottom: 18px; }
.makale-icerik h2, .makale-icerik h3 { margin: 28px 0 12px; font-family: 'Barlow Condensed', sans-serif; }
.makale-icerik img { border-radius: 8px; margin: 16px 0; }
.makale-yazar-kutu {
  display: flex; gap: 20px; align-items: center;
  background: var(--light); border-radius: 12px; padding: 24px;
  margin-bottom: 40px;
}
.makale-yazar-kutu img {
  width: 80px; height: 80px; border-radius: 50%; object-fit: cover;
  border: 3px solid var(--border); flex-shrink: 0;
}
.makale-yazar-kutu-adi { font-size: 18px; font-weight: 800; margin-bottom: 4px; }
.makale-yazar-kutu-unvan { font-size: 12px; color: var(--mid); text-transform: uppercase; letter-spacing: .5px; margin-bottom: 8px; }
.makale-yazar-kutu-link { color: var(--green); font-size: 13px; font-weight: 700; text-decoration: none; }
.makale-yazar-kutu-link:hover { text-decoration: underline; }

/* ── YAZARLAR SAYFASI ───────────────────────────────────── */
.yazarlar-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 24px;
  padding: 24px 0 40px;
}
.yazar-profil-kart {
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  background: var(--white); border-radius: 12px;
  padding: 24px 16px; text-align: center;
  box-shadow: 0 2px 12px rgba(0,0,0,.07);
  transition: box-shadow .2s, transform .2s;
  text-decoration: none; color: var(--dark);
}
.yazar-profil-kart:hover { box-shadow: 0 6px 20px rgba(0,0,0,.12); transform: translateY(-3px); }
.yazar-profil-kart img {
  width: 80px; height: 80px; border-radius: 50%; object-fit: cover;
  border: 3px solid var(--border);
}
.yazar-profil-kart:hover img { border-color: var(--green); }
.yazar-profil-adi { font-size: 14px; font-weight: 700; }
.yazar-profil-kart:hover .yazar-profil-adi { color: var(--green); }
.yazar-profil-unvan { font-size: 11px; color: var(--mid); text-transform: uppercase; letter-spacing: .5px; }

/* ── YAZAR DETAY SAYFASI ────────────────────────────────── */
.yazar-detay-kart {
  display: flex; gap: 28px; align-items: flex-start;
  background: var(--white); border-radius: 14px;
  padding: 28px; box-shadow: 0 2px 12px rgba(0,0,0,.07);
  margin-bottom: 8px;
}
.yazar-detay-kart img {
  width: 110px; height: 110px; border-radius: 50%; object-fit: cover;
  border: 3px solid var(--border); flex-shrink: 0;
}
.yazar-detay-bilgi h1 { font-size: 24px; font-weight: 800; margin-bottom: 4px; }
.yazar-detay-unvan { font-size: 12px; color: var(--mid); text-transform: uppercase; letter-spacing: .5px; margin-bottom: 12px; }
.yazar-detay-bio { font-size: 14px; color: var(--slate); line-height: 1.7; }

/* ── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 1100px) {
  .cat-cards { grid-template-columns: repeat(4,1fr); }
  .hero-wrap { padding: 0 12px; }
  .hero { grid-template-columns: 1fr; border-radius: 10px; }
  .hero-main { border-right: none; border-bottom: 1px solid var(--border); }
  .hero-side { flex-direction: row; flex-wrap: wrap; }
  .hero-side-card { flex: 1 1 calc(50% - 1px); border-right: 1px solid var(--border); }
  .hero-side-card:nth-child(2n) { border-right: none; }
  .news-grid { grid-template-columns: repeat(2,1fr); }
  .main-wrapper, .haber-detay-wrap { grid-template-columns: 1fr; }
  .news-grid-4 { grid-template-columns: repeat(2,1fr) !important; gap: 12px; }
  .seksyon-slogan { display: none; }
  .sidebar { display: grid; grid-template-columns: repeat(2,1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .anasayfa-grid { grid-template-columns: 1fr; }
  .anasayfa-sidebar { position: static; display: grid; grid-template-columns: repeat(2,1fr); }
  .alt-mk-kart { flex-direction: column; }
  .alt-mk-img-wrap { flex: 0 0 auto; height: 200px; }
  .alt-mk-body { padding: 18px 20px; }
  .alt-mk-body h3 { font-size: 22px; }
  .hero-main-img-wrap, .hero-main-img-wrap img { min-height: 300px; }
}
@media (max-width: 640px) {

  /* ── HEADER ─────────────────────────────────── */
  .logo-main { font-size: 30px; }
  .header-inner { height: auto; padding: 10px 14px; gap: 10px; }
  .hdr-social { display: none; }          /* sosyal ikonları gizle */
  .header-icon-btn { display: flex; }     /* hamburger göster */

  /* Arama kutusu: mobilde tam genişlik */
  .arama-kutu { position: fixed; top: 0; left: 0; right: 0; z-index: 9999; }
  .arama-kutu form { border-radius: 0; width: 100%; }
  .arama-kutu input { width: 100%; }

  /* ── NAVBAR (hamburger ile aç/kapat) ────────── */
  .navbar { display: none; }
  .navbar.open { display: block; }
  .navbar-inner {
    flex-direction: column; height: auto;
    padding: 0; align-items: stretch; gap: 0;
  }
  .navbar-links {
    flex-direction: column; flex-wrap: nowrap;
    overflow-x: visible; height: auto;
  }
  .navbar-links a {
    padding: 13px 18px; font-size: 14px;
    border-right: none; border-left: none !important;
    border-bottom: 1px solid rgba(255,255,255,.09);
    white-space: normal;
  }
  .navbar-edition { display: none; }
  .nav-diger-wrap {
    border-left: none;
    border-top: 1px solid rgba(255,255,255,.09);
    width: 100%;
  }
  .nav-diger-btn {
    width: 100%; padding: 13px 18px;
    font-size: 14px; justify-content: flex-start;
  }
  .nav-diger-menu {
    position: static; box-shadow: none;
    background: #1a1a1a; width: 100%;
  }

  /* ── HERO ───────────────────────────────────── */
  .hero-side-card { flex: 1 1 100%; }
  .hero-main-overlay h2 { font-size: 20px; }
  .hero-main-img-wrap, .hero-main-img-wrap img { min-height: 240px; }

  /* ── HABER GRID ─────────────────────────────── */
  .news-grid { grid-template-columns: 1fr; gap: 14px; }
  .news-card-wide { flex-direction: column; }
  .news-card-wide img { width: 100%; height: 200px; }
  .news-grid-4 { grid-template-columns: 1fr !important; gap: 10px; }

  /* ── KATEGORİ KARTLARI ──────────────────────── */
  .cat-cards { grid-template-columns: repeat(2,1fr); }
  .seksyon-kat-badge { font-size: 17px; padding: 5px 12px; }

  /* ── GALERİ ─────────────────────────────────── */
  .galeri-grid { grid-template-columns: repeat(2,1fr); gap: 8px; }
  .galeri-kart img { height: 110px; }

  /* ── ALT MANŞET SLIDER ──────────────────────── */
  .alt-mk-kart { flex-direction: column; }
  .alt-mk-img-wrap { flex: 0 0 auto; height: 200px; }
  .alt-mk-body { padding: 14px 16px; }
  .alt-mk-body h3 { font-size: 18px; }
  .alt-mk-ozet { -webkit-line-clamp: 2; }

  /* ── SIDEBAR ─────────────────────────────────── */
  .sidebar { display: flex; flex-direction: column; }
  .anasayfa-sidebar { grid-template-columns: 1fr !important; }

  /* ── HABER DETAY ─────────────────────────────── */
  .haber-detay { padding: 16px; }
  .haber-detay h1 { font-size: 20px; }
  .haber-detay-wrap { padding: 0 12px; }

  /* ── MAKALE KART (yazar sayfası liste) ──────── */
  .makale-kart { flex-direction: column; gap: 0; }
  .makale-kart-img { flex: 0 0 auto; width: 100%; height: 200px; border-radius: 12px 12px 0 0; }
  .makale-kart-body { padding: 14px 16px 16px; }

  /* ── YAZAR DETAY ─────────────────────────────── */
  .yazar-detay-kart { flex-direction: column; align-items: center; text-align: center; padding: 20px 16px; }
  .yazar-detay-kart img { width: 90px; height: 90px; }
  .yazar-detay-bilgi h1 { font-size: 20px; }

  /* ── FOOTER ──────────────────────────────────── */
  .footer-top { grid-template-columns: 1fr; gap: 24px; padding: 28px 16px 20px; }

  /* ── GENEL PADDING ───────────────────────────── */
  .hero-wrap, .main-wrapper, .haber-detay-wrap,
  .icerik-wrap { padding: 0 12px; }
  .cat-strip { padding: 22px 12px; }
}

/* ── ÇOK KÜÇÜK EKRANLAR (≤ 420px) ─────────────── */
@media (max-width: 420px) {
  .logo-main { font-size: 26px; }
  .header-inner { padding: 8px 12px; }
  .cat-cards { grid-template-columns: repeat(2,1fr); gap: 8px; }
  .galeri-grid { grid-template-columns: 1fr 1fr; gap: 6px; }
  .news-card-body h3 { font-size: 16px; }
  .haber-detay h1 { font-size: 18px; }
  .makale-detay-baslik h1 { font-size: 26px; }
  .pagination a, .pagination span { width: 34px; height: 34px; font-size: 12px; }
}
