/* ==========================================================================
   Kozan Ticaret Odası 2026 — Ana Stil Dosyası
   Tasarım sistemi (tokens) → temel → bileşenler → şablonlar → responsive
   Bağımlılık yok. İkonlar satır içi SVG (kto_icon). Renkler --kto-* değişkenleri
   ile yönetilir; Customizer header.php içinde bu değişkenleri override edebilir.
   ========================================================================== */

/* --------------------------------------------------------------------------
   1) DESIGN TOKENS
   -------------------------------------------------------------------------- */
:root {
  /* Marka renkleri (Customizer ile override edilebilir) */
  --kto-brand:        #103e7e;
  --kto-brand-dark:   #0a2a57;
  --kto-brand-darker: #06203f;
  --kto-brand-bright: #2b7de0;
  --kto-brand-soft:   #e8f0fb;
  --kto-accent:       #c8992e;
  --kto-accent-soft:  #f7eccb;

  /* Nötrler */
  --kto-ink:      #0f172a;
  --kto-ink-2:    #334155;
  --kto-muted:    #64748b;
  --kto-muted-2:  #94a3b8;
  --kto-line:     #e6ebf2;
  --kto-line-2:   #d7dfea;
  --kto-surface:  #f5f8fc;
  --kto-surface-2:#eef3fa;
  --kto-white:    #ffffff;

  /* Durum renkleri */
  --kto-success: #1f9d61;
  --kto-danger:  #d6453d;

  /* Tipografi */
  --kto-font-body: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --kto-font-head: "Plus Jakarta Sans", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  /* Ölçek */
  --kto-container: 1240px;
  --kto-gap: clamp(16px, 3vw, 32px);
  --kto-radius-sm: 10px;
  --kto-radius: 16px;
  --kto-radius-lg: 24px;
  --kto-radius-pill: 999px;

  /* Gölgeler */
  --kto-shadow-xs: 0 1px 2px rgba(15, 23, 42, .06);
  --kto-shadow-sm: 0 2px 8px rgba(15, 23, 42, .06);
  --kto-shadow:    0 12px 30px -12px rgba(16, 62, 126, .22);
  --kto-shadow-lg: 0 30px 60px -22px rgba(16, 62, 126, .35);

  /* Geçişler */
  --kto-t: 220ms cubic-bezier(.2, .7, .3, 1);

  /* Header yükseklikleri */
  --kto-topbar-h: 40px;
  --kto-header-h: 80px;
}

/* --------------------------------------------------------------------------
   2) RESET & TEMEL
   -------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
  /* Kayan şerit reduced-motion'da tamamen dursun (sıçrama yapmasın) */
  .ticker__track { animation: none !important; transform: none !important; }
  .whatsapp-float::after { animation: none !important; display: none; }
}

body {
  margin: 0;
  font-family: var(--kto-font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--kto-ink-2);
  background: var(--kto-white);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, svg, video { display: block; max-width: 100%; height: auto; }
/* Çizgi ikonlar fill="none" stroke="currentColor"; marka ikonları fill="currentColor"
   olarak satır içi tanımlıdır — global fill kuralı bilinçli olarak yoktur. */
a { color: var(--kto-brand); text-decoration: none; transition: color var(--kto-t); }
a:hover { color: var(--kto-brand-bright); }
ul, ol { list-style: none; padding: 0; }
button { font: inherit; color: inherit; cursor: pointer; background: none; border: 0; }
input, textarea, select, button { font-family: inherit; }

h1, h2, h3, h4, h5 {
  font-family: var(--kto-font-head);
  color: var(--kto-ink);
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: -0.01em;
}

::selection { background: var(--kto-brand); color: #fff; }

:focus-visible {
  outline: 3px solid var(--kto-brand-bright);
  outline-offset: 2px;
  border-radius: 4px;
}

/* Erişilebilirlik */
.sr-only, .screen-reader-text {
  position: absolute !important; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
/* Klavye ile odaklandığında WP'nin "atla" bağlantıları görünür olsun */
.screen-reader-text:focus {
  position: fixed !important; top: 8px; left: 8px; z-index: 1000;
  width: auto; height: auto; clip: auto; margin: 0;
  padding: 12px 18px; background: var(--kto-brand); color: #fff; border-radius: 8px; font-weight: 600;
}
/* Skip-link hedefi odaklanınca artık çerçeve gösterme */
.site-content:focus { outline: none; }
.skip-link {
  position: fixed; top: -100px; left: 12px; z-index: 1000;
  background: var(--kto-brand); color: #fff; padding: 12px 18px;
  border-radius: 0 0 var(--kto-radius-sm) var(--kto-radius-sm); font-weight: 600;
  transition: top var(--kto-t);
}
.skip-link:focus { top: 0; color: #fff; }

/* --------------------------------------------------------------------------
   3) DÜZEN YARDIMCILARI
   -------------------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--kto-container);
  margin-inline: auto;
  padding-inline: clamp(16px, 4vw, 28px);
}
.section { padding-block: clamp(48px, 7vw, 88px); }
.section--tight { padding-block: clamp(32px, 4vw, 52px); }
.section--surface { background: var(--kto-surface); border-top: 1px solid var(--kto-line); border-bottom: 1px solid var(--kto-line); }
.section--brand {
  background: linear-gradient(160deg, var(--kto-brand-darker), var(--kto-brand));
  color: #dbe6f5;
}

.section__head {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 24px; flex-wrap: wrap; margin-bottom: clamp(24px, 3vw, 40px);
}
.section__head--center { flex-direction: column; align-items: center; text-align: center; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--kto-font-head); font-weight: 700; font-size: .78rem;
  letter-spacing: .14em; text-transform: uppercase; color: var(--kto-brand-bright);
  margin-bottom: 10px;
}
.eyebrow::before { content: ""; width: 22px; height: 2px; background: var(--kto-accent); border-radius: 2px; }
.section__head--center .eyebrow::before { display: none; }
.section__title {
  font-size: clamp(1.6rem, 3.2vw, 2.35rem); font-weight: 800; color: var(--kto-ink); line-height: 1.15;
}
.section--brand .section__title { color: #fff; }
.section__subtitle { color: var(--kto-muted); max-width: 60ch; margin-top: 10px; }
.section--brand .section__subtitle { color: #b9cbe6; }
.section__link {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 600; color: var(--kto-brand); white-space: nowrap;
}
.section__link svg { width: 18px; height: 18px; transition: transform var(--kto-t); }
.section__link:hover svg { transform: translateX(4px); }

/* İkon ölçeği */
.icon { display: inline-block; width: 20px; height: 20px; flex: none; vertical-align: middle; }
.icon-sm { width: 16px; height: 16px; }
.icon-lg { width: 28px; height: 28px; }

/* --------------------------------------------------------------------------
   4) BUTONLAR & ROZETLER
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 12px 22px; border-radius: var(--kto-radius-pill);
  font-family: var(--kto-font-head); font-weight: 700; font-size: .95rem; line-height: 1;
  white-space: nowrap; cursor: pointer; transition: all var(--kto-t);
  border: 2px solid transparent;
}
.btn svg { width: 18px; height: 18px; }
.btn--primary { background: var(--kto-brand); color: #fff; box-shadow: var(--kto-shadow); }
.btn--primary:hover { background: var(--kto-brand-dark); color: #fff; transform: translateY(-2px); }
.btn--gold { background: var(--kto-accent); color: #2a2207; }
.btn--gold:hover { background: #b8862a; color: #2a2207; transform: translateY(-2px); }
.btn--ghost { background: transparent; color: var(--kto-brand); border-color: var(--kto-line-2); }
.btn--ghost:hover { border-color: var(--kto-brand); color: var(--kto-brand); background: var(--kto-brand-soft); }
.btn--light { background: rgba(255,255,255,.14); color: #fff; border-color: rgba(255,255,255,.28); }
.btn--light:hover { background: #fff; color: var(--kto-brand-dark); }
.btn--sm { padding: 9px 16px; font-size: .85rem; }
.btn--lg { padding: 15px 30px; font-size: 1.02rem; }
.btn--block { width: 100%; }

.tag {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 5px 12px; border-radius: var(--kto-radius-pill);
  font-family: var(--kto-font-head); font-size: .72rem; font-weight: 700;
  letter-spacing: .04em; text-transform: uppercase;
  background: var(--kto-brand-soft); color: var(--kto-brand);
}
.tag--gold { background: var(--kto-accent-soft); color: #8a6a12; }
.tag--solid { background: var(--kto-brand); color: #fff; }

/* --------------------------------------------------------------------------
   5) TOPBAR
   -------------------------------------------------------------------------- */
.topbar {
  background: var(--kto-brand-darker); color: #c8d6ec;
  font-size: .82rem; border-bottom: 1px solid rgba(255,255,255,.06);
}
.topbar__inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; min-height: var(--kto-topbar-h); }
.topbar__contact { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; }
.topbar__item { display: inline-flex; align-items: center; gap: 8px; color: #c8d6ec; }
.topbar__item svg { width: 15px; height: 15px; color: var(--kto-accent); }
.topbar__item:hover { color: #fff; }
.topbar__right { display: flex; align-items: center; gap: 18px; }
.topbar__social { display: flex; align-items: center; gap: 6px; }
.topbar__social a {
  display: inline-grid; place-items: center; width: 30px; height: 30px;
  border-radius: 50%; color: #c8d6ec; background: rgba(255,255,255,.08); transition: all var(--kto-t);
}
.topbar__social a:hover { background: var(--kto-accent); color: #2a2207; transform: translateY(-2px); }
.topbar__social svg { width: 14px; height: 14px; }
.topbar__menu { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.topbar__menu a { color: #c8d6ec; }
.topbar__menu a:hover { color: #fff; }

/* --------------------------------------------------------------------------
   6) HEADER & NAV
   -------------------------------------------------------------------------- */
.site-header { position: sticky; top: 0; z-index: 200; background: rgba(255,255,255,.92); backdrop-filter: saturate(160%) blur(12px); border-bottom: 1px solid var(--kto-line); transition: box-shadow var(--kto-t), background var(--kto-t); }
.site-header.is-stuck { box-shadow: var(--kto-shadow-sm); background: rgba(255,255,255,.97); }
.header__inner { display: flex; align-items: center; gap: 24px; min-height: var(--kto-header-h); }

.brand { display: flex; align-items: center; gap: 14px; flex: none; }
.brand__home { display: flex; align-items: center; gap: 13px; }
.brand__logo { height: 60px; width: auto; flex: none; }
.brand__mark { width: 54px; height: 54px; border-radius: 14px; background: linear-gradient(150deg, var(--kto-brand), var(--kto-brand-bright)); color: #fff; display: grid; place-items: center; font-family: var(--kto-font-head); font-weight: 800; font-size: 1.25rem; box-shadow: var(--kto-shadow); }
.brand__text { display: flex; flex-direction: column; line-height: 1.12; }
.brand__name { font-family: var(--kto-font-head); font-weight: 800; font-size: 1.12rem; color: var(--kto-ink); letter-spacing: -.01em; }
.brand__tagline { font-size: .74rem; color: var(--kto-muted); letter-spacing: .06em; text-transform: uppercase; }

.primary-nav { margin-left: auto; }
.menu { display: flex; align-items: center; gap: 0; }
.menu .menu__item { position: relative; }
.menu__link {
  display: inline-flex; align-items: center; gap: 6px; white-space: nowrap;
  padding: 9px 12px; border-radius: var(--kto-radius-pill);
  font-family: var(--kto-font-head); font-weight: 600; font-size: .92rem; color: var(--kto-ink-2);
  transition: all var(--kto-t);
}
@media (max-width: 1200px) { .menu__link { padding: 9px 10px; font-size: .88rem; } }
.menu__link:hover, .menu .menu__item:hover > .menu__link,
.menu .current-menu-item > .menu__link, .menu .current_page_item > .menu__link,
.menu .current-menu-parent > .menu__link {
  color: var(--kto-brand); background: var(--kto-brand-soft);
}
.menu .menu-item-has-children > .menu__link::after,
.menu .has-children > .menu__link::after {
  content: ""; width: 8px; height: 8px; border-right: 2px solid currentColor; border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-2px); opacity: .6; margin-left: 2px;
}
/* Alt menü */
.submenu, .menu .sub-menu {
  position: absolute; top: calc(100% + 12px); left: 0; min-width: 232px;
  background: #fff; border: 1px solid var(--kto-line); border-radius: var(--kto-radius); padding: 8px;
  box-shadow: var(--kto-shadow-lg); opacity: 0; visibility: hidden; transform: translateY(10px);
  transition: all var(--kto-t); z-index: 50;
}
.submenu::before, .menu .sub-menu::before { content: ""; position: absolute; top: -8px; left: 24px; width: 14px; height: 14px; background: #fff; border-left: 1px solid var(--kto-line); border-top: 1px solid var(--kto-line); transform: rotate(45deg); }
.menu .menu__item:hover > .submenu, .menu .menu-item-has-children:hover > .sub-menu,
.menu .menu__item:focus-within > .submenu, .menu .menu-item-has-children:focus-within > .sub-menu {
  opacity: 1; visibility: visible; transform: translateY(0);
}
/* Uzun açılır menüler (7+ öğe) iki sütunlu mega panel olur */
.submenu:has(> li:nth-child(7)), .menu .sub-menu:has(> li:nth-child(7)) {
  display: grid; grid-template-columns: 1fr 1fr; min-width: 480px;
}
.submenu a, .menu .sub-menu a {
  display: block; padding: 10px 14px; border-radius: var(--kto-radius-sm);
  font-size: .92rem; font-weight: 500; color: var(--kto-ink-2);
}
.submenu a:hover, .menu .sub-menu a:hover { background: var(--kto-brand-soft); color: var(--kto-brand); padding-left: 18px; }

.header__actions { display: flex; align-items: center; gap: 10px; flex: none; }
.header__cta { min-height: 44px; }
.icon-btn {
  display: inline-grid; place-items: center; width: 44px; height: 44px; border-radius: 12px;
  color: var(--kto-ink); background: var(--kto-surface); border: 1px solid var(--kto-line); transition: all var(--kto-t);
}
.icon-btn:hover { background: var(--kto-brand-soft); color: var(--kto-brand); border-color: var(--kto-brand-soft); }
.icon-btn svg { width: 20px; height: 20px; }
.nav-toggle { display: none; }

/* Mobil çekmece menü */
.drawer { position: fixed; inset: 0; z-index: 300; visibility: hidden; }
.drawer.is-open { visibility: visible; }
.drawer__backdrop { position: absolute; inset: 0; background: rgba(6,32,63,.5); opacity: 0; transition: opacity var(--kto-t); }
.drawer.is-open .drawer__backdrop { opacity: 1; }
.drawer__panel {
  position: absolute; top: 0; right: 0; height: 100%; width: min(360px, 86vw);
  background: #fff; box-shadow: var(--kto-shadow-lg); transform: translateX(100%);
  transition: transform var(--kto-t); display: flex; flex-direction: column; overflow-y: auto;
}
.drawer.is-open .drawer__panel { transform: translateX(0); }
.drawer__head { display: flex; align-items: center; justify-content: space-between; padding: 18px 20px; border-bottom: 1px solid var(--kto-line); }
.drawer__body { padding: 12px 14px 28px; }
.drawer__menu a { display: flex; align-items: center; justify-content: space-between; padding: 13px 12px; border-radius: var(--kto-radius-sm); font-family: var(--kto-font-head); font-weight: 600; color: var(--kto-ink); border-bottom: 1px solid var(--kto-line); }
.drawer__menu a:hover { background: var(--kto-brand-soft); color: var(--kto-brand); }
.drawer__menu .sub-menu { padding-left: 12px; }
.drawer__menu .sub-menu a { font-weight: 500; font-size: .92rem; color: var(--kto-ink-2); }
.drawer__cta { margin-top: 18px; display: grid; gap: 10px; }

/* Arama modalı */
.search-modal { position: fixed; inset: 0; z-index: 320; display: grid; place-items: start center; padding-top: 14vh; background: rgba(6,32,63,.55); backdrop-filter: blur(4px); opacity: 0; visibility: hidden; transition: opacity var(--kto-t); }
.search-modal.is-open { opacity: 1; visibility: visible; }
.search-modal__inner { width: min(640px, 92vw); transform: translateY(-14px); transition: transform var(--kto-t); }
.search-modal.is-open .search-modal__inner { transform: translateY(0); }
.search-modal__close { position: absolute; top: 22px; right: 22px; color: #fff; width: 44px; height: 44px; display: grid; place-items: center; border-radius: 50%; background: rgba(255,255,255,.12); }
.search-modal__close:hover { background: rgba(255,255,255,.24); color: #fff; }

/* --------------------------------------------------------------------------
   7) DUYURU TICKER
   -------------------------------------------------------------------------- */
.ticker { background: #fff; border-bottom: 1px solid var(--kto-line); }
.ticker__inner { display: flex; align-items: center; gap: 16px; min-height: 50px; }
.ticker__label {
  display: inline-flex; align-items: center; gap: 8px; flex: none;
  background: var(--kto-accent); color: #2a2207; font-family: var(--kto-font-head);
  font-weight: 800; font-size: .8rem; letter-spacing: .04em; text-transform: uppercase;
  padding: 8px 16px; border-radius: var(--kto-radius-pill);
}
.ticker__label svg { width: 16px; height: 16px; }
.ticker__viewport { overflow: hidden; flex: 1; -webkit-mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent); mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent); }
.ticker__track { display: flex; align-items: center; gap: 44px; width: max-content; animation: kto-ticker 38s linear infinite; }
.ticker:hover .ticker__track { animation-play-state: paused; }
.ticker__item { display: inline-flex; align-items: center; gap: 10px; color: var(--kto-ink-2); font-weight: 500; white-space: nowrap; }
.ticker__item::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--kto-brand-bright); flex: none; }
.ticker__item:hover { color: var(--kto-brand); }
.ticker__toggle { position: relative; flex: none; width: 32px; height: 32px; border-radius: 50%; display: grid; place-items: center; color: var(--kto-muted); background: var(--kto-surface); border: 1px solid var(--kto-line); transition: all var(--kto-t); }
.ticker__toggle::before { content: ""; position: absolute; inset: -7px; } /* dokunma hedefini 44px'e genişlet */
.ticker__toggle:hover { color: var(--kto-brand); border-color: var(--kto-brand-soft); }
.ticker__toggle[aria-pressed="true"] { color: var(--kto-brand); background: var(--kto-brand-soft); }
@keyframes kto-ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* --------------------------------------------------------------------------
   8) HERO / MANŞET
   -------------------------------------------------------------------------- */
.hero { position: relative; background: var(--kto-brand-darker); }
.hero__grid { display: grid; grid-template-columns: 1.65fr 1fr; gap: 0; }
/* min-width:0 — grid hücresinin Swiper slaytlarını sınırlaması için (runaway genişlik fix) */
.hero__main { position: relative; min-width: 0; overflow: hidden; }
.hero-slider { position: relative; height: clamp(380px, 52vw, 600px); overflow: hidden; }
/* Swiper BAŞLATILANA KADAR ilk slaytı göster; init sonrası kontrolü tamamen
   Swiper'a bırak (yedek CSS'in fade düzeniyle çakışmasını önler). */
.hero-slider:not(.swiper-initialized) .swiper-wrapper { height: 100%; }
.hero-slider:not(.swiper-initialized) .swiper-slide { display: none; }
.hero-slider:not(.swiper-initialized) .swiper-slide:first-child { display: block; height: 100%; }
.hero-slide { position: relative; height: 100%; }
.hero-slide__media { position: absolute; inset: 0; }
.hero-slide__media img { width: 100%; height: 100%; object-fit: cover; }
.hero-slide__media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(6,32,63,.92) 0%, rgba(6,32,63,.45) 45%, rgba(6,32,63,.15) 100%); }
.hero-slide__content { position: absolute; left: 0; right: 0; bottom: 0; padding: clamp(24px, 4vw, 48px); z-index: 2; max-width: 760px; }
.hero-slide__cat { margin-bottom: 14px; }
.hero-slide__title { font-size: clamp(1.5rem, 3.4vw, 2.6rem); font-weight: 800; color: #fff; line-height: 1.16; text-shadow: 0 2px 24px rgba(0,0,0,.4); }
.hero-slide__title a { color: #fff; }
.hero-slide__title a:hover { color: #fff; text-decoration: underline; text-decoration-color: var(--kto-accent); text-underline-offset: 6px; }
.hero-slide__meta { display: flex; align-items: center; gap: 20px; margin-top: 16px; color: #cdd9ec; font-size: .88rem; flex-wrap: wrap; }
.hero-slide__meta span { display: inline-flex; align-items: center; gap: 7px; }
.hero-slide__meta svg { width: 16px; height: 16px; color: var(--kto-accent); }

.hero__nav { position: absolute; bottom: clamp(24px, 4vw, 48px); right: clamp(24px, 4vw, 48px); z-index: 4; display: flex; gap: 10px; }
.hero__nav button { width: 46px; height: 46px; border-radius: 50%; background: rgba(255,255,255,.16); color: #fff; display: grid; place-items: center; backdrop-filter: blur(6px); transition: all var(--kto-t); }
.hero__nav button:hover { background: #fff; color: var(--kto-brand-dark); }
.hero__nav svg { width: 20px; height: 20px; }

/* Hero yan liste */
.hero__aside { background: linear-gradient(180deg, var(--kto-brand-dark), var(--kto-brand-darker)); padding: clamp(18px, 2vw, 26px); display: flex; flex-direction: column; gap: 6px; }
.hero__aside-title { display: flex; align-items: center; gap: 10px; color: #fff; font-family: var(--kto-font-head); font-weight: 700; font-size: 1rem; padding-bottom: 14px; margin-bottom: 6px; border-bottom: 1px solid rgba(255,255,255,.12); }
.hero__aside-title svg { width: 18px; height: 18px; color: var(--kto-accent); }
.hero-mini { display: flex; gap: 14px; padding: 12px 8px; border-radius: var(--kto-radius-sm); transition: background var(--kto-t); }
.hero-mini:hover { background: rgba(255,255,255,.06); }
.hero-mini__img { width: 86px; height: 64px; border-radius: 10px; object-fit: cover; flex: none; }
.hero-mini__body { display: flex; flex-direction: column; gap: 6px; min-width: 0; }
.hero-mini__title { font-size: .92rem; font-weight: 600; color: #eaf1fb; line-height: 1.35; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.hero-mini:hover .hero-mini__title { color: #fff; }
.hero-mini__date { font-size: .76rem; color: #9fb6d6; display: inline-flex; align-items: center; gap: 6px; }
.hero-mini__date svg { width: 13px; height: 13px; }

/* --------------------------------------------------------------------------
   9) QUICK ACCESS (e-Hizmet kısayolları)
   -------------------------------------------------------------------------- */
.quick { margin-top: -38px; position: relative; z-index: 5; }
.quick__grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 16px; background: #fff; padding: 18px; border-radius: var(--kto-radius-lg); box-shadow: var(--kto-shadow-lg); border: 1px solid var(--kto-line); }
.quick-card { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 10px; padding: 20px 12px; border-radius: var(--kto-radius); transition: all var(--kto-t); }
.quick-card:hover { background: var(--kto-brand-soft); transform: translateY(-4px); }
.quick-card__icon { width: 56px; height: 56px; border-radius: 16px; display: grid; place-items: center; background: linear-gradient(150deg, var(--kto-brand), var(--kto-brand-bright)); color: #fff; box-shadow: var(--kto-shadow); transition: transform var(--kto-t); }
.quick-card:hover .quick-card__icon { transform: scale(1.06) rotate(-3deg); }
.quick-card__icon svg { width: 26px; height: 26px; }
.quick-card__title { font-family: var(--kto-font-head); font-weight: 700; font-size: .92rem; color: var(--kto-ink); line-height: 1.25; }

/* --------------------------------------------------------------------------
   10) BAŞKAN MESAJI
   -------------------------------------------------------------------------- */
.president__card { display: grid; grid-template-columns: clamp(220px, 26vw, 320px) 1fr; gap: clamp(20px, 3vw, 48px); align-items: center; background: #fff; border: 1px solid var(--kto-line); border-radius: var(--kto-radius-lg); padding: clamp(20px, 3vw, 36px); box-shadow: var(--kto-shadow-sm); overflow: hidden; }
.president__media { position: relative; }
.president__photo { width: 100%; aspect-ratio: 4/5; object-fit: cover; border-radius: var(--kto-radius); box-shadow: var(--kto-shadow); }
.president__badge { position: absolute; left: 16px; bottom: 16px; background: var(--kto-accent); color: #2a2207; font-family: var(--kto-font-head); font-weight: 800; font-size: .8rem; padding: 8px 14px; border-radius: var(--kto-radius-pill); box-shadow: var(--kto-shadow); }
.president__quote-mark { color: var(--kto-accent); width: 48px; height: 48px; opacity: .9; margin-bottom: 8px; }
.president__text { font-family: var(--kto-font-head); font-size: clamp(1.05rem, 1.8vw, 1.4rem); font-weight: 500; line-height: 1.55; color: var(--kto-ink); }
.president__sign { display: flex; align-items: center; gap: 16px; margin-top: 24px; padding-top: 22px; border-top: 1px solid var(--kto-line); }
.president__name { font-family: var(--kto-font-head); font-weight: 800; font-size: 1.1rem; color: var(--kto-ink); }
.president__role { font-size: .9rem; color: var(--kto-muted); }
.president__actions { margin-left: auto; }

/* --------------------------------------------------------------------------
   12) HABERLER
   -------------------------------------------------------------------------- */
.news__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(18px, 2.4vw, 28px); }
.news__grid--featured { grid-template-columns: 1.6fr 1fr 1fr; }
.news-card { display: flex; flex-direction: column; background: #fff; border: 1px solid var(--kto-line); border-radius: var(--kto-radius); overflow: hidden; transition: all var(--kto-t); height: 100%; }
.news-card:hover { transform: translateY(-6px); box-shadow: var(--kto-shadow); border-color: transparent; }
.news-card__media { position: relative; aspect-ratio: 16/10; overflow: hidden; background: var(--kto-surface-2); }
.news-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--kto-t); }
.news-card:hover .news-card__media img { transform: scale(1.06); }
.news-card__cat { position: absolute; top: 14px; left: 14px; z-index: 2; }
.news-card__body { padding: 20px; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.news-card__title { font-family: var(--kto-font-head); font-weight: 700; font-size: 1.08rem; line-height: 1.32; color: var(--kto-ink); display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.news-card__title a { color: inherit; }
.news-card:hover .news-card__title a { color: var(--kto-brand); }
.news-card__excerpt { color: var(--kto-muted); font-size: .92rem; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.news-card__meta { display: flex; align-items: center; gap: 18px; margin-top: auto; padding-top: 12px; border-top: 1px solid var(--kto-line); color: var(--kto-muted); font-size: .82rem; }
.news-card__meta span { display: inline-flex; align-items: center; gap: 6px; }
.news-card__meta svg { width: 15px; height: 15px; color: var(--kto-brand-bright); }

/* Öne çıkan büyük kart */
.news-card--lg { grid-row: span 2; }
.news-card--lg .news-card__media { aspect-ratio: auto; flex: 1; min-height: 240px; }
.news-card--lg .news-card__title { font-size: clamp(1.2rem, 2vw, 1.55rem); -webkit-line-clamp: 3; }
.news-card--lg .news-card__excerpt { -webkit-line-clamp: 3; }

/* --------------------------------------------------------------------------
   13) HİZMETLER
   -------------------------------------------------------------------------- */
.services__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(16px, 2.2vw, 24px); }
.service-card { position: relative; background: #fff; border: 1px solid var(--kto-line); border-radius: var(--kto-radius); padding: 28px 26px; transition: all var(--kto-t); overflow: hidden; }
.service-card::before { content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 4px; background: var(--kto-brand); transform: scaleY(0); transform-origin: top; transition: transform var(--kto-t); }
.service-card:hover { box-shadow: var(--kto-shadow); transform: translateY(-4px); border-color: transparent; }
.service-card:hover::before { transform: scaleY(1); }
.service-card__icon { width: 60px; height: 60px; border-radius: 16px; display: grid; place-items: center; background: var(--kto-brand-soft); color: var(--kto-brand); margin-bottom: 18px; transition: all var(--kto-t); }
.service-card:hover .service-card__icon { background: var(--kto-brand); color: #fff; }
.service-card__icon svg { width: 28px; height: 28px; }
.service-card__title { font-family: var(--kto-font-head); font-weight: 700; font-size: 1.12rem; color: var(--kto-ink); margin-bottom: 8px; }
.service-card__text { color: var(--kto-muted); font-size: .92rem; line-height: 1.6; }
.service-card__more { display: inline-flex; align-items: center; gap: 7px; margin-top: 16px; font-weight: 700; font-family: var(--kto-font-head); color: var(--kto-brand); font-size: .9rem; }
.service-card__more svg { width: 16px; height: 16px; transition: transform var(--kto-t); }
.service-card:hover .service-card__more svg { transform: translateX(4px); }

/* --------------------------------------------------------------------------
   14) ETKİNLİKLER
   -------------------------------------------------------------------------- */
.events__list { display: grid; gap: 14px; }
.event { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 22px; background: #fff; border: 1px solid var(--kto-line); border-radius: var(--kto-radius); padding: 18px 22px; transition: all var(--kto-t); }
.event:hover { box-shadow: var(--kto-shadow-sm); border-color: var(--kto-brand-soft); transform: translateX(4px); }
.event__date { width: 72px; height: 76px; border-radius: 14px; background: linear-gradient(160deg, var(--kto-brand), var(--kto-brand-dark)); color: #fff; display: grid; place-content: center; text-align: center; flex: none; }
.event__day { font-family: var(--kto-font-head); font-weight: 800; font-size: 1.7rem; line-height: 1; }
.event__mon { font-size: .74rem; text-transform: uppercase; letter-spacing: .08em; color: #bcd0ec; }
.event__title { font-family: var(--kto-font-head); font-weight: 700; font-size: 1.04rem; color: var(--kto-ink); line-height: 1.35; }
.event__meta { display: flex; gap: 16px; margin-top: 6px; color: var(--kto-muted); font-size: .84rem; flex-wrap: wrap; }
.event__meta span { display: inline-flex; align-items: center; gap: 6px; }
.event__meta svg { width: 14px; height: 14px; color: var(--kto-brand-bright); }
.event__go { width: 44px; height: 44px; border-radius: 50%; display: grid; place-items: center; background: var(--kto-surface); color: var(--kto-brand); flex: none; transition: all var(--kto-t); }
.event:hover .event__go { background: var(--kto-brand); color: #fff; }

/* --------------------------------------------------------------------------
   15) PARTNERLER / BAĞLANTILAR
   -------------------------------------------------------------------------- */
.partners__track { display: flex; align-items: center; justify-content: center; gap: clamp(28px, 6vw, 72px); flex-wrap: wrap; }
.partners__item { opacity: .6; filter: grayscale(1); transition: all var(--kto-t); }
.partners__item:hover { opacity: 1; filter: grayscale(0); }
.partners__item img { max-height: 56px; width: auto; }

/* --------------------------------------------------------------------------
   16) CTA BANDI
   -------------------------------------------------------------------------- */
.cta__inner { position: relative; overflow: hidden; border-radius: var(--kto-radius-lg); background: linear-gradient(135deg, var(--kto-brand-dark), var(--kto-brand)); padding: clamp(32px, 5vw, 56px); display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap; box-shadow: var(--kto-shadow-lg); }
.cta__inner::after { content: ""; position: absolute; right: -60px; top: -60px; width: 280px; height: 280px; background: radial-gradient(circle, rgba(200,153,46,.35), transparent 70%); }
.cta__body { position: relative; z-index: 2; max-width: 60ch; }
.cta__title { font-size: clamp(1.5rem, 3vw, 2.1rem); font-weight: 800; color: #fff; }
.cta__text { color: #c5d6ee; margin-top: 10px; }
.cta__actions { position: relative; z-index: 2; display: flex; gap: 12px; flex-wrap: wrap; }

/* --------------------------------------------------------------------------
   17) FOOTER
   -------------------------------------------------------------------------- */
.site-footer { background: var(--kto-brand-darker); color: #aebfd6; }
.footer__top { padding-block: clamp(48px, 6vw, 72px); border-bottom: 1px solid rgba(255,255,255,.08); }
.footer__cols { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.4fr; gap: clamp(28px, 4vw, 52px); }
.footer__brand { display: flex; align-items: center; gap: 14px; margin-bottom: 18px; }
.footer__logo { height: 52px; width: auto; }
.footer__logo-chip { width: 56px; height: 56px; border-radius: 50%; background: #fff; padding: 4px; object-fit: contain; flex: none; }
.footer__brand-name { font-family: var(--kto-font-head); font-weight: 800; font-size: 1.1rem; color: #fff; line-height: 1.2; }
.footer__affiliate { margin-top: 24px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.08); }
.footer__affiliate-link {
  display: inline-flex; align-items: center; gap: 14px;
  padding: 10px 16px 10px 10px;
  background: linear-gradient(135deg, rgba(255,255,255,.07), rgba(255,255,255,.03));
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 14px; text-decoration: none;
  transition: background var(--kto-t), border-color var(--kto-t), transform var(--kto-t);
}
.footer__affiliate-link:hover {
  background: linear-gradient(135deg, rgba(255,255,255,.11), rgba(255,255,255,.05));
  border-color: rgba(255,255,255,.18);
  transform: translateY(-2px);
}
.footer__affiliate-logo {
  width: 64px; height: 64px; border-radius: 14px; background: #fff;
  padding: 7px; object-fit: contain; flex: none;
  box-shadow: 0 4px 14px rgba(0,0,0,.18);
}
.footer__affiliate-text { display: flex; flex-direction: column; line-height: 1.25; }
.footer__affiliate-text strong {
  font-family: var(--kto-font-head); font-weight: 800;
  font-size: 1.05rem; color: #fff; letter-spacing: .02em;
}
.footer__affiliate-text small { font-size: .76rem; color: #b6c5da; margin-top: 2px; line-height: 1.35; }
.footer__about { font-size: .92rem; line-height: 1.7; color: #9fb2cc; }
.footer__social { display: flex; gap: 10px; margin-top: 22px; }
.footer__social a { width: 40px; height: 40px; border-radius: 12px; display: grid; place-items: center; background: rgba(255,255,255,.08); color: #cdd9ec; transition: all var(--kto-t); }
.footer__social a:hover { background: var(--kto-accent); color: #2a2207; transform: translateY(-3px); }
.footer__social svg { width: 18px; height: 18px; }
.footer__title { font-family: var(--kto-font-head); font-weight: 700; font-size: 1.02rem; color: #fff; margin-bottom: 20px; position: relative; padding-bottom: 12px; }
.footer__title::after { content: ""; position: absolute; left: 0; bottom: 0; width: 36px; height: 3px; border-radius: 3px; background: var(--kto-accent); }
.footer__menu li { margin-bottom: 4px; }
.footer__menu a { display: inline-flex; align-items: center; gap: 10px; padding: 6px 0; color: #aebfd6; font-size: .93rem; }
.footer__menu a::before { content: ""; width: 6px; height: 6px; border-right: 2px solid var(--kto-accent); border-bottom: 2px solid var(--kto-accent); transform: rotate(-45deg); transition: transform var(--kto-t); }
.footer__menu a:hover { color: #fff; }
.footer__menu a:hover::before { transform: rotate(-45deg) translate(2px, 2px); }
.footer__contact { display: grid; gap: 16px; }
.footer__contact-item { display: flex; gap: 14px; align-items: flex-start; font-size: .92rem; color: #b9c8de; }
.footer__contact-item svg { width: 18px; height: 18px; color: var(--kto-accent); flex: none; margin-top: 2px; }
.footer__contact-item a { color: #b9c8de; }
.footer__contact-item a:hover { color: #fff; }
.footer__map { margin-top: 18px; border-radius: var(--kto-radius); overflow: hidden; border: 1px solid rgba(255,255,255,.1); line-height: 0; }
.footer__map iframe { width: 100%; height: 160px; border: 0; filter: grayscale(.3); }
.footer__bottom { padding-block: 20px; }
.footer__bottom-inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: .86rem; color: #8ea3c2; }
.footer__bottom a { color: #cdd9ec; }
.footer__bottom a:hover { color: #fff; }

/* Yukarı çık */
.backtop { position: fixed; right: 22px; bottom: 22px; z-index: 150; width: 50px; height: 50px; border-radius: 50%; background: var(--kto-brand); color: #fff; display: grid; place-items: center; box-shadow: var(--kto-shadow); opacity: 0; visibility: hidden; transform: translateY(12px); transition: all var(--kto-t); }
.backtop.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }
.backtop:hover { background: var(--kto-brand-dark); color: #fff; transform: translateY(-3px); }
.backtop svg { width: 22px; height: 22px; }

/* WhatsApp yüzen buton */
.whatsapp-float { position: fixed; left: 22px; bottom: 22px; z-index: 150; width: 56px; height: 56px; border-radius: 50%; background: #25d366; color: #fff; display: grid; place-items: center; box-shadow: 0 14px 30px -8px rgba(37,211,102,.6); transition: transform var(--kto-t), background var(--kto-t); }
.whatsapp-float:hover { background: #1ebe5d; color: #fff; transform: translateY(-3px) scale(1.05); }
.whatsapp-float svg { width: 30px; height: 30px; position: relative; z-index: 1; }
.whatsapp-float::after { content: ""; position: absolute; inset: 0; border-radius: 50%; border: 2px solid #25d366; animation: kto-pulse 2.2s ease-out infinite; }
@keyframes kto-pulse { 0% { transform: scale(1); opacity: .7; } 100% { transform: scale(1.7); opacity: 0; } }

/* --------------------------------------------------------------------------
   18) İÇ SAYFA BAŞLIĞI & BREADCRUMB
   -------------------------------------------------------------------------- */
.page-hero { position: relative; background: linear-gradient(140deg, var(--kto-brand-darker), var(--kto-brand)); color: #fff; padding-block: clamp(40px, 6vw, 72px); overflow: hidden; }
.page-hero::after { content: ""; position: absolute; right: -80px; top: -80px; width: 360px; height: 360px; background: radial-gradient(circle, rgba(43,125,224,.4), transparent 70%); }
.page-hero__inner { position: relative; z-index: 2; }
.page-hero__title { font-size: clamp(1.7rem, 3.6vw, 2.6rem); font-weight: 800; color: #fff; }
.breadcrumb { display: flex; align-items: center; flex-wrap: wrap; gap: 8px; font-size: .86rem; color: #bcd0ec; margin-bottom: 14px; }
.breadcrumb a { color: #bcd0ec; }
.breadcrumb a:hover { color: #fff; }
.breadcrumb svg { width: 14px; height: 14px; opacity: .7; }
.breadcrumb [aria-current] { color: #fff; font-weight: 600; }

/* --------------------------------------------------------------------------
   19) İÇERİK / TEKİL YAZI / SAYFA
   -------------------------------------------------------------------------- */
.content-wrap { display: grid; grid-template-columns: 1fr 340px; gap: clamp(28px, 4vw, 48px); align-items: start; }
.content-wrap--full { grid-template-columns: 1fr; }
.content-main { min-width: 0; }
.content-narrow { max-width: 940px; margin-inline: auto; }
.page-hero__desc { color: #bcd0ec; margin-top: 10px; max-width: 72ch; }
.page-links { margin-top: 22px; display: flex; gap: 8px; align-items: center; flex-wrap: wrap; font-weight: 600; }
.page-links a, .page-links > span { display: inline-grid; place-items: center; min-width: 38px; height: 38px; padding: 0 8px; border-radius: 10px; border: 1px solid var(--kto-line); }
.page-links a:hover { border-color: var(--kto-brand); color: var(--kto-brand); }

.post-card { background: #fff; border: 1px solid var(--kto-line); border-radius: var(--kto-radius); overflow: hidden; box-shadow: var(--kto-shadow-sm); }
.post__cover { aspect-ratio: 16/8; overflow: hidden; background: var(--kto-surface-2); }
.post__cover img { width: 100%; height: 100%; object-fit: cover; }
.post__body { padding: clamp(22px, 3vw, 40px); }
.post__meta { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; color: var(--kto-muted); font-size: .88rem; margin-bottom: 18px; }
.post__meta span, .post__meta a { display: inline-flex; align-items: center; gap: 7px; color: var(--kto-muted); }
.post__meta a:hover { color: var(--kto-brand); }
.post__meta svg { width: 16px; height: 16px; color: var(--kto-brand-bright); }
.post__title { font-size: clamp(1.5rem, 3vw, 2.2rem); font-weight: 800; color: var(--kto-ink); line-height: 1.18; margin-bottom: 16px; }

/* Uzun metin tipografisi */
.prose { color: var(--kto-ink-2); font-size: 1.02rem; line-height: 1.8; }
.prose > * + * { margin-top: 1.1em; }
.prose h2 { font-size: 1.6rem; margin-top: 1.6em; }
.prose h3 { font-size: 1.3rem; margin-top: 1.4em; }
.prose p { margin-bottom: 0; }
.prose a { color: var(--kto-brand); text-decoration: underline; text-underline-offset: 3px; text-decoration-color: var(--kto-line-2); }
.prose a:hover { text-decoration-color: var(--kto-brand); }
.prose img, .prose iframe { border-radius: var(--kto-radius); }
.prose ul, .prose ol { padding-left: 1.4em; }
.prose ul { list-style: disc; }
.prose ol { list-style: decimal; }
.prose li { margin-bottom: .4em; }
.prose li::marker { color: var(--kto-brand); }
.prose blockquote { border-left: 4px solid var(--kto-accent); background: var(--kto-surface); padding: 18px 24px; border-radius: 0 var(--kto-radius-sm) var(--kto-radius-sm) 0; font-size: 1.1rem; color: var(--kto-ink); font-style: italic; }
.prose table { width: 100%; border-collapse: collapse; font-size: .94rem; }
.prose th, .prose td { border: 1px solid var(--kto-line); padding: 12px 14px; text-align: left; }
.prose th { background: var(--kto-surface); font-family: var(--kto-font-head); color: var(--kto-ink); }
.prose figure { margin: 1.6em 0; }
.prose figcaption { font-size: .85rem; color: var(--kto-muted); text-align: center; margin-top: 8px; }
.prose code { background: var(--kto-surface-2); padding: 2px 7px; border-radius: 6px; font-size: .9em; }

/* WP varsayılan hizalamalar */
.alignleft { float: left; margin: 6px 24px 18px 0; }
.alignright { float: right; margin: 6px 0 18px 24px; }
.aligncenter { display: block; margin-inline: auto; }
.wp-caption { max-width: 100%; }
.wp-caption-text, .gallery-caption { font-size: .85rem; color: var(--kto-muted); }
.sticky, .gallery-caption, .bypostauthor { display: block; }
.wp-block-image img { border-radius: var(--kto-radius); }

/* Blok editör geniş / tam hizalama (klasik içerik kapsayıcısında) */
.prose .alignwide { width: min(1180px, 94vw); max-width: none; margin-left: calc(50% - min(590px, 47vw)); margin-right: calc(50% - min(590px, 47vw)); }
.prose .alignfull { width: 100vw; max-width: 100vw; margin-left: calc(50% - 50vw); margin-right: calc(50% - 50vw); border-radius: 0; }
.prose .alignfull img { border-radius: 0; }

/* Eski "personel listesi" (Meclis/Yönetim Kurulu vb.) → modern üye kartları */
.personellist { display: grid; grid-template-columns: repeat(auto-fill, minmax(204px, 1fr)); gap: 22px; margin: 26px 0; }
.personellist .cleared { display: none; }
/* Hiyerarşi: en üst rütbe (Başkan) ilk sırada, ortada ve vurgulu */
.personellist .personel:first-child { grid-column: 1 / -1; justify-self: center; width: 100%; max-width: 232px; border-top: 3px solid var(--kto-accent); }
@media (max-width: 520px) { .personellist { grid-template-columns: repeat(2, 1fr); gap: 14px; } }
.personel { background: #fff; border: 1px solid var(--kto-line); border-radius: var(--kto-radius); overflow: hidden; text-align: center; box-shadow: var(--kto-shadow-sm); transition: transform var(--kto-t), box-shadow var(--kto-t); }
.personel:hover { transform: translateY(-4px); box-shadow: var(--kto-shadow); }
.personel .resim, .personel img.resim { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; object-position: top center; background: var(--kto-surface-2); display: block; margin: 0; border-radius: 0; max-width: 100%; }
.personel .adsoyad { font-family: var(--kto-font-head); font-weight: 700; color: var(--kto-ink); font-size: 1rem; line-height: 1.3; padding: 14px 12px 2px; }
.personel .unvan { color: var(--kto-brand); font-size: .85rem; padding: 0 12px 16px; }
.personel .once, .personel .sonra { display: none; }

/* İç sayfa bölüm navigasyonu (kenar menüsü) */
.section-nav li { border-bottom: 1px solid var(--kto-line); }
.section-nav li:last-child { border-bottom: 0; }
.section-nav a { display: flex; align-items: center; gap: 10px; padding: 11px 2px; color: var(--kto-ink-2); font-weight: 500; font-size: .94rem; }
.section-nav a::before { content: ""; width: 6px; height: 6px; border-right: 2px solid var(--kto-brand-bright); border-bottom: 2px solid var(--kto-brand-bright); transform: rotate(-45deg); transition: transform var(--kto-t); flex: none; }
.section-nav a:hover { color: var(--kto-brand); }
.section-nav a:hover::before { transform: rotate(-45deg) translate(2px, 2px); }
.section-nav .is-current > a { color: var(--kto-brand); font-weight: 700; }
.section-nav .is-current > a::before { border-color: var(--kto-accent); }

/* Faydalı Bağlantılar kartları */
.uselinks__grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(216px, 1fr)); gap: 16px; }
.uselink { display: flex; align-items: center; gap: 14px; background: #fff; border: 1px solid var(--kto-line); border-radius: var(--kto-radius); padding: 16px 18px; transition: transform var(--kto-t), box-shadow var(--kto-t), border-color var(--kto-t); }
.uselink:hover { box-shadow: var(--kto-shadow); transform: translateY(-3px); border-color: transparent; }
.uselink__icon { width: 46px; height: 46px; border-radius: 12px; display: grid; place-items: center; background: var(--kto-brand-soft); color: var(--kto-brand); flex: none; transition: all var(--kto-t); }
.uselink:hover .uselink__icon { background: var(--kto-brand); color: #fff; }
.uselink__icon svg { width: 22px; height: 22px; }
.uselink__title { font-family: var(--kto-font-head); font-weight: 700; font-size: .94rem; color: var(--kto-ink); line-height: 1.25; }
.uselink__go { margin-left: auto; color: var(--kto-muted-2); flex: none; transition: transform var(--kto-t), color var(--kto-t); }
.uselink:hover .uselink__go { color: var(--kto-brand); transform: translateX(3px); }

/* Etiketler & paylaşım */
.post__tags { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; margin-top: 28px; padding-top: 22px; border-top: 1px solid var(--kto-line); }
.post__tags a { display: inline-flex; padding: 6px 14px; background: var(--kto-surface); border: 1px solid var(--kto-line); border-radius: var(--kto-radius-pill); font-size: .82rem; color: var(--kto-ink-2); font-weight: 500; }
.post__tags a:hover { background: var(--kto-brand-soft); color: var(--kto-brand); border-color: var(--kto-brand-soft); }
.share { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; margin-top: 24px; }
.share__label { font-family: var(--kto-font-head); font-weight: 700; color: var(--kto-ink); margin-right: 4px; }
.share a, .share__print { width: 42px; height: 42px; border-radius: 12px; display: grid; place-items: center; color: #fff; transition: all var(--kto-t); }
.share a:hover, .share__print:hover { transform: translateY(-3px); color: #fff; }
.share svg { width: 18px; height: 18px; }
.share__print { background: #475569; }
.share .fb { background: #1877f2; }
.share .x  { background: #0f1419; }
.share .wa { background: #25d366; }
.share .ln { background: #0a66c2; }
.share .tg { background: #229ed9; }

/* Yazar/önceki-sonraki */
.post-nav { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 28px; }
.post-nav a { display: flex; flex-direction: column; gap: 4px; padding: 18px 22px; background: #fff; border: 1px solid var(--kto-line); border-radius: var(--kto-radius); transition: all var(--kto-t); }
.post-nav a:hover { border-color: var(--kto-brand-soft); box-shadow: var(--kto-shadow-sm); }
.post-nav .label { font-size: .78rem; text-transform: uppercase; letter-spacing: .06em; color: var(--kto-muted); }
.post-nav .title { font-family: var(--kto-font-head); font-weight: 700; color: var(--kto-ink); font-size: .96rem; }
.post-nav .next { text-align: right; }

/* --------------------------------------------------------------------------
   20) ARŞİV / LİSTE
   -------------------------------------------------------------------------- */
.archive-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(18px, 2.4vw, 28px); }
.archive-grid--2 { grid-template-columns: repeat(2, 1fr); }

/* Sayfalama */
.pagination { display: flex; justify-content: center; gap: 8px; margin-top: 44px; flex-wrap: wrap; }
.pagination .page-numbers { display: inline-grid; place-items: center; min-width: 46px; height: 46px; padding: 0 10px; border-radius: 12px; background: #fff; border: 1px solid var(--kto-line); color: var(--kto-ink-2); font-family: var(--kto-font-head); font-weight: 700; transition: all var(--kto-t); }
.pagination a.page-numbers:hover { border-color: var(--kto-brand); color: var(--kto-brand); }
.pagination .page-numbers.current { background: var(--kto-brand); color: #fff; border-color: var(--kto-brand); }
.pagination .page-numbers.dots { background: transparent; border-color: transparent; }

/* --------------------------------------------------------------------------
   21) SIDEBAR / WIDGET
   -------------------------------------------------------------------------- */
.sidebar { display: grid; gap: 22px; position: sticky; top: calc(var(--kto-header-h) + 16px); }
.widget { background: #fff; border: 1px solid var(--kto-line); border-radius: var(--kto-radius); padding: 24px; }
.widget__title { font-family: var(--kto-font-head); font-weight: 700; font-size: 1.05rem; color: var(--kto-ink); margin-bottom: 18px; padding-bottom: 14px; border-bottom: 1px solid var(--kto-line); position: relative; }
.widget__title::after { content: ""; position: absolute; left: 0; bottom: -1px; width: 44px; height: 2px; background: var(--kto-accent); }
.widget ul li { padding: 9px 0; border-bottom: 1px dashed var(--kto-line); }
.widget ul li:last-child { border-bottom: 0; }
.widget ul li a { display: inline-flex; gap: 8px; color: var(--kto-ink-2); font-weight: 500; }
.widget ul li a:hover { color: var(--kto-brand); }
.widget select, .widget input[type="text"], .widget input[type="search"] { width: 100%; padding: 11px 14px; border: 1px solid var(--kto-line); border-radius: 12px; }

/* Yan haber widget */
.widget-post { display: flex; gap: 12px; padding: 12px 0; border-bottom: 1px solid var(--kto-line); }
.widget-post:last-child { border-bottom: 0; }
.widget-post__img { width: 78px; height: 60px; border-radius: 10px; object-fit: cover; flex: none; background: var(--kto-surface-2); }
.widget-post__title { font-family: var(--kto-font-head); font-weight: 600; font-size: .9rem; line-height: 1.35; color: var(--kto-ink); display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.widget-post:hover .widget-post__title { color: var(--kto-brand); }
.widget-post__date { font-size: .76rem; color: var(--kto-muted); margin-top: 4px; }

/* İletişim widget kutusu */
.widget--contact { background: linear-gradient(160deg, var(--kto-brand), var(--kto-brand-dark)); border: 0; color: #dbe6f5; }
.widget--contact .widget__title { color: #fff; border-color: rgba(255,255,255,.15); }
.widget--contact a { color: #fff; }

/* --------------------------------------------------------------------------
   22) ARAMA FORMU
   -------------------------------------------------------------------------- */
.search-form { display: flex; gap: 8px; }
.search-form__field { position: relative; flex: 1; }
.search-form__field svg { position: absolute; left: 16px; top: 50%; transform: translateY(-50%); width: 20px; height: 20px; color: var(--kto-muted); }
.search-form input[type="search"], .search-form input[type="text"] { width: 100%; padding: 14px 16px 14px 48px; border-radius: var(--kto-radius-pill); border: 1px solid var(--kto-line); background: #fff; font-size: 1rem; transition: border-color var(--kto-t); }
.search-form input[type="search"]:focus, .search-form input[type="text"]:focus { border-color: var(--kto-brand); outline: none; box-shadow: 0 0 0 3px var(--kto-brand-soft); }
.search-form button { padding-inline: 26px; border-radius: var(--kto-radius-pill); background: var(--kto-brand); color: #fff; font-family: var(--kto-font-head); font-weight: 700; }
.search-form button:hover { background: var(--kto-brand-dark); }
.search-modal .search-form input[type="search"] { padding-block: 18px; font-size: 1.1rem; box-shadow: var(--kto-shadow-lg); }

/* --------------------------------------------------------------------------
   22b) İLETİŞİM SAYFASI
   -------------------------------------------------------------------------- */
.contact-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(16px, 2vw, 24px); }
.contact-card { text-align: center; background: #fff; border: 1px solid var(--kto-line); border-radius: var(--kto-radius); padding: 30px 24px; transition: all var(--kto-t); }
.contact-card:hover { box-shadow: var(--kto-shadow); transform: translateY(-4px); border-color: transparent; }
.contact-card__icon { width: 60px; height: 60px; margin: 0 auto 16px; border-radius: 16px; display: grid; place-items: center; background: var(--kto-brand-soft); color: var(--kto-brand); }
.contact-card__icon svg { width: 28px; height: 28px; }
.contact-card__label { font-family: var(--kto-font-head); font-weight: 700; color: var(--kto-ink); margin-bottom: 6px; }
.contact-card__value { color: var(--kto-muted); font-size: .95rem; word-break: break-word; }
.contact-card__value a { color: var(--kto-muted); }
.contact-card__value a:hover { color: var(--kto-brand); }
.contact-map { margin-top: clamp(28px, 4vw, 44px); border-radius: var(--kto-radius-lg); overflow: hidden; border: 1px solid var(--kto-line); line-height: 0; }
.contact-map iframe { width: 100%; height: clamp(320px, 42vw, 460px); border: 0; }
@media (max-width: 860px) { .contact-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .contact-grid { grid-template-columns: 1fr; } }

/* --------------------------------------------------------------------------
   23) DURUMLAR: 404 / SONUÇ YOK
   -------------------------------------------------------------------------- */
.state { text-align: center; max-width: 620px; margin-inline: auto; padding-block: clamp(40px, 6vw, 72px); }
.state__code { font-family: var(--kto-font-head); font-weight: 800; font-size: clamp(4rem, 12vw, 8rem); line-height: 1; background: linear-gradient(140deg, var(--kto-brand), var(--kto-brand-bright)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.state__title { font-size: clamp(1.4rem, 3vw, 2rem); font-weight: 800; color: var(--kto-ink); margin: 12px 0 10px; }
.state__text { color: var(--kto-muted); margin-bottom: 26px; }
.state__actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* --------------------------------------------------------------------------
   24) YORUMLAR
   -------------------------------------------------------------------------- */
.comments { margin-top: 36px; }
.comments__title { font-family: var(--kto-font-head); font-weight: 800; font-size: 1.4rem; color: var(--kto-ink); margin-bottom: 24px; }
.comment-list { display: grid; gap: 18px; }
.comment-body { background: #fff; border: 1px solid var(--kto-line); border-radius: var(--kto-radius); padding: 22px; }
.comment-list .children { margin-top: 18px; margin-left: clamp(16px, 4vw, 48px); display: grid; gap: 18px; }
.comment-author { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.comment-author img { width: 48px; height: 48px; border-radius: 50%; }
.comment-author .fn { font-family: var(--kto-font-head); font-weight: 700; color: var(--kto-ink); font-style: normal; }
.comment-meta { font-size: .82rem; color: var(--kto-muted); }
.comment-respond { background: #fff; border: 1px solid var(--kto-line); border-radius: var(--kto-radius); padding: 28px; margin-top: 28px; }
.comment-form { display: grid; gap: 16px; }
.comment-form p { margin: 0; }
.comment-form label { display: block; font-weight: 600; color: var(--kto-ink); margin-bottom: 6px; font-size: .9rem; }
.comment-form input[type="text"], .comment-form input[type="email"], .comment-form input[type="url"], .comment-form textarea { width: 100%; padding: 13px 16px; border: 1px solid var(--kto-line); border-radius: 12px; font-size: 1rem; }
.comment-form input:focus, .comment-form textarea:focus { border-color: var(--kto-brand); outline: none; box-shadow: 0 0 0 3px var(--kto-brand-soft); }
.comment-form .form-submit input { background: var(--kto-brand); color: #fff; padding: 14px 30px; border-radius: var(--kto-radius-pill); font-family: var(--kto-font-head); font-weight: 700; cursor: pointer; }
.comment-form-author, .comment-form-email, .comment-form-url { display: inline-block; }

/* --------------------------------------------------------------------------
   25) REVEAL ANİMASYONU
   -------------------------------------------------------------------------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s cubic-bezier(.2,.7,.3,1); }
.reveal.is-in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: .08s; }
.reveal[data-delay="2"] { transition-delay: .16s; }
.reveal[data-delay="3"] { transition-delay: .24s; }
.reveal[data-delay="4"] { transition-delay: .32s; }
.reveal[data-delay="5"] { transition-delay: .40s; }

/* --------------------------------------------------------------------------
   26) RESPONSIVE
   -------------------------------------------------------------------------- */
@media (max-width: 1080px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero__aside { flex-direction: row; overflow-x: auto; gap: 14px; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; }
  .hero__aside-title { display: none; }
  .hero-mini { flex: none; width: min(78vw, 260px); scroll-snap-align: start; }
  .quick__grid { grid-template-columns: repeat(3, 1fr); }
  .footer__cols { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 960px) {
  .primary-nav { display: none; }
  .nav-toggle { display: inline-grid; }
  .news__grid, .news__grid--featured, .services__grid, .archive-grid { grid-template-columns: repeat(2, 1fr); }
  .news-card--lg { grid-row: span 1; }
  .news-card--lg .news-card__media { min-height: 200px; }
  .president__card { grid-template-columns: 1fr; }
  .president__media { max-width: 300px; margin-inline: auto; }
  .content-wrap { grid-template-columns: 1fr; }
  .sidebar { position: static; }
  .topbar__contact .topbar__item--address { display: none; }
}

@media (max-width: 640px) {
  :root { --kto-header-h: 68px; }
  .topbar { display: none; }
  .header__cta { display: none; } /* CTA drawer içinde mevcut */
  .quick__grid { grid-template-columns: repeat(2, 1fr); }
  .news__grid, .news__grid--featured, .services__grid, .archive-grid, .archive-grid--2 { grid-template-columns: 1fr; }
  .brand__tagline { display: none; }
  .brand__name { font-size: 1rem; }
  .cta__inner { flex-direction: column; align-items: flex-start; }
  .event { grid-template-columns: auto 1fr; gap: 14px; padding: 14px 16px; }
  .event__go { display: none; }
  .post-nav { grid-template-columns: 1fr; }
  .footer__cols { grid-template-columns: 1fr; }
  .section__head { flex-direction: column; align-items: flex-start; }

  /* Mobil ince ayarlar */
  .quick { margin-top: -20px; }
  .ticker__inner { gap: 10px; }
  .ticker__label { font-size: 0; gap: 0; padding: 9px 12px; } /* metni gizle, ikon kalsın → kayan alan genişler */
  .footer__menu a { padding: 10px 0; }
  .footer__menu li { margin-bottom: 0; }
  .widget ul li { padding: 12px 0; }
  .hero-mini__date, .news-card__meta, .widget-post__date, .event__meta { font-size: .8rem; }
  .whatsapp-float { left: 16px; bottom: max(16px, env(safe-area-inset-bottom)); width: 48px; height: 48px; }
  .whatsapp-float svg { width: 26px; height: 26px; }
  .backtop { right: 16px; bottom: max(16px, env(safe-area-inset-bottom)); width: 46px; height: 46px; }
}

/* Yazdırma */
@media print {
  .topbar, .site-header, .ticker, .site-footer, .backtop, .sidebar, .share, .post__tags, .post-nav, .comment-respond { display: none !important; }
  body { color: #000; }
  .post-card { border: 0; box-shadow: none; }
}
