/*
Theme Name: Kutay Navy
Theme URI: https://kutayutku.com
Author: Kutay Utku
Description: Premium, açık, editöryal WordPress teması. Lacivert ve beyaz renk paleti.
Version: 4.0.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: kutay-navy
Tags: blog, two-columns, right-sidebar, custom-logo, featured-images
*/


/* ============================================================
   CSS DEĞİŞKENLERİ
   ============================================================ */
:root {
  --bg:         #ffffff;
  --surface:    #f0f2f7;
  --card:       #ffffff;
  --border:     #d4d9e8;
  --accent:     #1a2f6e;
  --accent-h:   #243d8f;
  --text:       #0d1117;
  --muted:      #5a6482;
  --white:      #0d1117;
  --black:      #ffffff;

  --ff-display: 'Playfair Display', Georgia, serif;
  --ff-body:    'DM Sans', 'Helvetica Neue', sans-serif;
  --ff-mono:    'DM Mono', 'Courier New', monospace;

  --r-sm: 4px;
  --r-md: 8px;
  --r-lg: 16px;

  --sh-sm: 0 1px 4px rgba(26,47,110,.08);
  --sh-md: 0 4px 24px rgba(26,47,110,.10);
  --sh-lg: 0 12px 48px rgba(26,47,110,.14);

  --ease: .3s cubic-bezier(.4,0,.2,1);
  --max-w: 1280px;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--ff-body);
  font-size: 1rem;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}

img, video { max-width: 100%; height: auto; display: block; }

a { color: var(--accent); text-decoration: none; transition: color var(--ease); }
a:hover { color: var(--white); }

ul, ol { list-style: none; }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--ff-display);
  font-weight: 700;
  line-height: 1.2;
  color: var(--white);
  letter-spacing: -.02em;
}

h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
h4 { font-size: 1.1rem; }

p { margin-bottom: 1.2rem; }

blockquote {
  border-left: 3px solid var(--accent);
  padding: 1rem 1.5rem;
  margin: 2rem 0;
  background: var(--surface);
  border-radius: 0 var(--r-md) var(--r-md) 0;
  font-family: var(--ff-display);
  font-style: italic;
  font-size: 1.1rem;
}

code { font-family: var(--ff-mono); background: var(--surface); color: var(--accent); padding: .15em .45em; border-radius: var(--r-sm); font-size: .85rem; }
pre { font-family: var(--ff-mono); background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-md); padding: 1.5rem; overflow-x: auto; font-size: .85rem; }
pre code { background: none; padding: 0; }

hr { border: none; border-top: 1px solid var(--border); margin: 2rem 0; }

/* ============================================================
   YARDIMCI SINIFLAR
   ============================================================ */
.container {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: 2rem;
}
.container p {
    margin-bottom: 0px;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .6rem 1.4rem;
  border-radius: var(--r-sm);
  font-family: var(--ff-body);
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: all var(--ease);
  text-decoration: none;
}

.btn-primary { background: var(--accent); color: var(--black); }
.btn-primary:hover { background: var(--white); color: var(--black); transform: translateY(-2px); }

.btn-outline { background: transparent; color: var(--accent); border: 1px solid var(--accent); }
.btn-outline:hover { background: var(--accent); color: var(--black); }

.btn-sm { padding: .35rem .9rem; font-size: .78rem; }

.badge {
  display: inline-block;
  padding: .18em .65em;
  border-radius: 2rem;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  background: rgba(201,168,76,.15);
  color: var(--accent);
  border: 1px solid rgba(201,168,76,.35);
}

.section-label {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--accent);
  display: flex;
  align-items: center;
  gap: .6rem;
  margin-bottom: .75rem;
}

.section-label::before {
  content: '';
  display: block;
  width: 1.75rem;
  height: 1px;
  background: var(--accent);
}

.screen-reader-text {
  position: absolute; width: 1px; height: 1px;
  padding: 0; overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}

/* ============================================================
   GENEL YAPI
   ============================================================ */
.site {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.site-content {
  flex: 1;
  padding: 2.5rem 0 4rem;
}

/* ============================================================
   LAYOUT: İçerik + Sidebar yan yana
   ============================================================ */
.layout-wrap {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 2.5rem;
  align-items: start;
}

.layout-main { min-width: 0; }

@media (max-width: 1100px) {
  .layout-wrap { grid-template-columns: 1fr; }
}

/* ============================================================
   HEADER — 3 KATLI YAPI
   ============================================================ */

.site-header {
  position: relative;
  z-index: 200;
  background: rgba(14,14,14,.97);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
}

/* ── 1. EN ÜST İNCE ÇUBUK ── */
.header-bar {
  background: #111;
  border-bottom: 1px solid var(--border);
}

.header-bar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 32px;
  gap: 1rem;
}

.header-bar__date {
  font-size: .67rem;
  color: var(--muted);
  letter-spacing: .04em;
  white-space: nowrap;
}

.header-bar__cats {
  display: flex;
  align-items: center;
}

.header-bar__cat {
  display: inline-block;
  font-size: .67rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 0 .8rem;
  border-right: 1px solid var(--border);
  line-height: 32px;
  transition: color var(--ease), background var(--ease);
  white-space: nowrap;
}

.header-bar__cat:first-child { border-left: none; }
.header-bar__cat:hover { color: var(--accent); background: rgba(201,168,76,.07); }

/* ── 2. ORTA ÇUBUK: Logo + Sosyal + Arama ── */
.header-mid {
  border-bottom: 1px solid var(--border);
}

.header-mid__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  gap: 1.5rem;
}

/* Logo */
.site-branding { flex-shrink: 0; }
.site-branding .custom-logo-link { display: flex; align-items: center; }
.site-branding .custom-logo      { height: 42px; width: auto; display: block; }

.brand-link {
  display: flex;
  flex-direction: column;
  gap: .15rem;
  text-decoration: none;
}

.site-title {
  font-family: var(--ff-display);
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -.03em;
  line-height: 1;
  display: block;
}

.site-title em { font-style: normal; color: var(--accent); }

.site-tagline {
  font-size: .62rem;
  color: var(--muted);
  letter-spacing: .14em;
  text-transform: uppercase;
  display: block;
}

/* Sağ grup */
.header-mid__right {
  display: flex;
  align-items: center;
  gap: .6rem;
}

/* Sosyal butonlar */
.header-socials {
  display: flex;
  align-items: center;
  gap: .3rem;
}

.header-social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px; height: 30px;
  border-radius: 50%;
  background: #ffffff;
  border: 1px solid rgba(255,255,255,.5);
  color: #000000;
  font-size: .8rem;
  font-weight: 700;
  transition: all var(--ease);
  text-decoration: none;
  flex-shrink: 0;
}

.header-social-btn:hover { transform: translateY(-2px); background: #f0f2f7; color: #000000; }

.header-social-btn--twitter:hover     { background: #000;     border-color: #000;     color: #fff; }
.header-social-btn--instagram:hover   { background: #e1306c;  border-color: #e1306c;  color: #fff; }
.header-social-btn--youtube:hover     { background: #ff0000;  border-color: #ff0000;  color: #fff; }
.header-social-btn--dailymotion:hover { background: #0062ff;  border-color: #0062ff;  color: #fff; }
.header-social-btn--github:hover      { background: #333;     border-color: #333;     color: #fff; }
.header-social-btn--rss:hover         { background: var(--accent); border-color: var(--accent); color: var(--black); }

/* Dikey ayraç */
.header-divider {
  display: block;
  width: 1px; height: 22px;
  background: var(--border);
  flex-shrink: 0;
}

/* Arama */
.header-search { position: relative; }
.header-search .search-form { display: flex; align-items: center; }

.header-search .search-field {
  background: var(--surface);
  border: 1px solid var(--border);
  border-right: none;
  border-radius: 2rem 0 0 2rem;
  padding: .42rem 1rem .42rem 2.1rem;
  color: var(--text);
  font-size: .82rem;
  font-family: var(--ff-body);
  width: 160px;
  transition: border-color var(--ease), width var(--ease);
}

.header-search .search-field:focus { outline: none; border-color: var(--accent); width: 205px; }



.header-search .search-submit {
  background: var(--accent);
  color: var(--black);
  border: none;
  border-radius: 0 2rem 2rem 0;
  padding: .42rem .85rem;
  font-family: var(--ff-body);
  font-size: .75rem;
  font-weight: 700;
  cursor: pointer;
  transition: background var(--ease);
  white-space: nowrap;
}

.header-search .search-submit:hover { background: var(--accent-h); }

/* Hamburger */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  background: none;
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  cursor: pointer;
  width: 38px; height: 38px;
  flex-shrink: 0;
  transition: border-color var(--ease);
}

.menu-toggle:hover { border-color: var(--accent); }

.menu-toggle__bar {
  display: block;
  width: 16px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all var(--ease);
}

.menu-toggle.is-active .menu-toggle__bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.is-active .menu-toggle__bar:nth-child(2) { opacity: 0; transform: scaleX(0); }
.menu-toggle.is-active .menu-toggle__bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── 3. ALT ÇUBUK: NAVİGASYON ── */
.header-nav {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
}

.header-nav__inner {
  display: flex;
  align-items: stretch;
  min-height: 44px;
}

.nav-menu {
  display: flex;
  align-items: stretch;
  list-style: none;
  gap: 0;
}

.nav-menu > li {
  display: flex;
  align-items: stretch;
  position: relative;
}

.nav-menu > li > a {
  display: flex;
  align-items: center;
  padding: 0 1.1rem;
  color: var(--muted);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  white-space: nowrap;
  position: relative;
  transition: color var(--ease), background var(--ease);
}

.nav-menu > li > a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 1.1rem; right: 1.1rem;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--ease);
  border-radius: 2px 2px 0 0;
}

.nav-menu > li > a:hover                     { color: var(--white); background: rgba(255,255,255,.03); }
.nav-menu > li.current-menu-item > a         { color: var(--accent); }
.nav-menu > li > a:hover::after,
.nav-menu > li.current-menu-item > a::after  { transform: scaleX(1); }

.nav-menu > li.menu-item-has-children > a::before {
  content: '▾';
  margin-left: .3em;
  font-size: .7em;
  opacity: .6;
  transition: transform var(--ease);
}

.nav-menu > li.menu-item-has-children:hover > a::before { transform: rotate(180deg); }

/* Dropdown */
.sub-menu {
  position: absolute;
  top: 100%; left: 0;
  min-width: 210px;
  background: var(--card);
  border: 1px solid var(--border);
  border-top: 2px solid var(--accent);
  border-radius: 0 0 var(--r-md) var(--r-md);
  box-shadow: var(--sh-lg);
  opacity: 0; visibility: hidden;
  transform: translateY(-6px);
  transition: all var(--ease);
  list-style: none;
  padding: .5rem 0;
  z-index: 400;
}

.nav-menu > li.menu-item-has-children:hover > .sub-menu {
  opacity: 1; visibility: visible; transform: translateY(0);
}

.sub-menu li a {
  display: flex;
  align-items: center;
  gap: .4rem;
  padding: .55rem 1.2rem;
  font-size: .82rem;
  color: var(--muted);
  transition: color var(--ease), background var(--ease), padding-left var(--ease);
}

.sub-menu li a::before {
  content: '›';
  color: var(--accent);
  font-size: 1rem;
  opacity: 0;
  transition: opacity var(--ease);
}

.sub-menu li a:hover { color: var(--white); background: rgba(255,255,255,.04); padding-left: 1.5rem; }
.sub-menu li a:hover::before { opacity: 1; }

.nav-cat-tag {
  display: inline-flex;
  align-items: center;
  padding: .2em .75em;
  background: rgba(201,168,76,.08);
  border: 1px solid rgba(201,168,76,.2);
  border-radius: 2rem;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--accent);
  transition: all var(--ease);
  white-space: nowrap;
}

.nav-cat-tag:hover { background: rgba(201,168,76,.18); border-color: var(--accent); color: var(--white); }

/* ── MOBİL ── */
@media (max-width: 860px) {
  .menu-toggle        { display: flex; }
  .header-bar__cats   { display: none; }

  .header-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    overflow-y: auto;
    max-height: calc(100vh - 160px);
    z-index: 999;
    padding: .5rem 0 1.5rem;
    box-shadow: 0 8px 24px rgba(0,0,0,.5);
  }

  .header-nav.is-open { display: block; }

  .header-nav__inner { flex-direction: column; min-height: auto; }

  .nav-menu { flex-direction: column; width: 100%; }
  .nav-menu > li { flex-direction: column; align-items: flex-start; }

  .nav-menu > li > a {
    width: 100%;
    padding: .9rem 1.5rem;
    font-size: .95rem;
    border-bottom: 1px solid var(--border);
    text-transform: none;
    letter-spacing: 0;
  }

  .nav-menu > li > a::after  { display: none; }
  .nav-menu > li > a::before { display: none; }

  .sub-menu {
    position: static;
    opacity: 1; visibility: visible;
    transform: none; border: none;
    border-radius: 0; box-shadow: none;
    background: var(--surface);
    padding: 0; display: none;
  }

  .nav-menu > li.menu-item-has-children:hover > .sub-menu { display: block; }

  .sub-menu li a {
    padding: .7rem 1.5rem .7rem 2.5rem;
    border-bottom: 1px solid var(--border);
  }

  .sub-menu li a:hover { padding-left: 3rem; }
}

@media (max-width: 560px) {
  .header-bar__date { display: none; }
  .header-socials   { display: none; }
  .header-divider   { display: none; }
  .header-search    { display: none; }

  .header-mid__right { gap: 0; margin-left: auto; }
  .menu-toggle { display: flex; margin-left: auto; }

  .footer-brand { text-align: center; }
  .footer-brand p { max-width: 100%; }
  .social-links { justify-content: center; }
  .footer-col { text-align: center; }
  .footer-col ul { align-items: center; }
}

/* WP Admin Bar — header artık sticky değil, top override gerekmiyor */


/* ============================================================
   HERO
   ============================================================ */
.hero-section {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  overflow: hidden;
  margin-bottom: 3rem;
}

.hero-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  opacity: .35;
  transition: transform 8s ease;
}

.hero-section:hover .hero-bg { transform: scale(1.04); }

.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(14,14,14,.97) 35%, rgba(14,14,14,.4) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 640px;
}

.hero-title {
  font-size: clamp(2.2rem, 5.5vw, 4rem);
  margin-bottom: 1rem;
  line-height: 1.08;
}

.hero-title a { color: var(--white); }
.hero-title a:hover { color: var(--accent); }

.hero-excerpt {
  font-size: 1.05rem;
  color: var(--muted);
  margin-bottom: 1.5rem;
  max-width: 500px;
}

.hero-meta {
  display: flex;
  align-items: center;
  gap: .75rem;
  font-size: .82rem;
  color: var(--muted);
  margin-bottom: 1.75rem;
}

.hero-meta img { width: 34px; height: 34px; border-radius: 50%; }
.hero-meta-sep { opacity: .4; }

/* ============================================================
   POST KARTLARI
   ============================================================ */
.posts-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}

.post-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform var(--ease), box-shadow var(--ease), border-color var(--ease);
}

.post-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(26,47,110,.10);
  border-color: var(--border);
}

.post-card__thumb {
  position: relative;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 16/7;
  background: var(--surface);
  flex-shrink: 0;
}

.post-card__thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .55s ease;
}

.post-card:hover .post-card__thumb img { transform: scale(1.04); }

.post-card__thumb .badge {
  position: absolute;
  top: .75rem; left: .75rem;
}

.post-card__body {
  padding: 1.25rem 1.4rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.post-card__title {
  font-size: 1.1rem;
  margin-bottom: .6rem;
  line-height: 1.35;
}

.post-card__title a { color: var(--white); transition: color var(--ease); }
.post-card__title a:hover { color: var(--accent); }

.post-card__excerpt {
  font-size: .875rem;
  color: var(--muted);
  line-height: 1.7;
  flex: 1;
  margin-bottom: 1rem;
  display: -webkit-box;
  -webkit-line-clamp: 6;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.post-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: .85rem;
  border-top: 1px solid var(--border);
  font-size: .78rem;
  color: var(--muted);
}

.post-card__author { display: flex; align-items: center; gap: .45rem; }
.post-card__author img { width: 26px; height: 26px; border-radius: 50%; }
.post-card__author a { color: var(--muted); }
.post-card__author a:hover { color: var(--accent); }

.post-card__meta { display: flex; align-items: center; gap: .5rem; }

.post-card__readtime {
  background: rgba(201,168,76,.1);
  color: var(--accent);
  border-radius: 2rem;
  padding: .1em .55em;
  font-size: .7rem;
  font-weight: 700;
}

.post-card.no-thumb { flex-direction: column; }

/* ============================================================
   SAYFALAMA
   ============================================================ */
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: .4rem;
  margin-top: 1.5rem;
}

.pagination .page-numbers {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 38px; height: 38px;
  padding: 0 .5rem;
  border-radius: var(--r-sm);
  background: var(--card);
  border: 1px solid var(--border);
  color: var(--muted);
  font-size: .85rem;
  font-weight: 500;
  transition: all var(--ease);
}

.pagination .page-numbers:hover,
.pagination .page-numbers.current {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--black);
}

/* ============================================================
   SIDEBAR
   ============================================================ */
.sidebar {
  position: sticky;
  top: 2rem;
  align-self: start;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  min-width: 0;
}

.sidebar::-webkit-scrollbar { display: none; }

@media (max-width: 1100px) {
  .sidebar {
    position: static;
    align-self: auto;
  }
}

.sidebar-block {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 1.35rem 1.5rem;
  transition: border-color var(--ease);
}

.sidebar-block:hover { border-color: rgba(201,168,76,.2); }

.sidebar-title {
  font-family: var(--ff-body);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--accent);
  display: flex;
  align-items: center;
  gap: .5rem;
  margin-bottom: 1rem;
  padding-bottom: .65rem;
  border-bottom: 1px solid var(--border);
}

.sidebar-title-icon { font-size: .9rem; line-height: 1; }

.sidebar-search .search-form { display: flex; gap: .4rem; }

.sidebar-search .search-field {
  flex: 1;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  padding: .5rem .8rem;
  color: var(--text);
  font-size: .85rem;
  font-family: var(--ff-body);
  transition: border-color var(--ease);
}

.sidebar-search .search-field:focus { outline: none; border-color: var(--accent); }

.sidebar-search .search-submit {
  background: var(--accent);
  color: var(--black);
  border: none;
  border-radius: var(--r-sm);
  padding: .5rem .9rem;
  font-size: .82rem;
  font-weight: 700;
  font-family: var(--ff-body);
  cursor: pointer;
  transition: background var(--ease);
}

.sidebar-search .search-submit:hover { background: var(--white); }

.featured-list, .neighbors-list {
  list-style: none;
  counter-reset: sc;
  display: flex;
  flex-direction: column;
}

.featured-list li, .neighbors-list li {
  counter-increment: sc;
  display: flex;
  align-items: baseline;
  gap: .55rem;
  padding: .45rem 0;
  border-bottom: 1px solid var(--border);
  font-size: .875rem;
}

.featured-list li:last-child, .neighbors-list li:last-child { border-bottom: none; padding-bottom: 0; }

.featured-list li::before, .neighbors-list li::before {
  content: counter(sc, decimal-leading-zero);
  font-family: var(--ff-mono);
  font-size: .68rem;
  color: var(--accent);
  flex-shrink: 0;
  width: 1.5rem;
  opacity: .75;
}

.featured-list li a, .neighbors-list li a {
  color: var(--text);
  font-size: .865rem;
  line-height: 1.4;
  transition: color var(--ease);
}

.featured-list li a:hover, .neighbors-list li a:hover { color: var(--accent); }

.category-list {
  list-style: none;
  display: flex;
  flex-direction: column;
}

.category-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: .4rem 0;
  border-bottom: 1px solid var(--border);
  font-size: .875rem;
}

.category-list li:last-child { border-bottom: none; padding-bottom: 0; }
.category-list li a { color: var(--text); flex: 1; transition: color var(--ease); }
.category-list li a:hover { color: var(--accent); }

.category-list .count {
  font-size: .7rem;
  color: var(--muted);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 2rem;
  padding: .1em .55em;
  margin-left: .5rem;
  flex-shrink: 0;
}

.recent-posts-list { list-style: none; display: flex; flex-direction: column; gap: .85rem; }

.recent-post-item { display: flex; align-items: flex-start; gap: .75rem; }

.recent-post-thumb {
  flex-shrink: 0; width: 58px; height: 58px;
  border-radius: var(--r-sm); overflow: hidden;
  background: var(--surface);
}

.recent-post-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.recent-post-item:hover .recent-post-thumb img { transform: scale(1.08); }

.recent-post-info { display: flex; flex-direction: column; gap: .2rem; flex: 1; }

.recent-post-title {
  color: var(--text); font-size: .875rem; font-weight: normal;
  line-height: 1.4; transition: color var(--ease);
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}

.recent-post-title:hover { color: var(--accent); }
.recent-post-date { font-size: .72rem; color: var(--muted); }

.sidebar-tags .tagcloud { display: flex; flex-wrap: wrap; gap: .4rem; }

.sidebar-tags a {
  display: inline-block;
  padding: .22em .75em;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 2rem;
  font-size: .78rem !important;
  color: var(--muted);
  transition: all var(--ease);
}

.sidebar-tags a:hover {
  background: rgba(201,168,76,.1);
  border-color: var(--accent);
  color: var(--accent);
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 4rem 0 0;
  margin-top: auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: 3rem;
  margin-bottom: 4rem;
}

@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }

.footer-brand .site-title { font-size: 1.6rem; display: block; margin-bottom: .65rem; }

.footer-brand p { font-size: .875rem; color: var(--muted); max-width: 260px; margin-bottom: 1.25rem; }

.social-links { display: flex; gap: .6rem; flex-wrap: wrap; }

.social-links a {
  display: flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--card); border: 1px solid var(--border);
  color: var(--muted); font-size: .9rem; font-weight: 700;
  transition: all var(--ease);
}

.social-links a:hover {
  background: var(--accent); border-color: var(--accent);
  color: var(--black); transform: translateY(-3px);
}

.footer-col h4 {
  font-size: .72rem; font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase; color: var(--accent); margin-bottom: 1.1rem;
}

.footer-col ul { display: flex; flex-direction: column; gap: .6rem; }

.footer-col ul li a { color: var(--muted); font-size: .875rem; transition: color var(--ease); }
.footer-col ul li a:hover { color: var(--white); }

.footer-newsletter input {
  width: 100%; background: var(--card); border: 1px solid var(--border);
  border-radius: var(--r-sm); padding: .6rem .9rem; color: var(--text);
  font-size: .875rem; font-family: var(--ff-body); margin-bottom: .6rem;
  transition: border-color var(--ease);
}

.footer-newsletter input:focus { outline: none; border-color: var(--accent); }

.footer-newsletter button {
  width: 100%; padding: .6rem; background: var(--accent); color: var(--black);
  border: none; border-radius: var(--r-sm); font-family: var(--ff-body);
  font-weight: 700; font-size: .85rem; letter-spacing: .04em;
  text-transform: uppercase; cursor: pointer; transition: background var(--ease);
}

.footer-newsletter button:hover { background: var(--white); }

/* ============================================================
   FOOTER BOTTOM — DÜZELTİLDİ
   ============================================================ */
.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 1.25rem 0;
  font-size: .8rem;
  color: var(--muted);
}

.footer-bottom .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom a { color: var(--muted); }
.footer-bottom a:hover { color: var(--accent); }

/* Yasal linkler — yatay (soldan sağa) */
.footer-bottom-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

/* wp_nav_menu ul'ü */
.footer-legal-list {
  display: flex;
  flex-direction: row;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-legal-list li {
  display: inline-flex;
  margin: 0;
  padding: 0;
}

.footer-legal-list li a {
  color: var(--muted);
  font-size: .8rem;
  white-space: nowrap;
  transition: color var(--ease);
}

.footer-legal-list li a:hover { color: var(--accent); }

/* ============================================================
   SINGLE POST
   ============================================================ */
.single-article { min-width: 0; }

.single-header { margin-bottom: 1.75rem; }

.single-cats { display: flex; flex-wrap: wrap; gap: .4rem; margin-bottom: .85rem; }

.single-title {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  line-height: 1.15; margin-bottom: 1.25rem;
}

.single-meta {
  display: flex; align-items: flex-start;
  justify-content: space-between; flex-wrap: wrap;
  gap: 1rem; padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--border); margin-bottom: 2rem;
}

.single-meta__author { display: flex; align-items: center; gap: .75rem; }

.single-meta__author img { width: 42px; height: 42px; border-radius: 50%; border: 2px solid var(--accent); flex-shrink: 0; }

.single-meta__author-info { display: flex; flex-direction: column; gap: .2rem; }

.author-name { font-weight: 600; color: var(--white); font-size: .875rem; }
.author-name:hover { color: var(--accent); }

.single-meta__details {
  display: flex; align-items: center; flex-wrap: wrap;
  gap: .4rem; font-size: .76rem; color: var(--muted);
}

.meta-sep { opacity: .4; }

.read-time {
  background: rgba(201,168,76,.12); color: var(--accent);
  border-radius: 2rem; padding: .1em .55em; font-weight: 700;
}

.single-share { display: flex; align-items: center; gap: .45rem; }

.share-label { font-size: .7rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); }

.share-btn {
  display: flex; align-items: center; justify-content: center;
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--card); border: 1px solid var(--border);
  color: var(--muted); font-size: .78rem; font-weight: 700;
  transition: all var(--ease); text-decoration: none;
}

.share-btn:hover { background: var(--accent); border-color: var(--accent); color: var(--black); transform: translateY(-2px); }

.single-thumbnail { border-radius: var(--r-lg); overflow: hidden; margin-bottom: 2rem; }
.single-thumbnail img { width: 100%; max-height: 500px; object-fit: cover; }
.thumbnail-caption { padding: .55rem 1rem; font-size: .78rem; color: var(--muted); background: var(--surface); text-align: center; }

.single-content, .page-content {
  font-size: 1.05rem; line-height: 1.9; color: var(--text); margin-bottom: 2.5rem;
}

.single-content h2, .page-content h2 { margin-top: 2.5rem; margin-bottom: 1rem; }
.single-content h3, .page-content h3 { margin-top: 2rem; margin-bottom: .75rem; }
.single-content p, .page-content p { margin-bottom: 1.2rem; }
.single-content ul, .page-content ul { list-style: disc; padding-left: 1.5rem; margin-bottom: 1.2rem; }
.single-content ol, .page-content ol { list-style: decimal; padding-left: 1.5rem; margin-bottom: 1.2rem; }
.single-content li, .page-content li { margin-bottom: .4rem; }
.single-content a, .page-content a { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; }
.single-content a:hover, .page-content a:hover { color: var(--white); }
.single-content img, .page-content img { border-radius: var(--r-md); margin: 1.5rem auto; }

.single-tags {
  display: flex; flex-wrap: wrap; align-items: center; gap: .45rem;
  padding: 1rem 0; border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border); margin-bottom: 1.75rem;
}

.tags-label { font-size: .72rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); }

.tag-link {
  display: inline-block; padding: .22em .75em;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 2rem; font-size: .78rem; color: var(--muted);
  transition: all var(--ease);
}

.tag-link:hover { background: rgba(201,168,76,.1); border-color: var(--accent); color: var(--accent); }

.post-navigation { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin: 2rem 0; }

@media (max-width: 580px) { .post-navigation { grid-template-columns: 1fr; } }

.post-nav-item {
  background: var(--card); border: 1px solid var(--border); border-radius: var(--r-md);
  padding: 1.1rem 1.25rem; display: flex; flex-direction: column; gap: .35rem;
  transition: all var(--ease); text-decoration: none;
}

.post-nav-item:hover { border-color: var(--accent); transform: translateY(-2px); box-shadow: var(--sh-md); }
.post-nav-next { text-align: right; }

.post-nav-dir { font-size: .7rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--accent); }

.post-nav-title { font-family: var(--ff-display); font-size: .92rem; color: var(--white); line-height: 1.35; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }

.author-box {
  background: var(--card); border: 1px solid var(--border); border-radius: var(--r-lg);
  padding: 1.5rem; display: flex; gap: 1.25rem; align-items: flex-start; margin: 2rem 0;
}

.author-box__avatar { flex-shrink: 0; width: 72px; height: 72px; border-radius: 50%; overflow: hidden; border: 2px solid var(--accent); }
.author-box__avatar img { width: 100%; height: 100%; object-fit: cover; }
.author-box__label { font-size: .7rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--accent); margin: 0; }
.author-box__name { font-family: var(--ff-display); font-size: 1.1rem; font-weight: 700; margin: .2rem 0; }
.author-box__name a { color: var(--white); }
.author-box__name a:hover { color: var(--accent); }
.author-box__bio { font-size: .875rem; color: var(--muted); line-height: 1.6; margin: 0 0 .65rem; }

@media (max-width: 580px) { .author-box { flex-direction: column; } }

.related-posts { margin: 2.5rem 0; }
.related-posts__title { margin-bottom: 1.25rem; }

.posts-grid--3col { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 680px) { .posts-grid--3col { grid-template-columns: 1fr; } }

/* ============================================================
   PAGE (page.php)
   ============================================================ */
.page-article { min-width: 0; }

.page-hero-thumb { position: relative; border-radius: var(--r-lg); overflow: hidden; margin-bottom: 2rem; }
.page-hero-thumb img { width: 100%; height: 400px; object-fit: cover; }
.page-hero-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,.85) 0%, rgba(0,0,0,.1) 60%); }
.page-hero-text { position: absolute; bottom: 1.75rem; left: 1.75rem; right: 1.75rem; z-index: 2; }

.page-article-title { font-size: clamp(1.65rem, 4vw, 2.6rem); color: var(--white); margin: 0; }

.page-plain-header { padding: 1.5rem 0 1.25rem; border-bottom: 1px solid var(--border); margin-bottom: 2rem; }
.page-plain-header .page-article-title { margin-bottom: .6rem; }

.breadcrumb { font-size: .8rem; color: var(--muted); display: flex; align-items: center; flex-wrap: wrap; gap: .3rem; }
.breadcrumb a { color: var(--muted); }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb-sep { opacity: .4; }

.page-article-footer { padding-top: 1.25rem; border-top: 1px solid var(--border); }
.edit-link a { font-size: .78rem; color: var(--muted); border: 1px solid var(--border); border-radius: var(--r-sm); padding: .3em .75em; transition: all var(--ease); }
.edit-link a:hover { color: var(--accent); border-color: var(--accent); }

.child-pages { margin-top: 3rem; }
.child-pages__title { margin-bottom: 1.25rem; }
.child-pages__grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 1.1rem; }

.child-page-card {
  background: var(--card); border: 1px solid var(--border); border-radius: var(--r-lg);
  overflow: hidden; display: block; transition: all var(--ease); text-decoration: none;
}

.child-page-card:hover { border-color: var(--accent); transform: translateY(-4px); box-shadow: var(--sh-md); }
.child-page-card__thumb { aspect-ratio: 16/9; overflow: hidden; }
.child-page-card__thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.child-page-card:hover .child-page-card__thumb img { transform: scale(1.05); }
.child-page-card__body { padding: 1rem 1.15rem; }
.child-page-card__body h4 { font-size: .95rem; color: var(--white); margin-bottom: .3rem; line-height: 1.3; }
.child-page-card__body p { font-size: .8rem; color: var(--muted); margin: 0 0 .6rem; }
.read-more-arrow { color: var(--accent); font-size: .95rem; display: inline-block; transition: transform var(--ease); }
.child-page-card:hover .read-more-arrow { transform: translateX(4px); }

/* ============================================================
   ARŞİV SAYFA BAŞLIĞI
   ============================================================ */
.page-header { padding: 2rem 0 1.75rem; border-bottom: 1px solid var(--border); margin-bottom: 2rem; }
.page-header-title { font-size: clamp(1.6rem, 4vw, 2.5rem); margin-bottom: .5rem; }
.page-header-desc { color: var(--muted); font-size: 1rem; }

/* (old comment block removed — see premium block below) */

/* ============================================================
   SCROLL TO TOP
   ============================================================ */
.scroll-top {
  position: fixed; bottom: 1.75rem; right: 1.75rem;
  width: 42px; height: 42px; background: var(--accent);
  color: var(--black); border: none; border-radius: 50%;
  font-size: 1.3rem; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--sh-md); opacity: 0; visibility: hidden;
  transform: translateY(10px); transition: all var(--ease); z-index: 500;
}

.scroll-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.scroll-top:hover { background: var(--white); transform: translateY(-3px); }

/* ============================================================
   YARDIMCI
   ============================================================ */
.no-results { text-align: center; padding: 5rem 0; }
.no-results__icon { font-size: 3.5rem; display: block; margin-bottom: 1rem; opacity: .35; }
.no-results h3 { margin-bottom: .6rem; }
.no-results p { color: var(--muted); margin-bottom: 2rem; }

.alignleft  { float: left; margin: 0 1.75rem 1rem 0; }
.alignright { float: right; margin: 0 0 1rem 1.75rem; }
.aligncenter { display: block; margin-inline: auto; }
.alignwide  { margin-inline: -2rem; }

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}

.fade-in { animation: fadeInUp .55s ease both; }

@media (max-width: 768px) {
  .container { padding-inline: 1.1rem; }
  .site-content { padding: 2rem 0 3rem; }
  .posts-grid { grid-template-columns: 1fr; }
  .hero-section { min-height: 380px; }
  .author-box { flex-direction: column; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}

/* ============================================================
   İLGİLİ YAZILAR
   ============================================================ */
.related-posts {
  margin: 3rem 0 1.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--border);
}

.related-posts__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.75rem;
}

.related-posts__header .section-label { margin-bottom: .25rem; }

.related-posts__sub {
  font-size: .8rem;
  color: var(--muted);
  margin: 0;
  line-height: 1.4;
}

.related-posts__all {
  flex-shrink: 0;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .06em;
  color: var(--muted);
  border: 1px solid var(--border);
  border-radius: 2rem;
  padding: .3em 1em;
  transition: all var(--ease);
  white-space: nowrap;
  align-self: center;
}

.related-posts__all:hover {
  color: var(--accent);
  border-color: var(--accent);
  background: rgba(201,168,76,.06);
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

@media (max-width: 900px)  { .related-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 500px)  { .related-grid { grid-template-columns: 1fr; } }

.related-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color var(--ease), transform var(--ease), box-shadow var(--ease);
}

.related-card:hover {
  border-color: rgba(201,168,76,.45);
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(0,0,0,.6);
}

.related-card__thumb {
  display: block;
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/9;
  background: var(--surface);
  flex-shrink: 0;
}

.related-card__thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}

.related-card:hover .related-card__thumb img { transform: scale(1.08); }

.related-card__overlay {
  position: absolute;
  inset: 0;
  background: rgba(14,14,14,.55);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--ease);
}

.related-card:hover .related-card__overlay { opacity: 1; }

.related-card__read-btn {
  background: var(--accent);
  color: var(--black);
  font-family: var(--ff-body);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: .45em 1.1em;
  border-radius: 2rem;
  transform: translateY(8px);
  transition: transform var(--ease);
}

.related-card:hover .related-card__read-btn { transform: translateY(0); }

.related-card__cat {
  position: absolute;
  top: .6rem; left: .6rem;
  font-size: .62rem !important;
  z-index: 2;
}

.related-card__no-img {
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, #1a1a1a 0%, #222 50%, #1c1c1c 100%);
}

.related-card__body {
  padding: .95rem 1.05rem 1.05rem;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: .35rem;
}

.related-card__title {
  font-size: .9rem;
  line-height: 1.4;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.related-card__title a { color: var(--white); transition: color var(--ease); }
.related-card__title a:hover { color: var(--accent); }

.related-card__excerpt {
  font-size: .78rem;
  color: var(--muted);
  line-height: 1.55;
  flex: 1;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.related-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: .65rem;
  border-top: 1px solid var(--border);
  margin-top: auto;
  gap: .5rem;
}

.related-card__author {
  display: flex;
  align-items: center;
  gap: .35rem;
  font-size: .72rem;
  color: var(--muted);
  overflow: hidden;
  flex: 1;
}

.related-card__author img {
  width: 20px; height: 20px;
  border-radius: 50%;
  flex-shrink: 0;
}

.related-card__author span {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.related-card__meta {
  display: flex;
  align-items: center;
  gap: .4rem;
  flex-shrink: 0;
}

.related-card__meta time { font-size: .68rem; color: var(--muted); white-space: nowrap; }

.related-card__mins {
  font-size: .65rem;
  font-weight: 700;
  color: var(--accent);
  background: rgba(201,168,76,.12);
  border-radius: 2rem;
  padding: .1em .5em;
  white-space: nowrap;
}

/* ============================================================
   YORUMLAR — PREMIUM
   ============================================================ */

.comments-area {
  margin-top: 4rem;
  padding-top: 3.5rem;
  border-top: 1px solid var(--border);
}

/* BASLIK */
.comments-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.comments-header__left { display: flex; flex-direction: column; gap: .3rem; }

.comments-header__eyebrow {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--accent);
}

.comments-header__line {
  display: block;
  width: 1.5rem;
  height: 1px;
  background: var(--accent);
  flex-shrink: 0;
}

.comments-title {
  font-family: var(--ff-display);
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  font-weight: 700;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: .65rem;
  margin: 0;
  line-height: 1.15;
}

.comments-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.2rem;
  height: 2.2rem;
  background: var(--accent);
  color: #ffffff;
  border-radius: .4rem;
  font-size: 1rem;
  font-family: var(--ff-body);
  font-weight: 800;
  padding: 0 .6rem;
}

.comments-write-btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid rgba(201,168,76,.4);
  border-radius: var(--r-sm);
  padding: .55rem 1.1rem;
  transition: all var(--ease);
  white-space: nowrap;
  flex-shrink: 0;
  text-decoration: none;
  align-self: flex-end;
}

.comments-write-btn:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--black);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(201,168,76,.25);
}

/* YORUM LISTESI */
.comment-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 2.5rem;
}

/* TEKIL YORUM */
.comment-item {
  padding: 1.5rem 0;
  border-bottom: 1px solid transparent;
}

.comment-item:first-child { padding-top: 0; }
.comment-item:last-child  { border-bottom: none; padding-bottom: 0; }

.comment-body {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 1.4rem 1.5rem;
  position: relative;
  overflow: hidden;
  transition: border-color var(--ease), box-shadow var(--ease);
}

.comment-body::before {
  content: '';
  position: absolute;
  top: 0; left: 0; bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--accent) 0%, rgba(201,168,76,.3) 100%);
  opacity: 0;
  transition: opacity var(--ease);
  border-radius: var(--r-lg) 0 0 var(--r-lg);
}

.comment-item:hover .comment-body {
  border-color: rgba(201,168,76,.3);
  box-shadow: 0 6px 24px rgba(26,47,110,.12);
}

.comment-item:hover .comment-body::before { opacity: 1; }

/* YANIT YORUMLARI */
.comment-item .children {
  list-style: none;
  margin-top: .75rem;
  margin-left: 2.75rem;
  padding-left: 0;
}

.comment-item .children .comment-item {
  padding: .75rem 0;
  border-bottom: none;
}

.comment-reply-indicator {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  font-size: .63rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(201,168,76,.1);
  border: 1px solid rgba(201,168,76,.22);
  border-radius: 2rem;
  padding: .18em .75em;
  margin-bottom: .85rem;
  width: fit-content;
}

.comment-reply-indicator__icon { font-size: .85rem; line-height: 1; }

.comment-item.is-reply .comment-body {
  background: #f0f2f7;
  border-color: rgba(201,168,76,.15);
  border-left: 3px solid rgba(201,168,76,.5);
  border-radius: 0 var(--r-md) var(--r-md) 0;
  padding-left: 1.25rem;
}

.comment-item.is-reply .comment-body::before { display: none; }

.comment-item.is-reply:hover .comment-body {
  border-color: rgba(201,168,76,.3);
  border-left-color: var(--accent);
  box-shadow: 0 4px 16px rgba(26,47,110,.10);
}

.comment-item .children .children { margin-left: 1.5rem; }

.comment-item .children .children .comment-item.is-reply .comment-body {
  background: #e8ebf4;
  border-left-color: rgba(201,168,76,.35);
}

/* YORUM HEADER */
.comment-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.comment-author-wrap {
  display: flex;
  align-items: center;
  gap: .85rem;
  flex: 1;
  min-width: 0;
}

/* Avatar */
.comment-avatar {
  position: relative;
  flex-shrink: 0;
  line-height: 0;
}

.comment-avatar .comment-avatar__img,
.comment-avatar img {
  width: 48px; height: 48px;
  border-radius: 50%;
  border: 2px solid var(--border);
  display: block;
  object-fit: cover;
  transition: border-color var(--ease), transform var(--ease);
}

.comment-item:hover .comment-avatar img {
  border-color: rgba(201,168,76,.5);
  transform: scale(1.04);
}

.comment-item.is-reply .comment-avatar .comment-avatar__img,
.comment-item.is-reply .comment-avatar img {
  width: 36px; height: 36px;
  border-color: rgba(201,168,76,.3);
}

.comment-author-badge {
  position: absolute;
  bottom: -2px; right: -2px;
  width: 16px; height: 16px;
  background: var(--accent);
  color: var(--black);
  border-radius: 50%;
  font-size: .5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--card);
  line-height: 1;
}

.comment-author-info {
  display: flex;
  flex-direction: column;
  gap: .28rem;
  min-width: 0;
}

.comment-author-name {
  font-family: var(--ff-body);
  font-weight: 700;
  font-size: .9rem;
  color: var(--white);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.comment-author-name a { color: var(--white); transition: color var(--ease); }
.comment-author-name a:hover { color: var(--accent); }

.comment-meta-row {
  display: flex;
  align-items: center;
  gap: .6rem;
  flex-wrap: wrap;
}

.comment-time {
  font-size: .72rem;
  color: var(--muted);
  transition: color var(--ease);
  text-decoration: none;
}

.comment-time:hover { color: var(--accent); }

.comment-pending {
  font-size: .68rem;
  font-weight: 600;
  color: var(--accent);
  background: rgba(201,168,76,.1);
  border: 1px solid rgba(201,168,76,.2);
  border-radius: 2rem;
  padding: .1em .6em;
}

/* AKSIYON BUTONLARI */
.comment-actions {
  display: flex;
  align-items: center;
  gap: .35rem;
  flex-shrink: 0;
}

.comment-reply-wrap a,
.comment-edit-wrap a {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .04em;
  color: var(--muted);
  border: 1px solid var(--border);
  border-radius: 2rem;
  padding: .3em .85em;
  transition: all var(--ease);
  text-decoration: none;
  white-space: nowrap;
}

.comment-reply-wrap a:hover {
  color: var(--accent);
  border-color: var(--accent);
  background: rgba(201,168,76,.07);
  transform: translateY(-1px);
}

.comment-edit-wrap a:hover {
  color: var(--white);
  border-color: rgba(255,255,255,.3);
  transform: translateY(-1px);
}

/* YORUM METNI */
.comment-content {
  font-size: .92rem;
  line-height: 1.85;
  color: var(--text);
}

.comment-content p { margin-bottom: .65rem; }
.comment-content p:last-child { margin-bottom: 0; }
.comment-content a { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; text-decoration-thickness: 1px; }
.comment-content a:hover { color: var(--white); }
.comment-content blockquote {
  border-left: 2px solid var(--accent);
  padding: .6rem 1rem;
  margin: .85rem 0;
  background: rgba(201,168,76,.05);
  border-radius: 0 var(--r-sm) var(--r-sm) 0;
  font-size: .875rem;
  color: var(--muted);
  font-style: italic;
}

/* SAYFALAMA */
.comment-pagination {
  display: flex;
  justify-content: center;
  gap: .4rem;
  margin-bottom: 2.5rem;
}

.comment-pagination a,
.comment-pagination span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 38px; height: 38px;
  border-radius: var(--r-sm);
  background: var(--card);
  border: 1px solid var(--border);
  font-size: .82rem;
  color: var(--muted);
  transition: all var(--ease);
  text-decoration: none;
}

.comment-pagination a:hover,
.comment-pagination .current {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--black);
  font-weight: 700;
}

/* KAPALI / SIFRE */
.comments-closed {
  text-align: center;
  padding: 2.5rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  margin-bottom: 2.5rem;
}

.comments-closed__icon { font-size: 2rem; display: block; margin-bottom: .5rem; opacity: .35; }
.comments-closed p { color: var(--muted); font-size: .875rem; margin: 0; }

.comment-password-notice {
  display: flex;
  align-items: center;
  gap: .65rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 1.25rem 1.5rem;
  color: var(--muted);
  font-size: .875rem;
}

/* PINGBACK */
.pingback-item {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-size: .875rem;
  color: var(--muted);
  padding: .85rem 0;
}

/* ============================================================
   YORUM FORMU — PREMIUM
   ============================================================ */
.comment-form {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 0;
  margin-top: 2.5rem;
  overflow: hidden;
}

.comment-form__header {
  background: linear-gradient(135deg, #1e1e1a 0%, #191917 100%);
  border-bottom: 1px solid var(--border);
  padding: 1.5rem 2rem;
}

.comment-form__title-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: .75rem;
}

.comment-reply-title {
  font-family: var(--ff-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  margin: 0;
  display: flex;
  align-items: center;
  gap: .6rem;
}

.cform-icon { font-size: 1rem; }

.comment-reply-title a {
  font-family: var(--ff-body);
  font-size: .72rem;
  font-weight: 600;
  color: var(--muted);
  border: 1px solid var(--border);
  border-radius: 2rem;
  padding: .25em .85em;
  margin-left: .75rem;
  letter-spacing: .04em;
  transition: all var(--ease);
  text-decoration: none;
}

.comment-reply-title a:hover { color: var(--accent); border-color: var(--accent); }

/* Giris yapildi */
.comment-form__loggedin {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: 1rem 2rem;
  background: rgba(201,168,76,.04);
  border-bottom: 1px solid var(--border);
  font-size: .82rem;
  color: var(--muted);
}

.comment-form__loggedin img {
  width: 34px; height: 34px;
  border-radius: 50%;
  border: 2px solid rgba(201,168,76,.3);
  display: block;
  object-fit: cover;
  flex-shrink: 0;
}

.comment-form__loggedin-info {
  display: flex;
  flex-direction: column;
  gap: .1rem;
  flex: 1;
}

.comment-form__loggedin-info strong { color: var(--white); font-size: .875rem; }

.comment-form__logout {
  font-size: .72rem;
  font-weight: 600;
  color: var(--muted);
  border: 1px solid var(--border);
  border-radius: 2rem;
  padding: .22em .75em;
  transition: all var(--ease);
  flex-shrink: 0;
  text-decoration: none;
}

.comment-form__logout:hover { color: var(--accent); border-color: var(--accent); }

/* Form alanlari govdesi */
.comment-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.1rem;
  padding: 1.75rem 2rem 0;
}

@media (max-width: 560px) { .comment-form__row { grid-template-columns: 1fr; } }

.comment-form__field {
  display: flex;
  flex-direction: column;
  gap: .45rem;
  margin-bottom: 1.1rem;
  padding-left: 2rem;
  padding-right: 2rem;
}

.comment-form__row .comment-form__field {
  padding-left: 0;
  padding-right: 0;
}

.comment-form__field--full { grid-column: 1 / -1; }

.comment-form__field label,
.comment-form label {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--muted);
  display: block;
}

.comment-form__field .required,
.comment-form .required { color: var(--accent); margin-left: .2rem; }

.comment-form__field input,
.comment-form__field textarea,
.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"],
.comment-form textarea {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: .75rem 1rem;
  color: var(--text);
  font-family: var(--ff-body);
  font-size: .9rem;
  width: 100%;
  transition: border-color var(--ease), box-shadow var(--ease), background var(--ease);
  margin-bottom: 0;
}

.comment-form__field input:focus,
.comment-form__field textarea:focus,
.comment-form input[type="text"]:focus,
.comment-form input[type="email"]:focus,
.comment-form input[type="url"]:focus,
.comment-form textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(201,168,76,.1);
  background: #f0f2f7;
}

.comment-form__field textarea,
.comment-form textarea { min-height: 145px; resize: vertical; line-height: 1.75; }

/* Cerez onayi */
.comment-form__cookies {
  margin-top: -.25rem;
  margin-bottom: 1rem;
  padding-left: 2rem;
  padding-right: 2rem;
}

.comment-form__check-label {
  display: flex;
  align-items: flex-start;
  gap: .65rem;
  cursor: pointer;
  font-size: .8rem;
  color: var(--muted);
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  padding: 0;
}

.comment-form__check-label input[type="checkbox"] {
  width: 16px; height: 16px;
  flex-shrink: 0;
  margin-top: .15rem;
  accent-color: var(--accent);
  cursor: pointer;
}

/* Gonder alani */
.comment-form__submit {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1rem;
  padding: 1.25rem 2rem 1.75rem;
  margin-top: .5rem;
  border-top: 1px solid var(--border);
}

.comment-submit-btn {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  background: var(--accent);
  color: var(--black);
  border: none;
  border-radius: var(--r-sm);
  padding: .8rem 2rem;
  font-family: var(--ff-body);
  font-size: .875rem;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all var(--ease);
}

.comment-submit-btn:hover {
  background: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(201,168,76,.3);
}

.comments-wrap { margin-top: 1rem; }


/* ============================================================
   GENEL ARAMA FORMU (404, search.php, no-results)
   ============================================================ */
.search-form {
  display: flex;
  align-items: center;
  width: 100%;
}
.search-form .search-field {
  flex: 1;
  background: var(--card);
  border: 1px solid var(--border);
  border-right: none;
  border-radius: var(--r-sm) 0 0 var(--r-sm);
  padding: .7rem 1rem;
  color: var(--text);
  font-size: .9rem;
  font-family: var(--ff-body);
  transition: border-color var(--ease);
  outline: none;
}
.search-form .search-field::placeholder { color: var(--muted); }
.search-form .search-field:focus { border-color: var(--accent); }
.search-form .search-submit {
  background: var(--accent);
  color: var(--black);
  border: none;
  border-radius: 0 var(--r-sm) var(--r-sm) 0;
  padding: .7rem 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--ease);
  font-size: .85rem;
  font-weight: 700;
  font-family: var(--ff-body);
  white-space: nowrap;
}
.search-form .search-submit:hover { background: var(--accent-h); }
.error-404__search .search-form,
.no-results .search-form { max-width: 420px; margin: 0 auto; }

/* ============================================================
   404 SAYFASI
   ============================================================ */
.error-404 { text-align: center; padding: 4rem 1rem; max-width: 680px; margin: 0 auto; }
.error-404__code {
  font-family: var(--ff-display);
  font-size: clamp(6rem, 20vw, 10rem);
  font-weight: 800; line-height: 1;
  color: var(--accent); opacity: .15;
  letter-spacing: -.05em; margin-bottom: -.5rem;
}
.error-404__title {
  font-family: var(--ff-display);
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 700; color: var(--white); margin-bottom: 1rem;
}
.error-404__desc { font-size: 1rem; color: var(--muted); margin-bottom: 2rem; line-height: 1.7; }
.error-404__search { margin-bottom: 2rem; }
.error-404__actions { margin-bottom: 3.5rem; }
.error-404__actions a {
  display: inline-flex; align-items: center; gap: .5rem;
  background: var(--accent); color: var(--black);
  padding: .75rem 1.75rem; border-radius: var(--r-sm);
  font-weight: 700; font-size: .875rem;
  letter-spacing: .05em; text-transform: uppercase;
  text-decoration: none; transition: all var(--ease);
}
.error-404__actions a:hover {
  background: var(--accent-h); transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(201,168,76,.3);
}
.error-404__recent h2 {
  font-family: var(--ff-display); font-size: 1.25rem;
  color: var(--white); margin-bottom: 1.5rem; text-align: left;
}

/* ============================================================
   YAZAR ARŞİV SAYFASI
   ============================================================ */
.author-archive-header {
  display: flex; align-items: flex-start; gap: 1.5rem;
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 2rem; margin-bottom: 2.5rem;
}
.author-archive-avatar img {
  width: 90px; height: 90px; border-radius: 50%;
  border: 3px solid var(--accent); display: block;
}
.author-archive-name {
  font-family: var(--ff-display); font-size: 1.6rem;
  font-weight: 700; color: var(--white); margin: .25rem 0 .6rem;
}
.author-archive-bio { font-size: .9rem; color: var(--muted); line-height: 1.7; margin-bottom: .75rem; }
.author-archive-meta { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; font-size: .8rem; color: var(--muted); }
.author-archive-website { color: var(--accent); text-decoration: none; }
.author-archive-website:hover { text-decoration: underline; }
.author-archive-count { background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-sm); padding: .2rem .6rem; font-size: .75rem; }
@media (max-width: 560px) {
  .author-archive-header { flex-direction: column; align-items: center; text-align: center; }
  .author-archive-meta { justify-content: center; }
}

/* ============================================================
   PAGE HEADER COUNT
   ============================================================ */
.page-header-count { font-size: .8rem; color: var(--muted); margin-top: .5rem; letter-spacing: .05em; }

/* ============================================================
   LACİVERT + BEYAZ TEMA
   ============================================================ */
body { background: #ffffff; color: #0d1117; }
a { color: var(--accent); }
a:hover { color: var(--accent-h); }
code { background: #f0f2f7; color: var(--accent); }
pre  { background: #f0f2f7; border-color: var(--border); color: var(--text); }

/* Header */
.site-header { background: #ffffff; border-bottom: 2px solid var(--accent); box-shadow: 0 2px 12px rgba(26,47,110,.08); }
.header-bar { background: var(--accent); border-bottom: none; }
.header-bar__date { color: rgba(255,255,255,.8); }
.header-bar__cat { color: rgba(255,255,255,.85); border-color: rgba(255,255,255,.2); }
.header-bar__cat:hover { color: #fff; background: rgba(255,255,255,.15); }
.header-bar__cat:first-child { border-left: none; }
.header-divider { background: rgba(255,255,255,.3); }
.site-title { color: var(--accent); }
.site-title em { color: var(--accent); }
.site-tagline { color: var(--muted); }

/* Sosyal ikonlar */
.header-social-btn { background: #ffffff !important; border: 1px solid rgba(255,255,255,.5) !important; color: #000000 !important; }
.header-social-btn svg { fill: #000000 !important; }
.header-social-btn:hover { background: #f0f2f7 !important; color: #000000 !important; transform: translateY(-2px); }
.header-social-btn:hover svg { fill: #000000 !important; }

/* Arama */
.header-search .search-field { background: #f0f2f7; border: 1px solid var(--border); color: var(--text); border-radius: var(--r-sm) 0 0 var(--r-sm); }
.header-search .search-field::placeholder { color: var(--muted); }
.header-search .search-field:focus { border-color: var(--accent); outline: none; }
.header-search .search-submit { background: var(--accent); color: #fff; border-radius: 0 var(--r-sm) var(--r-sm) 0; }
.header-search .search-submit:hover { background: var(--accent-h); }

/* Hamburger */
.menu-toggle { border: 1.5px solid var(--border); background: transparent; }
.menu-toggle:hover { border-color: var(--accent); }
.menu-toggle__bar { background: var(--text); }

/* Nav */
.header-nav { background: #ffffff; }
.nav-menu > li > a { color: var(--text); font-weight: 600; }
.nav-menu > li > a:hover { color: var(--accent); }
.sub-menu { background: #ffffff; border: 1px solid var(--border); box-shadow: 0 8px 32px rgba(26,47,110,.12); }
.sub-menu li a { color: var(--text); }
.sub-menu li a:hover { color: var(--accent); background: #f0f2f7; }

/* Badge & Butonlar */
.badge { background: var(--accent); color: #fff; }
.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { background: var(--accent-h); color: #fff; }
.btn-outline { background: transparent; color: var(--accent); border: 1.5px solid var(--accent); }
.btn-outline:hover { background: var(--accent); color: #fff; }

/* Post kartları — hover'da border değişmesin */
.post-card { background: #ffffff; border: 1px solid var(--border); }
.post-card:hover { transform: translateY(-3px); box-shadow: 0 8px 32px rgba(26,47,110,.10); border-color: var(--border) !important; }
.post-card__title a { color: var(--text); }
.post-card__title a:hover { color: var(--accent); }
.post-card__excerpt { color: #0d1117 !important; }
.post-card__author a { color: var(--muted); }
.post-card__meta { color: var(--muted); }
.post-card__readtime { background: #f0f2f7; color: var(--muted); border-radius: 2rem; }

/* Sayfalama */
.pagination a, .pagination span { background: #fff; border: 1px solid var(--border); color: var(--text); }
.pagination .current { background: var(--accent); color: #fff; border-color: var(--accent); }
.pagination a:hover { background: #f0f2f7; border-color: var(--accent); color: var(--accent); }

/* Arama formu */
.search-form { display: flex; align-items: center; width: 100%; }
.search-form .search-field { flex: 1; background: #fff; border: 1px solid var(--border); border-right: none; border-radius: var(--r-sm) 0 0 var(--r-sm); padding: .7rem 1rem; color: var(--text); font-size: .9rem; font-family: var(--ff-body); outline: none; transition: border-color var(--ease); }
.search-form .search-field::placeholder { color: var(--muted); }
.search-form .search-field:focus { border-color: var(--accent); }
.search-form .search-submit { background: var(--accent); color: #fff; border: none; border-radius: 0 var(--r-sm) var(--r-sm) 0; padding: .7rem 1.1rem; cursor: pointer; display: flex; align-items: center; justify-content: center; font-weight: 700; font-family: var(--ff-body); transition: background var(--ease); }
.search-form .search-submit:hover { background: var(--accent-h); }
.no-results h3 { color: var(--text); }
.no-results p { color: var(--muted); }

/* Sidebar */
.sidebar-block { background: #ffffff; border: 1px solid var(--border); border-radius: var(--r-lg); }
.sidebar-title { color: var(--text); border-bottom: 2px solid var(--accent); padding-bottom: .6rem; }
.sidebar-title-icon { color: var(--accent); }
.featured-list li a, .neighbors-list li a { color: var(--text); }
.featured-list li a:hover, .neighbors-list li a:hover { color: var(--accent); }
.recent-post-title { color: var(--text); }
.recent-post-title:hover { color: var(--accent); }
.recent-post-date { color: var(--muted); }
.category-list a { color: var(--muted); }
.category-list a:hover { color: var(--accent); }
.tag-cloud-link { background: #f0f2f7; border: 1px solid var(--border); color: var(--muted); border-radius: 2rem; padding: .25rem .65rem; display: inline-block; margin: .2rem; font-size: .8rem !important; transition: all var(--ease); }
.tag-cloud-link:hover { background: var(--accent); color: #fff; border-color: var(--accent); }

/* Single */
.single-title { color: var(--text); }
.single-content { color: var(--text); line-height: 1.85; }
.single-content h2, .single-content h3, .single-content h4 { color: var(--text); }
.tag-link { background: #f0f2f7; border: 1px solid var(--border); color: var(--muted); border-radius: 2rem; padding: .3rem .8rem; font-size: .8rem; display: inline-block; margin: .2rem; transition: all var(--ease); }
.tag-link:hover { background: var(--accent); color: #fff; border-color: var(--accent); }
.share-btn { background: #f0f2f7; border: 1px solid var(--border); color: var(--text); border-radius: var(--r-sm); padding: .4rem .8rem; font-weight: 700; font-size: .8rem; transition: all var(--ease); }
.share-btn:hover { background: var(--accent); color: #fff; border-color: var(--accent); }
.related-card { background: #fff; border: 1px solid var(--border); }
.related-card:hover { border-color: var(--border) !important; box-shadow: 0 6px 24px rgba(26,47,110,.10); }
.related-card__title a { color: var(--text); }
.related-card__excerpt { color: #0d1117 !important; }
.related-card__meta { color: var(--muted); }
.author-box { background: #f0f2f7; border: 1px solid var(--border); border-radius: var(--r-lg); border-left: 4px solid var(--accent); }
.author-box__label { color: var(--accent); }
.author-box__name a { color: var(--text); font-weight: 700; }
.author-box__bio { color: var(--muted); }
.post-nav-item { background: #fff; border: 1px solid var(--border); }
.post-nav-item:hover { border-color: var(--border) !important; }
.post-nav-dir { color: var(--accent); }
.post-nav-title { color: var(--text); }

/* Yorumlar */
.comments-count { color: #ffffff !important; }
.comment-body { background: #ffffff !important; border: 1px solid var(--border); }
.comment-item.is-reply .comment-body { background: #f0f2f7 !important; border-left: 3px solid var(--accent) !important; }
.comment-item .children .children .comment-item.is-reply .comment-body { background: #e8ebf4 !important; }
.comment-item:hover .comment-body { border-color: rgba(26,47,110,.3); box-shadow: 0 6px 24px rgba(26,47,110,.10); }
.comment-author-name a { color: #0d1117 !important; font-weight: 600; }
.comment-content, .comment-content p { color: #0d1117 !important; }
.comment-time { color: var(--muted); }
.comment-reply-wrap a { color: var(--accent) !important; font-size: .82rem; font-weight: 600; }
.comment-edit-wrap a { color: var(--muted) !important; }
.comment-reply-indicator { color: var(--accent); background: rgba(26,47,110,.07); border-color: rgba(26,47,110,.18); }
.comment-form__header { background: #ffffff !important; color: #0d1117 !important; padding-bottom: 1rem; margin-bottom: 1.5rem; border-bottom: 1px solid var(--border); }
.comment-form__title-wrap, .comment-form__title-wrap * { color: #0d1117 !important; background: transparent !important; }
#cancel-comment-reply-link { color: var(--accent) !important; font-size: .8rem; margin-left: .5rem; }
.comment-form label[for="comment"],
.comment-form label[for="author"],
.comment-form label[for="email"],
.comment-form label[for="url"],
.comment-form__field label { color: #0d1117 !important; font-weight: 600; font-size: .875rem; display: block; padding: 20px 0 6px; }
.comment-form label .required { color: var(--accent); }
.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"],
.comment-form textarea { background: #fff; border: 1px solid var(--border); color: #0d1117; border-radius: var(--r-sm); padding: .65rem .9rem; font-family: var(--ff-body); font-size: .9rem; width: 100%; }
.comment-form input:focus, .comment-form textarea:focus { border-color: var(--accent); outline: none; box-shadow: 0 0 0 3px rgba(26,47,110,.08); }
.comment-submit-btn { background: var(--accent); color: #fff; }
.comment-submit-btn:hover { background: var(--accent-h); }
.comments-title { color: #0d1117 !important; }
.comments-closed { background: #f0f2f7; color: var(--muted); }

/* Page/Section */
.page-header-title { color: var(--text); }
.page-header-desc, .page-header-count { color: var(--muted); }
.section-label { color: var(--accent); }
.error-404__title { color: var(--text); }
.error-404__desc { color: var(--muted); }
.error-404__actions a { background: var(--accent); color: #fff; }

/* Footer */
.site-footer { background: var(--accent); }
.footer-brand .site-title { color: #fff; }
.footer-brand p { color: rgba(255,255,255,.75); }
.footer-col h4 { color: rgba(255,255,255,.55); }
.footer-col ul li a { color: rgba(255,255,255,.8); }
.footer-col ul li a:hover { color: #fff; }
.footer-bottom { background: rgba(0,0,0,.2); border-top: 1px solid rgba(255,255,255,.15); color: rgba(255,255,255,.6); }
.footer-bottom a { color: rgba(255,255,255,.75); }
.footer-bottom a:hover { color: #fff; }
.social-links a { background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.2); color: rgba(255,255,255,.85); }
.social-links a:hover { background: #fff; border-color: #fff; color: var(--accent); }
.scroll-top { background: var(--accent); color: #fff; }
.scroll-top:hover { background: var(--accent-h); }
