/* ============================================================
   Müteferrik — Ana Stil (Revizyon: siyah-beyaz keskin tema)
   BuzzStream tarzı baskın başlıklar + Newsfy tarzı kartlar
   ============================================================ */

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

:root {
  --accent:       #8B4513;   /* marka rengi — az kullanılır, vurgu için */
  --accent-light: #f3ece5;
  --accent-dark:  #5e2f0d;
  --ink:          #111;      /* baskın siyah */
  --text:         #16130f;
  --text-2:       #4a453f;
  --text-3:       #736d65;   /* WCAG AA: beyaz üzerinde 5.12:1 (eski #8a847c 3.70:1 ile başarısızdı) */
  --border:       #111;      /* keskin siyah hatlar */
  --border-soft:  #ddd8d0;
  --border-hair:  #ebe7e0;
  --bg:           #fff;
  --bg-surface:   #f7f5f1;
  --bg-ink:       #111;
  --font-display: 'Libre Baskerville', Georgia, serif;
  --font-body:    'Inter', system-ui, sans-serif;
  --radius:       0px;        /* keskin köşeler */
  --radius-soft:  3px;
  --container:    1140px;
  --sidebar:      280px;
  --gap:          40px;
  --pad-x:        20px;       /* yatay kenar boşluğu — mobilde de korunur */
}

html { font-size: 16px; scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body); color: var(--text); background: var(--bg);
  line-height: 1.6; -webkit-font-smoothing: antialiased; overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
a:hover { color: var(--accent); }
img { display: block; max-width: 100%; height: auto; object-fit: cover; }
ul, ol { list-style: none; }

/* Kritik: container her ekranda yatay nefes payı garantiler */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding-left: var(--pad-x);
  padding-right: var(--pad-x);
}

/* ── Topbar ── */
.topbar { background: var(--bg-ink); color: #fff; padding: 6px 0; }
.topbar-inner { display: flex; justify-content: space-between; align-items: center; }
.topbar-date { font-size: 11px; color: #b9b2a8; letter-spacing: .3px; }
.topbar-yazar { font-size: 11px; color: #d8d2c8; letter-spacing: .3px; transition: color .15s; }
.topbar-yazar:hover { color: #fff; }

/* ── Header (tek satır: logo · menü · sosyal + arama/RSS) ── */
.site-header { padding: 16px 0; border-bottom: 3px solid var(--ink); position: relative; background: var(--bg); }
.site-header.is-sticky { position: sticky; top: 0; z-index: 900; }
.header-inner { display: flex; align-items: center; gap: 24px; }
.logo { font-family: var(--font-display); font-size: 32px; font-weight: 700; letter-spacing: -1px; color: var(--ink); line-height: .95; display: inline-flex; align-items: center; }
.logo img { height: 34px; width: auto; display: block; }
.logo-dot { color: var(--accent); }
.header-brand { flex-shrink: 0; display: inline-flex; flex-direction: column; align-items: flex-start; }
.tagline { font-size: 10px; color: var(--text-3); margin-top: 3px; letter-spacing: .3px; text-transform: uppercase; line-height: 1.2; white-space: nowrap; transform-origin: left center; }
.site-header.logo-center .tagline { transform-origin: center center; }
.tagline-natural { white-space: normal; transform: none !important; }

/* Header içi menü — logonun sağındaki boşluğu doldurur */
.header-nav { display: flex; align-items: center; gap: 2px; flex: 1; min-width: 0; overflow-x: auto; scrollbar-width: none; }
.header-nav::-webkit-scrollbar { display: none; }
.header-nav-link {
  font-size: 12px; font-weight: 600; padding: 8px 11px; color: var(--ink);
  white-space: nowrap; letter-spacing: .2px; border-bottom: 2px solid transparent;
  transition: color .15s, border-color .15s;
}
.header-nav-link:hover { color: var(--accent); }
.header-nav-link.active { color: var(--ink); border-bottom-color: var(--accent); }

/* Logo ortada düzeni: sol menü | logo | sağ menü — logo tam ortada */
.site-header.logo-center .header-inner { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 20px; }
.site-header.logo-center .header-nav-left  { justify-content: flex-end; }
.site-header.logo-center .header-nav-right { justify-content: flex-start; }
.site-header.logo-center .header-brand { align-items: center; text-align: center; }
.site-header.logo-center .logo { justify-content: center; }
.site-header.logo-center .tagline { text-align: center; transform-origin: center center; }
.site-header.logo-center .header-actions-mobile { display: none; }  /* masaüstünde gizli */

/* Üst çubuk sağ bloğu (logo ortada düzeninde sosyal/arama/rss burada) */
.topbar-right { display: flex; align-items: center; gap: 12px; }
.topbar-social { gap: 8px; }
.topbar-social .social-icon { color: #cfc8bd; }
.topbar-social .social-icon:hover { color: #fff; }
.topbar-btn { color: #cfc8bd; padding: 2px; }
.topbar-btn:hover { color: #fff; }
.topbar-btn svg { width: 15px; height: 15px; }

.header-actions { display: flex; gap: 8px; align-items: center; flex-shrink: 0; }
.btn-icon { background: none; border: none; cursor: pointer; color: var(--text-2); padding: 5px; display: flex; align-items: center; transition: color .15s; }
.btn-icon:hover { color: var(--accent); }
.btn-icon svg { width: 18px; height: 18px; }

/* Sosyal ikonlar (header + footer + mobil menü ortak) */
.social-icons { display: flex; align-items: center; gap: 4px; }
.header-social { padding-right: 6px; margin-right: 2px; border-right: 1px solid var(--border-soft); }
.social-icon svg { width: 17px; height: 17px; }

/* Arama barı */
.search-bar { display: none; background: var(--bg-surface); border-top: 1px solid var(--border-soft); padding: 12px 0; }
.search-bar.open { display: block; }
.search-bar .container { display: flex; gap: 10px; align-items: center; }
.search-bar input { flex: 1; border: 1px solid var(--ink); border-radius: var(--radius); padding: 10px 14px; font-size: 15px; font-family: var(--font-body); color: var(--text); background: var(--bg); outline: none; }
.search-bar input:focus { border-color: var(--accent); }
#search-close { background: none; border: none; cursor: pointer; color: var(--text-3); padding: 4px; display: flex; }

/* ── Hamburger (masaüstünde gizli) ── */
.nav-toggle { display: none; }

/* ── Mobil açılır menü ── */
.mobile-menu { position: fixed; inset: 0; z-index: 1000; visibility: hidden; }
.mobile-menu.open { visibility: visible; }
.mobile-menu-overlay { position: absolute; inset: 0; background: rgba(0,0,0,.5); opacity: 0; transition: opacity .25s ease; }
.mobile-menu.open .mobile-menu-overlay { opacity: 1; }
.mobile-menu-panel {
  position: absolute; top: 0; left: 0; height: 100%; width: 82%; max-width: 340px;
  background: var(--bg); box-shadow: 4px 0 24px rgba(0,0,0,.15);
  transform: translateX(-100%); transition: transform .28s ease; z-index: 1;
  display: flex; flex-direction: column; overflow-y: auto;
}
.mobile-menu.open .mobile-menu-panel { transform: translateX(0); }
.mobile-menu-head { padding: 18px 20px; border-bottom: 3px solid var(--ink); }
.mobile-menu-head-row { display: flex; align-items: center; justify-content: space-between; gap: 12px; min-width: 0; }
.mobile-menu-logo { font-family: var(--font-display); font-size: 26px; font-weight: 700; letter-spacing: -.5px; color: var(--ink); min-width: 0; }
.mobile-menu-logo img { height: 30px; width: auto; display: block; }
.mobile-menu-close { color: var(--ink); flex: 0 0 auto; }
.mobile-menu-tagline {
  margin-top: 7px; font-size: 10px; color: var(--text-3);
  text-transform: uppercase; letter-spacing: .5px; line-height: 1.4;
}
.mobile-menu-date {
  padding: 13px 20px; font-size: 12px; color: var(--text-2);
  background: var(--bg-surface); border-bottom: 1px solid var(--border-soft); letter-spacing: .2px;
}
.mobile-menu-nav { display: flex; flex-direction: column; padding: 8px 0; flex: 1; }
.mobile-menu-link {
  padding: 15px 20px; font-size: 15px; font-weight: 600; color: var(--ink);
  border-bottom: 1px solid var(--border-hair); letter-spacing: .3px;
  transition: background .15s, color .15s;
}
.mobile-menu-link:hover, .mobile-menu-link.active { background: var(--bg-surface); color: var(--accent); }
.mobile-menu-link.active { border-left: 3px solid var(--accent); padding-left: 17px; }
.mobile-menu-foot { padding: 20px; background: var(--bg-ink); color: #cfc8bd; margin-top: auto; }
.mobile-menu-social-wrap { margin-bottom: 16px; padding-bottom: 16px; border-bottom: 1px solid #333; }
.mobile-menu-social { gap: 14px; }
.mobile-menu-social .social-icon { color: #cfc8bd; padding: 0; }
.mobile-menu-social .social-icon:hover { color: #fff; }
.mobile-menu-social .social-icon svg { width: 22px; height: 22px; }
.mobile-menu-foot-links { display: flex; gap: 18px; margin-bottom: 12px; }
.mobile-menu-foot-links a { font-size: 13px; font-weight: 600; color: #fff; text-transform: uppercase; letter-spacing: .5px; }
.mobile-menu-foot-links a:hover { color: var(--accent); }
.mobile-menu-foot-mail { display: block; font-size: 13px; color: #cfc8bd; margin-bottom: 12px; }
.mobile-menu-foot-mail:hover { color: #fff; }
.mobile-menu-foot-copy { font-size: 10px; color: #8a847c; }

/* ── Ticker ── */
.ticker-wrap { background: var(--bg-surface); border-bottom: 1px solid var(--border-soft); padding: 9px 0; overflow: hidden; }
.ticker-inner { display: flex; align-items: center; gap: 14px; }
.ticker-label { flex-shrink: 0; font-size: 10px; font-weight: 700; background: var(--accent); color: #fff; padding: 4px 9px; border-radius: var(--radius); letter-spacing: 1px; text-transform: uppercase; }
.ticker-viewport { flex: 1; overflow: hidden; position: relative; }
.ticker-track { display: flex; width: max-content; white-space: nowrap; animation: ticker-scroll 30s linear infinite; }
.ticker-viewport:hover .ticker-track { animation-play-state: paused; }
.ticker-group { display: inline-flex; align-items: center; gap: 18px; padding-right: 18px; }
.ticker-item { font-size: 12px; color: var(--text-2); }
.ticker-item a { color: var(--text-2); }
.ticker-item a:hover { color: var(--accent); }
.ticker-sep { color: var(--accent); font-weight: 700; }
@keyframes ticker-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .ticker-track { animation: none; }
}

/* ── Layout ── */
.site-main { padding: 36px 0 56px; }
.main-layout { display: grid; grid-template-columns: minmax(0,1fr) var(--sidebar); gap: var(--gap); align-items: start; }
/* Ana sayfa (slider'lı): slider, içerik ve sidebar ayrı grid çocukları.
   Masaüstünde slider + içerik sol sütunda alt alta, sidebar sağda tam boy.
   Bu kurallar SADECE .has-slider taşıyan düzende geçerli — diğer sayfalar
   (kategori, arama, yazar) tek satırlık normal grid olarak kalır. */
.main-layout.has-slider > .hero-slider-section { grid-column: 1; grid-row: 1; }
.main-layout.has-slider > .content-col         { grid-column: 1; grid-row: 2; }
.main-layout.has-slider > .sidebar             { grid-column: 2; grid-row: 1 / span 2; }
/* Grid/flex çocukları varsayılan min-width:auto ile küçülmeyi reddeder ve
   içerik genişse sayfayı taşırır. İçerik kolonlarına açıkça min-width:0 verilir. */
.main-layout > *, .content-col { min-width: 0; }
/* Statik sayfalar (Hakkında/İletişim): dar, ortalı, sidebarsız - mobil güvenli
   Yatay boşluk .container'dan gelir; burada tekrar verilmez (çift padding olmasın). */
.static-page { padding-top: 40px; padding-bottom: 64px; }
.static-content { max-width: 720px; margin: 0 auto; }
.content-col .static-content { max-width: 100%; margin: 0; }
.content-col .static-content { padding-bottom: 40px; }

/* ── İletişim formu ── */
.contact-form-wrap { margin-top: 36px; padding-top: 28px; border-top: 2px solid var(--ink); }
.contact-form-title { font-family: var(--font-display); font-size: 22px; font-weight: 700; margin-bottom: 18px; }
.contact-form { max-width: 560px; }
.contact-field { margin-bottom: 16px; }
.contact-field label { display: block; font-size: 13px; font-weight: 600; color: var(--text-2); margin-bottom: 6px; letter-spacing: .2px; }
.contact-field input, .contact-field textarea {
  width: 100%; border: 1px solid var(--border); border-radius: var(--radius);
  padding: 11px 14px; font-size: 15px; font-family: var(--font-body); color: var(--text);
  background: var(--bg); outline: none; transition: border-color .15s;
}
.contact-field input:focus, .contact-field textarea:focus { border-color: var(--accent); }
.contact-field textarea { resize: vertical; min-height: 120px; line-height: 1.6; }
.contact-submit-btn {
  background: var(--accent); color: #fff; border: none; border-radius: var(--radius);
  padding: 12px 32px; font-size: 15px; font-weight: 600; cursor: pointer;
  font-family: var(--font-body); transition: opacity .15s;
}
.contact-submit-btn:hover { opacity: .9; }
.contact-alert { padding: 12px 16px; border-radius: var(--radius); font-size: 14px; margin-bottom: 18px; line-height: 1.5; }
.contact-alert-ok { background: #eaf6ec; color: #1e6b2c; border: 1px solid #bfe3c6; }
.contact-alert-error { background: #fbeaea; color: #a12626; border: 1px solid #f0c4c4; }
.contact-recaptcha-note { font-size: 11px; color: var(--text-3); margin-top: 12px; line-height: 1.5; }
/* v3 rozeti sağ altta görünür; gizlemek istersen aşağıyı aç (ama Google görünür bırakmayı önerir)
.grecaptcha-badge { visibility: hidden; } */
.static-title { font-family: var(--font-display); font-size: 28px; font-weight: 700; margin-bottom: 20px; padding-bottom: 16px; border-bottom: 2px solid var(--ink); }
.static-content p { font-family: var(--font-display); font-size: 16px; line-height: 1.85; color: var(--text); margin-bottom: 1.4em; }
.static-content p:last-child { margin-bottom: 0; }

/* ── Bölüm başlıkları — baskın, keskin ── */
.section-label {
  font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px;
  color: var(--ink); padding-bottom: 10px; margin-bottom: 22px;
  border-bottom: 2px solid var(--ink); display: flex; align-items: center; gap: 8px;
}
.section-label::before { content: ""; width: 9px; height: 9px; background: var(--accent); display: inline-block; }

/* ── Mynet tarzı hero slider ── */
.hero-slider-section { margin-bottom: var(--slider-gap, 24px); max-width: 100%; min-width: 0; overflow: hidden; }
.hero-slider { border: 1px solid var(--ink); background: var(--ink); max-width: 100%; min-width: 0; overflow: hidden; }
.hero-stage { position: relative; width: 100%; height: var(--slider-h, auto); aspect-ratio: var(--slider-ar, 16 / 8); overflow: hidden; background: var(--ink); }
.hero-slide { position: absolute; inset: 0; opacity: 0; visibility: hidden; transition: opacity .5s ease; display: block; }
.hero-slide.active { opacity: 1; visibility: visible; }
.hero-slide img { width: 100%; height: 100%; object-fit: cover; }
.hero-slide-overlay {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 40px 30px 26px;
  background: linear-gradient(to top, rgba(0,0,0,.82) 0%, rgba(0,0,0,.5) 45%, transparent 100%);
}
.hero-slide-cat {
  display: inline-block; font-size: 11px; font-weight: 700; letter-spacing: 1.2px;
  background: var(--accent); color: #fff; padding: 5px 11px; margin-bottom: 12px;
}
.hero-slide-title {
  font-family: var(--font-display); font-size: 30px; font-weight: 700; line-height: 1.2;
  color: #fff; letter-spacing: -.4px; max-width: 80%;
}
.hero-arrow {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 3;
  width: 46px; height: 46px; border: none; background: rgba(0,0,0,.4); color: #fff;
  display: flex; align-items: center; justify-content: center; cursor: pointer;
  transition: background .15s;
}
.hero-arrow:hover { background: var(--accent); }
.hero-prev { left: 0; }
.hero-next { right: 0; }
.hero-thumbs {
  display: flex; gap: 4px; padding: 6px; background: var(--ink);
  overflow-x: auto; scrollbar-width: none; max-width: 100%;
}
.hero-thumbs::-webkit-scrollbar { display: none; }
.hero-thumb {
  flex: 1 0 auto; width: calc((100% - 44px) / 12); min-width: 52px; height: 46px;
  border: 2px solid transparent; padding: 0;
  cursor: pointer; overflow: hidden; opacity: .5; transition: opacity .15s, border-color .15s; background: none;
}
.hero-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hero-thumb:hover { opacity: .85; }
.hero-thumb.active { opacity: 1; border-color: var(--accent); }

/* Mobil nokta göstergeler (mynet tarzı) - varsayılan gizli */
.hero-dots { display: none; }

/* ── Ana sayfa kategori blokları ── */
.cat-block { margin-bottom: var(--block-gap, 40px); }
.cat-block-head {
  display: flex; align-items: center; justify-content: space-between;
  border-bottom: 2px solid var(--ink); padding-bottom: 10px; margin-bottom: 22px;
}
.cat-block-title {
  font-family: var(--font-display); font-size: 22px; font-weight: 700; letter-spacing: -.3px;
  display: flex; align-items: center; gap: 9px;
}
.cat-block-title::before { content: ""; width: 9px; height: 22px; background: var(--accent); display: inline-block; }
.cat-block-all { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .6px; color: var(--accent); white-space: nowrap; }
.cat-block-all:hover { text-decoration: underline; }

/* ── Köşe Yazarları blokları (yazar solda, 3 yazı sağda) ── */
.column-authors { display: flex; flex-direction: column; }
.column-author-block {
  display: grid; grid-template-columns: 170px minmax(0,1fr); gap: 20px;
  padding: 14px 0; border-bottom: 1px solid var(--border-hair); align-items: center;
}
.column-author-block:last-child { border-bottom: none; }
.column-author-side { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 5px; }
.column-author-avatar {
  width: 52px; height: 52px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 17px; font-weight: 700; font-family: var(--font-display);
  background: var(--accent-light); color: var(--accent-dark); overflow: hidden; border: 1px solid var(--ink);
}
.column-author-avatar img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; }
.column-author-side .column-author-name { font-family: var(--font-display); font-size: 15px; font-weight: 700; color: var(--ink); line-height: 1.15; }
.column-author-side:hover .column-author-name { color: var(--accent); }
.column-author-side .column-author-domain { font-size: 9px; color: var(--text-3); text-transform: uppercase; letter-spacing: .4px; }
/* Yazılar: her biri tek satır özet (başlık solda, meta sağda) */
.column-author-posts { display: flex; flex-direction: column; }
.column-author-posts li {
  display: flex; align-items: baseline; justify-content: space-between; gap: 12px;
  padding: 6px 0; border-bottom: 1px dashed var(--border-hair);
}
.column-author-posts li:last-child { border-bottom: none; }
.column-author-post-title {
  font-family: var(--font-display); font-size: 14px; font-weight: 700; line-height: 1.3;
  color: var(--ink); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; min-width: 0; flex: 1;
}
.column-author-post-title:hover { color: var(--accent); }
.column-author-post-meta { font-size: 10px; color: var(--text-3); white-space: nowrap; flex-shrink: 0; }

/* ── Meta ── */
.article-cat { font-size: 10px; font-weight: 700; color: var(--accent); letter-spacing: 1px; }
.article-meta-bottom { display: flex; align-items: center; gap: 6px; flex-wrap: wrap; margin-top: 9px; }
.article-author { font-size: 12px; font-weight: 600; color: var(--text); }
.article-author:hover { color: var(--accent); }
.article-time, .article-read { font-size: 12px; color: var(--text-3); }
.meta-sep { color: var(--border-soft); font-size: 11px; }

/* ── Featured — BuzzStream tarzı baskın manşet ── */
.featured-section { margin-bottom: 44px; }
.featured-grid { display: grid; grid-template-columns: minmax(0,1.7fr) minmax(0,1fr); gap: 0; border: 1px solid var(--ink); }
.feat-main { border-right: 1px solid var(--ink); display: flex; flex-direction: column; }
.feat-main-img-wrap { display: block; position: relative; }
.feat-main-img { width: 100%; height: 300px; background: var(--bg-surface); }
.feat-img-category { position: absolute; bottom: 0; left: 0; font-size: 10px; font-weight: 700; letter-spacing: 1px; background: var(--ink); color: #fff; padding: 5px 11px; }
.feat-main-body { padding: 24px; flex: 1; }
.feat-main-body .article-cat { display: block; margin-bottom: 10px; }
.feat-main-title { font-family: var(--font-display); font-size: 28px; font-weight: 700; line-height: 1.22; margin-bottom: 12px; letter-spacing: -.3px; }
.feat-main-title a:hover { color: var(--accent); }
.feat-main-summary { font-size: 14px; color: var(--text-2); line-height: 1.7; }
.feat-side { display: flex; flex-direction: column; }
.feat-side-item { flex: 1; border-bottom: 1px solid var(--border-soft); overflow: hidden; padding: 0; display: flex; flex-direction: column; }
.feat-side-item:last-child { border-bottom: none; }
.feat-side-img { width: 100%; height: 96px; background: var(--bg-surface); }
.feat-side-body { padding: 14px 16px; }
.feat-side-body .article-cat { display: block; margin-bottom: 5px; }
.feat-side-body h3 { font-family: var(--font-display); font-size: 15px; font-weight: 700; line-height: 1.3; }
.feat-side-body h3 a:hover { color: var(--accent); }

/* ── Newsfy tarzı içerik kartları (grid) ── */
.news-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 26px 24px; margin-bottom: 20px; }
.news-card { display: flex; flex-direction: column; }
.news-card-img-wrap { position: relative; display: block; overflow: hidden; margin-bottom: 12px; }
.news-card-img { width: 100%; aspect-ratio: 16/10; background: var(--bg-surface); transition: transform .4s ease; }
.news-card-img-wrap:hover .news-card-img { transform: scale(1.04); }
.news-card-cat { position: absolute; top: 0; left: 0; font-size: 9px; font-weight: 700; letter-spacing: .8px; background: var(--ink); color: #fff; padding: 4px 9px; }
.news-card-title { font-family: var(--font-display); font-size: 17px; font-weight: 700; line-height: 1.3; margin-bottom: 8px; letter-spacing: -.2px; }
.news-card-title a:hover { color: var(--accent); }
.news-card-excerpt { font-size: 13px; color: var(--text-2); line-height: 1.6; margin-bottom: 10px; }
.news-card .article-meta-bottom { margin-top: auto; }

/* ── Article list (yatay satır — ilgili/arama) ── */
.articles-section { margin-bottom: 44px; }
.article-list { border-top: 1px solid var(--ink); }
.article-row { display: grid; grid-template-columns: 128px minmax(0,1fr); gap: 18px; padding: 20px 0; border-bottom: 1px solid var(--border-hair); align-items: flex-start; }
.article-row:last-child { border-bottom: none; }
.article-thumb { width: 128px; height: 88px; border-radius: var(--radius); background: var(--bg-surface); display: block; }
.article-row-body .article-cat { display: block; margin-bottom: 5px; }
.article-row-body h3 { font-family: var(--font-display); font-size: 18px; font-weight: 700; line-height: 1.3; margin-bottom: 6px; letter-spacing: -.2px; }
.article-row-body h3 a:hover { color: var(--accent); }
.article-excerpt { font-size: 13px; color: var(--text-2); line-height: 1.6; }
.load-more-wrap { text-align: center; padding: 24px 0; }
.btn-load-more { display: inline-block; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--ink); border: 1px solid var(--ink); padding: 11px 30px; border-radius: var(--radius); transition: background .15s, color .15s; }
.btn-load-more:hover { background: var(--ink); color: #fff; }

/* ── Dosya / öne çıkan araştırma kartı ── */
.dosya-section { margin-bottom: 8px; }
.dosya-card { border: 1px solid var(--ink); overflow: hidden; display: grid; grid-template-columns: 220px minmax(0,1fr); }
.dosya-card-img { background: var(--ink); display: flex; align-items: center; justify-content: center; min-height: 170px; }
.dosya-card-img img { width: 100%; height: 100%; object-fit: cover; }
.dosya-card-body { padding: 26px; }
.dosya-badge { display: inline-block; font-size: 10px; font-weight: 700; background: var(--ink); color: #fff; padding: 4px 10px; border-radius: var(--radius); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 12px; }
.dosya-title { font-family: var(--font-display); font-size: 22px; font-weight: 700; line-height: 1.28; margin-bottom: 10px; letter-spacing: -.3px; }
.dosya-title a:hover { color: var(--accent); }
.dosya-summary { font-size: 13px; color: var(--text-2); line-height: 1.7; margin-bottom: 14px; }
.dosya-read-link { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .8px; color: var(--accent); }
.dosya-read-link:hover { text-decoration: underline; }

/* ── Sidebar ── */
.sidebar { position: sticky; top: 18px; }
.sidebar-widget { margin-bottom: 32px; padding-bottom: 32px; border-bottom: 1px solid var(--border-soft); }
.sidebar-widget:last-child { border-bottom: none; }
.widget-title { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; color: var(--ink); border-bottom: 2px solid var(--ink); padding-bottom: 9px; margin-bottom: 16px; }
.author-list { display: flex; flex-direction: column; }
.author-item { display: flex; gap: 12px; padding: 12px 0; border-bottom: 1px solid var(--border-hair); align-items: center; }
.author-item:last-child { border-bottom: none; }
.author-avatar { width: 44px; height: 44px; border-radius: 50%; flex-shrink: 0; display: flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 700; border: 1px solid var(--ink); background: var(--accent-light); color: var(--accent-dark); overflow: hidden; }
.author-avatar img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; }
.author-info { flex: 1; min-width: 0; }
.author-name { font-size: 14px; font-weight: 700; color: var(--ink); display: block; margin-bottom: 1px; }
.author-name:hover { color: var(--accent); }
.author-domain { font-size: 10px; color: var(--text-3); text-transform: uppercase; letter-spacing: .4px; }
.author-last { font-size: 11px; color: var(--text-2); line-height: 1.4; font-style: italic; display: block; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; margin-top: 2px; }
.author-last:hover { color: var(--accent); }
.most-read-list { counter-reset: item; }
.most-read-list li { counter-increment: item; display: flex; align-items: flex-start; gap: 12px; padding: 11px 0; border-bottom: 1px solid var(--border-hair); font-size: 13px; line-height: 1.4; }
.most-read-list li:last-child { border-bottom: none; }
.most-read-list li::before { content: counter(item); flex-shrink: 0; font-family: var(--font-display); font-size: 18px; font-weight: 700; color: var(--accent); min-width: 20px; line-height: 1; }
.most-read-list a { color: var(--text); font-weight: 500; }
.most-read-list a:hover { color: var(--accent); }
.file-list li { display: flex; align-items: flex-start; gap: 8px; padding: 9px 0; border-bottom: 1px solid var(--border-hair); font-size: 13px; line-height: 1.4; }
.file-list li:last-child { border-bottom: none; }
.file-list a { color: var(--text-2); }
.file-list a:hover { color: var(--accent); }
.file-list svg { flex-shrink: 0; color: var(--accent); margin-top: 2px; }
.agenda-list li { padding: 9px 0 9px 12px; border-bottom: 1px solid var(--border-hair); border-left: 3px solid var(--accent); margin-bottom: 0; font-size: 13px; line-height: 1.4; transition: border-color .15s; }
.agenda-list li:hover { border-left-color: var(--ink); }
.agenda-list li:last-child { border-bottom: none; }
.agenda-list a { color: var(--text-2); }
.agenda-list a:hover { color: var(--accent); }

/* ── Yazı sayfası ── */
.article-page-layout { display: grid; grid-template-columns: minmax(0,1fr) var(--sidebar); gap: var(--gap); align-items: start; padding-top: 40px; padding-bottom: 56px; }
.article-header { margin-bottom: 28px; }
.article-header .article-cat { display: inline-block; margin-bottom: 14px; font-size: 11px; }
.article-page-title { font-family: var(--font-display); font-size: 38px; font-weight: 700; line-height: 1.18; margin-bottom: 20px; letter-spacing: -.6px; }
.article-header-meta { display: flex; align-items: center; gap: 9px; font-size: 13px; padding-bottom: 18px; border-bottom: 1px solid var(--ink); flex-wrap: wrap; }
.article-header-meta .author-avatar { width: 34px; height: 34px; font-size: 11px; }
.article-cover { width: 100%; max-height: 460px; overflow: hidden; margin-bottom: 32px; background: var(--bg-surface); border: 1px solid var(--ink); }
.article-cover img { width: 100%; height: 100%; object-fit: cover; }
.article-body { font-family: var(--font-display); font-size: 18px; line-height: 1.85; color: #1c1813; }
.article-body p { margin-bottom: 1.4em; }
.article-body h2 { font-size: 25px; margin: 1.8em 0 .7em; letter-spacing: -.3px; }
.article-body h3 { font-size: 20px; margin: 1.5em 0 .5em; }
.article-body blockquote { border-left: 4px solid var(--accent); padding: 6px 0 6px 22px; margin: 1.5em 0; font-style: italic; color: var(--text-2); }
.article-body img { margin: 1.6em 0; border: 1px solid var(--border-soft); }
.article-body a { color: var(--accent); text-decoration: underline; text-underline-offset: 2px; }
.article-body ul, .article-body ol { margin: 0 0 1.4em 1.3em; }
.article-body ul { list-style: disc; }
.article-body ol { list-style: decimal; }
.article-body li { margin-bottom: .5em; }

/* ── Görüntülenme ── */
.article-views { font-size: 12px; color: var(--text-3); display: inline-flex; align-items: center; gap: 4px; }

/* ── Yazar kutusu (yazı altı) ── */
/* Yazar kutusu: fotoğraf + isim/unvan üst satırda yan yana; biyografi ve
   meta bilgisi ALT SATIRDA, kutunun tam genişliğinde (fotoğrafın altından başlar). */
.author-box { margin-top: 48px; padding: 26px; border: 1px solid var(--ink); background: var(--bg-surface); display: block; }
.author-box-head { display: flex; align-items: center; gap: 20px; margin-bottom: 14px; }
.author-box-avatar { width: 72px; height: 72px; border-radius: 50%; flex-shrink: 0; display: flex; align-items: center; justify-content: center; font-size: 20px; font-weight: 700; background: var(--accent-light); color: var(--accent-dark); overflow: hidden; border: 1px solid var(--ink); }
.author-box-avatar img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; }
.author-box-info { min-width: 0; }
.author-box-name-row { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.author-box-name { font-size: 18px; font-weight: 700; color: var(--ink); }
.author-box-name:hover { color: var(--accent); }
.author-box-domain { font-size: 10px; color: #fff; background: var(--accent); padding: 3px 9px; border-radius: var(--radius); text-transform: uppercase; letter-spacing: .5px; }
/* Biyografi ve meta kutunun tam genişliğinde, fotoğrafın altından başlar */
.author-box-bio { font-size: 14px; color: var(--text-2); line-height: 1.65; margin: 0 0 10px; }
.author-box-meta { font-size: 12px; color: var(--text-3); display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }

/* ── Köşe yazısı sayfası (görselsiz, oval profil foto) ── */
.column-page { max-width: 760px; margin: 0 auto; padding: 48px 0 56px; }
.column-head { text-align: center; margin-bottom: 36px; padding-bottom: 32px; border-bottom: 1px solid var(--ink); }
/* Sola yaslı köşe başlığı (içerik sayfalarıyla aynı hiza) */
.column-head-left { text-align: left; margin-bottom: 28px; padding-bottom: 22px; }
.column-author-row { display: flex; align-items: center; gap: 14px; margin-bottom: 18px; }
.column-author-row .column-author-photo { margin: 0; width: 60px; height: 60px; font-size: 20px; flex-shrink: 0; }
.column-author-meta { min-width: 0; display: flex; flex-direction: column; }
.column-author-row .column-author-name { display: block; }
.column-head-left .column-eyebrow { margin-bottom: 4px; }
.column-head-left .column-author-domain { margin-top: 2px; }
.column-eyebrow { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; color: var(--accent); margin-bottom: 20px; }
.column-author-photo { width: 96px; height: 96px; border-radius: 50%; margin: 0 auto 18px; display: flex; align-items: center; justify-content: center; font-size: 30px; font-weight: 700; font-family: var(--font-display); background: var(--accent-light); color: var(--accent-dark); overflow: hidden; border: 2px solid var(--ink); }
.column-author-photo img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; }
.column-author-name { font-family: var(--font-display); font-size: 19px; font-weight: 700; color: var(--ink); }
.column-author-name:hover { color: var(--accent); }
.column-author-domain { font-size: 11px; color: var(--text-3); text-transform: uppercase; letter-spacing: .6px; margin-top: 3px; }
.column-title { font-family: var(--font-display); font-size: 34px; font-weight: 700; line-height: 1.22; letter-spacing: -.5px; margin: 22px 0 16px; }
.column-head-left .column-title { margin-top: 4px; }
.column-meta { font-size: 12px; color: var(--text-3); display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.column-head:not(.column-head-left) .column-meta { justify-content: center; }
.column-body { font-family: var(--font-display); font-size: 18px; line-height: 1.9; color: #1c1813; }
.column-body p { margin-bottom: 1.5em; }
.column-body h2 { font-size: 24px; margin: 1.7em 0 .6em; }
.column-body blockquote { border-left: 4px solid var(--accent); padding: 6px 0 6px 22px; margin: 1.5em 0; font-style: italic; color: var(--text-2); }
.column-body a { color: var(--accent); text-decoration: underline; }
.column-nav-back { display: inline-flex; align-items: center; gap: 6px; font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: .8px; color: var(--text-3); margin-bottom: 24px; }
.column-nav-back:hover { color: var(--accent); }

/* Köşe yazıları liste (oval foto + başlık satırları) */
.columns-list { display: flex; flex-direction: column; border-top: 1px solid var(--ink); }
.column-row { display: grid; grid-template-columns: 64px minmax(0,1fr); gap: 18px; padding: 22px 0; border-bottom: 1px solid var(--border-hair); align-items: center; }
.column-row:last-child { border-bottom: none; }
.column-row-photo { width: 64px; height: 64px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 18px; font-weight: 700; font-family: var(--font-display); background: var(--accent-light); color: var(--accent-dark); overflow: hidden; border: 1px solid var(--ink); }
.column-row-photo img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; }
.column-row-body h3 { font-family: var(--font-display); font-size: 19px; font-weight: 700; line-height: 1.28; margin-bottom: 5px; letter-spacing: -.2px; }
.column-row-body h3 a:hover { color: var(--accent); }
.column-row-author { font-size: 12px; font-weight: 600; color: var(--accent); }
.column-row-excerpt { font-size: 13px; color: var(--text-2); line-height: 1.55; margin-top: 4px; }

/* ── Kategori / Yazarlar sayfası ── */
.category-header { padding: 28px 0 18px; border-bottom: 3px solid var(--ink); margin-bottom: 32px; }
.category-title { font-family: var(--font-display); font-size: 34px; font-weight: 700; letter-spacing: -.5px; }
.category-title .accent-bar { display: inline-block; width: 40px; height: 4px; background: var(--accent); vertical-align: middle; margin-right: 14px; }
.authors-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 24px; padding: 32px 0 56px; }
.author-card { border: 1px solid var(--ink); padding: 26px 22px; text-align: center; transition: background .15s; }
.author-card:hover { background: var(--bg-surface); }
.author-card-avatar { width: 76px; height: 76px; border-radius: 50%; margin: 0 auto 14px; display: flex; align-items: center; justify-content: center; font-size: 24px; font-weight: 700; font-family: var(--font-display); background: var(--accent-light); color: var(--accent-dark); overflow: hidden; border: 1px solid var(--ink); }
.author-card-avatar img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; }
.author-card h3 { font-size: 17px; font-weight: 700; margin-bottom: 4px; }
.author-card .author-domain { font-size: 11px; color: var(--text-3); margin-bottom: 12px; }
.author-card .author-bio { font-size: 12px; color: var(--text-2); line-height: 1.6; margin-bottom: 14px; }
.btn-see-all { font-size: 12px; color: var(--accent); font-weight: 700; text-transform: uppercase; letter-spacing: .6px; }

/* ── Sayfalama ── */
.pagination { display: flex; justify-content: center; gap: 7px; padding: 28px 0; }
.pagination a, .pagination span { display: inline-flex; align-items: center; justify-content: center; min-width: 40px; height: 40px; padding: 0 6px; border: 1px solid var(--ink); border-radius: var(--radius); font-size: 14px; font-weight: 600; color: var(--ink); transition: background .15s, color .15s; }
.pagination a:hover { background: var(--bg-surface); color: var(--accent); }
.pagination .current { background: var(--ink); color: #fff; border-color: var(--ink); }

/* ── Arama ── */
.search-results-header { padding: 24px 0 18px; border-bottom: 1px solid var(--ink); margin-bottom: 28px; }
.search-results-header h1 { font-family: var(--font-display); font-size: 28px; font-weight: 700; letter-spacing: -.4px; }
.search-results-header p { font-size: 13px; color: var(--text-2); margin-top: 5px; }

/* ── Durum rozetleri (panelde de kullanılır) ── */
.badge-draft, .badge-review, .badge-published, .badge-archived, .badge-inactive {
  display: inline-block; font-size: 10px; font-weight: 700; text-transform: uppercase;
  letter-spacing: .5px; padding: 3px 8px; border-radius: var(--radius);
}
.badge-draft { background: #eee; color: #555; }
.badge-review { background: #fff3cd; color: #7a5c00; }
.badge-published { background: #111; color: #fff; }
.badge-archived { background: #e2e2e2; color: #666; }
.badge-inactive { background: #f8d7da; color: #842029; }

/* ── Footer ── */
.site-footer { border-top: 3px solid var(--ink); padding: 32px 0; background: var(--bg-ink); color: #cfc8bd; }
.footer-inner { display: flex; align-items: center; gap: 36px; flex-wrap: wrap; }
.footer-logo { font-family: var(--font-display); font-size: 24px; font-weight: 700; display: block; margin-bottom: 3px; color: #fff; }
.footer-logo .logo-dot { color: var(--accent); }
.footer-brand p { font-size: 11px; color: #8a847c; }
.footer-nav { display: flex; gap: 20px; flex-wrap: wrap; flex: 1; }
.footer-nav a { font-size: 12px; color: #cfc8bd; text-transform: uppercase; letter-spacing: .5px; }
.footer-nav a:hover { color: #fff; }
.footer-copy { font-size: 11px; color: #8a847c; width: 100%; padding-top: 16px; border-top: 1px solid #333; }
.footer-social-wrap { flex-shrink: 0; }
.footer-social .social-icon { color: #cfc8bd; }
.footer-social .social-icon:hover { color: #fff; }
.footer-sep { margin: 0 6px; color: #555; }
.footer-author-login { color: #8a847c; text-decoration: none; }
.footer-author-login:hover { color: var(--accent); text-decoration: underline; }

/* ============================================================
   RESPONSIVE — mobil kenar boşluğu her sayfada garantili
   ============================================================ */
@media (max-width: 960px) {
  :root { --gap: 32px; }
  .main-layout, .article-page-layout { grid-template-columns: 1fr; }
  .sidebar { position: static; margin-top: 8px; }

  /* Ana sayfa mobil: Köşe Yazarları kutusu slider'ın hemen altına gelir,
     sidebar'ın kalan kutuları (Çok Okunanlar, Öne Çıkan Dosyalar, Gündem)
     içeriğin altında kalır. display:contents sidebar'ı "şeffaf" yapar,
     böylece kutular doğrudan flex çocuğu olur ve tek tek sıralanabilir.
     NOT: display:contents kullanıldığı için .sidebar'ın kendi margin/padding
     değerleri mobilde uygulanmaz — boşluklar kutulara verilir. */
  /* NOT: .main-layout'ta align-items:start var. Grid'de bu dikey hizalamadır
     (zararsız), ama flex-column'da YATAY hizalamaya dönüşür ve çocukları
     içerik genişliğine daraltır. Bu yüzden mobilde stretch'e çekiliyor. */
  .main-layout.has-slider { display: flex; flex-direction: column; gap: 0; align-items: stretch; }
  .main-layout.has-slider > .hero-slider-section { order: 1; margin-bottom: 32px; }
  .main-layout.has-slider > .sidebar { display: contents; }
  .main-layout.has-slider > .sidebar > .sidebar-widget { order: 4; width: auto; }
  .main-layout.has-slider > .content-col { order: 3; }
  /* Köşe Yazarları en sonda tanımlanır ki order:4 kuralını ezsin */
  .main-layout.has-slider > .sidebar > .sidebar-widget.widget-authors { order: 2; }

  .featured-grid { grid-template-columns: 1fr; }
  .feat-main { border-right: none; border-bottom: 1px solid var(--ink); }
  .feat-main-img { height: 240px; }
  .news-grid { grid-template-columns: repeat(2, minmax(0,1fr)); gap: 24px 20px; }
  /* Yazı gövdesi kenarlara yapışmasın (tek kolona düşünce garanti boşluk) */
  .article-body, .column-body, .article-header, .column-head, .column-nav-back,
  .article-cover, .author-box { max-width: 100%; }
}

@media (max-width: 900px) {
  /* Menü header'a sığmasın diye erken hamburger'a geç */
  .header-nav { display: none; }
  .nav-toggle { display: flex; }
  .rss-icon { display: none; }           /* dar ekranda sadeleştir */
  .header-social { display: none; }      /* sosyal ikonlar mobil menüye taşınır (sonraki güncelleme) */

  /* Serbestiyet tarzı 3'lü header: hamburger sol · logo orta · arama sağ */
  .header-inner { display: flex; align-items: center; justify-content: space-between; gap: 8px; flex-wrap: nowrap; position: relative; }
  .nav-toggle { order: 1; flex-shrink: 0; }
  .header-brand { order: 2; flex: 1; text-align: center; min-width: 0; }
  .header-actions { order: 3; flex-shrink: 0; }
  .header-brand .logo { justify-content: center; display: inline-flex; }
  .header-brand .logo img { margin: 0 auto; }
  .tagline { text-align: center; margin-top: 4px; font-size: 9px; }   /* slogan küçük ve ortalı */

  /* Logo ortada düzeni mobilde grid değil flex olur (menü gizli, hamburger var) */
  .site-header.logo-center .header-inner { display: flex; grid-template-columns: none; }
  .site-header.logo-center .header-nav-left,
  .site-header.logo-center .header-nav-right { display: none; }
  .site-header.logo-center .header-actions-mobile { display: flex; order: 3; flex-shrink: 0; }

  /* ── MOBİL LOGO HİZASI (ayar) ── */
  /* Logo ORTADA: hamburger/arama genişlik farkından etkilenmesin diye
     logoyu ekranın TAM ortasına absolute ile sabitle. */
  .site-header.mlogo-center .header-brand {
    position: absolute; left: 50%; top: 50%;
    transform: translate(-50%, -50%);
    flex: 0 0 auto; text-align: center; z-index: 1;
    max-width: calc(100% - 120px);   /* iki yandaki ikonlarla çakışmasın */
  }
  .site-header.mlogo-center .header-brand .logo { white-space: nowrap; }
  .site-header.mlogo-center .nav-toggle,
  .site-header.mlogo-center .header-actions { position: relative; z-index: 2; }

  /* Logo SOLDA: hamburger sol, logo hemen yanında sola yaslı, arama sağda */
  .site-header.mlogo-left .header-brand { flex: 1; text-align: left; }
  .site-header.mlogo-left .header-brand .logo { justify-content: flex-start; }
  .site-header.mlogo-left .header-brand .logo img { margin: 0; }
  .site-header.mlogo-left .tagline { text-align: left; }

  /* İkonlar serbestiyet gibi iri ve belirgin */
  .header-actions .btn-icon, .nav-toggle { padding: 4px; color: var(--ink); }
  .header-actions .btn-icon svg, .nav-toggle svg { width: 26px; height: 26px; }

  /* Sticky mobilde kapansın (küçük ekranda yer kaplamasın) */
  .site-header.is-sticky { position: relative; }
}

@media (max-width: 640px) {
  :root { --pad-x: 20px; }               /* mobilde belirgin yatay boşluk */
  /* Çift güvence: grid katmanı da yatay padding tutsun (metin kenara yapışmasın) */
  .container.article-page-layout, .container.main-layout { padding-left: var(--pad-x); padding-right: var(--pad-x); }
  .logo { font-size: 30px; }
  .site-header { padding: 14px 0 12px; }
  .feat-main-title { font-size: 22px; }
  .feat-main-img { height: 200px; }
  .article-page-title { font-size: 27px; }
  .column-title { font-size: 26px; }
  .article-body, .column-body { font-size: 17px; line-height: 1.8; }
  .article-body h2, .column-body h2 { font-size: 21px; }
  .news-grid { grid-template-columns: 1fr; gap: 22px; }
  .article-cover { max-height: 260px; }
  .author-box { padding: 20px; }
  .author-box-head { gap: 14px; margin-bottom: 12px; }
  .author-box-avatar { width: 56px; height: 56px; font-size: 16px; }
  .author-box-name-row { flex-direction: column; align-items: flex-start; gap: 5px; margin-bottom: 8px; }
  .author-box-name { font-size: 16px; }
  .static-title { font-size: 24px; }
  .static-content p { font-size: 15px; }
  .article-header-meta { font-size: 12px; }
  .dosya-card { grid-template-columns: 1fr; }
  .dosya-card-img { min-height: 160px; }
  /* ── Mobil slider (mynet tarzı) ── */
  .hero-slider { border: none; }
  .hero-stage { height: auto; aspect-ratio: 4 / 5; max-height: 78vh; }
  .hero-slide-overlay { padding: 30px 18px 22px; background: linear-gradient(to top, rgba(0,0,0,.88) 0%, rgba(0,0,0,.35) 55%, rgba(0,0,0,.15) 100%); }
  .hero-slide-cat { font-size: 11px; margin-bottom: 10px; padding: 5px 12px; }
  .hero-slide-title { font-size: 25px; max-width: 100%; line-height: 1.22; }
  .hero-arrow { width: 40px; height: 40px; border-radius: 50%; background: rgba(0,0,0,.45); }
  .hero-prev { left: 10px; }
  .hero-next { right: 10px; }
  /* Mobilde thumbnail şeridi: kaç slide seçilirse seçilsin ASLA taşmaz.
     6 veya daha azsa ekrana eşit bölünür; fazlaysa yatay kaydırılır. */
  .hero-thumbs {
    display: flex; gap: 3px; padding: 5px;
    overflow-x: auto; -webkit-overflow-scrolling: touch;
    scrollbar-width: none; max-width: 100%;
  }
  .hero-thumbs::-webkit-scrollbar { display: none; }
  .hero-thumb { flex: 1 0 auto; width: calc((100% - 15px) / 6); min-width: 44px; height: 44px; border-width: 2px; }
  .hero-dots { display: none; }
  .cat-block-title { font-size: 19px; }
  .cat-block-title::before { height: 19px; }
  .cat-block-all { font-size: 11px; }
  /* Köşe yazarı bloğu mobilde tek kolon */
  .column-author-block { grid-template-columns: 1fr; gap: 14px; }
  /* Avatar solda; isim ve unvan sağda ALT ALTA.
     Grid kullanılıyor çünkü HTML'de isim+unvanı saran kutu yok:
     avatar 1. sütun (2 satır boyunca), isim 1. satır, unvan 2. satır. */
  .column-author-side {
    display: grid;
    grid-template-columns: auto minmax(0,1fr);
    grid-template-rows: auto auto;
    align-items: center;
    text-align: left;
    gap: 2px 12px;
  }
  .column-author-avatar { width: 52px; height: 52px; font-size: 17px; flex-shrink: 0;
    grid-column: 1; grid-row: 1 / span 2; align-self: center; }
  /* İsim tek satırda kalsın, sığmazsa küçülsün (sarmasın) */
  .column-author-side .column-author-name {
    grid-column: 2; grid-row: 1; min-width: 0;
    white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
    align-self: end;
  }
  /* Unvan ismin ALTINDA, tek satır. Sığmazsa ... ile kesilir.
     Yazı boyutu biraz küçültüldü ki çoğu unvan kesilmeden sığsın. */
  .column-author-side .column-author-domain {
    grid-column: 2; grid-row: 2; min-width: 0;
    font-size: 9px; letter-spacing: .3px;
    white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
    align-self: start;
  }
  /* Mobilde başlık tek satıra sığmaz: kaydır, meta alt satıra insin (taşma önlenir) */
  .column-author-posts li { flex-direction: column; align-items: flex-start; gap: 2px; }
  .column-author-post-title { white-space: normal; overflow: visible; text-overflow: clip; }
  .article-row { grid-template-columns: 100px minmax(0,1fr); gap: 14px; }
  .article-thumb { width: 100px; height: 70px; }
  .article-row-body h3 { font-size: 16px; }
  .category-title { font-size: 26px; }
  .column-page { padding: 32px 0 44px; }
  .column-page .column-author-photo { width: 84px; height: 84px; font-size: 26px; }
  /* Köşe detay (yatay yazar satırı): foto solda küçük, isim+unvan sağda */
  .column-author-row { align-items: center; gap: 12px; }
  .column-author-row .column-author-photo { width: 54px; height: 54px; font-size: 18px; margin: 0; }
  .column-head-left .column-eyebrow { font-size: 10px; letter-spacing: 1.5px; margin-bottom: 3px; }
  .column-head-left .column-author-name { font-size: 16px; }
  .column-head-left .column-author-domain { font-size: 10px; }
  .footer-inner { gap: 20px; }
}

/* Çok dar ekranlar: yatay satırları tek kolona indir, foto üstte */
@media (max-width: 420px) {
  .article-row { grid-template-columns: 1fr; }
  .article-thumb { width: 100%; height: 180px; }
  .column-row { grid-template-columns: 52px minmax(0,1fr); gap: 14px; }
  .column-row-photo { width: 52px; height: 52px; font-size: 15px; }
}

/* Erişilebilirlik: klavye odağı + azaltılmış hareket */
a:focus-visible, button:focus-visible, input:focus-visible {
  outline: 2px solid var(--accent); outline-offset: 2px;
}
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
}

/* ============================================================
   Paylaşım butonları (includes/paylas.php)
   ============================================================ */
.mtf-share { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; min-width: 0; }
.mtf-share-btns { display: flex; gap: 6px; flex-wrap: wrap; }
.mtf-share-label {
  font-family: var(--font-display); font-size: 11px;
  letter-spacing: 1.2px; color: var(--text-3);
}
.mtf-share-btn {
  width: 34px; height: 34px; flex: 0 0 auto;
  display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid var(--border-soft); background: transparent;
  color: var(--ink); cursor: pointer; padding: 0; border-radius: var(--radius);
  transition: border-color .15s ease, color .15s ease;
}
.mtf-share-btn svg { width: 15px; height: 15px; display: block; }
.mtf-share-btn:hover { border-color: var(--accent); color: var(--accent); }
.mtf-share-toast { font-size: 11px; color: var(--accent); opacity: 0; transition: opacity .2s ease; }
.mtf-share-toast.is-on { opacity: 1; }

/* Alt set: yazının sonunda, ince çizgiler arasında */
.mtf-share-bottom {
  border-top: 1px solid var(--border-hair);
  border-bottom: 1px solid var(--border-hair);
  padding: 16px 0; margin: 28px 0;
}

/* Üst set: meta satırının sağında; mobilde alt satıra düşer */
.mtf-share-top { margin-left: auto; }
.mtf-share-top .mtf-share-btn { width: 28px; height: 28px; }
.mtf-share-top .mtf-share-btn svg { width: 13px; height: 13px; }
@media (max-width: 640px) {
  .mtf-share-top { margin-left: 0; width: 100%; padding-top: 6px; }
}

/* ============================================================
   Ana sayfa blok ayarları (Site Düzeni panelinden yönetilir)
   ============================================================ */

/* Başlık + alt başlık sarmalayıcı */
.cat-block-heading { min-width: 0; }
.cat-block-sub {
  font-size: 12px; color: var(--text-3); margin-top: 5px;
  letter-spacing: .2px; line-height: 1.5;
}

/* Ayar: blok arka planı (açık gri) */
.cat-block.block-bg {
  background: var(--bg-surface);
  padding: 24px var(--pad-x);
  margin-left: calc(var(--pad-x) * -1);
  margin-right: calc(var(--pad-x) * -1);
}

/* Ayar: üst ayraç çizgisi */
.cat-block.block-divider { border-top: 1px solid var(--border-soft); padding-top: 28px; }
.cat-block.block-divider.block-bg { padding-top: 24px; }

/* Ayar: başlık ortalı */
.cat-block.block-center .cat-block-head {
  flex-direction: column; align-items: center; text-align: center; gap: 10px;
}
.cat-block.block-center .cat-block-heading { text-align: center; }
.cat-block.block-center .cat-block-title { justify-content: center; }
.cat-block.block-center .cat-block-title::before { display: none; }

/* ============================================================
   Ana sayfa blokları — mobil sıralama
   Masaüstünde normal akış; dar ekranda --m-order devreye girer.
   ============================================================ */
.home-blocks { display: flex; flex-direction: column; min-width: 0; }
/* Flex çocuklarında taşma koruması (block-bg negatif margin kullanıyor) */
.home-blocks > .cat-block { min-width: 0; max-width: 100%; }
.home-blocks > .cat-block.block-bg { box-sizing: border-box; }
@media (max-width: 900px) {
  .home-blocks > .cat-block { order: var(--m-order, 99); }
}
