/* ════════════════════════════════════════════════════════════════
   GÖRÜŞ — okuyucu sitesi · v2
   Estetik: modern editoryal; pastel tonlar, yumuşak kartlar,
   tek marka kırmızısı vurgu, hareketsiz & sakin arayüz
   ════════════════════════════════════════════════════════════════ */
:root {
  --bg: #faf6f0;
  --bg-2: #f2ecE2;
  --card: #ffffff;
  --ink: #2b2622;
  --ink-2: #5c554c;
  --ink-3: #958b7e;
  --line: #eae2d5;
  --brand: #b31312;
  --brand-deep: #8f0f0e;
  --brand-soft: #f6dbd7;
  --serif: "Libre Caslon Text", Georgia, "Times New Roman", "DejaVu Serif", serif;
  --text-serif: Georgia, "Source Serif 4", "Times New Roman", "DejaVu Serif", serif;
  --sans: "Libre Franklin", "Helvetica Neue", Helvetica, Arial, "DejaVu Sans", sans-serif;
  --maxw: 1200px;
  --r: 18px;
  --r-sm: 12px;
  --shadow: 0 10px 30px rgba(43, 38, 34, .07);
  --shadow-lg: 0 18px 44px rgba(43, 38, 34, .12);
}
* { margin: 0; padding: 0; box-sizing: border-box; }
/* Uzun kelime ve bağlantılar taşmasın (mobil) */
body, p, h1, h2, h3, h4, li, td, blockquote, .excerpt, .article-body, .prose { overflow-wrap: break-word; }
.article-body a, .prose a, .comment p { overflow-wrap: anywhere; }
iframe, video, table { max-width: 100%; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 15.5px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
::selection { background: var(--brand); color: #fff; }

/* ── Başlık (Harvard tarzı: söz markası üstte, menü altta) ── */
.masthead { background: var(--bg); }
.masthead .tag-row {
  display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 16px;
  padding: 6px 24px 0; font-size: 11.5px; color: var(--ink-3);
}
.masthead .tag-row .tagline {
  font-family: var(--text-serif); font-size: 13px; color: var(--ink-2); text-align: center;
  letter-spacing: .02em;
}
.masthead .tag-row .tagline i { color: var(--brand-deep); }
.masthead .tag-row .tag-right { display: flex; align-items: center; justify-content: flex-end; gap: 16px; }
.masthead .tag-row .writers { font-weight: 600; white-space: nowrap; }
.masthead .tag-row .writers:hover { color: var(--brand); }
/* Dil seçici */
.lang-picker { display: inline-flex; align-items: center; gap: 5px; position: relative;
  border: 1px solid var(--line); background: var(--card); border-radius: 999px; padding: 4px 10px 4px 11px; }
.lang-picker .lang-globe { font-size: 12px; line-height: 1; }
.lang-picker select {
  border: 0; background: transparent; font-family: var(--sans); font-size: 11.5px; font-weight: 600;
  color: var(--ink-2); cursor: pointer; outline: none; padding-right: 2px; max-width: 130px;
}
.lang-picker:hover { border-color: var(--brand); }
.masthead .brand-row {
  display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 16px;
  padding: 0 24px 18px; margin-top: -6px;
}
.brandlogo { display: flex; align-items: center; justify-content: center; }
.brandlogo img { height: 118px; width: auto; transition: transform .25s; }
.brandlogo:hover img { transform: scale(1.02); }
.masthead .side-l { justify-self: start; display: flex; align-items: center; gap: 16px; }
.l-stack { display: flex; flex-direction: column; align-items: flex-start; gap: 12px; }
.masthead .side-r { justify-self: end; display: flex; align-items: center; gap: 18px; }
.corner-logo img { width: 84px; height: 84px; transition: transform .25s; }
.corner-logo:hover img { transform: scale(1.05) rotate(-3deg); }
.login-link { font-size: 13.5px; font-weight: 600; color: var(--ink-2); }
.login-link:hover { color: var(--brand); }
.btn-donate {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--brand); color: #fff; font-size: 14px; font-weight: 700;
  padding: 12px 28px; border-radius: 999px; letter-spacing: .01em;
  box-shadow: 0 6px 18px rgba(179, 19, 18, .28);
  transition: background .2s, transform .15s, box-shadow .2s;
}
.btn-donate:hover { background: var(--brand-deep); transform: translateY(-1px); box-shadow: 0 9px 24px rgba(179, 19, 18, .34); }
.m-search { position: relative; }
.m-search input {
  border: 1px solid var(--line); background: var(--card); border-radius: 999px;
  font-family: var(--sans); font-size: 13px; color: var(--ink);
  padding: 10px 16px 10px 36px; width: 170px; outline: none; transition: width .25s, border-color .2s;
}
.m-search input:focus { width: 240px; border-color: var(--brand); }
.m-search::before {
  content: ""; position: absolute; left: 14px; top: 50%; width: 13px; height: 13px;
  transform: translateY(-50%);
  background: no-repeat center / contain url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23958b7e' stroke-width='2.4'%3E%3Ccircle cx='11' cy='11' r='7'/%3E%3Cpath d='m20 20-3.5-3.5'/%3E%3C/svg%3E");
}
.btn-login {
  background: var(--brand); color: #fff; font-size: 13.5px; font-weight: 700;
  padding: 11px 26px; border-radius: 999px; transition: background .2s;
}
.btn-login:hover { background: var(--brand-deep); }

/* Menü — söz markasının altında, yapışkan */
.nav-outer {
  position: sticky; top: 0; z-index: 100;
  background: rgba(250, 246, 240, .9);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
}
.nav { display: flex; justify-content: center; gap: 2px; padding: 7px 24px; overflow: visible; flex-wrap: wrap; }
.nav a {
  font-size: 13.5px; font-weight: 600; color: var(--ink-2);
  padding: 8px 14px; border-radius: 999px; transition: background .2s, color .2s; white-space: nowrap;
}
.nav a:hover { background: var(--bg-2); color: var(--ink); }
.nav a.active { background: var(--ink); color: var(--bg); }
.nav a.gorus-link { color: var(--brand); }
.nav a.gorus-link:hover { background: var(--brand-soft); }

/* ── Sosyal medya ikonları ─────────────────────────────────── */
.social { display: inline-flex; align-items: center; gap: 6px; }
.social a {
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; border-radius: 999px; color: var(--ink-2);
  border: 1px solid var(--line); background: var(--card);
  transition: color .2s, background .2s, border-color .2s, transform .15s;
}
.social svg { width: 17px; height: 17px; fill: currentColor; }
.social a:hover { color: #fff; background: var(--brand); border-color: var(--brand); transform: translateY(-1px); }
/* Arama çubuğunun altındaki ikonlar */
.social.mast-social { gap: 8px; padding-left: 2px; }
.social.drawer-social { margin-top: 4px; gap: 4px; }
.social.drawer-social a { width: 38px; height: 38px; border: 1px solid var(--line); color: var(--ink-2); }
.social.drawer-social svg { width: 16px; height: 16px; }
.social.foot-social { margin-top: 16px; gap: 8px; }
.social.foot-social a {
  width: 36px; height: 36px; color: rgba(250, 246, 240, .72);
  background: transparent; border: 1px solid rgba(250, 246, 240, .18);
}
.social.foot-social svg { width: 15px; height: 15px; }
.social.foot-social a:hover { color: #fff; background: var(--brand); border-color: var(--brand); }

/* ── Çeviri notu şeridi (menünün hemen altı) ───────────────── */
.lang-note-bar { background: var(--bg-2); border-bottom: 1px solid var(--line); }
.lang-note-bar .wrap { display: flex; justify-content: center; }
.lang-note {
  display: inline-flex; align-items: center; gap: 9px; max-width: 860px;
  padding: 9px 4px; border: 0; background: none; cursor: pointer; text-align: left;
  font-family: var(--text-serif); font-size: 13px; line-height: 1.45;
  color: var(--ink-2); letter-spacing: .01em; transition: color .2s;
}
.lang-note svg { width: 16px; height: 16px; flex: none; color: var(--brand); opacity: .8; transition: opacity .2s; }
.lang-note:hover { color: var(--ink); }
.lang-note:hover svg { opacity: 1; }

/* ── Bölüm başlıkları ──────────────────────────────────────── */
.section-head { display: flex; align-items: center; gap: 16px; margin: 46px 0 20px; }
.section-head h2 { font-family: var(--serif); font-size: 24px; font-weight: 800; letter-spacing: .01em; white-space: nowrap; }
.section-head h2 .tick { color: var(--brand); margin-right: 2px; }
.section-head .rule { flex: 1; height: 1px; background: var(--line); }
.section-head .more {
  font-size: 12.5px; font-weight: 600; color: var(--ink-3);
  padding: 6px 14px; border: 1px solid var(--line); border-radius: 999px; transition: all .2s; white-space: nowrap;
}
.section-head .more:hover { color: var(--brand); border-color: var(--brand); }

/* ── Rozetler / çipler ─────────────────────────────────────── */
.chip {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 11px; font-weight: 700; letter-spacing: .05em;
  border-radius: 999px; padding: 4px 11px; width: fit-content;
}
.byline { display: flex; align-items: center; gap: 9px; font-size: 12px; color: var(--ink-3); }
.byline img { width: 26px; height: 26px; border-radius: 50%; }
.byline b { color: var(--ink-2); font-weight: 600; }

/* ── Manşet ────────────────────────────────────────────────── */
.hero {
  display: grid; grid-template-columns: 7fr 5fr; gap: 0; margin-top: 26px;
  background: var(--card); border: 1px solid var(--line); border-radius: calc(var(--r) + 6px);
  overflow: hidden; box-shadow: var(--shadow); transition: box-shadow .3s;
}
.hero:hover { box-shadow: var(--shadow-lg); }
.hero .cover { overflow: hidden; min-height: 340px; }
.hero .cover { display: block; }
.hero .cover svg, .hero .cover img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .6s ease; }
.hero:hover .cover svg, .hero:hover .cover img { transform: scale(1.03); }
.hero .body { padding: 38px 40px; display: flex; flex-direction: column; justify-content: center; gap: 15px; }
.hero h2.title {
  font-family: "Libre Caslon Display", var(--serif); font-weight: 400; font-size: clamp(28px, 3.4vw, 42px);
  line-height: 1.12; letter-spacing: -.005em;
}
.hero:hover h2.title { color: var(--brand-deep); }
.hero .excerpt { font-family: var(--text-serif); font-size: 16.5px; color: var(--ink-2); line-height: 1.6; }

/* ── Kartlar ───────────────────────────────────────────────── */
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.card {
  display: flex; flex-direction: column; gap: 11px;
  background: var(--card); border: 1px solid var(--line); border-radius: var(--r);
  padding: 14px 14px 18px; box-shadow: 0 4px 14px rgba(43, 38, 34, .04);
  transition: transform .25s, box-shadow .25s;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.card .cover { border-radius: var(--r-sm); overflow: hidden; aspect-ratio: 8/5; }
.card .cover { display: block; background: var(--bg-2); }
.card .cover svg, .card .cover img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .5s; }
.card:hover .cover svg, .card:hover .cover img { transform: scale(1.05); }
.card h3 { font-family: var(--serif); font-weight: 800; font-size: 17.5px; line-height: 1.3; }
.card:hover h3 { color: var(--brand-deep); }
.card .excerpt { font-size: 13px; color: var(--ink-2); line-height: 1.55; }
.card .meta { font-size: 11.5px; color: var(--ink-3); margin-top: auto; }
.card .meta b { color: var(--ink-2); font-weight: 600; }

/* ── Görüş / köşe yazıları ─────────────────────────────────── */
.gorus-band { margin-top: 52px; }
.gorus-band .panel-bg {
  background: var(--bg-2); border-radius: calc(var(--r) + 8px); padding: 34px 34px 38px;
}
.gorus-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.col-card {
  position: relative; background: var(--card); border: 1px solid var(--line);
  border-radius: var(--r); padding: 24px; overflow: hidden;
  transition: transform .25s, box-shadow .25s;
}
.col-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.col-card .q {
  position: absolute; top: 10px; right: 18px; font-family: var(--serif);
  font-size: 64px; line-height: 1; opacity: .16;
}
.col-card .who { display: flex; gap: 12px; align-items: center; margin-bottom: 15px; }
.col-card .who img { width: 46px; height: 46px; border-radius: 50%; }
.col-card .who b { font-size: 13.5px; display: block; }
.col-card .who span { font-size: 11px; color: var(--ink-3); letter-spacing: .05em; text-transform: uppercase; }
.col-card h3 { font-family: var(--serif); font-size: 20px; font-weight: 800; line-height: 1.28; margin-bottom: 9px; }
.col-card:hover h3 { color: var(--brand-deep); }
.col-card p { font-size: 13.5px; color: var(--ink-2); line-height: 1.6; }

/* ── Ana düzen: son eklenenler + kenar ─────────────────────── */
.layout { display: grid; grid-template-columns: 8fr 4fr; gap: 26px; align-items: start; }
.latest-list { background: var(--card); border: 1px solid var(--line); border-radius: var(--r); padding: 8px 22px; }
.latest-item {
  display: grid; grid-template-columns: 96px 1fr auto; gap: 16px; align-items: center;
  padding: 15px 0; border-bottom: 1px solid var(--line);
}
.latest-item:last-child { border-bottom: 0; }
.latest-item .cover { width: 96px; border-radius: 10px; overflow: hidden; aspect-ratio: 8/5; }
.latest-item .cover { display: block; background: var(--bg-2); }
.latest-item .cover svg, .latest-item .cover img { width: 100%; height: 100%; object-fit: cover; display: block; }
.latest-item h3 { font-family: var(--serif); font-size: 16.5px; font-weight: 800; line-height: 1.3; margin-top: 5px; }
.latest-item:hover h3 { color: var(--brand-deep); }
.latest-item .meta { font-size: 11.5px; color: var(--ink-3); margin-top: 5px; }
.latest-item .when {
  font-size: 11.5px; font-weight: 600; color: var(--ink-3); white-space: nowrap;
  background: var(--bg-2); border-radius: 999px; padding: 5px 12px;
}

.sidebar { position: sticky; top: 84px; display: flex; flex-direction: column; gap: 20px; }
.side-box { background: var(--card); border: 1px solid var(--line); border-radius: var(--r); padding: 20px 22px; }
.side-box h3 { font-family: var(--serif); font-size: 18px; font-weight: 800; margin-bottom: 6px; }
.side-box h3 .tick { color: var(--brand); margin-right: 4px; }

.mostread { counter-reset: mr; }
.mostread a { display: grid; grid-template-columns: 34px 1fr; gap: 12px; align-items: start; padding: 11px 0; border-bottom: 1px solid var(--line); }
.mostread a:last-child { border-bottom: 0; padding-bottom: 2px; }
.mostread a::before {
  counter-increment: mr; content: counter(mr);
  width: 30px; height: 30px; border-radius: 50%; background: var(--brand-soft); color: var(--brand-deep);
  font-weight: 800; font-size: 13.5px; display: flex; align-items: center; justify-content: center; margin-top: 2px;
}
.mostread h4 { font-family: var(--serif); font-size: 14.5px; font-weight: 700; line-height: 1.35; }
.mostread a:hover h4 { color: var(--brand-deep); }
.mostread .m { font-size: 11px; color: var(--ink-3); margin-top: 3px; }

.cat-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 10px; }

/* ── Yazarlar vitrini (anasayfa) ───────────────────────────── */
.authors-strip {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 14px;
}
.author-mini {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--r);
  padding: 20px 14px; text-align: center; display: flex; flex-direction: column; align-items: center; gap: 3px;
  transition: transform .25s, box-shadow .25s;
}
.author-mini:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.author-mini img { width: 60px; height: 60px; border-radius: 50%; margin-bottom: 8px; }
.author-mini b { font-family: var(--serif); font-size: 14.5px; line-height: 1.25; }
.author-mini span { font-size: 10.5px; color: var(--ink-3); text-transform: uppercase; letter-spacing: .06em; }
.author-mini em { font-style: normal; font-size: 11px; color: var(--brand-deep); font-weight: 600; margin-top: 5px; }

/* ── Haber sayfası ─────────────────────────────────────────── */
.progress { position: fixed; top: 0; left: 0; height: 3px; background: var(--brand); width: 0; z-index: 200; }
.article-head { max-width: 780px; margin: 42px auto 0; text-align: center; }
.article-head .chip { margin: 0 auto; }
.article-head h1 {
  font-family: "Libre Caslon Display", var(--serif); font-weight: 400; font-size: clamp(32px, 4.8vw, 52px);
  line-height: 1.1; letter-spacing: -.005em; margin: 16px 0;
}
.article-head .standfirst { font-family: var(--text-serif); font-size: 19px; color: var(--ink-2); font-style: italic; line-height: 1.55; }
/* ── Sesli dinleme çubuğu ──────────────────────────────────── */
.listen {
  display: inline-flex; align-items: center; gap: 10px;
  margin: 26px auto 0; padding: 6px 14px 6px 6px;
  background: var(--card); border: 1px solid var(--line); border-radius: 999px;
  box-shadow: 0 4px 14px rgba(43, 38, 34, .05);
  font-family: var(--sans); font-size: 12.5px; color: var(--ink-2);
  max-width: 100%; transition: border-color .2s, box-shadow .2s;
}
/* .article-head ortalı; çubuğu da ortala */
.listen { display: flex; width: fit-content; }
.listen:hover { border-color: #ddd2c0; box-shadow: 0 6px 18px rgba(43, 38, 34, .08); }
.listen.is-on { border-color: var(--brand-soft); }
.listen button {
  font: inherit; color: inherit; background: none; border: 0; cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center;
}
.listen .i { width: 15px; height: 15px; fill: currentColor; display: block; }
.listen [hidden] { display: none; }        /* display kuralları hidden'ı ezmesin */
.listen .listen-play {
  width: 34px; height: 34px; flex: 0 0 34px; border-radius: 50%;
  background: var(--brand); color: #fff; transition: background .2s, transform .12s;
}
.listen .listen-play:hover { background: var(--brand-deep); }
.listen .listen-play:active { transform: scale(.94); }
.listen-play .i { width: 17px; height: 17px; }
.listen-play .i-play { margin-left: 2px; }
.listen-play .i-pause { display: none; }
.listen.is-playing .listen-play .i-play { display: none; }
.listen.is-playing .listen-play .i-pause { display: block; }
.listen-info { display: inline-flex; align-items: center; gap: 7px; white-space: nowrap; }
.listen-label { font-weight: 600; letter-spacing: .01em; color: var(--ink); }
.listen-dot { color: var(--ink-3); }
.listen-time { color: var(--ink-3); font-variant-numeric: tabular-nums; }
.listen-progress {
  display: block; width: 130px; height: 4px; flex: 0 1 130px;
  background: var(--bg-2); border-radius: 999px; overflow: hidden;
}
.listen-progress .bar { display: block; height: 100%; width: 0; background: var(--brand); border-radius: 999px; transition: width .25s linear; }
.listen-tools { display: inline-flex; align-items: center; gap: 4px; }
.listen .listen-rate {
  min-width: 34px; height: 24px; padding: 0 7px; border-radius: 999px;
  background: var(--bg-2); color: var(--ink-2); font-size: 11.5px; font-weight: 600;
  font-variant-numeric: tabular-nums;
}
.listen .listen-rate:hover { background: var(--brand-soft); color: var(--brand-deep); }
.listen .listen-stop { width: 24px; height: 24px; border-radius: 50%; color: var(--ink-3); }
.listen .listen-stop:hover { background: var(--bg-2); color: var(--brand); }
.listen-stop .i { width: 13px; height: 13px; }

.article-meta {
  display: flex; justify-content: center; align-items: center; gap: 10px; flex-wrap: wrap;
  margin: 24px 0 8px; font-size: 12.5px; color: var(--ink-3);
}
.article-meta > span {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--card); border: 1px solid var(--line); border-radius: 999px; padding: 7px 15px;
}
.article-meta .a img { width: 26px; height: 26px; border-radius: 50%; }
.article-meta .a b { color: var(--ink); font-weight: 600; }
.article-meta .a b:hover { color: var(--brand); }
.article-cover {
  max-width: 940px; margin: 26px auto; border-radius: calc(var(--r) + 6px);
  overflow: hidden; aspect-ratio: 2/1; box-shadow: var(--shadow);
}
.article-cover svg, .article-cover img { width: 100%; height: 100%; object-fit: cover; display: block; }
.article-body { max-width: 690px; margin: 0 auto; font-family: var(--text-serif); font-size: 18px; line-height: 1.75; }
.article-body p { margin-bottom: 26px; }
.article-body > p:first-of-type::first-letter {
  font-family: var(--serif); font-weight: 900; font-size: 68px; line-height: .8;
  float: left; padding: 7px 12px 0 0; color: var(--brand);
}
.article-body h2 {
  font-family: var(--sans); font-size: 13.5px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase;
  margin: 36px 0 16px; color: var(--brand-deep);
  display: flex; align-items: center; gap: 12px;
}
.article-body h2::after { content: ""; flex: 1; height: 1px; background: var(--line); }
.article-body blockquote {
  font-family: var(--serif); font-size: 23px; font-weight: 700; line-height: 1.4; font-style: italic;
  margin: 34px 0; padding: 26px 30px; background: var(--brand-soft);
  border-radius: var(--r); color: var(--brand-deep); position: relative;
}
.article-body blockquote span { display: none; }
.article-tags { max-width: 690px; margin: 30px auto; display: flex; gap: 8px; flex-wrap: wrap; }
.article-tags a {
  font-size: 12px; font-weight: 600; background: var(--card); border: 1px solid var(--line);
  padding: 6px 14px; border-radius: 999px; color: var(--ink-2); transition: all .2s;
}
.article-tags a:hover { border-color: var(--brand); color: var(--brand); }

.author-box {
  max-width: 690px; margin: 34px auto; display: grid; grid-template-columns: 78px 1fr; gap: 20px;
  background: var(--card); border: 1px solid var(--line); border-radius: var(--r);
  padding: 24px; box-shadow: 0 4px 14px rgba(43, 38, 34, .04);
}
.author-box img { width: 78px; height: 78px; border-radius: 50%; }
.author-box .t { font-size: 10.5px; letter-spacing: .16em; text-transform: uppercase; color: var(--ink-3); font-weight: 700; }
.author-box h4 { font-family: var(--serif); font-size: 21px; margin: 4px 0 2px; }
.author-box h4 a:hover { color: var(--brand); }
.author-box .role { font-size: 12px; color: var(--brand-deep); font-weight: 700; margin-bottom: 8px; }
.author-box p { font-family: var(--text-serif); font-size: 14px; color: var(--ink-2); line-height: 1.6; }

/* Yorumlar */
.comments { max-width: 690px; margin: 44px auto 60px; }
.comments h3 { font-family: var(--serif); font-size: 21px; font-weight: 800; margin-bottom: 10px; }
.comment { background: var(--card); border: 1px solid var(--line); border-radius: var(--r-sm); padding: 16px 20px; margin-bottom: 12px; }
.comment .h { display: flex; gap: 10px; align-items: baseline; font-size: 13px; }
.comment .h b { font-weight: 700; }
.comment .h time { color: var(--ink-3); font-size: 11.5px; }
.comment p { font-family: var(--text-serif); font-size: 14.5px; color: var(--ink-2); margin-top: 5px; }
.comment-form { margin-top: 24px; background: var(--card); border: 1px solid var(--line); border-radius: var(--r); padding: 24px; }
.comment-form h4 { font-family: var(--serif); font-size: 19px; margin-bottom: 5px; }
.comment-form .note { font-size: 12px; color: var(--ink-3); margin-bottom: 15px; }
.comment-form input, .comment-form textarea {
  width: 100%; border: 1px solid var(--line); background: var(--bg); border-radius: var(--r-sm);
  padding: 12px 15px; font-family: var(--sans); font-size: 14px; margin-bottom: 12px; outline: none;
  transition: border-color .2s;
}
.comment-form input:focus, .comment-form textarea:focus { border-color: var(--brand); background: #fff; }
.comment-form textarea { min-height: 110px; resize: vertical; font-family: var(--text-serif); font-size: 15px; }
.flash-ok {
  max-width: 690px; margin: 12px auto; background: #e5efe2; border: 1px solid #c4dcc0; color: #33613a;
  font-size: 13.5px; padding: 12px 18px; border-radius: var(--r-sm);
}

/* ── Düğmeler ──────────────────────────────────────────────── */
.btn {
  display: inline-block; background: var(--brand); color: #fff; border: 0; cursor: pointer;
  font-family: var(--sans); font-size: 13.5px; font-weight: 700;
  padding: 12px 26px; border-radius: 999px; transition: background .2s, transform .15s;
}
.btn:hover { background: var(--brand-deep); transform: translateY(-1px); }
.btn.ghost { background: transparent; color: var(--ink); border: 1px solid var(--ink-2); }
.btn.ghost:hover { border-color: var(--brand); color: var(--brand); background: transparent; }

/* ── Sayfa başlıkları / yazarlar ───────────────────────────── */
.page-title { text-align: center; margin: 46px 0 10px; }
.page-title h1 { font-family: var(--serif); font-weight: 900; font-size: clamp(32px, 4.6vw, 46px); }
.page-title p { font-size: 13.5px; color: var(--ink-3); margin-top: 8px; }
.authors-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin: 36px 0 60px; }
.author-card {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--r);
  padding: 30px 26px; text-align: center; transition: transform .25s, box-shadow .25s;
}
.author-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.author-card img { width: 84px; height: 84px; border-radius: 50%; margin: 0 auto 14px; }
.author-card h3 { font-family: var(--serif); font-size: 22px; }
.author-card .role { font-size: 11px; color: var(--brand-deep); font-weight: 700; letter-spacing: .1em; text-transform: uppercase; margin: 6px 0 12px; }
.author-card p { font-family: var(--text-serif); font-size: 13.5px; color: var(--ink-2); line-height: 1.55; }
.author-card .n { font-size: 11.5px; color: var(--ink-3); margin-top: 15px; border-top: 1px solid var(--line); padding-top: 13px; }

.author-hero {
  text-align: center; margin: 42px auto 20px; max-width: 760px;
  background: var(--card); border: 1px solid var(--line); border-radius: calc(var(--r) + 6px);
  padding: 40px 44px; box-shadow: var(--shadow);
}
.author-hero img { width: 108px; height: 108px; border-radius: 50%; margin: 0 auto 16px; }
.author-hero h1 { font-family: var(--serif); font-weight: 900; font-size: 38px; }
.author-hero .role { font-size: 12px; color: var(--brand-deep); font-weight: 700; letter-spacing: .14em; text-transform: uppercase; margin: 8px 0 16px; }
.author-hero .bio { font-family: var(--text-serif); font-size: 16px; color: var(--ink-2); line-height: 1.7; }
.author-hero .stats { display: flex; justify-content: center; gap: 14px; margin-top: 26px; }
.author-hero .stats > div { background: var(--bg-2); border-radius: var(--r-sm); padding: 12px 26px; }
.author-hero .stats b { font-family: var(--serif); font-size: 22px; display: block; }
.author-hero .stats span { font-size: 10.5px; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-3); }

/* ── Bağış sayfası ─────────────────────────────────────────── */
.donate-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin: 36px 0 10px; }
.donate-card {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--r);
  padding: 34px 28px; text-align: center; display: flex; flex-direction: column; gap: 12px; align-items: center;
}
.donate-card.featured { border-color: var(--brand); box-shadow: 0 14px 34px rgba(179, 19, 18, .12); }
.donate-card .ic { font-size: 34px; }
.donate-card h3 { font-family: var(--serif); font-size: 22px; }
.donate-card p { font-family: var(--text-serif); font-size: 14.5px; color: var(--ink-2); line-height: 1.6; flex: 1; }
.donate-card .btn { margin-top: 4px; }
@media (max-width: 900px) { .donate-grid { grid-template-columns: 1fr; } }

/* ── Arama ─────────────────────────────────────────────────── */
.search-hero { max-width: 560px; margin: 0 auto 40px; display: flex; gap: 10px; }
.search-hero input {
  flex: 1; border: 1px solid var(--line); background: var(--card); border-radius: 999px;
  padding: 14px 22px; font-family: var(--sans); font-size: 15px; outline: none;
}
.search-hero input:focus { border-color: var(--brand); }

/* ── Altbilgi ──────────────────────────────────────────────── */
footer.site { margin-top: 70px; background: #2b2622; color: rgba(250, 246, 240, .72); border-radius: 28px 28px 0 0; }
footer.site .grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; padding: 48px 0 38px; }
footer.site .brand { display: inline-flex; }
footer.site .brand img { height: 62px; width: auto; }
footer.site p { font-size: 13px; line-height: 1.65; margin-top: 14px; }
footer.site h4 { color: #fff; font-size: 11.5px; letter-spacing: .16em; text-transform: uppercase; margin-bottom: 14px; }
footer.site ul { list-style: none; }
footer.site li { margin-bottom: 9px; font-size: 13px; }
footer.site li a:hover { color: #f0a9a2; }
footer.site .legal {
  border-top: 1px solid rgba(250, 246, 240, .14); padding: 18px 0; font-size: 12px;
  display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap;
}

/* ── 404 ───────────────────────────────────────────────────── */
.err-num {
  font-family: var(--serif); font-size: 110px; font-weight: 900; line-height: 1;
  color: transparent; -webkit-text-stroke: 2px var(--brand);
}

/* ── Mobil menü: hamburger düğmesi ve çekmece ──────────────── */
.burger {
  display: none; width: 42px; height: 42px; border: 1px solid var(--line); background: var(--card);
  border-radius: 12px; cursor: pointer; padding: 0; flex-direction: column;
  align-items: center; justify-content: center; gap: 4px; transition: border-color .2s;
}
.burger i { display: block; width: 18px; height: 2px; border-radius: 2px; background: var(--ink); transition: transform .25s, opacity .2s; }
.burger:active { border-color: var(--brand); }
body.drawer-open .burger i:nth-child(1) { transform: translateY(6px) rotate(45deg); }
body.drawer-open .burger i:nth-child(2) { opacity: 0; }
body.drawer-open .burger i:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
.m-donate {
  display: none; width: 42px; height: 42px; border-radius: 12px; background: var(--brand); color: #fff;
  align-items: center; justify-content: center; font-size: 16px;
  box-shadow: 0 6px 16px rgba(179, 19, 18, .26);
}
.drawer-backdrop {
  position: fixed; inset: 0; background: rgba(28, 22, 16, .45); z-index: 300;
  opacity: 0; transition: opacity .25s; -webkit-backdrop-filter: blur(2px); backdrop-filter: blur(2px);
}
body.drawer-open .drawer-backdrop { opacity: 1; }
.drawer {
  position: fixed; top: 0; left: 0; bottom: 0; width: min(86vw, 340px); z-index: 310;
  background: var(--bg); border-right: 1px solid var(--line); box-shadow: 0 0 50px rgba(30, 22, 15, .25);
  padding: 16px 18px 34px; overflow-y: auto; -webkit-overflow-scrolling: touch;
  transform: translateX(-102%); transition: transform .26s cubic-bezier(.4, 0, .2, 1);
  display: flex; flex-direction: column; gap: 14px;
}
body.drawer-open .drawer { transform: translateX(0); }
body.drawer-open { overflow: hidden; }
.drawer-top { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.drawer .dlogo img { height: 46px; width: auto; }
.drawer .dclose {
  width: 38px; height: 38px; border: 1px solid var(--line); background: var(--card); border-radius: 50%;
  font-size: 15px; color: var(--ink-2); cursor: pointer; line-height: 1;
}
.drawer-search { display: flex; gap: 8px; }
.drawer-search input {
  flex: 1; min-width: 0; border: 1px solid var(--line); background: var(--card); border-radius: 999px;
  padding: 12px 18px; font-family: var(--sans); font-size: 16px; outline: none;
}
.drawer-search input:focus { border-color: var(--brand); }
.drawer-search button {
  border: 0; background: var(--ink); color: var(--bg); border-radius: 999px; padding: 0 18px;
  font-family: var(--sans); font-size: 13.5px; font-weight: 700; cursor: pointer;
}
.drawer-nav { display: flex; flex-direction: column; }
.drawer-nav a.lead, .drawer-nav summary {
  display: block; padding: 13px 8px; font-size: 15.5px; font-weight: 700; color: var(--ink);
  border-bottom: 1px solid var(--line); cursor: pointer; list-style: none;
}
.drawer-nav summary::-webkit-details-marker { display: none; }
.drawer-nav summary::after { content: "▾"; float: right; font-size: 11px; color: var(--ink-3); transition: transform .2s; }
.drawer-nav details[open] > summary::after { transform: rotate(180deg); }
.drawer-nav details[open] > summary { color: var(--brand-deep); }
.drawer-nav a.lead.on { color: var(--brand); }
.drawer-nav a.lead.brandy { color: var(--brand); }
.drawer-nav .subs { display: flex; flex-direction: column; padding: 6px 0 10px 14px; border-bottom: 1px solid var(--line); }
.drawer-nav .subs a { padding: 9px 8px; font-size: 14px; color: var(--ink-2); }
.drawer-nav .subs a:first-child { color: var(--brand); font-weight: 700; }
.btn-donate.wide { justify-content: center; width: 100%; padding: 14px 20px; font-size: 15px; }
.drawer-foot { display: flex; flex-wrap: wrap; gap: 6px 16px; font-size: 13px; color: var(--ink-3); }
.drawer-foot a { padding: 4px 0; }
.drawer-foot a:hover { color: var(--brand); }

/* ── Duyarlılık ────────────────────────────────────────────── */
@media (max-width: 1020px) {
  .nav { justify-content: flex-start; flex-wrap: nowrap; overflow-x: auto; -webkit-overflow-scrolling: touch; scrollbar-width: none; }
  .nav::-webkit-scrollbar { display: none; }
  .nav .dropdown { display: none; }
  .masthead .tag-row .date { display: none; }
  .hero, .layout { grid-template-columns: 1fr; }
  .hero .cover { min-height: 0; aspect-ratio: 2 / 1; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .gorus-grid, .authors-grid, .grid-3 { grid-template-columns: repeat(2, 1fr); }
  footer.site .grid { grid-template-columns: 1fr 1fr; }
  .sidebar { position: static; }
  .article-body { max-width: 100%; }
}

/* Tablet ve altı: hamburger menü devreye girer */
@media (max-width: 900px) {
  .burger { display: flex; }
  .m-search { display: none; }
  .social.mast-social { display: none; }   /* ikonlar çekmece menüde ve altbilgide */
  .login-link { display: none; }
  .masthead .brand-row { grid-template-columns: auto 1fr auto; gap: 10px; padding: 0 16px 12px; margin-top: 0; }
  .masthead .side-l, .masthead .side-r { gap: 10px; }
  .brandlogo img { height: 84px; }
  .btn-donate { padding: 10px 18px; font-size: 13px; }
  .nav { padding: 6px 16px; gap: 0; }
  .nav a { font-size: 13px; padding: 9px 12px; }
  .wrap { padding: 0 16px; }
  .masthead .tag-row { padding: 6px 16px 0; }
}

/* Telefon */
@media (max-width: 640px) {
  html { -webkit-text-size-adjust: 100%; }
  body { font-size: 15px; }
  .grid-4, .grid-2, .gorus-grid, .authors-grid, .grid-3 { grid-template-columns: 1fr; }
  .masthead .tag-row { grid-template-columns: 1fr; justify-items: center; padding: 8px 14px 0; }
  .masthead .tag-row .tag-right { justify-content: center; gap: 12px; }
  .masthead .tag-row .date { display: none; }
  .masthead .tag-row .writers { display: none; }
  .lang-note { font-size: 12px; gap: 7px; padding: 8px 2px; line-height: 1.4; }
  .lang-note svg { width: 14px; height: 14px; }
  .masthead .brand-row { padding: 2px 14px 12px; }
  .brandlogo img { height: 58px; }
  .masthead .btn-donate { display: none; }
  .m-donate { display: inline-flex; }
  .btn-donate.wide { display: flex; }
  .wrap { padding: 0 14px; }

  /* Manşet */
  .hero { margin-top: 16px; border-radius: var(--r); }
  .hero .cover { min-height: 0; aspect-ratio: 8/5; }
  .hero .body { padding: 20px 18px 24px; gap: 11px; }
  .hero h2.title { font-size: 27px; line-height: 1.15; }
  .hero .excerpt { font-size: 15.5px; }

  /* Bölüm başlıkları / kartlar */
  .section-head { margin: 34px 0 16px; gap: 10px; }
  .section-head h2 { font-size: 20px; }
  .section-head .more { font-size: 12px; padding: 6px 12px; }
  .card { padding: 12px 12px 16px; }
  .card h3 { font-size: 18px; }
  .card .excerpt { font-size: 13.5px; }
  .gorus-band { margin-top: 36px; }
  .gorus-band .panel-bg { padding: 18px 16px 22px; border-radius: var(--r); }
  .col-card { padding: 20px 18px; }
  .col-card .q { font-size: 46px; top: 6px; right: 12px; }
  .col-card h3 { font-size: 18.5px; }

  /* Son eklenenler + kenar çubuğu */
  .layout { gap: 18px; }
  .latest-list { padding: 4px 16px; }
  .latest-item { grid-template-columns: 78px 1fr; gap: 12px; padding: 13px 0; }
  .latest-item .cover { width: 78px; }
  .latest-item h3 { font-size: 15.5px; }
  .latest-item .when { display: none; }
  .side-box { padding: 18px 16px; }
  .authors-strip { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .author-mini { padding: 16px 10px; }
  .author-mini img { width: 54px; height: 54px; }

  /* Yazı sayfası */
  .article-head { margin-top: 26px; }
  .article-head h1 { font-size: 30px; margin: 12px 0; }
  .article-head .standfirst { font-size: 17px; }
  .listen { margin-top: 18px; gap: 8px; padding: 5px 11px 5px 5px; font-size: 12px; }
  .listen-play { width: 31px; height: 31px; flex-basis: 31px; }
  .listen-progress { width: 62px; flex-basis: 62px; }
  .listen.is-on .listen-dot, .listen.is-on .listen-label { display: none; }
  .article-meta { gap: 7px; margin: 18px 0 4px; font-size: 12px; }
  .article-meta > span { padding: 6px 12px; }
  .article-cover { margin: 18px auto; border-radius: var(--r); aspect-ratio: 8/5; }
  .article-body { font-size: 17.5px; line-height: 1.72; }
  .article-body p { margin-bottom: 22px; }
  .article-body > p:first-of-type::first-letter { font-size: 54px; padding: 5px 9px 0 0; }
  .article-body h2 { font-size: 12.5px; margin: 30px 0 14px; }
  .article-body blockquote { font-size: 19px; padding: 20px 20px; margin: 26px 0; }
  .body-figure { margin: 22px 0; }
  .author-box { grid-template-columns: 1fr; justify-items: center; text-align: center; padding: 22px 18px; gap: 12px; }
  .author-box img { margin: 0 auto; }
  .comment-form { padding: 18px 16px; }
  .comments { margin-bottom: 40px; }

  /* Sayfa başlıkları / yazar sayfaları */
  .page-title { margin: 30px 0 6px; }
  .page-title h1 { font-size: 30px; }
  .page-title .sub-nav { gap: 6px; }
  .page-title .sub-nav a { font-size: 12.5px; padding: 6px 12px; }
  .author-hero { padding: 26px 20px; margin-top: 26px; border-radius: var(--r); }
  .author-hero h1 { font-size: 27px; }
  .author-hero img { width: 88px; height: 88px; }
  .author-hero .bio { font-size: 15px; }
  .author-hero .stats { flex-wrap: wrap; gap: 10px; }
  .author-hero .stats > div { padding: 10px 18px; }
  .author-card { padding: 24px 20px; }
  .static-page .prose { font-size: 17px; }
  .search-hero { flex-direction: column; }
  .search-hero .btn { width: 100%; }
  .err-num { font-size: 78px; }

  /* Altbilgi */
  footer.site { margin-top: 46px; border-radius: 22px 22px 0 0; }
  footer.site .grid { grid-template-columns: 1fr 1fr; gap: 26px 20px; padding: 34px 0 26px; }
  footer.site .grid > div:first-child { grid-column: 1 / -1; }
  footer.site .brand img { height: 52px; }
  footer.site .legal { flex-direction: column; gap: 6px; text-align: left; }

  /* Form alanları: iOS'ta odaklanınca yakınlaşmasın */
  .comment-form input, .comment-form textarea, .search-hero input, .m-search input { font-size: 16px; }

  /* Dokunma hedefleri */
  .nav a { padding: 10px 13px; }
  .chip { font-size: 11px; }
  .btn { padding: 13px 24px; }
}

/* Küçük telefonlar */
@media (max-width: 400px) {
  .listen.is-on .listen-progress { width: 44px; flex-basis: 44px; }
  .listen-rate { min-width: 30px; padding: 0 5px; }
}
@media (max-width: 380px) {
  .brandlogo img { height: 50px; }
  .hero h2.title { font-size: 24px; }
  .article-head h1 { font-size: 26px; }
  .authors-strip { grid-template-columns: 1fr; }
}

/* ── Google Translate: varsayılan arayüzü gizle ────────────── */
#google_translate_element { position: absolute; left: -9999px; top: 0; height: 0; overflow: hidden; }
.goog-te-banner-frame, .goog-te-gadget-icon, .skiptranslate iframe { display: none !important; }
body { top: 0 !important; }
.goog-tooltip, .goog-tooltip:hover { display: none !important; }
.goog-text-highlight { background: none !important; box-shadow: none !important; }
.lang-picker select option { color: #141414; }

/* ── Metin içi görseller ───────────────────────────────────── */
.body-figure { margin: 30px 0; }
.body-figure img {
  width: 100%; display: block; border-radius: calc(var(--r) + 2px);
  box-shadow: 0 8px 26px rgba(43, 38, 34, .10);
}
/* Yazının ilk görseli = kapak: gövdeden taşarak manşet gibi dursun */
.article-body > .body-figure:first-child {
  margin: 4px 0 34px; width: calc(100% + 250px); max-width: 940px;
  margin-left: 50%; transform: translateX(-50%);
}
.article-body > .body-figure:first-child img { box-shadow: var(--shadow); }
@media (max-width: 980px) {
  .article-body > .body-figure:first-child { width: 100%; margin-left: 0; transform: none; }
}

/* ── Yazar fotoğrafı (manşet + kartlar) ─────────────────────────── */
.hero .cover img.author-shot { object-fit: cover; object-position: center 22%; }
/* Yazısında görsel olmayan içerikler: yazar fotoğrafı kapak olarak kullanılır */
.card .cover img.author-shot,
.latest-item .cover img.author-shot,
.article-cover img.author-shot { object-fit: cover; object-position: center 20%; }
.author-mini img.au-photo, .byline img.au-photo {
  border-radius: 50%; object-fit: cover; aspect-ratio: 1/1; background: var(--bg-2);
}
.author-mini img.au-photo { width: 96px; height: 96px; }
.col-card .who img.au-photo, .article-meta .a img.au-photo, .author-box img.au-photo,
.author-card img.au-photo, .author-hero img.au-photo {
  object-fit: cover; aspect-ratio: 1/1; border-radius: 50%; background: var(--bg-2);
}
.author-card img.au-photo { display: block; }
.author-hero img.au-photo { display: block; }
.byline img.au-photo { width: 64px; height: 64px; }

/* ── Podcast oynatıcı ───────────────────────────────────────────── */
.audio-embed { margin: 26px 0; border-radius: 14px; overflow: hidden; border: 1px solid var(--line); background: var(--bg-2); }
.audio-embed iframe { display: block; width: 100%; border: 0; }

/* ── Kurumsal sayfalar ──────────────────────────────────────────── */
.static-page { max-width: 760px; margin: 0 auto; }
.static-page .prose { font-family: var(--text-serif); font-size: 18.5px; line-height: 1.78; color: var(--ink); }
.static-page .prose p { margin: 0 0 18px; }
.static-page .prose h2 { font-family: var(--display); font-size: 25px; margin: 34px 0 14px; }
.static-page .prose blockquote { margin: 22px 0; padding-left: 18px; border-left: 3px solid var(--brand); font-style: italic; }
.static-page .prose .body-figure { margin: 26px 0; border-radius: 14px; overflow: hidden; }
footer.site .legal a { text-decoration: none; }
footer.site .legal a:hover { color: #fff; }
.audio-embed .audio-label { display: block; padding: 12px 16px 8px; font-family: var(--display); font-size: 13px; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); }
.audio-embed figcaption { padding: 8px 16px 12px; font-family: var(--display); font-size: 13px; }
.audio-embed figcaption a { color: var(--brand); text-decoration: none; }
.audio-embed figcaption a:hover { text-decoration: underline; }

/* ── Video (YouTube) gömme ─────────────────────────────────────── */
.video-embed { margin: 28px 0; border: 1px solid var(--line); border-radius: 14px; overflow: hidden; background: #000; }
.video-embed .vframe { position: relative; width: 100%; aspect-ratio: 16 / 9; }
.video-embed .vframe iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; display: block; }
.video-embed figcaption { padding: 10px 16px; background: var(--bg-2); font-family: var(--display); font-size: 13px; color: var(--muted); }
.video-embed figcaption a { color: var(--brand); text-decoration: none; }
.video-embed figcaption a:hover { text-decoration: underline; }

/* ── Üst menü: açılır alt bölümler ─────────────────────────────── */
.nav .nav-item { position: relative; display: inline-flex; }
.nav .nav-item > a { display: inline-flex; align-items: center; gap: 5px; }
.nav .caret { font-style: normal; font-size: 9px; opacity: .5; transform: translateY(1px); }
.nav .dropdown {
  position: absolute; top: 100%; left: 50%; transform: translateX(-50%) translateY(6px);
  display: flex; flex-direction: column; min-width: 186px; padding: 8px;
  background: var(--bg); border: 1px solid var(--line); border-radius: 14px;
  box-shadow: 0 18px 40px rgba(30, 22, 15, .14);
  opacity: 0; visibility: hidden; pointer-events: none; transition: opacity .16s, transform .16s; z-index: 200;
}
.nav .nav-item:hover .dropdown, .nav .nav-item:focus-within .dropdown {
  opacity: 1; visibility: visible; pointer-events: auto; transform: translateX(-50%) translateY(0);
}
.nav .dropdown a { font-size: 13px; font-weight: 500; padding: 7px 12px; border-radius: 9px; text-align: left; }
.nav .dropdown a:first-child { font-weight: 700; color: var(--brand); }

/* ── Kenar çubuğu bölüm ağacı ──────────────────────────────────── */
.cat-tree { display: flex; flex-direction: column; gap: 12px; }
.cat-group { display: flex; flex-direction: column; gap: 5px; }
.cat-tree .chip.lead { align-self: flex-start; font-size: 12.5px; }
.cat-subs { display: flex; flex-wrap: wrap; gap: 4px 10px; padding-left: 4px; }
.cat-subs a { font-size: 12.5px; color: var(--ink-3); }
.cat-subs a:hover { color: var(--brand); }
.page-title .kicker { display: block; font-family: var(--display); font-size: 12.5px; letter-spacing: .06em; text-transform: uppercase; color: var(--ink-3); margin-bottom: 6px; }
.page-title .kicker a { color: var(--brand); }
.page-title .sub-nav { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; margin-top: 16px; }
.page-title .sub-nav a { font-size: 13px; font-weight: 600; color: var(--ink-2); padding: 6px 14px; border: 1px solid var(--line); border-radius: 999px; background: var(--bg); transition: all .2s; }
.page-title .sub-nav a:hover { color: var(--brand); border-color: var(--brand); }

/* ── Arşivde arama ─────────────────────────────────────────── */
.search-results { display: grid; gap: 12px; margin-top: 22px; }
.search-hit {
  display: block; padding: 16px 18px; border: 1px solid var(--line, #e6e1d8);
  border-radius: 14px; background: #fff; text-decoration: none; color: inherit;
  transition: box-shadow .18s ease, transform .18s ease, border-color .18s ease;
}
.search-hit:hover { transform: translateY(-2px); border-color: #d6cebe; box-shadow: 0 10px 26px rgba(40,32,20,.09); }
.search-hit .sh-cat {
  display: inline-block; font-size: .72rem; letter-spacing: .08em; text-transform: uppercase;
  font-weight: 700; color: var(--accent, #9a6b3f); margin-bottom: 6px;
}
.search-hit h3 { margin: 0 0 6px; font-size: 1.12rem; line-height: 1.35; }
.search-hit p { margin: 0 0 8px; font-size: .93rem; line-height: 1.5; color: #5c5750; }
.search-hit .sh-meta { display: block; font-size: .8rem; color: #8a847b; }
.search-status { margin: 24px 0; text-align: center; color: #8a847b; font-size: .95rem; }
@media (max-width: 640px) { .search-hit { padding: 14px; } .search-hit h3 { font-size: 1.02rem; } }
