/* ============================================================
   NKP — Nükleer Karşıtı Platform | Ön yüz
   ============================================================ */
:root {
  --ink: #131a20;
  --ink-soft: #3d4a56;
  --muted: #75828e;
  --line: #e6eaee;
  --paper: #ffffff;
  --bg: #f7f8f9;
  --accent: #f2b705;
  --accent-deep: #d99e00;
  --accent-ink: #1c1503;
  --green: #2e7d4f;
  --radius: 14px;
  --shadow-sm: 0 1px 3px rgba(19, 26, 32, .07);
  --shadow-md: 0 8px 30px rgba(19, 26, 32, .10);
  --font: 'Inter', -apple-system, 'Segoe UI', Roboto, sans-serif;
  --font-serif: 'Lora', Georgia, serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.wrap { max-width: 1180px; margin: 0 auto; padding: 0 20px; }

/* ---------- Üst şerit ---------- */
.topbar { background: var(--ink); color: #c7d0d9; font-size: 12.5px; }
.topbar-in { display: flex; justify-content: space-between; align-items: center; height: 34px; }
.topbar-slogan { color: var(--accent); font-weight: 500; letter-spacing: .02em; }

/* ---------- Başlık ---------- */
.site-header { background: var(--paper); border-bottom: 1px solid var(--line); position: sticky; top: 0; z-index: 50; }
.header-main { display: flex; align-items: center; gap: 28px; padding: 16px 20px; }
.brand { display: flex; align-items: center; gap: 13px; }
.brand-mark {
  width: 52px; height: 52px; border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #ffd83d, var(--accent) 60%, var(--accent-deep));
  display: flex; align-items: center; justify-content: center;
  font-size: 28px; color: var(--accent-ink);
  box-shadow: inset 0 -3px 8px rgba(0,0,0,.12), var(--shadow-sm);
  flex-shrink: 0;
}
.brand-mark.small { width: 40px; height: 40px; font-size: 21px; }
.brand-logo { height: 56px; width: auto; max-width: 320px; object-fit: contain; }
.brand-text { display: flex; flex-direction: column; line-height: 1.2; }
.brand-text strong { font-size: 26px; font-weight: 800; letter-spacing: .06em; }
.brand-text em { font-style: normal; font-size: 12.5px; color: var(--muted); font-weight: 500; }

.search { margin-left: auto; display: flex; background: var(--bg); border: 1px solid var(--line); border-radius: 999px; overflow: hidden; transition: border-color .2s, box-shadow .2s; }
.search:focus-within { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(242,183,5,.18); }
.search input { border: 0; background: transparent; padding: 9px 4px 9px 18px; width: 210px; font: inherit; font-size: 14px; outline: none; }
.search button { border: 0; background: transparent; padding: 0 14px; cursor: pointer; color: var(--muted); display: flex; align-items: center; }
.search button:hover { color: var(--ink); }

.nav-toggle { display: none; }

/* ---------- Ana menü ---------- */
.mainnav { border-top: 1px solid var(--line); background: var(--paper); }
.mainnav ul { list-style: none; display: flex; flex-wrap: wrap; gap: 2px; }
.mainnav a {
  display: block; padding: 12px 15px; font-size: 14px; font-weight: 600;
  color: var(--ink-soft); border-bottom: 3px solid transparent; transition: color .15s, border-color .15s;
}
.mainnav a:hover { color: var(--ink); border-bottom-color: var(--accent); }
.mainnav .nav-home { color: var(--ink); }

/* ============================================================
   MANŞET — solda görsel %50 · ortada başlık · sağda dikey liste
   ============================================================ */
.hero {
  margin-top: 26px;
  display: grid; grid-template-columns: minmax(0, 1fr) 288px; gap: 16px;
  align-items: stretch;
}

/* Sol + orta: geçiş yapan slayt alanı */
.hero-main {
  position: relative; border-radius: var(--radius); overflow: hidden;
  background: var(--paper); border: 1px solid var(--line); box-shadow: var(--shadow-md);
  min-height: 430px;
}
.hero-slide {
  position: absolute; inset: 0; opacity: 0; transition: opacity .5s ease;
  pointer-events: none; display: grid; grid-template-columns: 50% 50%;
}
.hero-slide.active { opacity: 1; pointer-events: auto; }

.hero-img { position: relative; overflow: hidden; background: var(--ink); display: block; }
.hero-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.hero-img:hover img { transform: scale(1.04); }

.hero-content {
  padding: 36px 34px; display: flex; flex-direction: column; justify-content: center;
}
.hero-content time {
  align-self: flex-start; background: var(--accent); color: var(--accent-ink);
  font-size: 12px; font-weight: 700; padding: 3px 13px; border-radius: 999px; margin-bottom: 16px;
}
.hero-content h2 {
  font-family: var(--font-serif); font-size: clamp(20px, 2.3vw, 30px);
  font-weight: 600; line-height: 1.3;
}
.hero-content h2 a:hover { color: var(--accent-deep); }
.hero-content p {
  margin-top: 14px; font-size: 15px; color: var(--ink-soft); line-height: 1.72;
  display: -webkit-box; -webkit-line-clamp: 4; -webkit-box-orient: vertical; overflow: hidden;
}
.hero-more {
  margin-top: 22px; align-self: flex-start;
  background: var(--ink); color: var(--accent); font-weight: 700; font-size: 14px;
  padding: 11px 26px; border-radius: 999px; transition: transform .15s, box-shadow .15s;
}
.hero-more:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }

.hero-progress { position: absolute; top: 0; left: 0; right: 0; height: 4px; background: rgba(0,0,0,.08); z-index: 5; }
.hero-progress span { display: block; height: 100%; width: 0; background: var(--accent); transition: width .2s linear; }

/* Sağ: dikey manşet listesi */
.hero-nums {
  display: flex; flex-direction: column; gap: 8px;
}
.hero-num {
  display: flex; align-items: center; gap: 13px; text-align: left; flex: 1;
  background: var(--paper); border: 1px solid var(--line); border-radius: 12px;
  padding: 12px 14px; cursor: pointer; font: inherit; min-height: 62px;
  transition: transform .18s, box-shadow .18s, border-color .18s, background .18s;
}
.hero-num b {
  width: 36px; height: 36px; border-radius: 10px; flex-shrink: 0;
  background: var(--bg); color: var(--muted);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; font-weight: 800; transition: background .18s, color .18s;
}
.hero-num span {
  font-size: 12.5px; font-weight: 600; color: var(--ink-soft); line-height: 1.38;
  display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden;
}
.hero-num:hover { transform: translateX(-3px); box-shadow: var(--shadow-md); border-color: var(--accent); }
.hero-num.active { background: var(--ink); border-color: var(--ink); }
.hero-num.active b { background: var(--accent); color: var(--accent-ink); }
.hero-num.active span { color: #e8edf2; }

/* ---------- Bloklar ---------- */
.block { margin-top: 52px; }
.block:last-child { margin-bottom: 64px; }
.block-head { display: flex; align-items: center; gap: 16px; margin-bottom: 22px; }
.block-head h3 { font-size: 21px; font-weight: 800; letter-spacing: -.01em; white-space: nowrap; }
.block-head h3 a:hover { color: var(--accent-deep); }
.block-line { flex: 1; height: 3px; background: linear-gradient(to right, var(--accent), var(--line) 55%); border-radius: 2px; }
.block-more { font-size: 13.5px; font-weight: 700; color: var(--muted); white-space: nowrap; }
.block-more:hover { color: var(--accent-deep); }

.grid { display: grid; gap: 22px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

/* ---------- Kartlar ---------- */
.card {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; transition: transform .2s, box-shadow .2s;
  display: flex; flex-direction: column;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.card-media { aspect-ratio: 16/9; overflow: hidden; background: linear-gradient(135deg, #f4f6f8, #e8ecef); display: flex; align-items: center; justify-content: center; }
.card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.card:hover .card-media img { transform: scale(1.05); }
.card-noimg { font-size: 44px; opacity: .5; }
.card-body { padding: 16px 18px 20px; display: flex; flex-direction: column; gap: 7px; }
.card-body time { font-size: 12px; font-weight: 600; color: var(--accent-deep); text-transform: uppercase; letter-spacing: .04em; }
.card-body h4 { font-size: 16px; font-weight: 700; line-height: 1.4; }
.card-body h4 a:hover { color: var(--accent-deep); }
.card-body p { font-size: 13.5px; color: var(--muted); }
.card-sm .card-body h4 { font-size: 14.5px; }

/* ============================================================
   Ana sayfa kategori blokları
   ============================================================ */

/* --- Hero Kart bloğu --- */
.hblock-hero { display: grid; grid-template-columns: 1.4fr 1fr; gap: 22px; align-items: stretch; }
.hb-main {
  position: relative; border-radius: var(--radius); overflow: hidden;
  min-height: 340px; background: var(--ink); display: block; box-shadow: var(--shadow-sm);
}
.hb-main img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; transition: transform .4s; }
.hb-main:hover img { transform: scale(1.04); }
.hb-main-overlay {
  position: absolute; inset: auto 0 0 0; padding: 80px 26px 24px;
  background: linear-gradient(to top, rgba(10,14,18,.92), rgba(10,14,18,.5) 60%, transparent);
  color: #fff;
}
.hb-main-overlay time {
  display: inline-block; background: var(--accent); color: var(--accent-ink);
  font-size: 11.5px; font-weight: 700; padding: 2px 11px; border-radius: 999px; margin-bottom: 10px;
}
.hb-main-overlay h4 { font-family: var(--font-serif); font-size: 22px; font-weight: 600; line-height: 1.3; }
.hb-main-overlay p { margin-top: 6px; font-size: 13.5px; color: #ccd4db; }
.hb-main:hover h4 { text-decoration: underline; text-decoration-color: var(--accent); text-underline-offset: 5px; }

.hb-list { display: flex; flex-direction: column; gap: 10px; }
.hb-item {
  display: flex; gap: 14px; align-items: center; flex: 1;
  background: var(--paper); border: 1px solid var(--line); border-radius: 12px; padding: 10px;
  transition: transform .15s, box-shadow .15s, border-color .15s;
}
.hb-item:hover { transform: translateX(4px); box-shadow: var(--shadow-sm); border-color: var(--accent); }
.hb-thumb { width: 92px; aspect-ratio: 16/11; border-radius: 8px; overflow: hidden; flex-shrink: 0; background: #eef1f3; display: flex; align-items: center; justify-content: center; }
.hb-thumb img { width: 100%; height: 100%; object-fit: cover; }
.hb-text { min-width: 0; }
.hb-text time { display: block; font-size: 11px; font-weight: 600; color: var(--accent-deep); text-transform: uppercase; }
.hb-text b { font-size: 13.5px; font-weight: 600; line-height: 1.35; display: block; }

/* --- Kayan Haberler bloğu --- */
.hblock-slider { position: relative; }
.hs-track {
  display: flex; gap: 18px; overflow-x: auto; scroll-snap-type: x mandatory;
  scroll-behavior: smooth; padding-bottom: 6px;
  scrollbar-width: none;
}
.hs-track::-webkit-scrollbar { display: none; }
.hs-card { flex: 0 0 262px; scroll-snap-align: start; }
.hs-arrow {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 5;
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--paper); border: 1px solid var(--line); box-shadow: var(--shadow-md);
  font-size: 22px; line-height: 1; cursor: pointer; color: var(--ink);
  display: flex; align-items: center; justify-content: center;
  transition: background .15s, transform .15s;
  opacity: .92;
}
.hs-arrow:hover { background: var(--accent); transform: translateY(-50%) scale(1.06); }
.hs-prev { left: -14px; }
.hs-next { right: -14px; }

/* --- Yatay Liste bloğu --- */
.hblock-list { display: grid; grid-template-columns: 1fr 1fr; gap: 12px 22px; }
.hl-item {
  display: flex; gap: 15px; align-items: center;
  background: var(--paper); border: 1px solid var(--line); border-radius: 12px; padding: 12px;
  transition: transform .15s, box-shadow .15s, border-color .15s;
}
.hl-item:hover { transform: translateY(-2px); box-shadow: var(--shadow-sm); border-color: var(--accent); }
.hl-thumb { width: 110px; aspect-ratio: 16/11; border-radius: 8px; overflow: hidden; flex-shrink: 0; background: #eef1f3; display: flex; align-items: center; justify-content: center; }
.hl-thumb img { width: 100%; height: 100%; object-fit: cover; }
.hl-text { min-width: 0; }
.hl-text time { display: block; font-size: 11px; font-weight: 600; color: var(--accent-deep); text-transform: uppercase; }
.hl-text b { font-size: 14.5px; font-weight: 700; line-height: 1.35; display: block; margin: 2px 0; }
.hl-text small { font-size: 12.5px; color: var(--muted); display: block; }
.card-noimg.sm { font-size: 26px; }

/* --- Dergi Düzeni bloğu --- */
.hblock-mag { display: grid; grid-template-columns: 1.35fr 1fr 0.85fr; gap: 20px; align-items: stretch; }
.mag-main { min-height: 380px; }
.mag-mids { display: flex; flex-direction: column; gap: 18px; }
.mag-mids .card { flex: 1; }
.mag-mids .card-media { aspect-ratio: 16/8.5; }
.mag-list { display: flex; flex-direction: column; }
.mag-item {
  padding: 13px 4px; border-bottom: 1px solid var(--line); flex: 1;
  display: flex; flex-direction: column; justify-content: center; gap: 3px;
  transition: padding-left .15s;
}
.mag-item:first-child { padding-top: 4px; }
.mag-item:last-child { border-bottom: 0; }
.mag-item:hover { padding-left: 10px; }
.mag-item time { font-size: 11px; font-weight: 600; color: var(--accent-deep); text-transform: uppercase; }
.mag-item b { font-size: 13.5px; font-weight: 600; line-height: 1.4; }
.mag-item:hover b { color: var(--accent-deep); }

/* --- Numaralı Liste bloğu --- */
.hblock-numbered { display: grid; grid-template-columns: 1fr 1fr; gap: 12px 24px; counter-reset: nb; }
.nb-item {
  display: flex; gap: 16px; align-items: center;
  background: var(--paper); border: 1px solid var(--line); border-radius: 12px; padding: 14px 16px;
  transition: transform .15s, box-shadow .15s, border-color .15s;
}
.nb-item:hover { transform: translateY(-2px); box-shadow: var(--shadow-sm); border-color: var(--accent); }
.nb-num {
  font-size: 34px; font-weight: 800; line-height: 1; flex-shrink: 0; min-width: 44px; text-align: center;
  color: transparent; -webkit-text-stroke: 1.6px var(--accent-deep);
}
.nb-item:hover .nb-num { color: var(--accent); -webkit-text-stroke: 1.6px var(--accent-deep); }
.nb-text time { display: block; font-size: 11px; font-weight: 600; color: var(--muted); text-transform: uppercase; }
.nb-text strong { font-size: 14.5px; font-weight: 700; line-height: 1.4; }

/* --- Video bloğu --- */
.vb-card { background: var(--ink); border-color: #232c37; }
.vb-card .card-body time { color: var(--accent); }
.vb-card .card-body h4, .vb-card .card-body h4 a { color: #eef2f5; }
.vb-card .card-body h4 a:hover { color: var(--accent); }
.vb-thumb { position: relative; }
.vb-play {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 52px; height: 52px; border-radius: 50%;
  background: rgba(12, 16, 20, .72); color: var(--accent);
  display: flex; align-items: center; justify-content: center;
  font-size: 19px; padding-left: 4px;
  border: 2px solid rgba(255,255,255,.35);
  transition: transform .2s, background .2s;
}
.vb-card:hover .vb-play { transform: translate(-50%, -50%) scale(1.12); background: var(--accent); color: var(--accent-ink); }

/* --- Mozaik Galeri bloğu --- */
.hblock-mosaic {
  display: grid; grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 150px; gap: 12px;
}
.mo-tile {
  position: relative; border-radius: 12px; overflow: hidden; background: var(--ink);
  display: block;
}
.mo-big { grid-column: span 2; grid-row: span 2; }
.mo-tile img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; transition: transform .35s; }
.mo-tile:hover img { transform: scale(1.06); }
.mo-overlay {
  position: absolute; inset: auto 0 0 0; padding: 40px 14px 12px;
  background: linear-gradient(to top, rgba(10,14,18,.88), transparent);
  color: #fff; display: flex; flex-direction: column; gap: 2px;
}
.mo-overlay time { font-size: 10.5px; font-weight: 700; color: var(--accent); text-transform: uppercase; }
.mo-overlay b { font-size: 13px; font-weight: 600; line-height: 1.35; }
.mo-big .mo-overlay b { font-size: 17px; }
.mo-tile .card-noimg { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; }

/* --- Tam Genişlik Vurgu bloğu --- */
.hblock-banner {
  position: relative; display: block; border-radius: var(--radius); overflow: hidden;
  aspect-ratio: 16/5.5; background: var(--ink); box-shadow: var(--shadow-md);
}
.hblock-banner img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; transition: transform .4s; }
.hblock-banner:hover img { transform: scale(1.03); }
.bn-overlay {
  position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: flex-end;
  padding: 30px 36px; max-width: 720px;
  background: linear-gradient(to right, rgba(10,14,18,.88) 0%, rgba(10,14,18,.45) 60%, transparent);
  color: #fff;
}
.bn-overlay time {
  align-self: flex-start; background: var(--accent); color: var(--accent-ink);
  font-size: 11.5px; font-weight: 700; padding: 3px 12px; border-radius: 999px; margin-bottom: 10px;
}
.bn-overlay h4 { font-family: var(--font-serif); font-size: clamp(19px, 2.6vw, 30px); font-weight: 600; line-height: 1.25; }
.bn-overlay p { margin-top: 8px; font-size: 14px; color: #d3dae0; }
.bn-more { margin-top: 12px; font-size: 13.5px; font-weight: 700; color: var(--accent); }
.hblock-banner:hover .bn-more { text-decoration: underline; text-underline-offset: 4px; }

/* --- Zaman Tüneli bloğu --- */
.hblock-timeline { position: relative; padding-left: 6px; }
.hblock-timeline::before {
  content: ''; position: absolute; left: 12px; top: 8px; bottom: 8px;
  width: 3px; background: linear-gradient(to bottom, var(--accent), var(--line)); border-radius: 2px;
}
.tl-item {
  position: relative; display: flex; gap: 18px; align-items: center;
  padding: 14px 14px 14px 36px; border-radius: 12px;
  transition: background .15s;
}
.tl-item:hover { background: var(--paper); box-shadow: var(--shadow-sm); }
.tl-dot {
  position: absolute; left: 1px; top: 50%; transform: translateY(-50%);
  width: 15px; height: 15px; border-radius: 50%;
  background: var(--accent); border: 3px solid #fff; box-shadow: 0 0 0 2px var(--accent-deep);
}
.tl-body { flex: 1; min-width: 0; }
.tl-body time { display: block; font-size: 11.5px; font-weight: 700; color: var(--accent-deep); text-transform: uppercase; margin-bottom: 2px; }
.tl-body b { font-size: 15.5px; font-weight: 700; line-height: 1.4; display: block; }
.tl-item:hover .tl-body b { color: var(--accent-deep); }
.tl-body small { font-size: 13px; color: var(--muted); display: block; margin-top: 3px; }
.tl-thumb { width: 130px; aspect-ratio: 16/10; border-radius: 9px; overflow: hidden; flex-shrink: 0; }
.tl-thumb img { width: 100%; height: 100%; object-fit: cover; }

/* ---------- Makale ---------- */
.article { max-width: 860px; margin-top: 42px; margin-bottom: 60px; }
.article-cats { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 14px; }
.article-cats a {
  background: var(--accent); color: var(--accent-ink); font-size: 12px; font-weight: 700;
  padding: 4px 14px; border-radius: 999px; transition: background .15s;
}
.article-cats a:hover { background: var(--accent-deep); }
.article-head h1 {
  font-family: var(--font-serif); font-size: clamp(26px, 4vw, 40px);
  line-height: 1.22; font-weight: 600; letter-spacing: -.01em;
}
.article-meta { margin-top: 14px; display: flex; gap: 10px; color: var(--muted); font-size: 13.5px; }
.article-hero { margin: 28px 0; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-md); }
.article-body { font-size: 17px; line-height: 1.85; color: #22303c; }
.article-body p { margin: 0 0 1.2em; }
.article-body h2, .article-body h3, .article-body h4 { margin: 1.6em 0 .6em; line-height: 1.3; }
.article-body img { border-radius: 10px; margin: 1.2em auto; height: auto; }
.article-body a { color: var(--accent-deep); text-decoration: underline; text-underline-offset: 3px; }
.article-body blockquote {
  border-left: 4px solid var(--accent); background: var(--paper);
  padding: 16px 22px; margin: 1.4em 0; border-radius: 0 10px 10px 0; font-style: italic;
}
.article-body ul, .article-body ol { padding-left: 1.6em; margin-bottom: 1.2em; }
.article-body figure { margin: 1.4em 0; }
.article-body figcaption { font-size: 13px; color: var(--muted); text-align: center; padding-top: 8px; }
.article-body iframe { max-width: 100%; border-radius: 10px; }
.article-body table { border-collapse: collapse; width: 100%; margin: 1.2em 0; font-size: 15px; }
.article-body td, .article-body th { border: 1px solid var(--line); padding: 8px 12px; }
.article-tags { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 30px; }
.article-tags span { background: var(--paper); border: 1px solid var(--line); border-radius: 999px; padding: 4px 14px; font-size: 12.5px; color: var(--ink-soft); font-weight: 600; }

/* ---------- Paylaşım çubuğu ---------- */
.share-bar {
  display: flex; align-items: center; gap: 16px; flex-wrap: wrap;
  margin-top: 34px; padding-top: 24px; border-top: 1px solid var(--line);
}
.share-label {
  font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: .06em;
  color: var(--muted);
}
.share-links { display: flex; gap: 9px; flex-wrap: wrap; }
.share-btn {
  width: 42px; height: 42px; border-radius: 50%; flex-shrink: 0;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--paper); border: 1px solid var(--line); color: var(--ink-soft);
  cursor: pointer; position: relative;
  transition: transform .15s, box-shadow .15s, background .15s, color .15s, border-color .15s;
}
.share-btn:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); color: #fff; border-color: transparent; }
.share-btn.s-fb:hover   { background: #1877f2; }
.share-btn.s-x:hover    { background: #000; }
.share-btn.s-wa:hover   { background: #25d366; }
.share-btn.s-tg:hover   { background: #29a9eb; }
.share-btn.s-li:hover   { background: #0a66c2; }
.share-btn.s-mail:hover { background: var(--ink); }
.share-btn.s-copy:hover { background: var(--accent); color: var(--accent-ink); }
/* Kopyalandı ipucu */
.share-btn.s-copy.copied::after {
  content: 'Kopyalandı ✓'; position: absolute; bottom: calc(100% + 8px); left: 50%; transform: translateX(-50%);
  background: var(--ink); color: #fff; font-size: 11.5px; font-weight: 600; white-space: nowrap;
  padding: 4px 10px; border-radius: 6px; pointer-events: none;
}

/* ---------- Kategori sayfası ---------- */
.cat-head { padding: 38px 0 8px; }
.cat-head h1 { font-family: var(--font-serif); font-size: 32px; font-weight: 600; }
.cat-head p { color: var(--muted); margin-top: 6px; }
.cat-count { display: inline-block; margin-top: 10px; font-size: 12.5px; font-weight: 700; color: var(--accent-deep); background: rgba(242,183,5,.14); padding: 3px 14px; border-radius: 999px; }
.cat-children { display: flex; gap: 8px; flex-wrap: wrap; margin: 16px 0 26px; }
.cat-children a {
  background: var(--paper); border: 1px solid var(--line); border-radius: 999px;
  padding: 6px 18px; font-size: 13.5px; font-weight: 600; color: var(--ink-soft);
  transition: all .15s;
}
.cat-children a:hover { border-color: var(--accent); color: var(--ink); background: rgba(242,183,5,.08); }

/* ---------- Arama ---------- */
.search-results { display: flex; flex-direction: column; gap: 16px; }
.sresult {
  display: flex; gap: 20px; background: var(--paper); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 18px; transition: box-shadow .2s;
}
.sresult:hover { box-shadow: var(--shadow-md); }
.sresult-img { width: 170px; flex-shrink: 0; border-radius: 10px; overflow: hidden; aspect-ratio: 16/10; }
.sresult-img img { width: 100%; height: 100%; object-fit: cover; }
.sresult time { font-size: 12px; color: var(--accent-deep); font-weight: 600; }
.sresult h4 { margin: 4px 0 6px; font-size: 17px; }
.sresult h4 a:hover { color: var(--accent-deep); }
.sresult p { font-size: 14px; color: var(--muted); }

/* ---------- Sayfalama ---------- */
.pager { display: flex; gap: 6px; justify-content: center; margin-top: 38px; flex-wrap: wrap; }
.pager a, .pager .cur {
  min-width: 38px; height: 38px; display: flex; align-items: center; justify-content: center;
  border-radius: 10px; font-size: 14px; font-weight: 600; padding: 0 8px;
}
.pager a { background: var(--paper); border: 1px solid var(--line); color: var(--ink-soft); }
.pager a:hover { border-color: var(--accent); color: var(--ink); }
.pager .cur { background: var(--ink); color: var(--accent); }

/* ---------- 404 ---------- */
.notfound { text-align: center; padding: 80px 0 100px; }
.nf-mark { font-size: 72px; display: block; margin-bottom: 12px; }
.notfound h1 { font-family: var(--font-serif); font-size: 34px; margin-bottom: 8px; }
.notfound p { color: var(--muted); margin-bottom: 26px; }
.btn-primary {
  display: inline-block; background: var(--ink); color: var(--accent);
  font-weight: 700; font-size: 14.5px; padding: 12px 30px; border-radius: 999px;
  transition: transform .15s, box-shadow .15s;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }

.empty-note { color: var(--muted); padding: 30px 0 60px; }

/* ---------- Alt bilgi ---------- */
.site-footer { background: var(--ink); color: #aeb9c3; margin-top: 70px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1.2fr; gap: 44px; padding: 52px 20px 40px; }
.footer-about h4 { color: #fff; margin: 14px 0 8px; font-size: 17px; }
.footer-about p, .footer-note p { font-size: 14px; line-height: 1.7; }
.footer-links h5, .footer-note h5 { color: var(--accent); font-size: 13px; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 14px; }
.footer-links ul { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.footer-links a { font-size: 14px; transition: color .15s; }
.footer-links a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.09); padding: 18px 0; font-size: 13px; text-align: center; }

/* ---------- Ana sayfa pop-up ---------- */
.popup-overlay {
  position: fixed; inset: 0; z-index: 200; padding: 20px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(10, 14, 18, .68);
  opacity: 0; transition: opacity .25s;
}
.popup-overlay.open { opacity: 1; }
.popup-overlay[hidden] { display: none; }
.popup-box {
  background: var(--paper); border-radius: 16px;
  max-width: 520px; width: 100%; max-height: 90vh; overflow: auto;
  position: relative; box-shadow: 0 30px 80px rgba(0,0,0,.35);
  transform: translateY(20px) scale(.97); transition: transform .28s ease;
}
.popup-overlay.open .popup-box { transform: translateY(0) scale(1); }
.popup-close {
  position: absolute; top: 12px; right: 12px; z-index: 3;
  width: 34px; height: 34px; border-radius: 50%;
  background: rgba(0,0,0,.55); color: #fff; border: 0; cursor: pointer;
  font-size: 15px; line-height: 1;
  display: flex; align-items: center; justify-content: center;
  transition: background .15s, transform .15s;
}
.popup-close:hover { background: var(--ink); transform: scale(1.08); }
.popup-media { display: block; overflow: hidden; }
.popup-media img { width: 100%; height: auto; display: block; }
.popup-body { padding: 24px 26px 28px; }
.popup-body h3 {
  font-family: var(--font-serif); font-size: 22px; font-weight: 600;
  line-height: 1.3; margin-bottom: 10px; color: var(--ink);
}
.popup-text { font-size: 15px; line-height: 1.65; color: var(--ink-soft); }
.popup-btn { margin-top: 18px; }

/* ---------- Duyarlı ---------- */
@media (max-width: 960px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .hero { grid-template-columns: 1fr; }
  .hero-main { min-height: 380px; }
  .hero-nums { flex-direction: row; overflow-x: auto; }
  .hero-num { min-width: 190px; flex: 0 0 auto; min-height: 0; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hblock-hero { grid-template-columns: 1fr; }
  .hb-main { min-height: 260px; }
  .hblock-list { grid-template-columns: 1fr; }
  .hblock-mag { grid-template-columns: 1fr 1fr; }
  .mag-main { grid-column: span 2; min-height: 280px; }
  .hblock-numbered { grid-template-columns: 1fr; }
  .hblock-mosaic { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 130px; }
  .hblock-banner { aspect-ratio: 16/9; }
  .bn-overlay { padding: 20px 22px; background: linear-gradient(to top, rgba(10,14,18,.9), transparent); max-width: none; }
  .tl-thumb { display: none; }
}
@media (max-width: 640px) {
  .topbar-slogan { display: none; }
  .header-main { gap: 14px; padding: 12px 16px; }
  .search { display: none; }
  .nav-toggle {
    display: flex; flex-direction: column; gap: 5px; margin-left: auto;
    background: none; border: 0; cursor: pointer; padding: 8px;
  }
  .nav-toggle span { width: 24px; height: 2.5px; background: var(--ink); border-radius: 2px; transition: all .2s; }
  body.nav-open .nav-toggle span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
  body.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
  body.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }
  .mainnav { display: none; }
  body.nav-open .mainnav { display: block; }
  .mainnav ul { flex-direction: column; padding: 8px 0; }
  .mainnav a { border-bottom: 0; border-left: 3px solid transparent; }
  .mainnav a:hover { border-left-color: var(--accent); }
  .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .hero-main { min-height: 0; }
  .hero-slide { position: relative; grid-template-columns: 1fr; grid-template-rows: 190px auto; }
  .hero-slide:not(.active) { display: none; }
  .hero-content { padding: 22px 20px 26px; }
  .hero-content p { -webkit-line-clamp: 3; }
  .hero-num span { display: none; }
  .hero-num { justify-content: center; padding: 9px; min-width: 54px; }
  .sresult { flex-direction: column; }
  .sresult-img { width: 100%; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .hblock-mag { grid-template-columns: 1fr; }
  .mag-main { grid-column: auto; }
  .hblock-mosaic { grid-template-columns: 1fr 1fr; grid-auto-rows: 120px; }
  .mo-big { grid-column: span 2; grid-row: span 2; }
}
