/* Mandarinbet — kilitli tasarım (responsive site) */
:root {
  --black: #000;
  --accent: #ff7a00;
  --white: #fff;
  --muted: #9c9c9c;
  --line: rgba(255, 255, 255, 0.1);
  --line-2: rgba(255, 255, 255, 0.14);
  --font: Outfit, system-ui, sans-serif;
  --max: 1080px;
  --nav-h: 76px;
  --prose: 42rem;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}
@media (max-width: 899px) {
  :root { --nav-h: 64px; }
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  height: 100%;
}
body {
  font-family: var(--font);
  background: #000;
  color: var(--white);
  line-height: 1.45;
  min-height: 100%;
  min-height: 100dvh;
  overflow-x: hidden;
  /* Kısa sayfa (404 vb.): footer alta yapışır, ortada kalmaz */
  display: flex;
  flex-direction: column;
}
/* main içeriği esner; footer alta iner */
body > main {
  flex: 1 0 auto;
  width: 100%;
}
body > .footer {
  flex-shrink: 0;
  margin-top: auto;
}
/* menü katmanları flex satırını bozmasın */
body > .scrim[hidden],
body > .drop:not(.is-open) {
  /* hidden attribute zaten display:none */
}
a { color: inherit; text-decoration: none; }
button { font: inherit; border: 0; background: none; color: inherit; cursor: pointer; }
img { display: block; max-width: 100%; }

.w {
  width: min(100% - 32px, var(--max));
  margin-inline: auto;
}
@media (max-width: 480px) {
  .w { width: min(100% - 28px, var(--max)); }
}

/* ========== NAV A + M1 ========== */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #000;
  border-bottom: 3px solid var(--accent);
}
.nav-inner {
  width: min(100% - 32px, var(--max));
  margin-inline: auto;
  height: var(--nav-h);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 12px;
}
@media (max-width: 899px) {
  /* M1: logo+wordmark sol · CTA+menü sağ */
  .nav-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
    width: min(100% - 20px, var(--max));
  }
  .nav-links { display: none !important; }
  .nav-right {
    flex-shrink: 0;
    gap: 6px;
  }
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: -0.02em;
  justify-self: start;
  min-width: 0;
  line-height: 1;
}
.brand img {
  height: 60px; /* bütün kompozit logo: marka algısı */
  width: auto;
  flex-shrink: 0;
}
.brand i { font-style: normal; color: var(--accent); }
.brand span {
  white-space: nowrap;
  line-height: 1;
  /* kesme yok — M1 kilit: logo + Mandarinbet wordmark */
  overflow: visible;
  text-overflow: clip;
}
/* Mobil M1: yatay logo net görünür */
@media (max-width: 899px) {
  .nav .brand {
    gap: 7px;
    flex-shrink: 1;
    min-width: 0;
  }
  .nav .brand img { height: 48px; }
  .nav .brand span {
    display: inline;
    font-size: 1.08rem;
    letter-spacing: -0.025em;
  }
}

.nav-links {
  display: none;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0 4px;
}
.nav-links a {
  font-size: 0.94rem;
  font-weight: 600;
  color: var(--muted);
  padding: 10px 12px;
  white-space: nowrap;
}
.nav-links a:hover { color: #fff; }
.nav-links a.on {
  color: #fff;
  box-shadow: inset 0 -2px 0 var(--accent);
}
@media (min-width: 900px) {
  .nav-links { display: flex; }
}

.nav-right {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  height: 48px;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  padding: 0 20px;
  background: var(--accent);
  color: #fff;
  font-weight: 800;
  font-size: 0.92rem;
  white-space: nowrap;
  line-height: 1;
}
.nav-cta:hover { filter: brightness(1.06); }
@media (max-width: 899px) {
  .nav-cta {
    font-size: 0.68rem;
    padding: 0 10px;
    height: 40px;
    line-height: 1.15;
    max-width: 118px;
    text-align: center;
  }
}

.menu-btn {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border: 1.5px solid #fff;
  background: transparent;
  flex-shrink: 0;
  padding: 0;
  -webkit-tap-highlight-color: transparent;
  align-self: center;
}
@media (min-width: 900px) {
  .menu-btn { display: none; }
}
.menu-btn .icon {
  width: 18px;
  height: 12px;
  position: relative;
  display: block;
}
.menu-btn .icon span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: #fff;
  transition: transform 0.28s var(--ease), top 0.28s var(--ease), opacity 0.2s ease;
  transform-origin: center;
}
.menu-btn .icon span:nth-child(1) { top: 0; }
.menu-btn .icon span:nth-child(2) { top: 5px; }
.menu-btn .icon span:nth-child(3) { top: 10px; }
body.is-open .menu-btn .icon span:nth-child(1) {
  top: 5px;
  transform: rotate(45deg);
}
body.is-open .menu-btn .icon span:nth-child(2) { opacity: 0; }
body.is-open .menu-btn .icon span:nth-child(3) {
  top: 5px;
  transform: rotate(-45deg);
}

/* Drop overlay */
.scrim {
  position: fixed;
  inset: 0;
  top: var(--nav-h);
  z-index: 40;
  background: rgba(0, 0, 0, 0.55);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.28s ease;
}
body.is-open .scrim {
  opacity: 1;
  pointer-events: auto;
}
.drop {
  position: fixed;
  top: var(--nav-h);
  left: 0;
  right: 0;
  z-index: 45;
  background: #000;
  border-bottom: 1px solid var(--line);
  transform-origin: top center;
  transform: translateY(-8px) scaleY(0.97);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    transform 0.32s var(--ease),
    opacity 0.24s ease,
    visibility 0s linear 0.32s;
}
body.is-open .drop {
  transform: translateY(0) scaleY(1);
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition:
    transform 0.32s var(--ease),
    opacity 0.2s ease,
    visibility 0s;
}
.drop nav a {
  display: block;
  padding: 13px 16px;
  font-size: 0.94rem;
  font-weight: 600;
  color: var(--muted);
  border-left: 3px solid transparent;
}
.drop nav a.on,
.drop nav a:active {
  color: #fff;
  border-left-color: var(--accent);
  background: rgba(255, 122, 0, 0.1);
}
.drop .foot {
  padding: 12px 14px 14px;
  border-top: 1px solid var(--line);
}
.drop .foot a {
  display: block;
  background: var(--accent);
  color: #fff;
  text-align: center;
  font-weight: 800;
  padding: 12px;
}

/* ========== BUTTONS ========== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.9rem;
  height: 44px;
  padding: 0 18px;
  transition: filter 0.12s, border-color 0.12s;
}
.btn-red { background: var(--accent); color: #fff; }
.btn-red:hover { filter: brightness(1.06); }
.btn-line {
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: #fff;
  background: transparent;
}
.btn-line:hover { border-color: rgba(255, 255, 255, 0.4); }

/* ========== HERO E + P1 ========== */
.hero {
  padding: 36px 0 40px;
  background: #000;
  border-bottom: 1px solid var(--line);
}
.hero-grid {
  display: grid;
  gap: 28px;
  align-items: center;
}
@media (min-width: 860px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
    gap: 40px;
  }
}
.hero-left h1 {
  font-size: clamp(1.65rem, 3.2vw, 2.55rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.06;
  margin-bottom: 12px;
}
.hero-left h1 em { font-style: normal; color: var(--accent); }
.hero-left .lede {
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.55;
  max-width: 34rem;
  margin-bottom: 16px;
}
.hero .btns {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
@media (max-width: 520px) {
  .hero .btns { display: grid; gap: 8px; }
  .hero .btns .btn { width: 100%; height: 46px; }
}
.hero .more {
  margin-top: 14px;
  font-size: 0.88rem;
  color: var(--muted);
}
.hero .more a {
  color: #ddd;
  font-weight: 600;
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
}
.hero .more a:hover { color: #fff; border-color: var(--accent); }
.hero .more .sep { margin: 0 6px; color: #555; border: 0; }

.hub {
  border: 1px solid var(--line-2);
  background:
    linear-gradient(165deg, rgba(255, 122, 0, 0.07) 0%, transparent 42%),
    #0a0a0a;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  min-height: 100%;
}
.hub::before {
  content: "";
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: var(--accent);
}
.hub-top {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px 12px 18px;
  border-bottom: 1px solid var(--line);
}
.hub-top h2 {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #bdbdbd;
}
.hub-top span {
  font-size: 0.75rem;
  font-weight: 600;
  color: #666;
}
.hub-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--line);
  flex: 1;
}
.hub-grid a {
  background: #0a0a0a;
  padding: 16px 14px 14px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 14px;
  min-height: 112px;
  transition: background 0.18s ease;
}
.hub-grid a:first-child {
  background:
    linear-gradient(135deg, rgba(255, 122, 0, 0.12), transparent 55%),
    #0a0a0a;
}
.hub-grid a:hover { background: #111; }
.hub-grid a:hover .arr {
  color: var(--accent);
  transform: translateX(3px);
}
.hub-grid .k {
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 5px;
}
.hub-grid strong {
  display: block;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.2;
}
.hub-grid .desc {
  margin-top: 4px;
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.35;
}
.hub-grid .foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.hub-grid .go {
  font-size: 0.76rem;
  font-weight: 700;
  color: #888;
}
.hub-grid .arr {
  font-size: 1rem;
  font-weight: 800;
  color: #555;
  transition: color 0.15s, transform 0.15s;
}

/* ========== HOME · S1 3 adım kartlar (kilit) ========== */
.home-steps .s1-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: 1fr;
}
@media (min-width: 800px) {
  .home-steps .s1-grid { grid-template-columns: 1fr 1fr 1fr; }
}
.home-steps .s1-card {
  background: #0a0a0a;
  border: 1px solid var(--line);
  border-top: 3px solid var(--accent);
  padding: 18px 16px 16px;
}
.home-steps .s1-card .n {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--accent);
  margin-bottom: 10px;
}
.home-steps .s1-card h3 {
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 6px;
  line-height: 1.2;
}
.home-steps .s1-card p {
  font-size: 0.86rem;
  color: var(--muted);
  line-height: 1.4;
}
@media (max-width: 799px) {
  .home-steps .s1-card { padding: 14px 12px; }
  .home-steps .s1-card h3 { font-size: 0.95rem; }
  .home-steps .s1-card p { font-size: 0.82rem; }
}

/* ========== HOME · T4 güven checklist (kilit) ========== */
.home-trust .t4-wrap {
  display: grid;
  gap: 24px;
}
@media (min-width: 860px) {
  .home-trust .t4-wrap {
    grid-template-columns: minmax(200px, 0.85fr) minmax(0, 1.25fr);
    gap: 40px;
    /* sol intro dikey ortalı — alt boşluk dağılır */
    align-items: center;
  }
}
.home-trust .t4-intro .k {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
}
.home-trust .t4-intro h2 {
  font-size: clamp(1.3rem, 2.4vw, 1.65rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 8px;
  line-height: 1.15;
}
.home-trust .t4-intro p {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.45;
  margin-bottom: 12px;
}
.home-trust .t4-intro a {
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--accent);
  border-bottom: 1px solid rgba(255, 122, 0, 0.4);
}
.home-trust .t4-list {
  border: 1px solid var(--line);
  background: #0a0a0a;
}
.home-trust .t4-li {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 12px;
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
  align-items: start;
}
.home-trust .t4-li:last-child { border-bottom: 0; }
.home-trust .t4-check {
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  border: 1.5px solid var(--accent);
  color: var(--accent);
  font-size: 0.75rem;
  font-weight: 800;
  margin-top: 1px;
  flex-shrink: 0;
}
.home-trust .t4-li strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 800;
  margin-bottom: 3px;
}
.home-trust .t4-li span {
  font-size: 0.84rem;
  color: var(--muted);
  line-height: 1.4;
}
@media (max-width: 859px) {
  .home-trust .t4-intro h2 { font-size: 1.22rem; }
  .home-trust .t4-intro p { font-size: 0.84rem; }
  .home-trust .t4-li { padding: 12px; gap: 10px; }
  .home-trust .t4-li strong { font-size: 0.9rem; }
  .home-trust .t4-li span { font-size: 0.8rem; }
}

/* ========== K2 ========== */
.sec {
  padding: 36px 0 40px;
  background: #0c0c0c;
  border-bottom: 1px solid var(--line);
}
.sh { margin-bottom: 20px; max-width: 34rem; }
.sh .k {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
}
.sh h2 {
  font-size: clamp(1.35rem, 2.5vw, 1.8rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 6px;
}
.sh p { color: var(--muted); font-size: 0.92rem; }

.k2 {
  display: grid;
  gap: 10px;
  grid-template-columns: 1fr;
}
@media (min-width: 700px) {
  .k2 { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 1000px) {
  .k2 { grid-template-columns: 1fr 1fr 1fr; }
}
.k2 a.card {
  background: #0a0a0a;
  border: 1px solid var(--line);
  border-left: 3px solid var(--accent);
  padding: 16px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: start;
  transition: background 0.15s, border-color 0.15s;
}
.k2 a.card:hover {
  background: #121212;
  border-color: rgba(255, 122, 0, 0.35);
  border-left-color: var(--accent);
}
.ico {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  background: rgba(255, 122, 0, 0.1);
  border: 1px solid rgba(255, 122, 0, 0.22);
}
.ico img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}
.k2 h3 {
  font-size: 1.02rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 4px;
  line-height: 1.2;
}
.k2 p {
  font-size: 0.86rem;
  color: var(--muted);
  line-height: 1.4;
  margin-bottom: 8px;
}
.k2 .go {
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--accent);
}
@media (max-width: 699px) {
  .k2 { gap: 8px; }
  .k2 a.card {
    padding: 12px;
    gap: 12px;
    align-items: center;
    grid-template-columns: 44px 1fr;
  }
  .ico { width: 44px; height: 44px; }
  .ico img { width: 28px; height: 28px; }
  .k2 h3 { font-size: 0.95rem; margin-bottom: 2px; }
  .k2 p {
    font-size: 0.8rem;
    margin-bottom: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .k2 .go { display: none; }
}
@media (min-width: 360px) and (max-width: 699px) {
  .k2 .go {
    display: inline-block;
    margin-top: 6px;
    font-size: 0.8rem;
  }
}

/* ========== HOME POSTS (Arc4 rows, count 3) ========== */
.home-posts .home-head {
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  justify-content: space-between;
  gap: 12px 24px;
  margin-bottom: 16px;
}
.home-posts .home-head .all {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--accent);
}
.home-posts .home-head .all:hover { filter: brightness(1.1); }

.rows a {
  display: block;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}
.rows a:first-child { border-top: 1px solid var(--line); }
.rows a:hover h3 { color: #fff; }
.rows .top {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 4px;
}
.rows .cat {
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
}
.rows .m {
  font-size: 0.76rem;
  color: #666;
  font-weight: 600;
}
.rows h3 {
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #e8e8e8;
  line-height: 1.25;
  margin-bottom: 4px;
}
.rows p {
  font-size: 0.86rem;
  color: var(--muted);
  line-height: 1.4;
  max-width: 52ch;
}
@media (max-width: 640px) {
  .rows a { padding: 13px 0; }
  .rows h3 { font-size: 0.95rem; }
  .rows p {
    font-size: 0.8rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
}

/* ========== FAQ F3-A / M3 ========== */
.sec-faq { background: #0c0c0c; }
.faq-grid {
  display: grid;
  gap: 24px;
}
@media (min-width: 860px) {
  .faq-grid {
    grid-template-columns: minmax(220px, 0.85fr) minmax(0, 1.25fr);
    gap: 32px 48px;
    align-items: center;
  }
  .faq-intro {
    position: sticky;
    top: 88px;
    align-self: center;
  }
}
.faq-intro { text-align: center; }
.faq-intro .k {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
}
.faq-intro h2 {
  font-size: clamp(1.35rem, 2.5vw, 1.85rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 6px;
  line-height: 1.15;
}
.faq-intro .lede {
  color: var(--muted);
  font-size: 0.9rem;
  margin: 0 auto 14px;
  line-height: 1.45;
  max-width: 26rem;
}
.cta-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.cta-main {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 200px;
  height: 46px;
  padding: 0 22px;
  background: var(--accent);
  color: #fff;
  font-weight: 800;
  font-size: 0.9rem;
}
.cta-main:hover { filter: brightness(1.07); }
.cta-sub {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 200px;
  height: 42px;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: #fff;
  font-weight: 700;
  font-size: 0.86rem;
}
.cta-links {
  margin-top: 4px;
  font-size: 0.84rem;
  color: var(--muted);
}
.cta-links a {
  color: #ddd;
  font-weight: 600;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.cta-links .sep { margin: 0 6px; color: #555; border: 0; }

@media (max-width: 859px) {
  .faq-intro .k { font-size: 0.68rem; margin-bottom: 6px; }
  .faq-intro h2 { font-size: 1.18rem; }
  .faq-intro .lede { font-size: 0.84rem; margin-bottom: 12px; }
  .cta-main, .cta-sub {
    min-width: 0;
    width: 100%;
    max-width: 280px;
  }
  .cta-main { height: 44px; font-size: 0.86rem; }
  .cta-sub { height: 40px; font-size: 0.82rem; }
  .cta-links { display: none; }
}

.faq {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
@media (max-width: 859px) {
  .faq { gap: 6px; margin-top: 4px; }
}
.faq-item {
  background: #0a0a0a;
  border: 1px solid var(--line);
  border-left: 3px solid var(--accent);
}
.faq-item.is-open {
  border-color: rgba(255, 122, 0, 0.35);
  border-left-color: var(--accent);
}
.faq-q {
  width: 100%;
  text-align: left;
  padding: 14px 16px;
  font-weight: 700;
  font-size: 0.94rem;
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}
@media (max-width: 859px) {
  .faq-q { padding: 11px 12px; font-size: 0.88rem; }
}
.faq-q .mark {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  color: var(--accent);
  font-weight: 800;
  font-size: 1.1rem;
  line-height: 1;
  transition: transform 0.25s var(--ease);
}
.faq-item.is-open .faq-q .mark { transform: rotate(45deg); }
.faq-a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.32s var(--ease);
}
.faq-item.is-open .faq-a { grid-template-rows: 1fr; }
.faq-a-inner { overflow: hidden; min-height: 0; }
.faq-a-inner p {
  padding: 0 16px 14px;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.55;
  opacity: 0;
  transform: translateY(-4px);
  transition: opacity 0.28s ease, transform 0.28s var(--ease);
}
@media (max-width: 859px) {
  .faq-a-inner p {
    padding: 0 12px 10px;
    font-size: 0.84rem;
  }
}
.faq-item.is-open .faq-a-inner p {
  opacity: 1;
  transform: none;
  transition-delay: 0.04s;
}

/* ========== ARCHIVE Arc4 ========== */
.page-head {
  padding: 32px 0 8px;
  background: #0c0c0c;
}
.page-head .k {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
}
.page-head h1 {
  font-size: clamp(1.45rem, 2.6vw, 1.9rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 6px;
}
.page-head .lede {
  color: var(--muted);
  font-size: 0.92rem;
  max-width: 40rem;
  margin-bottom: 16px;
}

.arc4 {
  padding: 12px 0 40px;
  background: #0c0c0c;
  border-bottom: 1px solid var(--line);
}
.arc4-grid {
  display: grid;
  gap: 28px;
}
@media (min-width: 860px) {
  .arc4-grid {
    grid-template-columns: 180px 1fr;
    gap: 40px;
    align-items: start;
  }
}
/* Kategori seçimi — kompakt 2 sütun ızgara (10+ etiket az yer kaplar) */
.cat-filter {
  margin-bottom: 14px;
}
.cat-filter-label {
  display: block;
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
}
.cats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  margin-bottom: 4px;
  border: 0;
  background: transparent;
}
@media (min-width: 860px) {
  .cats {
    position: sticky;
    top: 92px;
    margin-bottom: 0;
    grid-template-columns: 1fr; /* dar sidebar: tek sütun yeter, kompakt yükseklik */
    gap: 4px;
  }
}
/* “Tümü” satırı tam genişlik */
.cats button[data-filter="all"] {
  grid-column: 1 / -1;
}
.cats button {
  display: block;
  width: 100%;
  text-align: center;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--muted);
  padding: 8px 8px;
  min-height: 36px;
  border: 1px solid var(--line);
  border-left: 1px solid var(--line);
  background: #0a0a0a;
  cursor: pointer;
  font-family: inherit;
  line-height: 1.2;
  transition: color 0.15s, background 0.15s, border-color 0.15s;
  -webkit-tap-highlight-color: transparent;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.cats button:hover {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.03);
}
.cats button.on {
  color: #fff;
  border-color: rgba(255, 122, 0, 0.55);
  background: rgba(255, 122, 0, 0.12);
  box-shadow: inset 3px 0 0 var(--accent);
}
@media (min-width: 860px) {
  .cats button {
    text-align: left;
    padding: 8px 10px 8px 12px;
    font-size: 0.82rem;
    min-height: 34px;
  }
}
@media (max-width: 859px) {
  .cats {
    grid-template-columns: 1fr 1fr;
    gap: 6px;
  }
  .cats button {
    min-height: 40px; /* dokunma için biraz pay */
    font-size: 0.8rem;
    padding: 9px 8px;
  }
}

.rows a[hidden] { display: none !important; }
.rows-empty {
  padding: 20px 0;
  font-size: 0.9rem;
  color: #666;
  border-top: 1px solid var(--line);
}

/* ========== ARTICLE · ART-L KİLİT ==========
   İskelet (zorunlu sıra):
   1. crumbs
   2. art-split → sol: cat + H1 + lede + meta(yazar·tarih·okuma) | sağ: split-cta
   3. prose (gövde: p, h2/h3, liste, steps, tablo, figure, callout, mid-cta)
   4. author-box (tek editör · E-E-A-T)
   5. more-posts (Arc4 satır · 2–3 ilgili)
   Kurallar: tablo scroll yok · görsel max 100% · mid-cta en az 1
   ========================================== */
.art {
  padding: 28px 0 44px;
  background: #0c0c0c;
  border-bottom: 1px solid var(--line);
}
.crumbs {
  font-size: 0.78rem;
  color: #666;
  margin-bottom: 14px;
}
.crumbs a { color: #999; font-weight: 600; }
.crumbs a:hover { color: #fff; }
.crumbs .sep { margin: 0 6px; color: #444; }

.art-split {
  display: grid;
  gap: 24px;
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}
@media (min-width: 860px) {
  .art-split {
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    align-items: start;
  }
}
.art-split .cat {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
}
.art-split h1 {
  font-size: clamp(1.55rem, 2.8vw, 2.1rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.1;
  margin-bottom: 10px;
}
.art-split .lede {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.5;
  max-width: 36rem;
  margin-bottom: 10px;
}
.art-meta {
  font-size: 0.82rem;
  color: #777;
  font-weight: 600;
}
.art-meta a {
  color: #bbb;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}
.art-meta a:hover { color: #fff; }
.art-meta a[rel="author"] {
  color: #ddd;
  font-weight: 700;
}

/* Panel gövdesi sarmalayıcı (ART-L) — .prose ile birlikte kullanılır */
.art-body {
  max-width: var(--prose, 42rem);
  margin-bottom: 8px;
}
.art-body.prose {
  /* gövde stilleri .prose kurallarından gelir */
  margin-bottom: 8px;
}
.art-body .steps { max-width: none; }

/* Gövde görselsiz yazılarda tek kapak (çift basılmaz) */
.art-cover {
  max-width: var(--prose, 42rem);
  margin: 0 0 1.4em;
}
.art-cover img {
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid var(--line);
  background: #111;
}

/* Yazı sonu yazar kartı (E-E-A-T) — more-posts öncesi */
.author-box {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 14px 16px;
  margin: 28px 0 0;
  padding: 16px;
  max-width: 44rem;
  background: #0a0a0a;
  border: 1px solid var(--line);
  border-left: 3px solid var(--accent);
}
.author-box .av {
  width: 56px;
  height: 56px;
  object-fit: contain;
  background: #111;
  border: 1px solid var(--line);
  padding: 4px;
}
.author-box .k {
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 4px;
}
.author-box .name {
  display: inline-block;
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #fff;
  margin-bottom: 2px;
}
.author-box .name:hover { color: var(--accent); }
.author-box .role {
  font-size: 0.78rem;
  font-weight: 600;
  color: #888;
  margin-bottom: 8px;
}
.author-box .bio {
  font-size: 0.86rem;
  color: var(--muted);
  line-height: 1.45;
  margin-bottom: 10px;
}
.author-box .go {
  font-size: 0.82rem;
  font-weight: 700;
  color: #ccc;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}
.author-box .go:hover { color: #fff; }

/* /yazar/ profil sayfası — Mandarinbet DNA */
.author-page {
  padding: 28px 0 48px;
  background: #0c0c0c;
  border-bottom: 1px solid var(--line);
}
.author-hero {
  display: grid;
  gap: 20px;
  padding-bottom: 24px;
  margin-bottom: 28px;
  border-bottom: 1px solid var(--line);
}
@media (min-width: 640px) {
  .author-hero {
    grid-template-columns: 96px 1fr;
    gap: 24px;
    align-items: start;
  }
}
.author-hero .av {
  width: 96px;
  height: 96px;
  object-fit: contain;
  background: #0a0a0a;
  border: 1px solid var(--line);
  padding: 8px;
}
.author-hero .k {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
}
.author-hero h1 {
  font-size: clamp(1.6rem, 3vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.1;
  margin-bottom: 6px;
}
.author-hero .role {
  font-size: 0.88rem;
  font-weight: 600;
  color: #999;
  margin-bottom: 12px;
}
.author-hero .bio {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.5;
  max-width: 36rem;
  margin-bottom: 12px;
}
.author-hero .stats {
  font-size: 0.82rem;
  font-weight: 600;
  color: #777;
}
.author-hero .stats a {
  color: #bbb;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.author-hero .stats a:hover { color: #fff; }
/* ========== TAG CLOUD (odak etiketleri vb.) ==========
   Çoğaldıkça mobil/desktop’ta limit + “+N” ile açılır (JS: data-tag-cloud) */
.tag-cloud,
.author-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 12px;
  align-items: center;
}
.tag-cloud .tag,
.author-tags span.tag,
.author-tags > span:not(.tag-more) {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #999;
  border: 1px solid var(--line);
  padding: 4px 8px;
  background: #0a0a0a;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
/* collapsed iken limit üstü gizle (JS data-i ile de yönetir) */
.tag-cloud.is-collapsed .tag.is-overflow {
  display: none !important;
}
.tag-more {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: #fff;
  border: 1px solid rgba(255, 122, 0, 0.45);
  background: rgba(255, 122, 0, 0.12);
  padding: 4px 10px;
  cursor: pointer;
  font-family: inherit;
  flex-shrink: 0;
}
.tag-more:hover {
  background: rgba(255, 122, 0, 0.22);
  border-color: var(--accent);
}
.tag-more[aria-expanded="true"] {
  color: var(--muted);
  border-color: var(--line);
  background: transparent;
}

.author-posts .sh {
  margin-bottom: 14px;
}

.split-cta {
  border: 1px solid var(--line);
  border-left: 3px solid var(--accent);
  background: #0a0a0a;
  padding: 16px;
}
@media (min-width: 860px) {
  .split-cta {
    position: sticky;
    top: 80px;
  }
}
.split-cta .k {
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
}
.split-cta p {
  font-size: 0.84rem;
  color: var(--muted);
  margin-bottom: 12px;
  line-height: 1.4;
}
.split-cta .btn { width: 100%; margin-bottom: 8px; }
.split-cta .btn:last-child { margin-bottom: 0; }

/* Opsiyonel: how-to adım blokları (prose içinde veya hemen altında) */
.steps {
  display: flex;
  flex-direction: column;
  max-width: var(--prose);
  margin: 0 0 1.5em;
}
.step {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 14px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}
.step:first-child { border-top: 1px solid var(--line); }
.step .n {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  background: rgba(255, 122, 0, 0.12);
  border: 1px solid rgba(255, 122, 0, 0.3);
  color: var(--accent);
  font-weight: 800;
  font-size: 0.95rem;
}
.step h2,
.step h3 {
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 6px;
  line-height: 1.2;
  color: #fff;
}
.step p {
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.55;
  margin: 0;
}
.step a {
  color: #fff;
  border-bottom: 1px solid rgba(255, 122, 0, 0.5);
  font-weight: 600;
}
@media (max-width: 640px) {
  .step {
    grid-template-columns: 36px 1fr;
    gap: 10px;
    padding: 14px 0;
  }
  .step .n { width: 36px; height: 36px; font-size: 0.85rem; }
  .step h2,
  .step h3 { font-size: 0.95rem; }
  .step p { font-size: 0.86rem; }
  .art-split .lede { font-size: 0.9rem; }
  .art-meta { font-size: 0.78rem; }
}

/* Prose */
.prose {
  max-width: var(--prose);
  width: 100%;
  color: #cfcfcf;
  font-size: 0.98rem;
  line-height: 1.7;
  overflow-wrap: anywhere;
  word-break: break-word;
}
.prose > * { max-width: 100%; }
.prose p { margin-bottom: 1em; }
.prose h2 {
  color: #fff;
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 1.6em 0 0.55em;
  line-height: 1.2;
}
.prose h3 {
  color: #fff;
  font-size: 1.05rem;
  font-weight: 800;
  margin: 1.3em 0 0.45em;
}
.prose ul, .prose ol {
  margin: 0 0 1em 1.15em;
  color: var(--muted);
}
.prose li { margin-bottom: 0.35em; }
.prose a {
  color: #fff;
  border-bottom: 1px solid rgba(255, 122, 0, 0.55);
  font-weight: 600;
}
.prose strong { color: #fff; font-weight: 700; }

.prose figure { margin: 1.4em 0; max-width: 100%; }
.prose figure img,
.prose p img,
.prose > img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  border: 1px solid var(--line);
  background: #111;
}
.prose figcaption {
  margin-top: 8px;
  font-size: 0.8rem;
  color: #777;
  font-weight: 600;
  line-height: 1.4;
}

.prose .table-wrap,
.prose figure.table {
  margin: 1.35em 0 1.5em;
  max-width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border: 1px solid var(--line);
  background: #0a0a0a;
}
.prose figure.table { padding: 0; }
.prose table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
  line-height: 1.4;
  min-width: 480px;
}
.prose th {
  text-align: left;
  font-weight: 800;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #bbb;
  padding: 10px 12px;
  border-bottom: 2px solid rgba(255, 122, 0, 0.55);
  background: #0a0a0a;
}
.prose td {
  padding: 12px;
  border-bottom: 1px solid var(--line);
  color: #cfcfcf;
  vertical-align: top;
}
.prose tbody tr:hover td { background: rgba(255, 255, 255, 0.02); }

@media (max-width: 640px) {
  .prose { font-size: 0.92rem; }
  .prose h2 { font-size: 1.08rem; }
  .prose table,
  .prose thead,
  .prose tbody,
  .prose th,
  .prose td,
  .prose tr {
    display: block;
    width: 100%;
  }
  .prose thead { display: none; }
  .prose tr {
    margin-bottom: 10px;
    border: 1px solid var(--line);
    border-left: 3px solid var(--accent);
    background: #0a0a0a;
    padding: 4px 0;
  }
  .prose td {
    display: grid;
    grid-template-columns: 7.5rem 1fr;
    gap: 8px;
    padding: 10px 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }
  .prose tr td:last-child { border-bottom: 0; }
  .prose td::before {
    content: attr(data-label);
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--accent);
    padding-top: 2px;
  }
}

.prose .callout {
  margin: 1.35em 0;
  padding: 14px 16px;
  background: #0a0a0a;
  border: 1px solid var(--line);
  border-left: 3px solid var(--accent);
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.5;
}
.prose .callout strong { color: #fff; }
.prose code {
  font-family: ui-monospace, Consolas, monospace;
  font-size: 0.86em;
  background: #151515;
  border: 1px solid var(--line);
  padding: 1px 6px;
  color: #eee;
  word-break: break-all;
}

.mid-cta {
  margin: 1.6em 0;
  padding: 16px;
  background: #0a0a0a;
  border: 1px solid var(--line);
  border-left: 3px solid var(--accent);
  max-width: 100%;
}
.mid-cta p {
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 12px;
}
.mid-cta .btns { display: flex; flex-wrap: wrap; gap: 8px; }
@media (max-width: 520px) {
  .mid-cta .btns { display: grid; }
  .mid-cta .btn { width: 100%; }
}

.more-posts {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  max-width: 44rem;
}
.more-posts .k {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 6px;
}
.more-posts h2 {
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

/* ========== FOOTER ========== */
.footer {
  padding: 32px 0 36px;
  color: #666;
  font-size: 0.82rem;
  background: #000;
  margin-top: auto; /* sticky bottom on short pages */
}

/* 404 / boş durum */
.page-empty {
  padding: 56px 0 72px;
  min-height: min(50vh, 420px);
}
.page-empty .k {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
}
.page-empty h1 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 12px;
}
.page-empty .lede {
  color: var(--muted);
  font-size: 0.95rem;
}
.page-empty .lede a {
  color: #fff;
  font-weight: 700;
  border-bottom: 1px solid rgba(255, 122, 0, 0.5);
}
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center; /* logo ile linkler aynı dikey hizada */
  gap: 16px 24px;
  margin-bottom: 20px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
  flex-wrap: wrap;
}
.footer .brand {
  font-size: 0.98rem;
  color: #fff;
  line-height: 1;
  align-items: center;
}
.footer .brand img { height: 64px; }
.footer .brand span {
  display: inline;
  line-height: 1;
}
.footer nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0 16px;
  line-height: 1;
}
.footer nav a {
  display: inline-flex;
  align-items: center;
  height: 28px; /* logo img yüksekliğiyle hizalı */
  font-size: 0.84rem;
  font-weight: 600;
  color: #888;
  line-height: 1;
}
.footer nav a:hover { color: var(--muted); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}
.pill { display: inline-flex; gap: 8px; }
.pill em {
  font-style: normal;
  border: 1px solid var(--line);
  padding: 3px 8px;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--muted);
}

/* ——— Anasayfa SEO metni (uzun yazı, H2 keyword başlıklar) ——— */
.seo-home .prose { max-width: 920px; }
.seo-home .prose h2:first-child { margin-top: 0; }

/* ========== MOBILE UX POLISH (2026-09) ==========
   Amaç: dokunma hedefleri ≥44px, bol whitespace, okunabilir tipografi.
   Yalnızca ≤899px etkiler; desktop kurallarına dokunmaz. */

/* Dokunma vurgusu + klavye odağı (tüm cihazlar) */
a, button, summary, [role="button"] {
  -webkit-tap-highlight-color: rgba(255, 122, 0, 0.18);
}
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

/* Sticky mobil CTA — markup mandarin_footer() içinde; desktop'ta gizli */
.sticky-cta { display: none; }

@media (max-width: 899px) {
  /* Sticky CTA bar: içerikle çakışmasın diye body'ye pay */
  body { padding-bottom: calc(72px + env(safe-area-inset-bottom, 0px)); }
  .sticky-cta {
    display: block;
    position: fixed;
    left: 0; right: 0; bottom: 0;
    z-index: 60;
    padding: 10px 14px calc(10px + env(safe-area-inset-bottom, 0px));
    background: rgba(0, 0, 0, 0.94);
    border-top: 1px solid var(--line);
  }
  .sticky-cta a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    height: 52px;
    background: var(--accent);
    color: #fff;
    font-weight: 800;
    font-size: 1.02rem;
    letter-spacing: -0.01em;
  }
  .sticky-cta a:active { filter: brightness(1.1); }

  /* ——— Nav: rahat dokunma hedefleri ——— */
  .nav-cta {
    height: 44px;
    font-size: 0.8rem;
    padding: 0 14px;
    max-width: 152px;
  }
  .menu-btn { width: 44px; height: 44px; }
  .drop nav a { padding: 15px 16px; font-size: 1rem; }
  .drop .foot a { padding: 14px; }

  /* ——— Hero ——— */
  .hero { padding: 44px 0 48px; }
  .hero-left .lede { font-size: 1.02rem; line-height: 1.6; }
  /* Hero hızlı linkler: kelime bölünmesi olmayan chip sırası */
  .hero .more {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    font-size: 0.84rem;
    line-height: 1.4;
    margin-top: 18px;
  }
  .hero .more .sep { display: none; }
  .hero .more a {
    display: inline-flex;
    align-items: center;
    min-height: 40px;
    padding: 8px 14px;
    white-space: nowrap;
    background: #0a0a0a;
    border: 1px solid rgba(255, 255, 255, 0.16);
    font-weight: 600;
    color: #e8e8e8;
  }
  .hero .more a:active { border-color: var(--accent); color: #fff; }

  /* ——— Hub (Rehberler): tek sütun, ferah kartlar ——— */
  .hub-grid { grid-template-columns: 1fr; }
  .hub-grid a {
    padding: 20px 18px 16px;
    min-height: 0;
    gap: 12px;
  }
  .hub-grid strong { font-size: 1.08rem; }
  .hub-grid .desc { font-size: 0.88rem; line-height: 1.45; }
  .hub-grid .go { font-size: 0.84rem; }

  /* ——— Adım kartları: mobilde küçültme yok, nefes var ——— */
  .home-steps .s1-grid { gap: 14px; }
  .home-steps .s1-card { padding: 20px 18px 18px; }
  .home-steps .s1-card h3 { font-size: 1.08rem; margin-bottom: 8px; }
  .home-steps .s1-card p { font-size: 0.9rem; line-height: 1.55; }

  /* ——— Güven listesi ——— */
  .home-trust .t4-li { padding: 16px 14px; }

  /* ——— Kategori kartları (k2) ——— */
  .k2 { gap: 12px; }

  /* ——— Yazı satırları (rows) ——— */
  .rows a { padding: 18px 0; }

  /* ——— Kategori filtre: ≥44px hedef ——— */
  .cats { gap: 8px; }
  .cats button {
    min-height: 46px;
    font-size: 0.86rem;
    padding: 10px;
  }

  /* ——— FAQ: rahat dokunma ——— */
  .faq { gap: 10px; }
  .faq-q {
    padding: 15px 16px;
    font-size: 0.94rem;
    min-height: 54px;
  }
  .faq-a-inner p {
    padding: 0 16px 15px;
    font-size: 0.9rem;
    line-height: 1.6;
  }

  /* ——— Makale ——— */
  .crumbs { font-size: 0.84rem; line-height: 2.1; }
  .crumbs a { padding: 4px 2px; }
  .art { padding: 32px 0 52px; }
  .art-split .lede { font-size: 1rem; line-height: 1.6; }
  .art-meta { font-size: 0.86rem; line-height: 1.8; }
  .split-cta .btn { height: 50px; font-size: 0.95rem; }
  .prose { font-size: 1rem; line-height: 1.7; }
  .prose h2 { font-size: 1.22rem; }
  .prose h3 { font-size: 1.06rem; }
  .mid-cta { padding: 18px 16px; }
  .mid-cta .btn { height: 50px; }

  /* ——— Footer: dokunulabilir linkler, dengeli 2 sütun grid (öksüz satır yok) ——— */
  .footer { padding: 36px 0 44px; }
  .footer-top { gap: 16px 20px; margin-bottom: 22px; padding-bottom: 20px; }
  .footer .brand img { height: 52px; }
  .footer nav {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 18px;
    width: 100%;
  }
  .footer nav a {
    display: flex;
    align-items: center;
    height: 44px;
    font-size: 0.9rem;
    border-bottom: 1px solid var(--line);
  }
  .footer-bottom { gap: 14px; }
  .pill em { padding: 6px 10px; font-size: 0.76rem; }
}
