/* =============================================
   YİĞİT HUKUK OFİSİ — Temiz CSS v1
   Elegant · Sade · Lüks · Responsive
   ============================================= */

/* === TOKENS === */
:root {
  --bg:        #f8f5f0;
  --bg-dark:   #0f0205;
  --bg-dark2:  #1a0408;
  --burg:      #6b0618;
  --burg-deep: #4a0410;
  --burg-soft: #8b1a2a;
  --gold:      #c9a84c;
  --gold-lt:   #dfc07a;
  --gold-dim:  rgba(201,168,76,.18);
  --cream:     #f8f5f0;
  --paper:     #fffdf8;
  --text:      #1c1410;
  --muted:     #6b5f57;
  --line:      rgba(60,30,18,.10);
  --line-lt:   rgba(255,255,255,.12);
  --shadow:    0 12px 40px rgba(30,15,8,.08);
  --shadow-sm: 0 4px 16px rgba(30,15,8,.06);
  --r:         16px;
  --r-sm:      10px;
  --r-lg:      22px;
}

/* === RESET === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: Cambria, Georgia, 'Times New Roman', serif;
  background: var(--cream);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, textarea, select {
  font-family: inherit;
  font-size: inherit;
}

/* === LAYOUT === */
.wrap { max-width: 1160px; margin: 0 auto; padding: 0 24px; }

/* === NAV === */
.topbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(12,2,5,.97);
  border-bottom: 1px solid rgba(201,168,76,.14);
  backdrop-filter: blur(12px);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  max-width: 1160px;
  margin: 0 auto;
  gap: 20px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.mark { width: 40px; height: 40px; border-radius: 50%; flex-shrink: 0; }
.brand strong {
  display: block;
  color: #f5ead8;
  font-size: 15px;
  letter-spacing: .06em;
  line-height: 1.15;
}
.brand span {
  display: block;
  color: rgba(201,168,76,.75);
  font-size: 9.5px;
  letter-spacing: .32em;
  text-transform: uppercase;
  line-height: 1.3;
  margin-top: 1px;
}
.menu {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.menu a {
  color: #d8ccbc;
  font-size: 13.5px;
  padding: 8px 14px;
  border-radius: 8px;
  transition: color .15s, background .15s;
}
.menu a:hover { color: var(--gold-lt); background: rgba(255,255,255,.05); }
.menu a.pill {
  border: 1px solid rgba(201,168,76,.40);
  color: var(--gold-lt);
  background: rgba(201,168,76,.07);
  font-weight: 700;
}
.menu a.pill:hover {
  background: var(--gold);
  color: var(--burg-deep);
  border-color: var(--gold);
}

/* hamburger — gizli masaüstünde */
.nav-toggle { display: none; }
.hamburger { display: none; }

/* === HERO === */
.hero {
  background: linear-gradient(140deg, #0f0205 0%, #2a0610 55%, #150305 100%);
  color: #fff;
  padding: 88px 24px 96px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 60px;
  align-items: center;
  max-width: 1160px;
  margin: 0 auto;
}
.eyebrow {
  font-size: 11px;
  letter-spacing: .42em;
  color: var(--gold);
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 16px;
}
.hero h1, .page-head h1 {
  font-size: 54px;
  line-height: .98;
  letter-spacing: -.025em;
  margin-bottom: 22px;
  color: #fff;
}
.hero p, .page-head p {
  font-size: 17px;
  line-height: 1.78;
  color: rgba(240,228,210,.82);
  max-width: 680px;
}
.actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 30px;
}

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 9px;
  padding: 12px 22px;
  font-weight: 700;
  font-size: 14px;
  border: none;
  cursor: pointer;
  transition: opacity .15s, transform .12s;
  line-height: 1;
  background: var(--gold);
  color: #1a0408;
}
.btn:hover { opacity: .88; transform: translateY(-1px); }
.btn.ghost {
  background: transparent;
  color: var(--gold-lt);
  border: 1px solid rgba(201,168,76,.38);
}
.btn.ghost:hover { background: rgba(201,168,76,.10); }
.btn.dark {
  background: rgba(255,255,255,.10);
  color: #f0e4cc;
  border: 1px solid rgba(255,255,255,.15);
}
.btn.dark:hover { background: rgba(255,255,255,.17); }

/* === HERO CARD === */
.hero-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(201,168,76,.18);
  border-radius: var(--r-lg);
  padding: 28px;
  backdrop-filter: blur(4px);
}
.hero-card h2 { font-size: 26px; color: #fff7ec; margin-bottom: 10px; }
.hero-card > p { font-size: 14.5px; color: rgba(230,214,188,.78); line-height: 1.6; margin-bottom: 0; }
.row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  border-top: 1px solid rgba(255,255,255,.10);
  padding: 13px 0;
  color: rgba(230,214,188,.85);
  font-size: 14.5px;
}
.row b { color: var(--gold); font-size: 12px; letter-spacing: .06em; flex-shrink: 0; }

/* === SECTIONS === */
.section { padding: 78px 24px; }
.section-tight { padding: 64px 24px; }
.section.dark {
  background: var(--bg-dark);
  color: #f5ead8;
}
.section h2 {
  font-size: 42px;
  line-height: 1.04;
  letter-spacing: -.02em;
  margin-bottom: 14px;
}
.lead {
  font-size: 16.5px;
  line-height: 1.80;
  color: var(--muted);
}
.section.dark .lead { color: rgba(220,200,175,.78); }
.section.dark h2 { color: #f5ead8; }

/* === INSTITUTIONAL (two-col text) === */
.institutional-box {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 52px;
  align-items: start;
}

/* === TWO COL === */
.two {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 52px;
  align-items: start;
}
.about-highlight h2 {
  font-size: 56px;
  line-height: .97;
  letter-spacing: -.03em;
  max-width: 420px;
}

/* === STATS === */
.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 28px;
}
.stat {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 20px;
  box-shadow: var(--shadow-sm);
}
.stat b {
  display: block;
  font-size: 28px;
  color: var(--burg);
  margin-bottom: 5px;
  line-height: 1;
}
.stat span { font-size: 14px; color: var(--muted); line-height: 1.5; }

/* === CARDS (dark bg) === */
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.card {
  background: rgba(255,255,255,.055);
  border: 1px solid rgba(201,168,76,.16);
  border-radius: var(--r);
  padding: 22px;
}
.card .tag, .card span.tag {
  display: block;
  color: var(--gold);
  font-size: 10.5px;
  letter-spacing: .32em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 12px;
}
.card h3 { font-size: 22px; margin-bottom: 10px; color: #f5ead8; }
.card p { font-size: 14.5px; line-height: 1.68; color: rgba(220,200,175,.75); }

/* cream cards */
.cream-card {
  background: var(--paper);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  color: var(--text);
}
.cream-card .tag { color: #a07415; }
.cream-card h3 { color: var(--text); }
.cream-card p { color: var(--muted); }

/* === PORTAL (çalışma alanları) === */
.home-portal { }
.portal-grid {
  display: grid;
  grid-template-columns: .75fr 1.25fr;
  gap: 32px;
  align-items: center;
  max-width: 1160px;
  margin: 0 auto;
}
.portal-grid h2 { font-size: 38px; }
.portal-links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
.portal-links a {
  display: block;
  background: rgba(255,255,255,.055);
  border: 1px solid rgba(201,168,76,.18);
  border-radius: var(--r-sm);
  padding: 14px 18px;
  color: rgba(240,222,175,.90);
  font-weight: 700;
  font-size: 14.5px;
  transition: background .15s, color .15s;
}
.portal-links a:hover {
  background: var(--paper);
  color: var(--burg-deep);
  border-color: transparent;
}

/* === AI PANEL === */
.ai-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: start;
  max-width: 1160px;
  margin: 0 auto;
}
.ai-panel {
  background: var(--paper);
  border-radius: var(--r-lg);
  padding: 26px;
  color: var(--text);
  box-shadow: var(--shadow);
}
.ai-grid { display: grid; gap: 16px; }
.ai-field { display: grid; gap: 7px; }
.ai-field label { font-weight: 700; font-size: 13px; color: #321510; }
.ai-panel select, .ai-panel textarea {
  width: 100%;
  border: 1px solid rgba(80,40,20,.18);
  border-radius: var(--r-sm);
  padding: 11px 13px;
  background: #fffdf8;
  font-size: 15px;
  color: var(--text);
}
.ai-panel textarea { min-height: 140px; resize: vertical; }
.ai-note { font-size: 13px; color: var(--muted); line-height: 1.55; margin-top: 9px; }

/* === PAGE HEAD === */
.page-head {
  background: linear-gradient(140deg, #0f0205 0%, #2a0610 55%, #150305 100%);
  color: #fff;
  padding: 60px 24px 64px;
}
.page-head h1 { margin-bottom: 14px; font-size: 50px; }
.page-head p { font-size: 17px; color: rgba(235,218,192,.82); max-width: 820px; line-height: 1.68; }
.breadcrumbs { font-size: 12.5px; color: rgba(201,168,76,.72); margin-bottom: 14px; letter-spacing: .04em; }
.breadcrumbs a { color: rgba(201,168,76,.72); }
.breadcrumbs a:hover { color: var(--gold); }

/* === CONTENT === */
.content { background: var(--cream); padding: 58px 24px; }

/* === FILTERS === */
.filters { display: flex; flex-wrap: wrap; gap: 9px; margin-bottom: 28px; }
.filter {
  display: inline-flex;
  align-items: center;
  padding: 9px 16px;
  border-radius: 999px;
  background: var(--paper);
  border: 1px solid rgba(80,28,20,.13);
  font-weight: 700;
  font-size: 13.5px;
  color: var(--burg);
  cursor: pointer;
  transition: background .14s, color .14s;
}
.filter:hover, .filter.active { background: var(--burg); color: #fffaf0; }

/* === CATEGORY OVERVIEW === */
.category-overview {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 24px;
}
.category-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 20px;
  box-shadow: var(--shadow-sm);
}
.category-card .tag { color: #a07415; font-size: 10px; letter-spacing: .28em; font-weight: 700; display: block; margin-bottom: 10px; text-transform: uppercase; }
.category-card h3 { font-size: 24px; margin-bottom: 8px; line-height: 1.08; }
.category-card .meta { font-size: 13px; color: var(--muted); margin-bottom: 8px; }
.category-card p { color: var(--muted); font-size: 14px; line-height: 1.58; }

/* === ARTICLE INDEX === */
.article-index { display: grid; gap: 14px; }
.category-section {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 22px 24px;
  box-shadow: var(--shadow-sm);
  scroll-margin-top: 96px;
}
.category-section h2 { font-size: 30px; margin-bottom: 7px; }
.category-section p { color: var(--muted); line-height: 1.62; margin-bottom: 14px; font-size: 14.5px; }
.link-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 6px 20px;
}
.article-link {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 14px;
  padding: 11px 13px;
  border-top: 1px solid rgba(80,28,20,.07);
  color: #3a1c12;
  font-weight: 700;
  font-size: 14px;
  border-radius: var(--r-sm);
  transition: background .12s;
}
.article-link:hover { background: #fff8f0; }
.article-link div { line-height: 1.28; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.article-link span { color: var(--muted); font-weight: 400; font-size: 12px; white-space: nowrap; }

/* === PROCESS === */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 24px;
}
.process-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 20px;
  box-shadow: var(--shadow-sm);
}
.process-card b { display: block; color: var(--burg); font-size: 14px; margin-bottom: 9px; }
.process-card h3 { font-size: 20px; margin-bottom: 7px; }
.process-card p { font-size: 14px; line-height: 1.65; color: var(--muted); }

/* === ARTICLE LAYOUT === */
.article-layout {
  display: grid;
  grid-template-columns: 1fr 290px;
  gap: 40px;
}
.paper {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 42px;
  box-shadow: var(--shadow-sm);
}
.paper h2 { font-size: 36px; line-height: 1.1; margin-bottom: 18px; }
.paper h3 { font-size: 25px; margin-top: 32px; margin-bottom: 10px; }
.paper p, .paper li {
  font-size: 16.5px;
  line-height: 1.82;
  color: #48403b;
  margin-bottom: 16px;
}
.paper ul { padding-left: 22px; }
.paper li { margin-bottom: 8px; }
.paper.notice {
  background: #fdf4df;
  border-left: 3px solid var(--gold);
  padding: 16px 20px;
  border-radius: var(--r-sm);
  margin-top: 28px;
  font-size: 14.5px;
}
.side {
  position: sticky;
  top: 88px;
  align-self: start;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 20px;
  box-shadow: var(--shadow-sm);
}
.side a {
  display: block;
  border-top: 1px solid var(--line);
  padding: 12px 0;
  color: var(--burg);
  font-weight: 700;
  font-size: 14px;
}
.side a:hover { color: var(--burg-soft); }

/* === MINI ARTICLES === */
.featured-shell {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 28px;
  align-items: start;
}
.featured-intro p { max-width: 300px; }
.compact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.mini-article {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 20px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}
.mini-article .tag { color: #a07415; font-size: 10px; letter-spacing: .28em; font-weight: 700; display: block; margin-bottom: 10px; text-transform: uppercase; }
.mini-article h3 { font-size: 24px; margin-bottom: 9px; line-height: 1.06; }
.mini-article p { font-size: 14.5px; color: var(--muted); line-height: 1.58; flex: 1; margin-bottom: 14px; }
.mini-article b { color: var(--burg); font-size: 13.5px; margin-top: auto; }

/* === CONTACT === */
.contact-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 42px;
  align-items: start;
  max-width: 1160px;
  margin: 0 auto;
}
.map {
  height: 268px;
  border: 0;
  border-radius: var(--r);
  width: 100%;
  box-shadow: var(--shadow);
  margin-top: 18px;
}
.info-list {
  background: var(--paper);
  border-radius: var(--r);
  border: 1px solid var(--line);
  padding: 22px;
  margin-bottom: 18px;
  box-shadow: var(--shadow-sm);
}
.info-list div {
  border-bottom: 1px solid rgba(80,40,20,.10);
  padding: 13px 0;
}
.info-list div:last-child { border-bottom: 0; }
.info-list b {
  display: block;
  font-size: 11px;
  letter-spacing: .30em;
  color: var(--gold);
  margin-bottom: 5px;
  text-transform: uppercase;
}
.info-list .value {
  display: block;
  font-size: 16px;
  color: #2e1f18;
  line-height: 1.5;
  word-break: break-word;
}

/* === FORM === */
.formbox {
  background: var(--paper);
  border-radius: var(--r-lg);
  padding: 26px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px;
}
.form-grid .full { grid-column: 1 / -1; }
.formbox label {
  display: block;
  font-weight: 700;
  font-size: 13px;
  color: #382010;
}
.formbox input, .formbox textarea, .formbox select {
  width: 100%;
  margin-top: 7px;
  border: 1px solid rgba(80,40,20,.18);
  border-radius: var(--r-sm);
  padding: 12px 13px;
  background: #fffdf8;
  font-size: 15px;
  color: var(--text);
  transition: border-color .14s;
}
.formbox input:focus, .formbox textarea:focus, .formbox select:focus {
  outline: none;
  border-color: var(--gold);
}
.formbox textarea { min-height: 130px; resize: vertical; }
.formbox button { margin-top: 16px; width: 100%; }
.formbox.hp { display: none !important; }
.form-note { font-size: 12.5px; line-height: 1.55; color: var(--muted); margin-top: 12px; }

/* === KVKK === */
.kvkk-summary {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 24px;
}
.kvkk-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 20px;
  box-shadow: var(--shadow-sm);
}
.kvkk-card h3 { font-size: 21px; margin-bottom: 7px; }
.kvkk-card p { color: var(--muted); line-height: 1.62; }
.kvkk-accordion { display: grid; gap: 12px; }
.kvkk-accordion details {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 18px 20px;
  box-shadow: var(--shadow-sm);
}
.kvkk-accordion summary {
  cursor: pointer;
  font-size: 20px;
  font-weight: 700;
  color: #26100c;
  list-style: none;
}
.kvkk-accordion summary::-webkit-details-marker { display: none; }
.kvkk-accordion .kvkk-body { padding-top: 12px; color: #48403b; line-height: 1.78; }
.kvkk-accordion ul { margin: 10px 0 0; padding-left: 20px; }
.kvkk-accordion li { margin-bottom: 7px; }
.note-box {
  background: #fdf4df;
  border: 1px solid rgba(201,168,76,.25);
  border-radius: var(--r);
  padding: 18px 20px;
  color: #504437;
  line-height: 1.68;
}

/* === ARTICLE HUB === */
.article-hub-head { background: linear-gradient(140deg, #0e0204, #2e0710 60%, #0e0204); color: #fff; padding: 60px 24px; }
.article-hub-main { background: var(--cream); padding: 36px 24px 72px; }
.article-hub-dashboard {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 26px;
  align-items: center;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 28px;
  box-shadow: var(--shadow);
  margin-bottom: 18px;
}
.article-hub-intro h2 { font-size: 36px; line-height: 1.04; margin: 8px 0 12px; }
.article-hub-intro p { color: var(--muted); line-height: 1.60; max-width: 440px; }
.article-hub-quick {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 9px;
}
.article-hub-quick a {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #fff;
  border: 1px solid rgba(80,28,20,.10);
  color: var(--burg);
  font-weight: 700;
  text-decoration: none;
  font-size: 13.5px;
  text-align: center;
  padding: 8px 10px;
  line-height: 1.2;
  transition: background .13s, color .13s;
}
.article-hub-quick a:hover { background: var(--burg); color: #fffaf0; }
.article-area-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.article-area-card {
  display: grid;
  grid-template-rows: auto auto 1fr auto auto;
  padding: 20px;
  border-radius: var(--r-lg);
  background: var(--paper);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  color: var(--text);
  text-decoration: none;
  transition: transform .14s, box-shadow .14s;
}
.article-area-card:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.article-area-card span { color: #a07415; font-size: 10.5px; letter-spacing: .24em; font-weight: 700; margin-bottom: 12px; display: block; text-transform: uppercase; }
.article-area-card strong { font-size: 23px; line-height: 1.06; margin-bottom: 10px; display: block; }
.article-area-card p { color: var(--muted); line-height: 1.50; margin-bottom: 12px; font-size: 14px; }
.article-area-card em { color: var(--muted); font-size: 12.5px; font-style: normal; margin-bottom: 12px; display: block; }
.article-area-card b { color: var(--burg); font-size: 13.5px; }

/* === HUB === */
.hub-panel {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  margin-bottom: 16px;
}
.hub-panel h2 { font-size: 30px; margin-bottom: 14px; }
.hub-quick {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.hub-quick a {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid rgba(80,28,20,.10);
  color: var(--burg);
  font-weight: 700;
  font-size: 13px;
  min-height: 36px;
  transition: background .13s, color .13s;
}
.hub-quick a:hover { background: var(--burg); color: #fffaf0; }
.hub-featured { display: none !important; }
.makale-hub { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.hub-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 18px;
  box-shadow: var(--shadow-sm);
}
.hub-tag { font-size: 10px; letter-spacing: .24em; font-weight: 700; color: #a07415; display: block; margin-bottom: 9px; text-transform: uppercase; }
.hub-card strong { font-size: 21px; line-height: 1.08; display: block; margin-bottom: 7px; }
.hub-card small { font-size: 12.5px; color: var(--muted); display: block; margin-bottom: 8px; }
.hub-card p { font-size: 14px; color: var(--muted); line-height: 1.52; margin-bottom: 10px; }
.hub-card b { color: var(--burg); font-size: 13px; }

/* === MAKALE PAGE === */
.makale-head {
  background: linear-gradient(140deg, #0e0204, #2e0710 60%, #0e0204);
  color: #fff;
  padding: 58px 24px 60px;
}
.makale-head h1 { font-size: 44px; line-height: 1.04; margin-bottom: 12px; }
.makale-head p { font-size: 16.5px; color: rgba(235,218,192,.80); line-height: 1.60; }
.makale-content { padding: 32px 24px 68px; background: var(--cream); }
.makale-page { padding: 30px 24px 64px; background: var(--cream); }

/* === WORK / ÇALIŞMA ALANLARI === */
.work-panel {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 28px;
  align-items: start;
}
.work-panel aside {
  position: sticky;
  top: 94px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 24px;
  box-shadow: var(--shadow);
}
.work-panel aside h2 { font-size: 32px; line-height: 1.06; margin-bottom: 10px; }
.work-panel aside p { color: var(--muted); line-height: 1.58; }
.area-accordion-list { display: grid; gap: 9px; }
.area-accordion {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.area-accordion summary {
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 18px;
  font-weight: 700;
  color: var(--text);
  list-style: none;
}
.area-accordion summary::-webkit-details-marker { display: none; }
.area-accordion summary b { font-size: 12px; color: var(--burg); }
.area-accordion p { padding: 0 18px 6px; color: var(--muted); line-height: 1.55; font-size: 14.5px; }
.area-actions { display: flex; gap: 9px; padding: 10px 18px 18px; }
.area-actions a {
  padding: 9px 14px;
  border-radius: var(--r-sm);
  font-weight: 700;
  font-size: 14px;
  background: var(--burg);
  color: #fffaf0;
}
.area-actions a + a {
  background: #fff;
  border: 1px solid rgba(80,28,20,.12);
  color: var(--burg);
}
.section-method-top { padding-bottom: 22px !important; }

/* trust, about pillars */
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 13px; margin-top: 20px; }
.trust-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 20px;
  box-shadow: var(--shadow-sm);
}
.trust-card b, .about-pillars span { color: var(--gold); font-size: 11.5px; letter-spacing: .16em; font-weight: 700; display: block; margin-bottom: 8px; text-transform: uppercase; }
.trust-card h3, .about-pillars h3 { font-size: 20px; margin-bottom: 7px; }
.trust-card p, .about-pillars p { color: var(--muted); line-height: 1.54; font-size: 14.5px; }
.about-pillars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 13px;
  margin-top: 28px;
}
.about-pillars > div {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 20px;
  box-shadow: var(--shadow-sm);
}

/* status box */
.status-box {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 26px;
  align-items: center;
  background: var(--bg-dark);
  color: #f5ead8;
  border-radius: var(--r-lg);
  padding: 28px;
  box-shadow: var(--shadow);
}
.status-box h2 { color: #f5ead8 !important; margin-top: 7px; }
.status-box .lead { color: rgba(220,200,175,.80); }
.status-tags {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 9px;
}
.status-tags a {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(201,168,76,.18);
  border-radius: var(--r-sm);
  color: rgba(240,220,170,.88);
  padding: 12px 14px;
  font-weight: 700;
  font-size: 14px;
  transition: background .14s;
}
.status-tags a:hover { background: rgba(255,255,255,.12); }

/* category shell */
.category-shell {
  display: grid;
  grid-template-columns: 268px 1fr;
  gap: 20px;
  align-items: start;
}
.category-side {
  position: sticky;
  top: 92px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 20px;
  box-shadow: var(--shadow-sm);
}
.category-side span { display: block; color: var(--gold); font-size: 10.5px; letter-spacing: .20em; font-weight: 700; margin-bottom: 9px; text-transform: uppercase; }
.category-side p { color: var(--muted); line-height: 1.54; font-size: 14px; }
.category-side a { display: inline-flex; margin-top: 11px; color: var(--burg); font-weight: 700; }

/* category intro */
.category-intro-box {
  margin: 16px 0;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 17px 20px;
  box-shadow: var(--shadow-sm);
}
.category-intro-box span {
  display: block;
  color: #a07415;
  font-size: 10.5px;
  letter-spacing: .22em;
  font-weight: 700;
  margin-bottom: 7px;
  text-transform: uppercase;
}
.category-intro-box p { color: var(--muted); line-height: 1.54; font-size: 14.5px; }

/* side note */
.side-note {
  margin-top: 13px;
  padding: 13px;
  border-radius: var(--r-sm);
  background: #fff4df;
  border: 1px solid rgba(179,133,32,.18);
}
.side-note b { display: block; margin-bottom: 4px; font-size: 13px; }
.side-note p { font-size: 12.5px; line-height: 1.45; margin: 0; color: #635649; }

/* search */
.article-search { margin: 14px 0 0; }
.article-search input {
  width: 100%;
  min-height: 46px;
  border-radius: var(--r-sm);
  border: 1px solid rgba(80,28,20,.12);
  background: #fff;
  padding: 0 14px;
  font-size: 15px;
}

/* category page list */
.category-page-list {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 20px 22px;
  box-shadow: var(--shadow-sm);
  margin-bottom: 14px;
}
.category-page-list h2 { font-size: 28px; margin-bottom: 7px; }
.category-page-list p { color: var(--muted); line-height: 1.58; margin-bottom: 12px; font-size: 14px; }
.category-page-list .link-grid { grid-template-columns: repeat(2, 1fr); }
.category-page-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 16px;
}

/* mega nav */
.nav-drop { position: relative; display: flex; align-items: center; }
.nav-drop > a { color: inherit; text-decoration: none; }
.mega {
  position: absolute;
  top: calc(100% + 14px);
  left: -120px;
  width: 620px;
  background: #fffcf7;
  color: var(--text);
  border: 1px solid rgba(179,133,32,.20);
  box-shadow: 0 22px 60px rgba(10,2,4,.22);
  border-radius: var(--r-lg);
  padding: 20px;
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 18px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: .16s ease;
  z-index: 50;
}
.mega-right { left: auto; right: -120px; }
.nav-drop:hover .mega { opacity: 1; visibility: visible; transform: translateY(0); }
.mega b { font-size: 18px; color: #220609; }
.mega p { font-size: 13px; line-height: 1.44; color: var(--muted); margin-top: 7px; }
.mega-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 7px; }
.mega-grid a {
  display: flex !important;
  align-items: center;
  min-height: 36px;
  padding: 8px 10px;
  border-radius: var(--r-sm);
  background: #fff;
  border: 1px solid rgba(80,28,20,.08);
  color: var(--burg-deep) !important;
  font-size: 13px !important;
  font-weight: 700;
}
.mega-grid a:hover { background: var(--burg); color: #fffaf0 !important; }

/* portal */
.home-portal { }
.institutional-section { background: #f3ede6; }
.institutional-section h2 { max-width: 520px; }

/* visible blocks (miras, aile, is) */
.miras-visible-block, .aile-visible-block, .is-visible-block { margin-top: 20px; }

/* home articles hidden on mobile → managed below */
.home-articles, .featured-articles, .latest-articles { }

/* quick-status */
.quick-status { padding-top: 22px !important; }
.why-section { background: var(--cream) !important; }

/* hub-top */
.hub-top { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 10px; }
.hub-top span { font-size: 10px; letter-spacing: .22em; color: #a07415; font-weight: 700; text-transform: uppercase; }
.hub-top em { font-size: 12.5px; color: var(--muted); font-style: normal; }

/* work card */
.work-card p { min-height: auto !important; }

/* === FOOTER === */
.footer {
  background: #080102;
  color: #e8d8c0;
  padding: 36px 24px 30px;
  border-top: 1px solid rgba(255,255,255,.05);
}
.footer .wrap.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.2fr;
  gap: 32px;
  align-items: start;
}
.footer-col { display: flex; flex-direction: column; gap: 7px; }
.footer-col b { font-size: 26px; line-height: 1.06; color: #fff7ea; }
.footer-col small { font-size: 10.5px; letter-spacing: .28em; color: var(--gold); font-weight: 700; text-transform: uppercase; }
.footer-col span, .footer-col a, .footer-col em, .footer-col p {
  font-size: 14.5px;
  line-height: 1.65;
  color: #e8d8c0;
  text-decoration: none;
  font-style: normal;
}
.footer-col a:hover { color: var(--gold-lt); }
.footer-brand p { max-width: 420px; color: #cab09a; font-size: 14px; }
.footer-links a { width: fit-content; }
.footer-contact em { margin-top: 5px; color: #b09a82; font-size: 13px; }

/* v56 topbar class */
.v56-topbar { }
.v56-footer { }

/* === RESPONSIVE === */

/* tablet */
@media (max-width: 980px) {
  .institutional-box { grid-template-columns: 1fr; gap: 28px; }
  .two { grid-template-columns: 1fr; gap: 28px; }
  .about-highlight h2 { max-width: none; font-size: 44px; }
  .cards { grid-template-columns: repeat(2, 1fr); }
  .stats { grid-template-columns: repeat(3, 1fr); }
  .category-overview { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-grid, .about-pillars { grid-template-columns: repeat(2, 1fr); }
  .article-hub-dashboard { grid-template-columns: 1fr; }
  .article-hub-quick { grid-template-columns: repeat(3, 1fr); }
  .article-area-grid { grid-template-columns: repeat(2, 1fr); }
  .category-shell { grid-template-columns: 1fr; }
  .category-side { position: static; }
  .work-panel { grid-template-columns: 1fr; }
  .work-panel aside { position: static; }
  .status-box { grid-template-columns: 1fr; }
  .portal-grid { grid-template-columns: 1fr; gap: 22px; }
  .contact-grid { grid-template-columns: 1fr; gap: 24px; }
  .ai-box { grid-template-columns: 1fr; }
  .kvkk-summary { grid-template-columns: repeat(2, 1fr); }
  .featured-shell { grid-template-columns: 1fr; }
  .compact-grid { grid-template-columns: 1fr 1fr; }
  .hero-grid { grid-template-columns: 1fr; gap: 32px; }
  .hero h1 { font-size: 44px; }
}

/* mobile */
@media (max-width: 720px) {
  /* nav */
  .nav { flex-wrap: wrap; padding: 12px 16px 10px; gap: 0; }
  .brand { flex: 1; }
  .hamburger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 36px;
    height: 36px;
    cursor: pointer;
    flex-shrink: 0;
  }
  .hamburger span {
    display: block;
    height: 2px;
    background: #e8d8c0;
    border-radius: 2px;
    transition: transform .2s, opacity .2s;
  }
  .nav-toggle:checked ~ .hamburger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle:checked ~ .hamburger span:nth-child(2) { opacity: 0; }
  .nav-toggle:checked ~ .hamburger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .menu {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    padding: 10px 0 4px;
    gap: 4px;
  }
  .nav-toggle:checked ~ .menu { display: flex; }
  .menu a {
    font-size: 14px;
    padding: 11px 14px;
    border-radius: 8px;
    background: rgba(255,255,255,.05);
    text-align: left;
  }
  .menu a.pill { border-color: rgba(201,168,76,.35); background: rgba(201,168,76,.09); }
  .mega { display: none !important; }

  /* hero */
  .hero { padding: 44px 18px 50px; }
  .hero h1, .page-head h1 { font-size: 32px; line-height: 1.06; margin-bottom: 16px; }
  .hero p, .page-head p { font-size: 15px; line-height: 1.62; }
  .actions { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-top: 20px; }
  .btn { padding: 11px 14px; font-size: 13px; }

  /* sections */
  .section { padding: 44px 16px; }
  .section-tight { padding: 36px 16px; }
  .section h2 { font-size: 28px; }
  .lead { font-size: 15px; line-height: 1.65; }

  /* about */
  .about-highlight h2 { font-size: 34px; }
  .stats { grid-template-columns: 1fr; gap: 10px; }

  /* cards */
  .cards { grid-template-columns: 1fr; }
  .card { min-height: auto; }

  /* portal */
  .portal-links { grid-template-columns: 1fr; }

  /* hero card */
  .hero-card { margin-top: 20px; padding: 18px; }
  .hero-card h2 { font-size: 22px; }

  /* page head */
  .page-head { padding: 36px 16px 38px; }
  .page-head h1 { font-size: 28px; }

  /* content */
  .content { padding: 28px 16px 48px; }

  /* filters */
  .filters { flex-wrap: nowrap; overflow-x: auto; padding-bottom: 6px; scrollbar-width: none; -webkit-overflow-scrolling: touch; }
  .filters::-webkit-scrollbar { display: none; }
  .filter { flex: 0 0 auto; font-size: 12.5px; padding: 8px 13px; }

  /* category */
  .category-overview { grid-template-columns: 1fr 1fr; gap: 10px; }
  .category-card h3 { font-size: 19px; }
  .category-card p { display: none; }
  .category-section { max-height: none; overflow: visible; }
  .link-grid { grid-template-columns: 1fr; }
  .article-link { grid-template-columns: 1fr auto; padding: 11px 12px; min-height: 46px; background: var(--paper); border-radius: var(--r-sm); border: 1px solid rgba(80,28,20,.07); border-top: none; }

  /* process */
  .process-grid { grid-template-columns: 1fr; gap: 10px; }
  .process-card h3 { font-size: 19px; }

  /* article layout */
  .article-layout { display: block; }
  .paper { padding: 20px 16px; }
  .paper h2 { font-size: 24px; }
  .paper h3 { font-size: 20px; }
  .paper p, .paper li { font-size: 15px; line-height: 1.72; }
  .side { position: static; margin-top: 14px; }

  /* mini articles */
  .compact-grid { grid-template-columns: 1fr; }
  .mini-article h3 { font-size: 22px; }

  /* contact */
  .map { height: 210px; }
  .form-grid { display: block; }
  .form-grid label { margin-bottom: 12px; display: block; }
  .formbox { padding: 18px; }
  .formbox input, .formbox textarea, .formbox select { font-size: 16px; }
  .formbox button { margin-top: 4px; }

  /* kvkk */
  .kvkk-summary { grid-template-columns: 1fr; }

  /* trust etc */
  .trust-grid, .about-pillars { grid-template-columns: 1fr; }
  .status-tags { grid-template-columns: 1fr; }

  /* hub */
  .article-hub-dashboard { padding: 18px; }
  .article-hub-intro h2 { font-size: 26px; }
  .article-hub-quick { display: flex; overflow-x: auto; scrollbar-width: none; gap: 8px; margin-top: 12px; }
  .article-hub-quick::-webkit-scrollbar { display: none; }
  .article-hub-quick a { flex: 0 0 auto; padding: 8px 13px; min-height: 34px; font-size: 12px; border-radius: 999px; }
  .article-area-grid { grid-template-columns: 1fr; gap: 10px; }
  .article-area-card strong { font-size: 21px; }
  .hub-panel { padding: 17px; }
  .hub-panel h2 { font-size: 22px; }
  .hub-quick { gap: 7px; }
  .hub-quick a { font-size: 12.5px; padding: 8px 12px; }
  .makale-hub { grid-template-columns: 1fr; }
  .makale-hub .hub-card p { display: block; }

  /* makale head */
  .makale-head { padding: 38px 16px 42px; }
  .makale-head h1 { font-size: 32px; }
  .makale-head p { font-size: 15px; }
  .makale-content, .makale-page { padding: 24px 16px 50px; }

  /* home articles: gizle mobilde */
  .home-articles, .featured-articles, .latest-articles { display: none !important; }
  .featured-shell { display: none !important; }

  /* footer */
  .footer { padding: 24px 16px; }
  .footer .wrap.footer-grid { grid-template-columns: 1fr; gap: 16px; }
  .footer-col b { font-size: 22px; }
  .footer-col span, .footer-col a, .footer-col p { font-size: 13.5px; }

  /* category page grid */
  .category-page-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .category-page-grid .category-card h3 { font-size: 17px; }
  .category-page-grid .category-card p { display: none; }
  .category-page-list .link-grid { grid-template-columns: 1fr !important; }

  /* work */
  .area-actions { flex-direction: column; }

  /* ai */
  .ai-panel { padding: 18px; }
}

@media (max-width: 400px) {
  .hero h1, .page-head h1 { font-size: 27px; }
  .section h2 { font-size: 25px; }
  .about-highlight h2 { font-size: 28px; }
  .actions { grid-template-columns: 1fr; }
  .category-overview { grid-template-columns: 1fr; }
  .category-page-grid { grid-template-columns: 1fr; }
  .article-hub-quick { flex-wrap: wrap; overflow: visible; }
}

/* desktop: category-section link-grid 2 kolon */
@media (min-width: 721px) {
  .category-section .link-grid { grid-template-columns: repeat(2, 1fr); }
  .category-page-list .link-grid { grid-template-columns: repeat(2, 1fr); }
}

/* =============================================
   v56 SAYFA STİLLERİ — Çalışma Alanları & Makaleler
   ============================================= */

/* === ÇALIŞMA ALANLARI === */
.v56-work-page { background: var(--cream); }

.v56-process {
  background: var(--bg-dark);
  padding: 60px 24px;
}
.v56-process-head { max-width: 1160px; margin: 0 auto 28px; }
.v56-process-head span {
  display: block;
  font-size: 10.5px;
  letter-spacing: .42em;
  color: var(--gold);
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.v56-process-head h2 {
  font-size: 34px;
  line-height: 1.06;
  color: #f5ead8;
  margin: 0;
}
.v56-process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  max-width: 1160px;
  margin: 0 auto;
}
.v56-process-grid > div {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(201,168,76,.14);
  border-radius: var(--r);
  padding: 22px;
}
.v56-process-grid b {
  display: block;
  font-size: 26px;
  color: rgba(201,168,76,.30);
  line-height: 1;
  margin-bottom: 10px;
  font-style: normal;
}
.v56-process-grid strong {
  display: block;
  font-size: 15.5px;
  color: #f0e4cc;
  margin-bottom: 7px;
  font-weight: 700;
}
.v56-process-grid p {
  font-size: 13.5px;
  color: rgba(220,200,175,.68);
  line-height: 1.58;
  margin: 0;
}

.v56-work-areas { padding: 60px 24px 72px; }
.v56-section-head { margin-bottom: 26px; }
.v56-section-head span {
  display: block;
  font-size: 10.5px;
  letter-spacing: .42em;
  color: var(--gold);
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.v56-section-head h2 { font-size: 34px; line-height: 1.06; margin-bottom: 8px; }
.v56-section-head p { color: var(--muted); font-size: 15.5px; line-height: 1.65; }

.v56-work-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.v56-work-card {
  display: flex;
  flex-direction: column;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 22px;
  box-shadow: var(--shadow-sm);
  color: var(--text);
  text-decoration: none;
  transition: transform .14s, box-shadow .14s;
}
.v56-work-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}
.v56-work-card span {
  display: block;
  font-size: 10.5px;
  letter-spacing: .28em;
  color: #a07415;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.v56-work-card h3 { font-size: 21px; margin-bottom: 9px; line-height: 1.1; }
.v56-work-card p { font-size: 14px; color: var(--muted); line-height: 1.60; margin-bottom: 16px; flex: 1; }
.v56-work-card b { font-size: 13.5px; color: var(--burg); margin-top: auto; }

/* === MAKALELER SAYFASI === */
.v56-makaleler {
  background: var(--cream);
  padding: 36px 0 72px;
}
.v56-makaleler > .wrap {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Başlık satırı */
.v56-library-intro {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 20px;
  margin-bottom: 26px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}
.v56-library-intro > div span {
  display: block;
  font-size: 10.5px;
  letter-spacing: .38em;
  color: var(--gold);
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.v56-library-intro h2 { font-size: 30px; margin-bottom: 5px; }
.v56-library-intro p { color: var(--muted); font-size: 14.5px; line-height: 1.60; max-width: 480px; }

/* İstatistikler */
.v56-library-stats {
  display: flex;
  gap: 22px;
  flex-shrink: 0;
  align-items: flex-end;
  padding-bottom: 2px;
}
.v56-library-stats > div {
  text-align: right;
}
.v56-library-stats b {
  display: block;
  font-size: 32px;
  line-height: 1;
  color: var(--burg);
  font-family: Georgia, serif;
}
.v56-library-stats small {
  display: block;
  font-size: 11px;
  color: var(--muted);
  letter-spacing: .08em;
  margin-top: 2px;
}

/* Kontrol alanı — arama */
.v56-article-control {
  margin-bottom: 14px;
}
.v56-article-control > label {
  display: none; /* label gizli, placeholder yeterli */
}
.v56-article-control input {
  width: 100%;
  min-height: 46px;
  border-radius: var(--r-sm);
  border: 1px solid rgba(80,28,20,.14);
  background: var(--paper);
  padding: 0 16px;
  font-size: 15px;
  font-family: inherit;
  color: var(--text);
  display: block;
  box-shadow: var(--shadow-sm);
}
.v56-article-control input:focus {
  outline: none;
  border-color: var(--gold);
}
.v56-mobile-selects { display: none; }

/* Kategori tabları — yatay kaydırmalı bar */
.v56-tabs {
  display: flex;
  gap: 6px;
  margin-bottom: 10px;
  overflow-x: auto;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 2px;
}
.v56-tabs::-webkit-scrollbar { display: none; }

.v56-cat-tab {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  flex-shrink: 0;
  padding: 9px 14px;
  border-radius: var(--r-sm);
  border: 1px solid rgba(80,28,20,.12);
  background: var(--paper);
  cursor: pointer;
  transition: background .13s, border-color .13s;
  text-align: left;
  font-family: inherit;
}
.v56-cat-tab b {
  font-size: 13px;
  color: var(--burg-deep);
  line-height: 1.2;
  display: block;
}
.v56-cat-tab small {
  font-size: 11px;
  color: var(--muted);
  margin-top: 2px;
  display: block;
}
.v56-cat-tab:hover { background: #fff8f0; border-color: rgba(107,6,24,.22); }
.v56-cat-tab.is-active {
  background: var(--burg);
  border-color: var(--burg);
}
.v56-cat-tab.is-active b { color: #fffaf0; }
.v56-cat-tab.is-active small { color: rgba(255,240,210,.68); }

/* Alt kategori şeridi */
.v56-subwrap {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 12px 16px;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  min-height: 52px;
}
.v56-subwrap.is-empty { display: none; }
.v56-sub-title {
  font-size: 10.5px;
  letter-spacing: .20em;
  color: var(--muted);
  font-weight: 700;
  text-transform: uppercase;
  flex-shrink: 0;
  margin-right: 4px;
}
.v56-subchips { display: flex; flex-wrap: wrap; gap: 6px; }
.v56-sub-chip {
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid rgba(80,28,20,.12);
  background: #fff;
  font-size: 12.5px;
  color: #4a2010;
  cursor: pointer;
  font-weight: 600;
  font-family: inherit;
  transition: background .13s;
  line-height: 1;
}
.v56-sub-chip:hover { background: #fff0e6; }
.v56-sub-chip.is-active {
  background: var(--burg);
  color: #fffaf0;
  border-color: var(--burg);
}
.v56-sub-current { display: none; }

/* Sonuç sayısı */
.v56-results-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}
.v56-results-head span { font-size: 13px; color: var(--muted); }

/* Makale kartları grid */
.v56-article-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.v56-article-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 18px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 5px;
  text-decoration: none;
  transition: transform .13s, box-shadow .13s;
  color: var(--text);
}
.v56-article-card:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow);
}
.v56-article-card span {
  display: block;
  font-size: 10.5px;
  letter-spacing: .20em;
  color: #a07415;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.3;
}
.v56-article-card strong {
  display: block;
  font-size: 15.5px;
  line-height: 1.30;
  color: var(--text);
  font-weight: 700;
  flex: 1;
}
.v56-article-card em {
  display: block;
  font-size: 12.5px;
  color: var(--burg);
  font-style: normal;
  font-weight: 700;
  margin-top: 4px;
}

.v56-empty {
  grid-column: 1 / -1;
  padding: 40px 20px;
  text-align: center;
  color: var(--muted);
  font-size: 15px;
}
.v56-load-more {
  margin-top: 20px;
  text-align: center;
  display: none;
}
.v56-load-more button {
  display: inline-flex;
  align-items: center;
  padding: 12px 28px;
  border-radius: 999px;
  border: 1px solid rgba(107,6,24,.22);
  background: var(--paper);
  color: var(--burg);
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  font-family: inherit;
  box-shadow: var(--shadow-sm);
  transition: background .13s;
}
.v56-load-more button:hover { background: var(--burg); color: #fffaf0; }

/* === MOBİL — v56 === */
@media (max-width: 720px) {
  /* Çalışma alanları */
  .v56-process { padding: 38px 16px 44px; }
  .v56-process-head h2 { font-size: 24px; }
  .v56-process-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .v56-process-grid b { font-size: 20px; }
  .v56-process-grid strong { font-size: 14px; }
  .v56-process-grid p { font-size: 13px; }
  .v56-work-areas { padding: 36px 16px 48px; }
  .v56-section-head h2 { font-size: 26px; }
  .v56-work-grid { grid-template-columns: 1fr; gap: 10px; }
  .v56-work-card { padding: 18px; }
  .v56-work-card h3 { font-size: 19px; }

  /* Makaleler */
  .v56-makaleler { padding: 22px 0 48px; }
  .v56-library-intro {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 18px;
    padding-bottom: 16px;
  }
  .v56-library-intro h2 { font-size: 22px; }
  .v56-library-intro p { font-size: 13.5px; }
  .v56-library-stats {
    gap: 16px;
    padding-bottom: 0;
  }
  .v56-library-stats b { font-size: 26px; }

  /* Mobilde tablar → select olur */
  .v56-tabs { display: none !important; }
  .v56-subwrap { display: none !important; }
  .v56-mobile-selects {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-bottom: 12px;
  }
  .v56-mobile-selects label {
    display: block;
    font-size: 11.5px;
    font-weight: 700;
    color: #382010;
    letter-spacing: .04em;
  }
  .v56-mobile-selects select {
    display: block;
    width: 100%;
    margin-top: 5px;
    border: 1px solid rgba(80,28,20,.16);
    border-radius: var(--r-sm);
    padding: 11px 12px;
    background: var(--paper);
    font-size: 14px;
    font-family: inherit;
    color: var(--text);
    box-shadow: var(--shadow-sm);
    -webkit-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236b0618' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 32px;
  }
  .v56-article-grid {
    grid-template-columns: 1fr;
    gap: 9px;
  }
  .v56-article-card { padding: 15px; }
  .v56-article-card strong { font-size: 14.5px; }
}

@media (max-width: 400px) {
  .v56-process-grid { grid-template-columns: 1fr; }
  .v56-mobile-selects { grid-template-columns: 1fr; }
}

/* desktop: category-section link-grid 2 kolon */
@media (min-width: 721px) {
  .v56-load-more { display: block; }
  .category-section .link-grid { grid-template-columns: repeat(2, 1fr); }
  .category-page-list .link-grid { grid-template-columns: repeat(2, 1fr); }
}

/* =============================================
   MOBİL ANA SAYFA — Kompakt hero
   ============================================= */
@media (max-width: 720px) {
  .hero { padding: 30px 16px 34px; }
  .hero h1 { font-size: 27px; line-height: 1.08; margin-bottom: 12px; }
  .hero p { font-size: 14.5px; line-height: 1.56; }
  .actions { margin-top: 16px; gap: 7px; grid-template-columns: 1fr 1fr; display: grid; }
  .actions .btn:nth-child(3) { grid-column: 1 / -1; }
  .btn { padding: 10px 14px; font-size: 13px; min-height: 40px; }
  .hero-card { margin-top: 16px; padding: 15px; }
  .hero-card h2 { font-size: 18px; margin-bottom: 8px; }
  .row { padding: 9px 0; font-size: 13px; }

  .section { padding: 34px 16px; }
  .section-tight { padding: 26px 16px; }
  .section h2 { font-size: 25px; margin-bottom: 10px; }
  .lead { font-size: 14.5px; }

  .stats { grid-template-columns: repeat(3, 1fr); gap: 8px; margin-top: 16px; }
  .stat { padding: 13px 8px; text-align: center; }
  .stat b { font-size: 20px; margin-bottom: 3px; }
  .stat span { font-size: 11px; line-height: 1.3; }

  .about-highlight h2 { font-size: 28px; }
  .portal-links { grid-template-columns: 1fr 1fr; gap: 7px; }
  .portal-links a { padding: 11px 12px; font-size: 13px; }

  .ai-box { gap: 16px; }
  .ai-panel { padding: 16px; }
  .ai-panel textarea { min-height: 120px; }

  .page-head { padding: 26px 16px 28px; }
  .page-head h1 { font-size: 25px; margin-bottom: 10px; }
  .page-head p { font-size: 13.5px; }

  .map { height: 185px; margin-top: 10px; }
  .info-list { padding: 15px; margin-bottom: 12px; }
  .info-list .value { font-size: 14px; }
}

/* =============================================
   MAKALELERİN İÇ SAYFA STİLİ — Yeniden
   ============================================= */

/* Makale detay sayfası body */
.article-detail-v52 { background: #f2ede6; }

/* Makale içerik alanı */
.article-detail-v52 .content {
  background: #f2ede6;
  padding: 36px 24px 72px;
}
.article-detail-v52 .article-layout {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 28px;
  align-items: start;
}

/* Paper — makale metni */
.article-detail-v52 .paper {
  background: #fff;
  border: none;
  border-radius: 20px;
  padding: 44px 48px;
  box-shadow: 0 2px 24px rgba(30,15,8,.07);
}
.article-detail-v52 .paper .eyebrow {
  font-size: 10.5px;
  letter-spacing: .40em;
  font-weight: 700;
  color: #a07415;
  display: block;
  margin-bottom: 14px;
}
.article-detail-v52 .paper h2 {
  font-size: 32px;
  line-height: 1.12;
  margin-bottom: 22px;
  color: #1c1410;
  letter-spacing: -.02em;
}
.article-detail-v52 .paper h3 {
  font-size: 20px;
  line-height: 1.18;
  margin: 30px 0 10px;
  color: #1c1410;
  padding-top: 28px;
  border-top: 1px solid rgba(60,30,18,.08);
}
.article-detail-v52 .paper h3:first-of-type {
  border-top: none;
  padding-top: 0;
}
.article-detail-v52 .paper p,
.article-detail-v52 .paper li {
  font-size: 16px;
  line-height: 1.82;
  color: #46403b;
  margin-bottom: 14px;
}
.article-detail-v52 .paper ul {
  padding-left: 22px;
  margin-bottom: 14px;
}
.article-detail-v52 .paper li { margin-bottom: 6px; }

/* Notice kutusu */
.article-detail-v52 .paper .notice,
.article-detail-v52 .notice {
  background: #fdf5e0;
  border-left: 3px solid #c9a84c;
  border-radius: 10px;
  padding: 14px 18px;
  margin: 20px 0;
  font-size: 14px;
  line-height: 1.62;
  color: #5a4a38;
}

/* Sidebar */
.article-detail-v52 .side {
  position: sticky;
  top: 88px;
  align-self: start;
  background: #fff;
  border: none;
  border-radius: 18px;
  padding: 22px;
  box-shadow: 0 2px 24px rgba(30,15,8,.07);
}
.article-detail-v52 .side > b {
  display: block;
  font-size: 11px;
  letter-spacing: .28em;
  color: #a07415;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.article-detail-v52 .side a {
  display: block;
  border-top: 1px solid rgba(60,30,18,.07);
  padding: 11px 0;
  color: #3a1c12;
  font-weight: 700;
  font-size: 13.5px;
  line-height: 1.35;
  transition: color .12s;
}
.article-detail-v52 .side a:hover { color: #6b0618; }
.article-detail-v52 .side a.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  border-top: none;
  margin-top: 14px;
  padding: 11px 16px;
  border-radius: 9px;
  background: #c9a84c;
  color: #1a0408;
  font-weight: 700;
  font-size: 14px;
  text-align: center;
}
.article-detail-v52 .side a.btn:hover { opacity: .88; }

/* Side-note */
.article-detail-v52 .side-note {
  margin-top: 16px;
  padding: 13px;
  border-radius: 10px;
  background: #fdf5e0;
  border: 1px solid rgba(179,133,32,.18);
}
.article-detail-v52 .side-note b {
  display: block;
  font-size: 12px;
  color: #a07415;
  margin-bottom: 4px;
  letter-spacing: .04em;
}
.article-detail-v52 .side-note p {
  font-size: 12.5px;
  line-height: 1.50;
  color: #635649;
  margin: 0;
}

/* Page head — makale başlık alanı */
.article-detail-v52 .page-head {
  background: linear-gradient(140deg, #0f0205 0%, #2a0610 55%, #150305 100%);
  padding: 44px 24px 48px;
}
.article-detail-v52 .page-head h1 {
  font-size: 36px;
  line-height: 1.1;
  margin-bottom: 12px;
}
.article-detail-v52 .page-head p {
  font-size: 16px;
  color: rgba(235,218,192,.80);
  line-height: 1.62;
  max-width: 720px;
}

/* Mobil — makale detay */
@media (max-width: 720px) {
  .article-detail-v52 .article-layout {
    display: block;
  }
  .article-detail-v52 .paper {
    padding: 22px 18px;
    border-radius: 16px;
  }
  .article-detail-v52 .paper h2 { font-size: 24px; margin-bottom: 16px; }
  .article-detail-v52 .paper h3 { font-size: 18px; margin-top: 22px; padding-top: 20px; }
  .article-detail-v52 .paper p,
  .article-detail-v52 .paper li { font-size: 15px; line-height: 1.74; }
  .article-detail-v52 .side {
    position: static;
    margin-top: 16px;
    border-radius: 14px;
    padding: 18px;
  }
  .article-detail-v52 .content { padding: 20px 14px 48px; }
  .article-detail-v52 .page-head { padding: 30px 16px 34px; }
  .article-detail-v52 .page-head h1 { font-size: 26px; }
  .article-detail-v52 .page-head p { font-size: 14.5px; }
}

/* =============================================
   MAKALELER — YENİ TASARIM (mk-*)
   ============================================= */

.mk-page { background: #f0ebe3; min-height: 60vh; padding: 32px 0 72px; }
.mk-wrap {
  max-width: 1160px; margin: 0 auto; padding: 0 24px;
  display: grid; grid-template-columns: 260px 1fr; gap: 28px; align-items: start;
}

/* SIDEBAR — flex column, sıra: search > sub-wrap > cat-list */
.mk-sidebar {
  position: sticky; top: 88px;
  background: #fff; border-radius: 16px; padding: 20px;
  box-shadow: 0 2px 20px rgba(30,15,8,.07);
  display: flex; flex-direction: column; gap: 0;
}
.mk-search-box { margin-bottom: 14px; }
.mk-search-box input {
  width: 100%; border: 1px solid rgba(80,28,20,.15); border-radius: 9px;
  padding: 10px 13px; font-size: 14px; font-family: inherit;
  background: #faf7f3; color: #1c1410;
}
.mk-search-box input:focus { outline: none; border-color: #c9a84c; }

/* Alt kategori kutusu — arama'nın hemen altında, cat-list'ten önce */
.mk-sub-wrap {
  /* display:none JS ile yönetiliyor */
  margin-bottom: 14px; padding: 14px;
  background: #fdf5e0; border: 1px solid rgba(201,168,76,.28); border-radius: 12px;
}
.mk-sub-label {
  font-size: 10px; letter-spacing: .28em; color: #a07415;
  font-weight: 700; text-transform: uppercase; margin-bottom: 9px;
}
.mk-sub-list { display: flex; flex-direction: column; gap: 2px; }
.mk-sub-btn {
  display: block; width: 100%; padding: 7px 10px; border-radius: 7px;
  border: none; background: transparent; cursor: pointer;
  font-family: inherit; font-size: 12.5px; color: #3a1c12;
  font-weight: 500; text-align: left; transition: background .12s;
  min-height: 32px; box-sizing: border-box;
}
.mk-sub-btn:hover { background: rgba(201,168,76,.12); }
.mk-sub-btn.is-active { background: rgba(107,6,24,.10); color: #6b0618; font-weight: 700; }

/* Kategori listesi — sub-wrap'tan sonra */
.mk-cat-list { display: flex; flex-direction: column; gap: 3px; }
.mk-cat-btn {
  display: flex; justify-content: space-between; align-items: center;
  padding: 9px 12px; border-radius: 9px; border: none; background: transparent;
  cursor: pointer; font-family: inherit; font-size: 13.5px;
  color: #3a1c12; font-weight: 600; text-align: left; transition: background .12s;
}
.mk-cat-btn em { font-style: normal; font-size: 11.5px; color: #9a8c82; font-weight: 400; margin-left: 6px; flex-shrink: 0; }
.mk-cat-btn:hover { background: #f5ede5; }
.mk-cat-btn.is-active { background: #6b0618; color: #fffaf0; }
.mk-cat-btn.is-active em { color: rgba(255,240,210,.70); }

/* Sağ ana alan */
.mk-main { min-width: 0; }
.mk-toolbar {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 16px; padding-bottom: 12px; border-bottom: 1px solid rgba(60,30,18,.08);
}
.mk-count { font-size: 13px; color: #8a7b6f; }

/* Kart grid */
.mk-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.mk-card {
  display: flex; flex-direction: column; gap: 6px;
  background: #fff; border-radius: 12px; padding: 16px;
  text-decoration: none; color: #1c1410;
  border: 1px solid rgba(60,30,18,.07);
  box-shadow: 0 1px 8px rgba(30,15,8,.05);
  transition: transform .13s, box-shadow .13s;
}
.mk-card:hover { transform: translateY(-2px); box-shadow: 0 6px 22px rgba(30,15,8,.11); border-color: rgba(201,168,76,.30); }
.mk-card-sub { font-size: 10px; letter-spacing: .22em; color: #a07415; font-weight: 700; text-transform: uppercase; line-height: 1; }
.mk-card-title { font-size: 14.5px; line-height: 1.35; color: #1c1410; font-weight: 700; }
.mk-card-desc { font-size: 12.5px; line-height: 1.52; color: #6b5f57; margin: 0; flex: 1;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }

.mk-empty { grid-column: 1/-1; padding: 48px 20px; text-align: center; color: #8a7b6f; font-size: 15px; }
.mk-more { margin-top: 24px; text-align: center; }
.mk-more button {
  padding: 11px 28px; border-radius: 999px; border: 1px solid rgba(107,6,24,.22);
  background: #fff; color: #6b0618; font-weight: 700; font-size: 14px;
  cursor: pointer; font-family: inherit; transition: background .13s;
}
.mk-more button:hover { background: #6b0618; color: #fffaf0; }

/* MOBİL */
@media (max-width: 720px) {
  .mk-page { padding: 20px 0 52px; }
  .mk-wrap { grid-template-columns: 1fr; padding: 0 14px; gap: 14px; }
  .mk-sidebar { position: static; padding: 14px; border-radius: 14px; }
  .mk-cat-list { display: grid; grid-template-columns: 1fr 1fr; gap: 5px; }
  .mk-cat-btn {
    font-size: 12.5px; padding: 8px 10px; border-radius: 8px;
    border: 1px solid rgba(60,30,18,.08); background: #faf7f3;
  }
  .mk-cat-btn.is-active { background: #6b0618; border-color: #6b0618; }
  .mk-sub-list { display: grid !important; grid-template-columns: 1fr 1fr !important; gap: 5px !important; }
  .mk-sub-btn {
    width: 100% !important; padding: 8px 9px !important; border-radius: 8px !important;
    background: rgba(255,255,255,.8) !important; border: 1px solid rgba(60,30,18,.09) !important;
    font-size: 11.5px !important; min-height: 34px !important; display: block !important;
    box-sizing: border-box !important;
  }
  .mk-sub-btn.is-active { background: rgba(107,6,24,.12) !important; border-color: rgba(107,6,24,.22) !important; color: #6b0618 !important; font-weight: 700 !important; }
  .mk-grid { grid-template-columns: 1fr 1fr; gap: 9px; }
  .mk-card { padding: 13px; }
  .mk-card-title { font-size: 13.5px; }
  .mk-card-desc { font-size: 12px; -webkit-line-clamp: 2; }
}
@media (max-width: 400px) {
  .mk-cat-list { grid-template-columns: 1fr; }
  .mk-grid { grid-template-columns: 1fr; }
}
@media (min-width: 721px) {
  .mk-more { display: block; }
}

/* =============================================
   v6: KATEGORİ SAYFALARI (yh-*) + ÖN GÖRÜŞME BANNER + OG SAYFA
   ============================================= */

/* === KATEGORİ SAYFASI STİLLERİ === */
.yh-makaleler-page { background: #f0ebe3; min-height: 60vh; padding: 28px 0 72px; }
.yh-hub-wrap { max-width: 1160px; margin: 0 auto; padding: 0 24px; }

.yh-cat-top-card {
  background: #fff;
  border-radius: 16px;
  padding: 22px 26px;
  margin-bottom: 22px;
  box-shadow: 0 2px 18px rgba(30,15,8,.07);
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.yh-back-link {
  font-size: 13px;
  color: #6b0618;
  font-weight: 700;
  text-decoration: none;
  margin-bottom: 4px;
  display: inline-block;
}
.yh-back-link:hover { text-decoration: underline; }
.yh-cat-top-card > span {
  font-size: 10px;
  letter-spacing: .36em;
  color: #a07415;
  font-weight: 700;
  text-transform: uppercase;
}
.yh-cat-top-card h2 { font-size: 26px; line-height: 1.1; color: #1c1410; }
.yh-cat-top-card p { font-size: 14.5px; color: #6b5f57; line-height: 1.62; max-width: 700px; }
.yh-cat-mini-stat { display: flex; align-items: baseline; gap: 5px; margin-top: 4px; }
.yh-cat-mini-stat b { font-size: 28px; color: #6b0618; line-height: 1; }
.yh-cat-mini-stat small { font-size: 13px; color: #8a7b6f; }

.yh-hub-layout {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 22px;
  align-items: start;
}

/* Sidebar */
.yh-hub-sidebar {
  position: sticky;
  top: 88px;
  background: #fff;
  border-radius: 14px;
  padding: 18px;
  box-shadow: 0 2px 18px rgba(30,15,8,.07);
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.yh-sidebar-title {
  font-size: 10px;
  letter-spacing: .32em;
  color: #a07415;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.yh-sub-filter {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 9px 11px;
  border-radius: 9px;
  border: none;
  background: transparent;
  cursor: pointer;
  font-family: inherit;
  text-align: left;
  transition: background .12s;
}
.yh-sub-filter b { font-size: 13px; color: #3a1c12; font-weight: 600; }
.yh-sub-filter small { font-size: 11px; color: #9a8c82; font-weight: 400; margin-left: 6px; flex-shrink: 0; }
.yh-sub-filter:hover { background: #f5ede5; }
.yh-sub-filter.is-active { background: #6b0618; }
.yh-sub-filter.is-active b { color: #fffaf0; }
.yh-sub-filter.is-active small { color: rgba(255,240,210,.65); }

/* Sağ sonuç alanı */
.yh-hub-results { min-width: 0; }
.yh-hub-toolbar { margin-bottom: 14px; display: flex; flex-direction: column; gap: 8px; }
.yh-search-line label { display: none; }
.yh-search-line input {
  width: 100%;
  min-height: 42px;
  border-radius: 9px;
  border: 1px solid rgba(80,28,20,.14);
  background: #fff;
  padding: 0 14px;
  font-size: 14px;
  font-family: inherit;
  box-shadow: 0 1px 6px rgba(30,15,8,.05);
}
.yh-search-line input:focus { outline: none; border-color: #c9a84c; }
.yh-mobile-select-line { display: none; }

.yh-result-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(60,30,18,.08);
}
.yh-result-head > div span {
  font-size: 10px;
  letter-spacing: .32em;
  color: #a07415;
  font-weight: 700;
  text-transform: uppercase;
  display: block;
  margin-bottom: 2px;
}
.yh-result-head h3 { font-size: 20px; line-height: 1.1; }
.yh-result-head p { font-size: 13px; color: #8a7b6f; }

.yh-article-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
.yh-article-card {
  background: #fff;
  border-radius: 12px;
  padding: 16px;
  border: 1px solid rgba(60,30,18,.07);
  box-shadow: 0 1px 8px rgba(30,15,8,.05);
  text-decoration: none;
  color: #1c1410;
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 5px;
  transition: transform .13s, box-shadow .13s;
}
.yh-article-card:hover { transform: translateY(-2px); box-shadow: 0 5px 18px rgba(30,15,8,.10); border-color: rgba(201,168,76,.28); }
.yh-article-card span { font-size: 10px; letter-spacing: .20em; color: #a07415; font-weight: 700; text-transform: uppercase; }
.yh-article-card strong { font-size: 14.5px; font-weight: 700; line-height: 1.32; }
.yh-article-card em { font-size: 12.5px; color: #6b0618; font-style: normal; font-weight: 700; }
.yh-empty { padding: 40px 20px; text-align: center; color: #8a7b6f; font-size: 15px; }
.yh-load-more {
  display: none;
  margin-top: 18px;
  padding: 11px 26px;
  border-radius: 999px;
  border: 1px solid rgba(107,6,24,.22);
  background: #fff;
  color: #6b0618;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  font-family: inherit;
  transition: background .13s;
}
.yh-load-more:hover { background: #6b0618; color: #fffaf0; }

/* Mobil kategori sayfası */
@media (max-width: 720px) {
  .yh-hub-layout { grid-template-columns: 1fr; gap: 14px; }
  .yh-hub-sidebar { position: static; flex-direction: row; flex-wrap: wrap; gap: 6px; padding: 14px; }
  .yh-sidebar-title { width: 100%; margin-bottom: 4px; }
  .yh-sub-filter { width: auto; flex: 0 0 auto; font-size: 12px; padding: 7px 10px; border-radius: 8px; border: 1px solid rgba(60,30,18,.09); background: #faf7f3; }
  .yh-sub-filter.is-active { background: #6b0618; border-color: #6b0618; }
  .yh-sub-filter small { display: none; }
  .yh-search-line { display: none; }
  .yh-mobile-select-line { display: block; }
  .yh-mobile-select-line label { font-size: 11.5px; font-weight: 700; color: #382010; display: block; margin-bottom: 5px; }
  .yh-mobile-select-line select {
    width: 100%;
    border: 1px solid rgba(80,28,20,.16);
    border-radius: 9px;
    padding: 10px 12px;
    font-size: 14px;
    font-family: inherit;
    background: #fff;
  }
  .yh-article-list { grid-template-columns: 1fr; gap: 8px; }
  .yh-cat-top-card { padding: 16px; }
}

/* === PORTAL SECTION (anasayfa çalışma alanları) RENK FİX === */
.home-portal,
.section.dark.home-portal {
  
}

/* === ÖN GÖRÜŞME BANNER (anasayfa) === */
.og-banner-section {
  background: linear-gradient(140deg, #0f0205 0%, #2a0610 55%, #150305 100%);
  padding: 52px 24px;
}
.og-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  max-width: 1160px;
  margin: 0 auto;
}
.og-banner-label {
  display: block;
  font-size: 10.5px;
  letter-spacing: .40em;
  color: #c9a84c;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.og-banner h2 { font-size: 34px; line-height: 1.06; color: #f5ead8; margin-bottom: 10px; }
.og-banner p { font-size: 15px; color: rgba(230,212,182,.78); line-height: 1.62; max-width: 520px; }
.og-banner-btn {
  display: inline-flex;
  align-items: center;
  padding: 15px 32px;
  background: #c9a84c;
  color: #1a0408;
  font-weight: 700;
  font-size: 15px;
  border-radius: 10px;
  text-decoration: none;
  flex-shrink: 0;
  /* Parıldama efekti */
  position: relative;
  overflow: hidden;
  transition: opacity .15s;
  animation: og-pulse 2.4s ease-in-out infinite;
}
.og-banner-btn:hover { opacity: .88; animation: none; }
.og-banner-btn::after {
  content: '';
  position: absolute;
  top: 0; left: -75%;
  width: 50%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.35), transparent);
  transform: skewX(-20deg);
  animation: og-shine 2.4s ease-in-out infinite;
}
@keyframes og-shine {
  0%,100% { left: -75%; opacity: 0; }
  40% { left: 125%; opacity: 1; }
  41%,99% { opacity: 0; }
}
@keyframes og-pulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(201,168,76,.0); }
  50% { box-shadow: 0 0 0 8px rgba(201,168,76,.18); }
}

/* === ÖN GÖRÜŞME SAYFASI === */
.og-page { background: #f0ebe3; padding: 36px 0 72px; }
.og-wrap {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 28px;
  align-items: start;
}
.og-info {
  background: #fff;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 2px 18px rgba(30,15,8,.07);
}
.og-info h2 { font-size: 22px; margin-bottom: 12px; }
.og-info p { font-size: 14px; color: #5a4f47; line-height: 1.65; margin-bottom: 12px; }
.og-info ul { padding-left: 18px; margin-bottom: 14px; }
.og-info li { font-size: 13.5px; color: #5a4f47; line-height: 1.7; margin-bottom: 4px; }
.og-info a { color: #6b0618; font-weight: 700; }
.og-quota-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fdf5e0;
  border: 1px solid rgba(201,168,76,.28);
  border-radius: 10px;
  padding: 12px 16px;
  margin-top: 16px;
}
.og-quota-label { font-size: 12.5px; color: #7a6a58; font-weight: 600; }
.og-quota-num { font-size: 28px; color: #6b0618; font-weight: 700; line-height: 1; }
.og-chat-box {
  background: #fff;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 2px 18px rgba(30,15,8,.07);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.og-chat {
  min-height: 280px;
  max-height: 420px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 4px 0;
}
.og-welcome {
  background: #f5ede5;
  border-radius: 12px;
  padding: 13px 16px;
  font-size: 14.5px;
  color: #4a3f38;
  line-height: 1.58;
  align-self: flex-start;
  max-width: 86%;
}
.og-msg { max-width: 86%; padding: 12px 15px; border-radius: 12px; font-size: 14.5px; line-height: 1.62; }
.og-msg-user { background: #6b0618; color: #fff7ec; align-self: flex-end; border-bottom-right-radius: 4px; text-align: left; }
.og-msg-assistant { background: #f5ede5; color: #3a2e28; align-self: flex-start; border-bottom-left-radius: 4px; }
.og-input-area { display: flex; gap: 10px; align-items: flex-end; }
.og-input-area textarea {
  flex: 1;
  min-height: 90px;
  resize: none;
  border: 1px solid rgba(80,28,20,.16);
  border-radius: 10px;
  padding: 11px 13px;
  font-size: 15px;
  font-family: inherit;
  color: #1c1410;
  background: #faf7f3;
}
.og-input-area textarea:focus { outline: none; border-color: #c9a84c; }
.og-send { flex-shrink: 0; min-height: 44px; align-self: flex-end; }
.og-done { font-size: 13.5px; color: #8a7b6f; line-height: 1.58; text-align: center; }

@media (max-width: 720px) {
  .og-banner { flex-direction: column; align-items: flex-start; gap: 20px; }
  .og-banner h2 { font-size: 26px; }
  .og-banner-btn { width: 100%; justify-content: center; padding: 14px 24px; }
  .og-wrap { grid-template-columns: 1fr; gap: 16px; }
  .og-info { padding: 18px; }
  .og-chat-box { padding: 18px; }
  .og-input-area { flex-direction: column; }
  .og-send { width: 100%; }
}

/* =============================================
   ALT KATEGORİ ŞERİDİ (sağ üstte, kartların üstünde)
   ============================================= */
.mk-sub-bar {
  background: #fdf5e0;
  border: 1px solid rgba(201,168,76,.25);
  border-radius: 12px;
  padding: 14px 16px;
  margin-bottom: 14px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  flex-wrap: wrap;
}
.mk-sub-bar-label {
  font-size: 10px;
  letter-spacing: .32em;
  color: #a07415;
  font-weight: 700;
  text-transform: uppercase;
  padding-top: 8px;
  flex-shrink: 0;
  white-space: nowrap;
}
.mk-sub-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.mk-sub-chip {
  padding: 7px 14px;
  border-radius: 999px;
  border: 1px solid rgba(80,28,20,.12);
  background: #fff;
  font-size: 13px;
  color: #3a1c12;
  cursor: pointer;
  font-family: inherit;
  font-weight: 500;
  transition: background .12s, border-color .12s;
  white-space: nowrap;
}
.mk-sub-chip:hover { background: #f5ede5; border-color: rgba(107,6,24,.20); }
.mk-sub-chip.is-active {
  background: #6b0618;
  color: #fffaf0;
  border-color: #6b0618;
  font-weight: 700;
}

@media (max-width: 720px) {
  /* Genel layout - sidebar üste, main alta */
  .mk-wrap {
    grid-template-columns: 1fr !important;
    padding: 0 14px !important;
    gap: 14px !important;
  }
  .mk-sidebar {
    position: static !important;
    border-radius: 14px !important;
    padding: 14px !important;
  }
  /* Sidebar - kategoriler 2 kolon grid */
  .mk-cat-list {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 6px !important;
    margin-top: 10px !important;
  }
  .mk-cat-btn {
    font-size: 12.5px !important;
    padding: 9px 10px !important;
    border-radius: 9px !important;
    border: 1px solid rgba(60,30,18,.09) !important;
    background: #f8f4ef !important;
    justify-content: space-between !important;
  }
  .mk-cat-btn.is-active {
    background: #6b0618 !important;
    border-color: #6b0618 !important;
    color: #fffaf0 !important;
  }
  .mk-cat-btn.is-active em { color: rgba(255,240,210,.70) !important; }
  /* Alt kategori şeridi - chip'ler düzgün */
  .mk-sub-bar {
    padding: 12px 14px !important;
    gap: 0 !important;
    flex-direction: column !important;
    align-items: flex-start !important;
  }
  .mk-sub-bar-label {
    display: block !important;
    padding-top: 0 !important;
    margin-bottom: 10px !important;
  }
  .mk-sub-chips {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 7px !important;
    width: 100% !important;
  }
  .mk-sub-chip {
    font-size: 12.5px !important;
    padding: 7px 13px !important;
    border-radius: 999px !important;
    background: #fff !important;
    border: 1px solid rgba(80,28,20,.14) !important;
    color: #3a1c12 !important;
    font-weight: 500 !important;
    white-space: nowrap !important;
  }
  .mk-sub-chip.is-active {
    background: #6b0618 !important;
    color: #fffaf0 !important;
    border-color: #6b0618 !important;
    font-weight: 700 !important;
  }
  /* Kartlar mobilde tek kolon */
  .mk-grid {
    grid-template-columns: 1fr !important;
    gap: 10px !important;
  }
  .mk-card {
    padding: 16px !important;
    flex-direction: row !important;
    align-items: flex-start !important;
    gap: 0 !important;
  }
  .mk-card { flex-direction: column !important; gap: 6px !important; }
  .mk-card-sub { font-size: 10px !important; }
  .mk-card-title { font-size: 15px !important; }
  .mk-card-desc { font-size: 13px !important; -webkit-line-clamp: 2 !important; }
}
@media (max-width: 400px) {
  .mk-cat-list { grid-template-columns: 1fr !important; }
}

/* === SCROLL KAYMA FIX — chip boyutu sabit kalır === */
.mk-sub-chip {
  /* font-weight değişince genişlik kaymasın */
  min-width: 0;
  box-sizing: border-box;
}
/* Aktif chip font-weight artınca layout shift olur - önce padding ile dengele */
.mk-sub-chip.is-active {
  /* font-weight:700 iken border genişliği artmasın */
  border-width: 1px !important;
}
/* Render sırasında grid min-height koru - kartlar kaybolunca sayfa küçülmesin */
.mk-grid {
  min-height: 200px;
}

/* === SCROLL KAYMA ÖNLEME === */
.mk-page {
  /* İçerik değişince dış sayfanın scroll'unu etkilesin */
  overscroll-behavior: contain;
}
.mk-grid {
  /* Kart sayısı değişince ani yükseklik kaybını önle */
  min-height: 200px;
  /* Transition ile yumuşak geçiş */
  transition: min-height 0.01s;
}
/* Chip font-weight değişince genişlik kaymasın */
.mk-sub-chip {
  font-variation-settings: normal;
  /* font-weight 500->700 geçişinde genişlik sabit kalsın */
  min-width: fit-content;
}

/* mk-hidden - layout shift olmadan gizle */
.mk-card.mk-hidden { display: none; }
.mk-sub-bar { scroll-margin-top: 80px; }
#mkGrid { scroll-margin-top: 80px; }


/* =========================================================
   v15 HARD FIX — Makaleler ana sayfa filtre kayması
   ========================================================= */
.makaleler-modern-page .mk-card.mk-hidden,
.mk-grid .mk-card.mk-hidden {
  display: none !important;
}

#mkSubBar.mk-sub-bar {
  width: 100% !important;
  box-sizing: border-box !important;
  overflow: visible !important;
  scroll-margin-top: 0 !important;
  contain: layout paint !important;
}

#mkSubChips.mk-sub-chips {
  width: 100% !important;
  display: grid !important;
  grid-template-columns: repeat(auto-fit, minmax(165px, 1fr)) !important;
  gap: 8px !important;
  align-items: stretch !important;
}

#mkSubChips .mk-sub-chip,
#mkSubChips .mk-sub-chip:hover,
#mkSubChips .mk-sub-chip:focus,
#mkSubChips .mk-sub-chip:active,
#mkSubChips .mk-sub-chip.is-active {
  appearance: none !important;
  -webkit-appearance: none !important;
  width: 100% !important;
  height: 42px !important;
  min-height: 42px !important;
  max-height: 42px !important;
  min-width: 0 !important;
  box-sizing: border-box !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 0 10px !important;
  border-width: 1px !important;
  border-style: solid !important;
  border-radius: 999px !important;
  font-size: 12.5px !important;
  font-weight: 600 !important;
  line-height: 1 !important;
  letter-spacing: 0 !important;
  text-align: center !important;
  white-space: nowrap !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  transform: none !important;
  box-shadow: none !important;
  transition: background-color .12s ease, color .12s ease, border-color .12s ease !important;
  -webkit-tap-highlight-color: transparent !important;
  touch-action: manipulation !important;
}

#mkSubChips .mk-sub-chip:focus,
#mkSubChips .mk-sub-chip:focus-visible {
  outline: none !important;
}

#mkSubChips .mk-sub-chip.is-active {
  background: #6b0618 !important;
  color: #fffaf0 !important;
  border-color: #6b0618 !important;
}

.mk-grid,
#mkGrid {
  scroll-margin-top: 0 !important;
  transition: none !important;
}

.mk-sub-select {
  display: none;
}

@media (max-width: 720px) {
  #mkSubBar.mk-sub-bar {
    display: block !important;
    padding: 12px !important;
    border-radius: 14px !important;
    background: #fff7ea !important;
  }
  #mkSubBar.mk-sub-bar[style*="display: none"] {
    display: none !important;
  }
  #mkSubChips.mk-sub-chips {
    display: none !important;
  }
  .mk-sub-select {
    display: block !important;
    width: 100% !important;
    height: 44px !important;
    border-radius: 12px !important;
    border: 1px solid rgba(107,6,24,.22) !important;
    background: #fffdf7 !important;
    color: #2b110a !important;
    padding: 0 12px !important;
    font: 600 14px/1.2 inherit !important;
    box-sizing: border-box !important;
    outline: none !important;
  }
  .mk-sub-bar-label {
    margin-bottom: 8px !important;
  }
  .mk-cat-btn,
  .mk-cat-btn:hover,
  .mk-cat-btn:focus,
  .mk-cat-btn:active,
  .mk-cat-btn.is-active {
    min-height: 39px !important;
    border-width: 1px !important;
    font-weight: 600 !important;
    transform: none !important;
    transition: background-color .12s ease, color .12s ease, border-color .12s ease !important;
  }
}

@media (min-width: 721px) {
  #mkSubChips.mk-sub-chips {
    grid-template-columns: repeat(auto-fit, minmax(175px, 1fr)) !important;
  }
}


/* =========================================================
   v15 MOBİL ALT KATEGORİ — popup/dropdown yok, kayma yok
   ========================================================= */
.mk-sub-select,
select.mk-sub-select,
#mkSubSelect {
  display: none !important;
  visibility: hidden !important;
  pointer-events: none !important;
}

@media (max-width: 720px) {
  #mkSubBar.mk-sub-bar {
    display: block !important;
    padding: 10px 0 8px !important;
    margin: 10px 0 12px !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    overflow: hidden !important;
    contain: paint !important;
  }

  #mkSubBar.mk-sub-bar[style*="display: none"] {
    display: none !important;
  }

  #mkSubBar .mk-sub-bar-label {
    display: block !important;
    margin: 0 0 8px !important;
    padding: 0 2px !important;
    font-size: 10px !important;
    line-height: 1 !important;
    letter-spacing: .24em !important;
    color: #7a1324 !important;
    font-weight: 800 !important;
  }

  #mkSubChips.mk-sub-chips {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    gap: 8px !important;
    width: 100% !important;
    max-width: 100% !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    -webkit-overflow-scrolling: touch !important;
    scrollbar-width: none !important;
    padding: 0 2px 4px !important;
    margin: 0 !important;
    grid-template-columns: none !important;
    align-items: center !important;
    scroll-snap-type: x proximity !important;
  }

  #mkSubChips.mk-sub-chips::-webkit-scrollbar {
    display: none !important;
  }

  #mkSubChips .mk-sub-chip,
  #mkSubChips .mk-sub-chip:hover,
  #mkSubChips .mk-sub-chip:focus,
  #mkSubChips .mk-sub-chip:active,
  #mkSubChips .mk-sub-chip.is-active {
    flex: 0 0 auto !important;
    width: auto !important;
    min-width: 116px !important;
    max-width: 210px !important;
    height: 38px !important;
    min-height: 38px !important;
    max-height: 38px !important;
    padding: 0 14px !important;
    margin: 0 !important;
    box-sizing: border-box !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 1px solid rgba(122, 19, 36, .24) !important;
    border-radius: 999px !important;
    background: #fff8ec !important;
    color: #3a120c !important;
    font-size: 12px !important;
    font-weight: 650 !important;
    line-height: 1 !important;
    letter-spacing: 0 !important;
    text-align: center !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    transform: none !important;
    translate: none !important;
    scale: none !important;
    box-shadow: none !important;
    transition: background-color .12s ease, color .12s ease, border-color .12s ease !important;
    -webkit-tap-highlight-color: transparent !important;
    touch-action: manipulation !important;
    scroll-snap-align: start !important;
  }

  #mkSubChips .mk-sub-chip.is-active {
    background: #7a1324 !important;
    color: #f8d879 !important;
    border-color: #7a1324 !important;
  }

  #mkSubChips .mk-sub-chip:focus,
  #mkSubChips .mk-sub-chip:focus-visible {
    outline: none !important;
  }
}

/* =========================================================
   v16 MOBİL KULLANILABİLİR MAKALER — yatay kaydırma yok
   ========================================================= */
@media (max-width: 720px) {
  .mk-page {
    background: #f4efe7 !important;
    padding: 14px 0 46px !important;
  }

  .mk-wrap {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 12px !important;
    width: 100% !important;
    padding: 0 12px !important;
    box-sizing: border-box !important;
  }

  .mk-sidebar {
    position: static !important;
    width: 100% !important;
    padding: 12px !important;
    border-radius: 16px !important;
    background: #fffaf2 !important;
    border: 1px solid rgba(78, 14, 28, .12) !important;
    box-shadow: 0 10px 26px rgba(42, 7, 16, .07) !important;
    box-sizing: border-box !important;
  }

  .mk-search-box {
    margin: 0 0 10px !important;
  }

  .mk-search-box input {
    height: 46px !important;
    border-radius: 12px !important;
    border: 1px solid rgba(78, 14, 28, .18) !important;
    background: #ffffff !important;
    color: #24100d !important;
    font-size: 15px !important;
    padding: 0 13px !important;
  }

  .mk-cat-list {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 7px !important;
    width: 100% !important;
    margin: 0 !important;
  }

  .mk-cat-btn,
  .mk-cat-btn:hover,
  .mk-cat-btn:focus,
  .mk-cat-btn:active,
  .mk-cat-btn.is-active {
    width: 100% !important;
    min-width: 0 !important;
    min-height: 46px !important;
    height: auto !important;
    padding: 8px 9px !important;
    border-radius: 12px !important;
    border: 1px solid rgba(78, 14, 28, .13) !important;
    background: #ffffff !important;
    color: #341713 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 6px !important;
    box-sizing: border-box !important;
    font-size: 12.6px !important;
    font-weight: 650 !important;
    line-height: 1.12 !important;
    text-align: left !important;
    white-space: normal !important;
    transform: none !important;
    transition: background-color .12s ease, color .12s ease, border-color .12s ease !important;
    -webkit-tap-highlight-color: transparent !important;
    touch-action: manipulation !important;
  }

  .mk-cat-btn span {
    min-width: 0 !important;
    display: block !important;
  }

  .mk-cat-btn em {
    flex: 0 0 auto !important;
    min-width: 21px !important;
    height: 21px !important;
    border-radius: 999px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin-left: 2px !important;
    background: #f2e6d4 !important;
    color: #7a1324 !important;
    font-size: 10px !important;
    font-weight: 750 !important;
    line-height: 1 !important;
  }

  .mk-cat-btn.is-active {
    background: #4e0e1c !important;
    border-color: #4e0e1c !important;
    color: #f8d879 !important;
  }

  .mk-cat-btn.is-active em {
    background: rgba(248, 216, 121, .18) !important;
    color: #f8d879 !important;
  }

  #mkSubBar.mk-sub-bar {
    display: block !important;
    width: 100% !important;
    margin: 0 0 12px !important;
    padding: 12px !important;
    border-radius: 16px !important;
    border: 1px solid rgba(78, 14, 28, .12) !important;
    background: #fffaf2 !important;
    box-shadow: 0 10px 26px rgba(42, 7, 16, .055) !important;
    box-sizing: border-box !important;
    overflow: visible !important;
    contain: none !important;
  }

  #mkSubBar.mk-sub-bar[style*="display: none"] {
    display: none !important;
  }

  #mkSubBar .mk-sub-bar-label {
    display: block !important;
    margin: 0 0 9px !important;
    padding: 0 !important;
    font-size: 10.5px !important;
    line-height: 1 !important;
    letter-spacing: .20em !important;
    color: #7a1324 !important;
    font-weight: 850 !important;
    text-transform: uppercase !important;
  }

  #mkSubChips.mk-sub-chips {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 7px !important;
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
    overflow: visible !important;
    scroll-snap-type: none !important;
    scrollbar-width: auto !important;
    -webkit-overflow-scrolling: auto !important;
  }

  #mkSubChips .mk-sub-chip,
  #mkSubChips .mk-sub-chip:hover,
  #mkSubChips .mk-sub-chip:focus,
  #mkSubChips .mk-sub-chip:active,
  #mkSubChips .mk-sub-chip.is-active {
    appearance: none !important;
    -webkit-appearance: none !important;
    width: 100% !important;
    min-width: 0 !important;
    max-width: none !important;
    min-height: 48px !important;
    height: auto !important;
    max-height: none !important;
    padding: 8px 8px !important;
    margin: 0 !important;
    border-width: 1px !important;
    border-style: solid !important;
    border-color: rgba(78, 14, 28, .14) !important;
    border-radius: 12px !important;
    background: #ffffff !important;
    color: #341713 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    box-sizing: border-box !important;
    font-size: 12.2px !important;
    font-weight: 650 !important;
    line-height: 1.16 !important;
    letter-spacing: 0 !important;
    text-align: center !important;
    white-space: normal !important;
    overflow: visible !important;
    text-overflow: clip !important;
    transform: none !important;
    translate: none !important;
    scale: none !important;
    box-shadow: none !important;
    transition: background-color .12s ease, color .12s ease, border-color .12s ease !important;
    -webkit-tap-highlight-color: transparent !important;
    touch-action: manipulation !important;
  }

  #mkSubChips .mk-sub-chip.is-active {
    background: #4e0e1c !important;
    color: #f8d879 !important;
    border-color: #4e0e1c !important;
    font-weight: 650 !important;
  }

  .mk-toolbar {
    margin: 0 0 10px !important;
    padding: 0 !important;
    border: 0 !important;
  }

  .mk-count {
    display: inline-flex !important;
    align-items: center !important;
    min-height: 30px !important;
    padding: 0 10px !important;
    border-radius: 999px !important;
    background: #fffaf2 !important;
    border: 1px solid rgba(78, 14, 28, .10) !important;
    color: #7a1324 !important;
    font-size: 12.5px !important;
    font-weight: 750 !important;
  }

  .mk-grid,
  #mkGrid {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 9px !important;
    min-height: 160px !important;
  }

  .mk-card,
  .mk-card:hover,
  .mk-card:focus,
  .mk-card:active {
    display: flex !important;
    flex-direction: column !important;
    gap: 6px !important;
    width: 100% !important;
    min-height: 94px !important;
    padding: 14px 15px !important;
    border-radius: 15px !important;
    background: #ffffff !important;
    border: 1px solid rgba(78, 14, 28, .10) !important;
    box-shadow: 0 8px 22px rgba(42, 7, 16, .055) !important;
    transform: none !important;
    box-sizing: border-box !important;
  }

  .mk-card-sub {
    font-size: 9.8px !important;
    letter-spacing: .16em !important;
    color: #9a6b1e !important;
    line-height: 1 !important;
  }

  .mk-card-title {
    font-size: 15.3px !important;
    line-height: 1.28 !important;
    color: #24100d !important;
  }

  .mk-card-desc {
    font-size: 12.7px !important;
    line-height: 1.45 !important;
    color: #65574e !important;
    -webkit-line-clamp: 2 !important;
  }

  .mk-more {
    margin-top: 15px !important;
  }

  .mk-more button {
    width: 100% !important;
    height: 44px !important;
    border-radius: 13px !important;
    background: #4e0e1c !important;
    color: #f8d879 !important;
    border-color: #4e0e1c !important;
  }
}


/* v17 — Makale üst açıklamaları kesik paragraf yerine kısa özet gibi dursun */
.article-detail-v52 .page-head p {
  max-width: 680px;
  font-size: 15.5px;
  line-height: 1.55;
  color: rgba(245,234,216,.84);
}
@media (max-width: 720px) {
  .article-detail-v52 .page-head p {
    font-size: 14px;
    line-height: 1.52;
    max-width: 100%;
  }
}

/* =========================================================
   v18 — kategori sayfalarında native dropdown kaldırıldı
   ========================================================= */
.yh-mobile-select-line,
.yh-sub-select,
select.yh-sub-select,
#yhSubSelect {
  display: none !important;
  visibility: hidden !important;
  pointer-events: none !important;
}

@media (max-width: 720px) {
  .yh-category-page .yh-hub-layout {
    grid-template-columns: 1fr !important;
    gap: 14px !important;
  }
  .yh-category-page .yh-sub-sidebar {
    position: static !important;
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 8px !important;
    width: 100% !important;
    padding: 16px !important;
    border-radius: 20px !important;
    background: #fffaf2 !important;
    border: 1px solid rgba(78, 14, 28, .10) !important;
    box-shadow: 0 12px 28px rgba(42, 7, 16, .07) !important;
    box-sizing: border-box !important;
  }
  .yh-category-page .yh-sidebar-title {
    grid-column: 1 / -1 !important;
    width: 100% !important;
    margin: 0 0 4px !important;
    color: #9a6b1e !important;
    letter-spacing: .22em !important;
    font-size: 10.5px !important;
  }
  .yh-category-page .yh-sub-filter,
  .yh-category-page .yh-sub-filter:hover,
  .yh-category-page .yh-sub-filter:focus,
  .yh-category-page .yh-sub-filter:active,
  .yh-category-page .yh-sub-filter.is-active {
    width: 100% !important;
    min-width: 0 !important;
    min-height: 48px !important;
    height: auto !important;
    padding: 8px 8px !important;
    border-radius: 13px !important;
    border: 1px solid rgba(78, 14, 28, .13) !important;
    background: #ffffff !important;
    color: #2b130f !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    box-sizing: border-box !important;
    transform: none !important;
    box-shadow: none !important;
    transition: background-color .12s ease, color .12s ease, border-color .12s ease !important;
    -webkit-tap-highlight-color: transparent !important;
    touch-action: manipulation !important;
  }
  .yh-category-page .yh-sub-filter b {
    color: inherit !important;
    font-size: 12.9px !important;
    font-weight: 700 !important;
    line-height: 1.12 !important;
  }
  .yh-category-page .yh-sub-filter small {
    display: none !important;
  }
  .yh-category-page .yh-sub-filter.is-active {
    background: #7a1324 !important;
    color: #f8d879 !important;
    border-color: #7a1324 !important;
  }
  .yh-category-page .yh-search-line {
    display: block !important;
  }
  .yh-category-page .yh-search-line label {
    display: block !important;
    font-size: 11px !important;
    font-weight: 800 !important;
    letter-spacing: .16em !important;
    color: #9a6b1e !important;
    margin-bottom: 7px !important;
    text-transform: uppercase !important;
  }
  .yh-category-page .yh-search-line input {
    min-height: 48px !important;
    border-radius: 14px !important;
    font-size: 15px !important;
  }
}

/* =========================================================
   v18 — KVKK modern kart tasarımı
   ========================================================= */
.kvkk-page-v18 .kvkk-hero-v18 {
  background: radial-gradient(circle at 70% 10%, rgba(122,19,36,.30), transparent 34%), linear-gradient(135deg, #140205 0%, #2a060d 58%, #120204 100%);
  color: #fff7e9;
  padding: 54px 24px 58px;
  border-bottom: 1px solid rgba(248,216,121,.16);
}
.kvkk-hero-grid-v18 {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 28px;
  align-items: stretch;
}
.kvkk-eyebrow-v18 {
  display: inline-block;
  color: #d2a842;
  font-size: 11px;
  letter-spacing: .28em;
  font-weight: 800;
  margin: 12px 0 10px;
}
.kvkk-hero-v18 h1 {
  color: #fff4d3;
  font-size: clamp(34px, 4.2vw, 58px);
  line-height: .98;
  margin: 0 0 16px;
  max-width: 760px;
}
.kvkk-hero-v18 p {
  max-width: 720px;
  color: rgba(255,247,233,.84);
  line-height: 1.72;
  font-size: 17px;
}
.kvkk-identity-v18 {
  background: rgba(255,255,255,.055);
  border: 1px solid rgba(248,216,121,.22);
  border-radius: 24px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 9px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.05);
}
.kvkk-identity-v18 small,
.kvkk-sections-v18 h2,
.kvkk-summary-v18 span {
  color: #c2922c;
}
.kvkk-identity-v18 small {
  font-size: 10px;
  letter-spacing: .26em;
  font-weight: 800;
}
.kvkk-identity-v18 b {
  color: #fff4d3;
  font-size: 22px;
}
.kvkk-identity-v18 span,
.kvkk-identity-v18 a {
  color: rgba(255,247,233,.82);
  line-height: 1.55;
}
.kvkk-main-v18 {
  background: #f4efe7;
  padding: 34px 24px 72px;
}
.kvkk-summary-v18 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 16px;
}
.kvkk-summary-v18 article,
.kvkk-notice-v18,
.kvkk-sections-v18 article {
  background: #fffaf2;
  border: 1px solid rgba(78,14,28,.10);
  box-shadow: 0 10px 28px rgba(42,7,16,.055);
  border-radius: 22px;
}
.kvkk-summary-v18 article {
  padding: 22px;
}
.kvkk-summary-v18 span {
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .20em;
}
.kvkk-summary-v18 h2 {
  color: #2b130f;
  font-size: 20px;
  line-height: 1.18;
  margin: 8px 0 8px;
}
.kvkk-summary-v18 p,
.kvkk-notice-v18 p,
.kvkk-sections-v18 p,
.kvkk-sections-v18 li {
  color: #5f5048;
  line-height: 1.68;
  font-size: 15px;
}
.kvkk-notice-v18 {
  padding: 20px 22px;
  margin: 0 0 18px;
  border-left: 5px solid #7a1324;
}
.kvkk-notice-v18 b {
  display: block;
  color: #7a1324;
  margin-bottom: 5px;
  font-size: 16px;
}
.kvkk-sections-v18 {
  display: grid;
  gap: 14px;
}
.kvkk-sections-v18 article {
  padding: 22px;
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 16px;
}
.kvkk-section-num-v18 {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #7a1324;
  color: #f8d879;
  font-weight: 900;
}
.kvkk-sections-v18 h2 {
  font-size: 24px;
  line-height: 1.18;
  margin: 0 0 9px;
}
.kvkk-sections-v18 ul {
  margin: 10px 0 0;
  padding-left: 18px;
}
.kvkk-cta-v18 {
  display: inline-flex;
  margin-top: 14px;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border-radius: 999px;
  background: #7a1324;
  color: #f8d879;
  font-weight: 800;
  text-decoration: none;
}
@media (max-width: 820px) {
  .kvkk-page-v18 .kvkk-hero-v18 { padding: 34px 18px 38px; }
  .kvkk-hero-grid-v18 { grid-template-columns: 1fr; gap: 18px; }
  .kvkk-identity-v18 { border-radius: 20px; padding: 18px; }
  .kvkk-main-v18 { padding: 20px 14px 52px; }
  .kvkk-summary-v18 { grid-template-columns: 1fr; gap: 10px; }
  .kvkk-summary-v18 article { padding: 18px; border-radius: 18px; }
  .kvkk-sections-v18 article { grid-template-columns: 1fr; gap: 10px; padding: 18px; border-radius: 18px; }
  .kvkk-section-num-v18 { width: 38px; height: 38px; }
  .kvkk-sections-v18 h2 { font-size: 21px; }
  .kvkk-hero-v18 p { font-size: 15.5px; }
}
