/* ==========================================================================
   MYCOVITA — a living archive of fungi
   Görsel dil (Kemal, 2026-09-04): Signal (Enova) referansı — Fraunces display
   + Schibsted Grotesk gövde, açık nötr zemin, beyaz yuvarlatılmış kartlar,
   logo sol / ortalanmış menü / sağda ikon + pill buton, sütunlu footer,
   karanlık mod. Tek dosya, derleme yok.
   ========================================================================== */

/* 1 · Yazı tipleri: @font-face default.hbs <head> içinde ({{asset}} ile, preload URL'siyle aynı) */
/* 1a · Fallback metrik eşleme (swap kayması ≈ 0; Fraunces↔Georgia, Schibsted↔Arial) */
@font-face { font-family: "Fraunces-fallback"; src: local("Georgia"); size-adjust: 104%; ascent-override: 92%; descent-override: 24%; line-gap-override: 0%; }
@font-face { font-family: "Schibsted-fallback"; src: local("Arial"); size-adjust: 99%; ascent-override: 96%; descent-override: 24%; line-gap-override: 0%; }

/* 2 · Tokenlar (açık) */
:root {
    --paper: #f5f5f0;
    --surface: #ffffff;
    --ink: #15160f;
    --ink-2: #33352c;
    --ink-3: #5b5d52;
    --ink-4: #6e7064;
    --line: rgba(0, 0, 0, .10);
    --line-2: rgba(0, 0, 0, .16);
    --sub: rgba(21, 22, 15, .04);
    --on-ink: #ffffff;
    --accent: #1b3322;          /* marka yeşili */
    --accent-soft: rgba(27, 51, 34, .12);
    --gold: #c4a35a;
    --code-bg: #e9eae3;

    --display: var(--gh-font-heading, "Fraunces", "Fraunces-fallback", ui-serif, Georgia, "Times New Roman", serif);
    --sans: var(--gh-font-body, "Schibsted Grotesk", "Schibsted-fallback", ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif);
    --mono: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;

    --wrap: 1200px;
    --gutter: clamp(1rem, 4vw, 2.5rem);
    --header-h: 4.5rem;
    --r-pill: 999px;
    --r-row: 12px;
    --r-media: 16px;
    --r-hero: 22px;
    --t: 180ms;
    --ease: cubic-bezier(.4, 0, .2, 1);
    color-scheme: light;
}
/* Koyu mod YALNIZ açık seçimle (Kemal, 2026-09-04: varsayılan aydınlık; sistem tercihi izlenmez). */
:root[data-theme="dark"] { --paper: #0e0f0a; --surface: #17180f; --ink: #f2f2ea; --ink-2: #d7d8cc; --ink-3: #a4a698; --ink-4: #8a8c80; --line: rgba(255, 255, 255, .12); --line-2: rgba(255, 255, 255, .2); --sub: rgba(255, 255, 255, .05); --on-ink: #0e0f0a; --accent: #b7d98e; --accent-soft: rgba(183, 217, 142, .16); --code-bg: #20211a; color-scheme: dark; }

/* 3 · Taban */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 1rem); }
body { margin: 0; background: var(--paper); color: var(--ink); font-family: var(--sans); font-size: 1rem; line-height: 1.5; text-rendering: optimizeLegibility; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; overflow-x: clip; }
img, svg, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color var(--t) var(--ease); }
button { font: inherit; color: inherit; background: none; border: 0; padding: 0; cursor: pointer; }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; border-radius: 4px; }
h1, h2, h3, h4 { font-family: var(--display); font-weight: 600; font-synthesis-weight: none; line-height: 1.1; letter-spacing: -.02em; margin: 0; text-wrap: balance; }
h1 { font-size: clamp(2.25rem, 1.6rem + 2.8vw, 3.75rem); }
h2 { font-size: clamp(1.5rem, 1.25rem + 1vw, 2rem); }
h3 { font-size: 1.25rem; line-height: 1.25; }
h4 { font-size: 1.05rem; }
p { margin: 0; }
hr { border: 0; border-top: 1px solid var(--line); margin: 0; }
.mv-ico { display: inline-block; vertical-align: -.15em; flex: none; }
.mv-skip { position: absolute; left: 1rem; top: -4rem; z-index: 200; padding: .6rem 1rem; background: var(--ink); color: var(--on-ink); border-radius: var(--r-pill); font-size: .875rem; font-weight: 600; }
.mv-skip:focus { top: 1rem; }

/* Ortak sesler */
.mv-kicker, .mv-eyebrow { display: inline-flex; align-items: center; gap: .5rem; font-size: .75rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-4); }
.mv-kicker::before, .mv-eyebrow::before { content: ""; width: .5rem; height: .5rem; border-radius: 50%; background: var(--accent); flex: none; }
.mv-kicker a:hover { color: var(--ink); }
.mv-meta { font-size: .875rem; color: var(--ink-4); }
.mv-meta strong, .mv-meta b { font-weight: 600; color: var(--ink-3); }
.mv-btn { display: inline-flex; align-items: center; justify-content: center; gap: .5rem; min-height: 2.75rem; padding: 0 1.5rem; border-radius: var(--r-pill); font-family: var(--sans); font-size: .875rem; font-weight: 600; line-height: 1; white-space: nowrap; border: 1px solid transparent; transition: background var(--t) var(--ease), color var(--t) var(--ease), border-color var(--t) var(--ease), transform var(--t) var(--ease); }
.mv-btn--solid { background: var(--ink); color: var(--on-ink); }
.mv-btn--solid:hover { background: var(--ink-2); color: var(--on-ink); }
.mv-btn--outline { border-color: var(--ink); color: var(--ink); background: transparent; }
.mv-btn--outline:hover { background: var(--ink); color: var(--on-ink); }
.mv-btn--sm { min-height: 2.5rem; padding: 0 1.25rem; font-size: .875rem; }
.mv-btn--soft { background: var(--surface); border-color: var(--line-2); color: var(--ink); }
.mv-btn--soft:hover { border-color: var(--ink); }
.mv-more { display: inline-flex; align-items: center; gap: .35rem; font-size: .875rem; font-weight: 600; color: var(--ink-3); }
.mv-more:hover { color: var(--ink); }
button.mv-more { line-height: inherit; }
.mv-more .mv-ico { transition: transform var(--t) var(--ease); }
.mv-more:hover .mv-ico { transform: translateX(.2rem); }
.mv-icon-btn { display: inline-grid; place-items: center; width: 2.5rem; height: 2.5rem; border-radius: 50%; color: var(--ink); transition: background var(--t) var(--ease); }
.mv-icon-btn:hover { background: var(--sub); }

/* 4 · Başlık çubuğu — logo sol · menü orta · ikonlar + pill sağ */
.mv-head { position: sticky; top: 0; z-index: 100; background: color-mix(in srgb, var(--paper) 86%, transparent); backdrop-filter: saturate(160%) blur(12px); -webkit-backdrop-filter: saturate(160%) blur(12px); border-bottom: 1px solid var(--line); }
@supports not (color-mix(in srgb, red, blue)) { .mv-head { background: var(--paper); } }
.mv-head-inner { max-width: var(--wrap); margin: 0 auto; padding: 0 var(--gutter); min-height: var(--header-h); display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 1rem; }
.mv-brand { display: inline-flex; align-items: center; justify-self: start; }
.mv-brand-logo { width: auto; height: 2rem; }
.mv-brand-word { font-family: var(--display); font-weight: 700; font-size: 1.35rem; letter-spacing: -.01em; }
.mv-nav-desktop { display: none; justify-self: center; }
.mv-nav { list-style: none; margin: 0; padding: 0; display: flex; align-items: center; gap: 2rem; }
.mv-nav a, .mv-nav-summary { font-size: .875rem; font-weight: 600; color: var(--ink); transition: color var(--t) var(--ease); }
.mv-nav a:hover, .mv-nav-summary:hover { color: var(--ink-3); }
.mv-nav-has-group { position: relative; }
.mv-nav-group summary { list-style: none; cursor: pointer; display: inline-flex; align-items: center; gap: .35rem; }
.mv-nav-group summary::-webkit-details-marker { display: none; }
.mv-nav-group summary::after { content: ""; width: .4rem; height: .4rem; border-right: 1.5px solid currentColor; border-bottom: 1.5px solid currentColor; transform: translateY(-.15rem) rotate(45deg); transition: transform var(--t) var(--ease); }
.mv-nav-group[open] summary::after { transform: translateY(.05rem) rotate(225deg); }
.mv-nav-sub { position: absolute; top: calc(100% + .75rem); left: 50%; transform: translateX(-50%); min-width: 13rem; margin: 0; padding: .4rem; list-style: none; background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-row); box-shadow: 0 16px 40px rgba(0, 0, 0, .12); }
.mv-nav-sub li a { display: block; padding: .55rem .8rem; border-radius: 8px; font-weight: 500; }
.mv-nav-sub li a:hover { background: var(--sub); color: var(--ink); }
.mv-head-tools { display: flex; align-items: center; gap: .25rem; justify-self: end; }
.mv-head-cta { display: none; margin-left: .5rem; }
.mv-theme-btn .mv-ico-sun { display: none; }
:root[data-theme="dark"] .mv-theme-btn .mv-ico-sun { display: block; }
:root[data-theme="dark"] .mv-theme-btn .mv-ico-moon { display: none; }
.mv-menu { position: static; }
.mv-menu-btn { list-style: none; cursor: pointer; display: inline-grid; place-items: center; width: 2.5rem; height: 2.5rem; border-radius: 50%; }
.mv-menu-btn:hover { background: var(--sub); }
.mv-menu-btn::-webkit-details-marker { display: none; }
.mv-menu-ico { width: 1.15rem; height: .85rem; display: inline-flex; flex-direction: column; justify-content: space-between; }
.mv-menu-ico i { display: block; height: 1.5px; background: currentColor; border-radius: 2px; transition: transform var(--t) var(--ease); }
.mv-menu[open] .mv-menu-ico i:first-child { transform: translateY(.4rem) rotate(45deg); }
.mv-menu[open] .mv-menu-ico i:last-child { transform: translateY(-.4rem) rotate(-45deg); }
.mv-menu-panel { position: absolute; left: 0; right: 0; top: 100%; background: var(--surface); border-bottom: 1px solid var(--line); box-shadow: 0 24px 48px rgba(0, 0, 0, .12); padding: .75rem var(--gutter) 1.25rem; max-height: calc(100vh - var(--header-h)); max-height: calc(100dvh - var(--header-h)); overflow: auto; }
.mv-nav--flat { flex-direction: column; align-items: stretch; gap: 0; max-width: var(--wrap); margin: 0 auto; }
.mv-nav--flat .mv-nav-item a { display: block; padding: .8rem .25rem; font-family: var(--display); font-size: 1.25rem; font-weight: 600; letter-spacing: -.01em; border-bottom: 1px solid var(--line); }
.mv-nav--flat .mv-nav-grouplabel { font-size: .75rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-4); padding: 1.1rem .25rem .3rem; }
.mv-nav--flat .mv-nav-sub-item a { font-family: var(--sans); font-size: 1rem; font-weight: 500; padding: .55rem .25rem .55rem 1rem; }
.mv-menu-foot { max-width: var(--wrap); margin: 1rem auto 0; display: flex; flex-wrap: wrap; gap: .75rem; align-items: center; }
@media (min-width: 1024px) {
    .mv-head-inner { grid-template-columns: 1fr auto 1fr; }
    .mv-nav-desktop { display: block; }
    .mv-menu { display: none; }
    .mv-head-cta { display: inline-flex; }
}


/* 4a · Üst bant marka yeşili (Kemal, 2026-09-04) — @custom.header_style */
.mv-head-yesil .mv-head { background: color-mix(in srgb, #1b3322 94%, transparent); border-bottom-color: rgba(255, 255, 255, .08); color: #f2f2ea; }
@supports not (color-mix(in srgb, red, blue)) { .mv-head-yesil .mv-head { background: #1b3322; } }
.mv-head-yesil .mv-nav a, .mv-head-yesil .mv-nav-summary { color: #f2f2ea; }
.mv-head-yesil .mv-nav a:hover, .mv-head-yesil .mv-nav-summary:hover { color: var(--gold); }
.mv-head-yesil .mv-icon-btn, .mv-head-yesil .mv-menu-btn { color: #f2f2ea; }
.mv-head-yesil .mv-icon-btn:hover, .mv-head-yesil .mv-menu-btn:hover { background: rgba(255, 255, 255, .1); }
.mv-head-yesil .mv-head-cta { background: var(--gold); color: #1b3322; }
.mv-head-yesil .mv-head-cta:hover { background: #d4b672; color: #1b3322; }
.mv-head-yesil .mv-brand-word { color: #f2f2ea; }
.mv-head-yesil .mv-nav-sub { background: var(--surface); color: var(--ink); }
.mv-head-yesil .mv-nav-sub li a { color: var(--ink); }
.mv-head-yesil .mv-menu-panel { color: var(--ink); }
.mv-head-yesil :focus-visible { outline-color: var(--gold); }

/* 5 · İskelet ve bölüm başlıkları */
.mv-main { max-width: var(--wrap); margin: 0 auto; padding: 0 var(--gutter); }
.mv-section { padding-top: clamp(3rem, 6vw, 5rem); }
.mv-section-head { display: flex; align-items: baseline; justify-content: space-between; gap: 1rem; margin-bottom: 1.5rem; }
.mv-section-title { font-size: 1.5rem; }
.mv-section-lede { margin-top: .5rem; color: var(--ink-3); font-size: 1rem; max-width: 40rem; }
.mv-section-head--stack { display: block; }
.mv-section-foot { margin-top: 1.5rem; display: flex; }

/* 6 · Hero — ortalanmış bildirim */
.mv-hero { text-align: center; padding: clamp(3rem, 8vw, 6rem) 0 clamp(2.5rem, 6vw, 4rem); display: flex; flex-direction: column; align-items: center; gap: 1.25rem; }
.mv-hero-title { font-size: clamp(2.4rem, 1.5rem + 3.6vw, 4.25rem); line-height: 1.05; letter-spacing: -.03em; max-width: 16ch; }
.mv-hero-lede { font-size: clamp(1.05rem, 1rem + .3vw, 1.2rem); line-height: 1.55; color: var(--ink-3); max-width: 34rem; text-wrap: pretty; }
.mv-hero-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: .75rem; margin-top: .5rem; }
.mv-hero-facts { display: flex; flex-wrap: wrap; justify-content: center; gap: .75rem; margin: 0; padding: 0; }
.mv-hero-facts div { display: inline-flex; align-items: center; gap: .5rem; padding: .55rem 1rem; background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-pill); font-size: .875rem; font-weight: 600; }
.mv-hero-facts dt { color: var(--ink-4); font-weight: 600; }
.mv-hero-facts dd { margin: 0; }
.mv-hero-facts dd a:hover { color: var(--accent); }
/* v1.7.0 — ilk kez gelen yolu (hero altı tek cümle) */
.mv-hero-path { margin-top: 1.25rem; font-size: .9rem; color: var(--ink-3); display: flex; flex-wrap: wrap; justify-content: center; gap: .35rem .5rem; }
.mv-hero-path a { font-weight: 600; color: var(--ink); text-decoration: underline; text-decoration-color: var(--line-2); text-underline-offset: .2em; }
.mv-hero-path a:hover { text-decoration-color: var(--accent); }
/* v1.7.0 — bilim | gastronomi tek bant, görselsiz liste */
.mv-duo { display: grid; gap: 2.5rem 3rem; }
.mv-duo-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; }
.mv-duo-list li { display: flex; flex-direction: column; gap: .2rem; padding: .8rem 0; border-top: 1px solid var(--line); }
.mv-duo-list li:last-child { border-bottom: 1px solid var(--line); }
.mv-duo-title { font-family: var(--display); font-weight: 600; font-size: 1.1rem; line-height: 1.3; }
.mv-duo-title:hover { color: var(--ink-3); }
.mv-duo-meta { font-size: .8rem; color: var(--ink-4); }
@media (min-width: 900px) { .mv-duo { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .mv-index-list.mv-index-list--6, .mv-index-list.mv-index-list--9 { grid-template-columns: repeat(3, 1fr); } }
/* S2-4 (2026-09-06): dokuz sabit merkez; kartın son satırı konuya özgü bağlantı metni. */
.mv-index-cta { margin-top: auto; padding-top: .35rem; font-size: .8125rem; font-weight: 600; color: var(--ink-2); display: inline-flex; align-items: center; gap: .3rem; }
.mv-index-cta svg { width: .9em; height: .9em; }
.mv-index-item a:hover .mv-index-cta { color: var(--ink); }
.mv-hero-facts-label { margin-top: 2rem; font-size: .75rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-4); }

/* 7 · Kartlar (görselli) */
.mv-card-grid { display: grid; gap: 2rem 1.5rem; }
@media (min-width: 640px) { .mv-card-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .mv-card-grid { grid-template-columns: repeat(3, 1fr); } }
.mv-card { position: relative; display: flex; flex-direction: column; gap: .9rem; }
.mv-card-img { display: block; overflow: hidden; border-radius: var(--r-media); background: var(--sub); }
.mv-card-img img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; transition: transform .5s var(--ease); }
.mv-card:hover .mv-card-img img { transform: scale(1.03); }
.mv-card-body { display: flex; flex-direction: column; gap: .5rem; }
.mv-card-title { font-size: 1.125rem; line-height: 1.3; }
.mv-card-title a::after { content: ""; position: absolute; inset: 0; border-radius: var(--r-media); }
.mv-card:hover .mv-card-title { color: var(--ink-3); }
.mv-card-excerpt { font-size: .875rem; line-height: 1.5; color: var(--ink-3); display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.mv-card .mv-kicker a, .mv-card .mv-meta a { position: relative; z-index: 1; }

/* 8 · Satırlar (küçük görselli liste) */
.mv-rows { display: flex; flex-direction: column; gap: .5rem; }
/* Ana sayfa "Son kayıtlar": 8 kayıt geniş ekranda iki sütun (Kemal, 2026-09-05). Arşiv sayfaları tek sütun. */
@media (min-width: 900px) {
    .mv-rows--cols { display: grid; grid-template-columns: 1fr 1fr; gap: .5rem 1.5rem; align-items: start; }
    .mv-rows--cols .mv-row { grid-template-columns: 150px 1fr; }
    .mv-rows--cols .mv-row-title { font-size: 1.1rem; }
}
.mv-row { position: relative; display: grid; grid-template-columns: 1fr; gap: .75rem 1.25rem; padding: .75rem; border-radius: var(--r-row); transition: background var(--t) var(--ease); }
.mv-row:hover { background: var(--surface); }
.mv-row-img { display: block; overflow: hidden; border-radius: 8px; background: var(--sub); }
.mv-row-img img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; }
.mv-row-body { display: flex; flex-direction: column; gap: .35rem; min-width: 0; }
.mv-row-title { font-size: 1.25rem; line-height: 1.3; font-weight: 600; }
.mv-row-title a::after { content: ""; position: absolute; inset: 0; border-radius: var(--r-row); }
.mv-row:hover .mv-row-title { color: var(--ink-3); }
.mv-row-excerpt { font-size: .875rem; line-height: 1.5; color: var(--ink-4); margin-top: .1rem; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.mv-row-meta { font-size: .875rem; color: var(--ink-4); display: flex; flex-wrap: wrap; gap: .4rem; }
.mv-row-meta a { position: relative; z-index: 1; font-weight: 600; color: var(--ink-3); }
.mv-row-meta a:hover { color: var(--ink); }
.mv-row-meta .mv-row-sep { color: var(--line-2); }
@media (min-width: 640px) {
    .mv-row { grid-template-columns: 200px 1fr; align-items: center; }
}
.mv-pagination { display: flex; justify-content: space-between; align-items: center; gap: 1rem; padding: 1.5rem 0 0; }
.mv-page-number { font-size: .8125rem; color: var(--ink-4); }
.mv-page-link { display: inline-flex; align-items: center; gap: .4rem; font-size: .875rem; font-weight: 600; padding: .5rem 1rem; border: 1px solid var(--line-2); border-radius: var(--r-pill); }
.mv-page-link:hover { border-color: var(--ink); }
.mv-page-newer .mv-ico { transform: rotate(180deg); }

/* 9 · Tür indeksi — yüzey kartları */
.mv-species-list { list-style: none; margin: 0; padding: 0; display: grid; gap: .75rem; }
@media (min-width: 640px) { .mv-species-list { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .mv-species-list { grid-template-columns: repeat(4, 1fr); } }
.mv-species-item a { display: grid; grid-template-areas: "no no" "name name" "latin latin" "note note"; gap: .15rem; height: 100%; padding: 1.1rem 1.15rem 1.2rem; background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-media); transition: border-color var(--t) var(--ease), transform var(--t) var(--ease); }
.mv-species-item a:hover { border-color: var(--ink); transform: translateY(-2px); }
.mv-species-no { grid-area: no; font-size: .75rem; font-weight: 700; letter-spacing: .1em; color: var(--ink-4); margin-bottom: .5rem; }
.mv-species-name { grid-area: name; font-family: var(--display); font-weight: 600; font-size: 1.35rem; line-height: 1.15; letter-spacing: -.02em; }
.mv-species-latin { grid-area: latin; font-family: var(--display); font-size: 1rem; color: var(--ink-3); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; } /* font swap satır kırmasın (CLS 0.168, PSI 2026-09-04) */
.mv-species-note { grid-area: note; margin-top: .6rem; font-size: .875rem; line-height: 1.5; color: var(--ink-3); }

/* 10 · Mikoloji indeksi */
.mv-index-list { list-style: none; margin: 0; padding: 0; display: grid; gap: .75rem; }
@media (min-width: 640px) { .mv-index-list { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .mv-index-list { grid-template-columns: repeat(4, 1fr); } }
.mv-index-item a { display: flex; flex-direction: column; gap: .5rem; height: 100%; padding: 1.1rem 1.15rem 1.2rem; background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-media); transition: border-color var(--t) var(--ease), transform var(--t) var(--ease); }
.mv-index-item a:hover { border-color: var(--ink); transform: translateY(-2px); }
.mv-index-name { font-family: var(--display); font-weight: 600; font-size: 1.2rem; line-height: 1.2; letter-spacing: -.015em; }
.mv-index-count { font-size: .75rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--ink-4); }
.mv-index-desc { font-size: .875rem; line-height: 1.5; color: var(--ink-3); display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }

/* 11 · Nasıl yazıyoruz — metin + görsel */
.mv-method-grid { display: grid; gap: 2rem; align-items: center; }
@media (min-width: 900px) { .mv-method-grid { grid-template-columns: 1.1fr 1fr; gap: 4rem; } }
.mv-method-title { font-size: clamp(2rem, 1.4rem + 2.2vw, 3rem); letter-spacing: -.03em; margin: 1rem 0 1rem; }
.mv-method-text { color: var(--ink-3); font-size: 1.05rem; line-height: 1.55; max-width: 32rem; }
.mv-method-links { margin-top: 1.5rem; display: flex; flex-wrap: wrap; gap: .75rem; }
.mv-method-figure { margin: 0; }
.mv-method-figure img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: var(--r-hero); }
.mv-caption { margin-top: .6rem; font-size: .8125rem; color: var(--ink-4); }

/* 12 · Arşiv başlığı, hata */
.mv-archive-head { padding: clamp(2.5rem, 6vw, 4.5rem) 0 0; max-width: 42.5rem; display: flex; flex-direction: column; gap: 1rem; }
.mv-archive-title { font-size: clamp(2rem, 1.5rem + 2vw, 3rem); letter-spacing: -.03em; }
.mv-archive-desc { font-size: 1.1rem; line-height: 1.55; color: var(--ink-3); }
.mv-archive-count { font-size: .8125rem; font-weight: 600; color: var(--ink-4); }
.mv-archive-head + .mv-archive { padding-top: 2rem; }
.mv-error { padding: clamp(3rem, 10vw, 7rem) 0; max-width: 40rem; display: flex; flex-direction: column; gap: 1rem; }
.mv-error-actions { margin-top: 1rem; display: flex; flex-wrap: wrap; gap: .75rem; }

/* 13 · Makale */
.mv-article { padding-top: clamp(2.5rem, 5vw, 4rem); }
.mv-article-head { max-width: 46rem; margin: 0 auto; text-align: center; display: flex; flex-direction: column; align-items: center; gap: 1rem; }
.mv-article-title { font-size: clamp(2rem, 1.4rem + 2.6vw, 3.5rem); letter-spacing: -.03em; line-height: 1.08; }
.mv-article-dek { font-size: clamp(1.05rem, 1rem + .3vw, 1.2rem); line-height: 1.55; color: var(--ink-3); max-width: 38rem; text-wrap: pretty; }
.mv-byline { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: .35rem .6rem; margin-top: .25rem; font-size: .875rem; color: var(--ink-4); }
.mv-byline-author { display: inline-flex; align-items: center; gap: .5rem; }
.mv-byline-name { font-weight: 600; color: var(--ink); }
.mv-byline-author:hover .mv-byline-name { color: var(--ink-3); }
.mv-yz-avatar { display: inline-grid; place-items: center; width: 2rem; height: 2rem; border-radius: 50%; overflow: hidden; background: var(--accent-soft); color: var(--accent); flex: none; }
.mv-yz-avatar img { width: 100%; height: 100%; object-fit: cover; }
.mv-yz-avatar-initial { font-family: var(--display); font-weight: 700; font-size: .9rem; }
.mv-yz-avatar--lg { width: 4rem; height: 4rem; }
.mv-yz-avatar--lg .mv-yz-avatar-initial { font-size: 1.6rem; }
.mv-article-cover { margin: clamp(2rem, 4vw, 3rem) auto 0; max-width: 60rem; }
.mv-article-cover img { width: 100%; border-radius: var(--r-hero); background: var(--sub); }
.mv-cover-dar .mv-article-cover { max-width: 46rem; }
.mv-article-layout { position: relative; margin: clamp(2rem, 4vw, 3rem) auto 0; max-width: 42.5rem; }
/* Mobil/tablet İçindekiler: <details> (main.js aynı listeyi doldurur; ≥1200 px'te yan sütun) */
.mv-toc { display: none; }
.mv-toc-mobile { margin: 0 auto clamp(1.5rem, 3vw, 2rem); max-width: 42.5rem; border: 1px solid var(--line); border-radius: var(--r-row); background: var(--surface); }
.mv-toc-mobile[hidden] { display: none; }
.mv-toc-mobile summary { cursor: pointer; padding: .8rem 1rem; font-size: .8125rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-4); list-style: none; display: flex; justify-content: space-between; align-items: center; }
.mv-toc-mobile summary::-webkit-details-marker { display: none; }
.mv-toc-mobile summary::after { content: ""; width: .45rem; height: .45rem; border-right: 1.5px solid currentColor; border-bottom: 1.5px solid currentColor; transform: rotate(45deg); transition: transform var(--t) var(--ease); }
.mv-toc-mobile[open] summary::after { transform: rotate(225deg); }
.mv-toc-mobile ol { margin: 0; padding: 0 1rem 1rem 2.2rem; font-size: .9375rem; line-height: 1.5; color: var(--ink-3); }
.mv-toc-mobile li { margin: .3rem 0; }
@media (min-width: 1200px) { .mv-toc-mobile { display: none; } }
@media (min-width: 1200px) {
    .mv-article-layout.has-toc { max-width: none; display: grid; grid-template-columns: 1fr 42.5rem 1fr; column-gap: 3rem; }
    .mv-article-layout.has-toc .mv-prose { grid-column: 2; }
    .mv-toc { display: block; grid-column: 3; grid-row: 1; position: sticky; top: calc(var(--header-h) + 1.5rem); align-self: start; max-width: 15rem; padding-left: 1rem; border-left: 1px solid var(--line); }
    .mv-toc[hidden] { display: none; }
    .mv-toc-h { font-size: .75rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-4); margin-bottom: .6rem; }
    .mv-toc-items { list-style: none; margin: 0; padding: 0; font-size: .875rem; line-height: 1.4; }
    .mv-toc-items li { margin: 0 0 .45rem; }
    .mv-toc-items a { color: var(--ink-4); display: block; }
    .mv-toc-items a:hover, .mv-toc-items a.is-active { color: var(--ink); }
    .mv-toc-items a.is-active { font-weight: 600; }
}

/* 13a · Gövde tipografisi */
.mv-prose { font-size: 1.0625rem; line-height: 1.7; color: var(--ink-2); }
.mv-prose > * + * { margin-top: 1.25em; }
.mv-prose p { text-wrap: pretty; }
/* Kemal (2026-09-06): gövde içi bağlantı metni "hiç belli olmuyor" — bir tık koyu (600) ve
   mürekkep renginde; alt çizgi biraz daha görünür. Kural: ICERIK-STRATEJISI 06 §56a. */
.mv-prose a { font-weight: 600; color: var(--ink); text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: .18em; text-decoration-color: var(--ink-4); }
.mv-prose a:hover { text-decoration-color: currentColor; text-decoration-thickness: 2px; }
.mv-prose strong, .mv-prose b { font-weight: 700; }
.mv-prose h2 { font-size: clamp(1.5rem, 1.2rem + 1.1vw, 2rem); font-weight: 700; margin-top: 2.2em; line-height: 1.2; }
.mv-prose h3 { font-size: clamp(1.2rem, 1.1rem + .5vw, 1.45rem); font-weight: 700; margin-top: 1.8em; }
.mv-prose h4 { font-family: var(--sans); font-weight: 700; font-size: 1em; margin-top: 1.6em; }
.mv-prose h2 + *, .mv-prose h3 + *, .mv-prose h4 + * { margin-top: .7em; }
.mv-prose hr { margin: 2.5em 0 0; }
.mv-prose hr + h2, .mv-prose hr + h3 { margin-top: 1.4em; }
.mv-prose hr + p { margin-top: 1.5em; }
.mv-prose ul, .mv-prose ol { padding-left: 1.4em; }
.mv-prose li { margin-top: .4em; padding-left: .15em; }
.mv-prose li::marker { color: var(--ink-4); }
.mv-prose blockquote { margin: 1.6em 0; padding: .1em 0 .1em 1.3em; border-left: 3px solid var(--accent); font-family: var(--display); font-size: 1.1em; line-height: 1.5; color: var(--ink-2); }
.mv-prose blockquote p + p { margin-top: .8em; }
.mv-prose blockquote cite, .mv-prose blockquote footer { display: block; margin-top: .6em; font-family: var(--sans); font-size: .8125rem; font-weight: 600; color: var(--ink-4); font-style: normal; }
.mv-prose code { font-family: var(--mono); font-size: .86em; background: var(--code-bg); padding: .1em .35em; border-radius: 6px; }
.mv-prose pre { overflow-x: auto; padding: 1.1rem 1.3rem; background: var(--code-bg); font-family: var(--mono); font-size: .86em; line-height: 1.55; border-radius: var(--r-row); }
.mv-prose pre code { background: none; padding: 0; font-size: inherit; }
.mv-prose sup { font-size: .72em; line-height: 0; vertical-align: super; }
.mv-prose sup a { text-decoration: none; color: var(--accent); font-weight: 600; }
.mv-prose abbr[title] { text-decoration: underline dotted; }
.mv-prose img { border-radius: var(--r-media); }
/* Tablolar */
.mv-prose table { width: 100%; border-collapse: collapse; font-size: .9em; line-height: 1.45; font-variant-numeric: tabular-nums; }
.mv-prose thead th { font-size: .75rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--ink-4); text-align: left; padding: .5em .8em .6em 0; border-bottom: 1px solid var(--ink); vertical-align: bottom; }
.mv-prose td, .mv-prose tbody th { padding: .65em .8em .65em 0; border-bottom: 1px solid var(--line); text-align: left; vertical-align: top; }
.mv-prose tbody th, .mv-prose td:first-child { font-weight: 600; }
.mv-prose caption { caption-side: bottom; text-align: left; padding-top: .7em; font-size: .8125rem; color: var(--ink-4); }
.mv-table-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.mv-table-scroll table { min-width: 34rem; }
/* Kaynaklar (sınıflar main.js'ten) */
.mv-prose .mv-ref-h { padding-top: 1.2em; border-top: 1px solid var(--ink); }
.mv-prose { counter-reset: kaynak; }
.mv-prose .mv-ref { font-size: .9em; line-height: 1.5; color: var(--ink-3); padding-left: 2.2em; text-indent: -2.2em; counter-increment: kaynak; }
.mv-prose .mv-ref::before { content: counter(kaynak, decimal-leading-zero); display: inline-block; width: 2.2em; text-indent: 0; font-size: .8125rem; font-weight: 700; color: var(--ink-4); }
.mv-prose .mv-ref + .mv-ref { margin-top: .7em; }
.mv-prose .mv-ref-list { font-size: .9em; line-height: 1.5; color: var(--ink-3); }
.mv-prose .mv-kunye { font-size: .875em; line-height: 1.5; color: var(--ink-4); }
/* Görsel + altyazı */
.mv-prose figure { margin: 2em 0; }
.mv-prose figure img { width: 100%; }
.mv-prose figcaption, .mv-prose .kg-card figcaption { margin-top: .7rem; font-size: .8125rem; line-height: 1.5; color: var(--ink-4); text-align: center; }

/* 13b · Koenig kartları */
.kg-card { margin: 2em 0; }
.kg-width-wide { width: 100%; }
@media (min-width: 900px) { .kg-width-wide { width: calc(100% + 12rem); margin-left: -6rem; max-width: calc(100vw - 2 * var(--gutter)); } }
.kg-width-full { width: 100vw; margin-left: calc(50% - 50vw); }
.kg-width-full img { border-radius: 0; }
.kg-image-card img { margin: 0 auto; }
.kg-gallery-container { display: flex; flex-direction: column; gap: .5rem; }
.kg-gallery-row { display: flex; gap: .5rem; }
.kg-gallery-image { flex: 1 1 0; }
.kg-gallery-image img { width: 100%; height: 100%; object-fit: cover; border-radius: 10px; }
.kg-embed-card iframe { width: 100%; border-radius: var(--r-media); }
.kg-embed-card > div, .kg-embed-card > iframe { aspect-ratio: 16 / 9; height: auto; }
.kg-video-card video, .kg-video-card .kg-video-container { width: 100%; border-radius: var(--r-media); overflow: hidden; }
.kg-bookmark-container { display: flex; color: inherit; border: 1px solid var(--line); border-radius: var(--r-row); background: var(--surface); min-height: 8rem; overflow: hidden; transition: border-color var(--t) var(--ease); }
.kg-bookmark-container:hover { border-color: var(--ink); color: inherit; }
.kg-bookmark-content { flex: 1 1 auto; padding: 1.1rem 1.3rem; display: flex; flex-direction: column; gap: .35rem; }
.kg-bookmark-title { font-family: var(--display); font-weight: 600; font-size: 1.1rem; line-height: 1.25; }
.kg-bookmark-description { font-size: .875rem; line-height: 1.45; color: var(--ink-3); display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.kg-bookmark-metadata { margin-top: auto; display: flex; align-items: center; gap: .5rem; font-size: .8125rem; color: var(--ink-4); }
.kg-bookmark-icon { width: 1rem; height: 1rem; }
.kg-bookmark-thumbnail { flex: 0 0 34%; position: relative; }
.kg-bookmark-thumbnail img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; border-radius: 0; }
@media (max-width: 560px) { .kg-bookmark-container { flex-direction: column-reverse; } .kg-bookmark-thumbnail { flex-basis: auto; aspect-ratio: 16 / 9; } }
.kg-callout-card { display: flex; gap: .9rem; padding: 1.2rem 1.4rem; border-radius: var(--r-row); background: var(--surface); border: 1px solid var(--line); }
.kg-callout-card.kg-callout-card-green { background: var(--accent-soft); border-color: transparent; }
.kg-callout-card.kg-callout-card-grey { background: var(--sub); }
.kg-callout-emoji { font-size: 1.3rem; line-height: 1.3; }
.kg-callout-text { font-size: .96em; line-height: 1.55; }
.kg-toggle-card { border: 1px solid var(--line); border-radius: var(--r-row); background: var(--surface); }
.kg-toggle-heading { display: flex; justify-content: space-between; align-items: center; gap: 1rem; padding: 1rem 1.2rem; cursor: pointer; }
.kg-toggle-heading-text { font-family: var(--display); font-weight: 600; font-size: 1.1rem; margin: 0; }
.kg-toggle-card-icon { width: 1.4rem; height: 1.4rem; display: grid; place-items: center; color: var(--ink-4); transition: transform var(--t) var(--ease); }
.kg-toggle-card-icon svg { width: 1rem; height: 1rem; }
.kg-toggle-card[data-kg-toggle-state="open"] .kg-toggle-card-icon { transform: rotate(180deg); }
.kg-toggle-content { padding: 0 1.2rem 1.2rem; font-size: .96em; }
.kg-toggle-card[data-kg-toggle-state="close"] .kg-toggle-content { display: none; }
.kg-header-card { padding: clamp(2rem, 6vw, 4rem) var(--gutter); background: var(--ink); color: var(--on-ink); text-align: center; border-radius: var(--r-hero); }
.kg-header-card h2, .kg-header-card h3 { color: inherit; }
.kg-header-card p { margin: .8rem auto 0; font-size: 1.1rem; max-width: 36rem; opacity: .85; }
.kg-button-card { display: flex; }
.kg-button-card.kg-align-center { justify-content: center; }
.kg-btn, .kg-button-card a { display: inline-flex; align-items: center; min-height: 2.75rem; padding: 0 1.4rem; border-radius: var(--r-pill); background: var(--ink); color: var(--on-ink); font-size: .875rem; font-weight: 600; text-decoration: none; }
.kg-btn:hover, .kg-button-card a:hover { background: var(--ink-2); }
.kg-audio-card { display: flex; gap: 1rem; padding: 1rem; border: 1px solid var(--line); border-radius: var(--r-row); background: var(--surface); align-items: center; }
.kg-audio-thumbnail { width: 5rem; height: 5rem; flex: none; object-fit: cover; border-radius: 8px; }
.kg-audio-player-container { flex: 1; min-width: 0; }
.kg-audio-title { font-family: var(--display); font-weight: 600; font-size: 1.05rem; margin: 0 0 .4rem; }
.kg-audio-player { display: flex; align-items: center; gap: .6rem; font-size: .8125rem; }
.kg-audio-player button { width: 2.2rem; height: 2.2rem; display: grid; place-items: center; border: 1px solid var(--line-2); border-radius: 50%; }
.kg-audio-player button svg { width: .9rem; height: .9rem; }
.kg-audio-seek-slider, .kg-audio-volume-slider { flex: 1; accent-color: var(--accent); }
.kg-audio-hide { display: none !important; }
.kg-file-card a { display: flex; justify-content: space-between; align-items: center; gap: 1rem; padding: 1rem 1.2rem; border: 1px solid var(--line); border-radius: var(--r-row); background: var(--surface); text-decoration: none; }
.kg-file-card-title { font-family: var(--display); font-weight: 600; }
.kg-file-card-caption { font-size: .875rem; color: var(--ink-3); }
.kg-file-card-metadata { font-size: .8125rem; color: var(--ink-4); }
.kg-file-card-icon { width: 2rem; height: 2rem; color: var(--ink-4); }
.kg-product-card, .kg-signup-card, .kg-cta-card, .kg-nft-card { border: 1px solid var(--line); border-radius: var(--r-row); padding: 1.4rem; background: var(--surface); }
.kg-product-card-title, .kg-signup-card-heading { font-family: var(--display); font-weight: 600; font-size: 1.3rem; margin: 0 0 .5rem; }
.kg-product-card-description, .kg-signup-card-text { font-size: .95rem; color: var(--ink-3); }
.kg-signup-card-form { display: flex; gap: .6rem; margin-top: 1rem; flex-wrap: wrap; }
.kg-signup-card-input { flex: 1 1 14rem; min-height: 2.75rem; padding: 0 1rem; border: 1px solid var(--line-2); border-radius: var(--r-pill); background: var(--paper); font: inherit; font-size: .95rem; color: var(--ink); }
.kg-signup-card-button { min-height: 2.75rem; padding: 0 1.3rem; border-radius: var(--r-pill); background: var(--ink); color: var(--on-ink); font-weight: 600; font-size: .875rem; }
.kg-signup-card-success, .kg-signup-card-error { margin-top: .8rem; font-size: .875rem; }
.kg-signup-card-error { color: #b91c1c; }

/* 13c · Makale sonu: etiketler + paylaş · yazar kartı · ilgili kartlar */
.mv-article-foot { max-width: 42.5rem; margin: clamp(2.5rem, 6vw, 3.5rem) auto 0; display: grid; gap: 2rem; }
.mv-article-tags { display: flex; flex-wrap: wrap; gap: .5rem; align-items: center; }
.mv-article-tags a { font-size: .8125rem; font-weight: 600; padding: .4rem .85rem; border: 1px solid var(--line-2); border-radius: var(--r-pill); color: var(--ink-2); transition: border-color var(--t) var(--ease), background var(--t) var(--ease); }
.mv-article-tags a:hover { border-color: var(--ink); background: var(--surface); }
.mv-share { display: inline-flex; align-items: center; gap: .4rem; font-size: .8125rem; font-weight: 600; color: var(--ink-3); }
.mv-share:hover { color: var(--ink); }
.mv-article-tags .mv-share { margin-left: auto; }
.mv-article-actions { display: flex; justify-content: flex-end; }
.mv-author-card { display: flex; flex-direction: column; align-items: center; gap: 1rem; padding: 1.75rem; text-align: center; background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-media); }
.mv-author-body { min-width: 0; }
.mv-author-name { font-family: var(--display); font-weight: 600; font-size: 1.25rem; letter-spacing: -.01em; }
.mv-author-name:hover { color: var(--ink-3); }
.mv-author-role { margin-top: .15rem; font-size: .875rem; color: var(--ink-4); }
.mv-author-bio { margin-top: .6rem; font-size: .95rem; line-height: 1.6; color: var(--ink-3); }
.mv-author-bio a { text-decoration: underline; text-underline-offset: .15em; }
@media (min-width: 640px) { .mv-author-card { flex-direction: row; align-items: flex-start; text-align: left; } }
.mv-related { margin-top: clamp(3rem, 7vw, 5rem); border-top: 1px solid var(--line); }
.mv-related-inner { max-width: 60rem; margin: 0 auto; padding: 3rem 0 0; }
.mv-comments { max-width: 42.5rem; margin: clamp(2.5rem, 6vw, 4rem) auto 0; }

/* 14 · Footer — üst çizgi, marka + sosyal + sütunlar + yasal satır */
.mv-foot { margin-top: clamp(3rem, 8vw, 6rem); border-top: 1px solid var(--line); }
.mv-foot-inner { max-width: var(--wrap); margin: 0 auto; padding: 3rem var(--gutter) 2rem; display: grid; grid-template-areas: "brand" "social" "nav" "legal"; gap: 1.5rem 2.5rem; }
.mv-foot-brand { grid-area: brand; display: flex; flex-direction: column; align-items: flex-start; gap: .75rem; }
.mv-foot-logo { height: 2rem; width: auto; }
.mv-foot-desc { max-width: 24rem; font-size: 1rem; line-height: 1.6; color: var(--ink-3); }
.mv-foot-loc { font-size: .8125rem; color: var(--ink-4); display: flex; flex-wrap: wrap; gap: .3rem .75rem; }
.mv-foot-social { grid-area: social; list-style: none; margin: 0; padding: 0; display: flex; gap: .5rem; }
.mv-foot-social a { display: inline-grid; place-items: center; width: 2.25rem; height: 2.25rem; border-radius: 50%; border: 1px solid var(--line); color: var(--ink); transition: border-color var(--t) var(--ease), background var(--t) var(--ease); }
.mv-foot-social a:hover { border-color: var(--ink); background: var(--surface); }
.mv-foot-menu { grid-area: nav; }
.mv-foot-groups { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem 1.5rem; }
.mv-foot-title { font-size: .75rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-4); margin: 0 0 1rem; }
.mv-foot-group ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: .75rem; font-size: .875rem; font-weight: 600; color: var(--ink-3); }
.mv-foot-group a:hover { color: var(--ink); }
.mv-foot-legal { grid-area: legal; display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: .5rem 1.5rem; padding-top: 1.5rem; border-top: 1px solid var(--line); font-size: .75rem; color: var(--ink-4); }
.mv-foot-meta { display: flex; flex-wrap: wrap; gap: .5rem 1.25rem; }
.mv-foot-meta a:hover, .mv-foot-meta button:hover { color: var(--ink); }
.mv-foot-meta button { font: inherit; color: inherit; }
@media (min-width: 900px) {
    .mv-foot-inner { grid-template-columns: 1.5fr 3fr; grid-template-areas: "brand nav" "social nav" "legal legal"; column-gap: 2.5rem; align-items: start; }
    .mv-foot-groups { grid-template-columns: repeat(4, 1fr); }
}


/* 14a · Footer marka yeşili (Kemal, 2026-09-04) — header_style ile birlikte */
.mv-head-yesil .mv-foot { background: #1b3322; border-top-color: #1b3322; color: #f2f2ea; }
.mv-head-yesil .mv-foot-desc, .mv-head-yesil .mv-foot-group ul { color: rgba(242, 242, 234, .78); }
.mv-head-yesil .mv-foot-loc, .mv-head-yesil .mv-foot-legal { color: rgba(242, 242, 234, .6); }
.mv-head-yesil .mv-foot-title { color: var(--gold); }
.mv-head-yesil .mv-foot-group a:hover, .mv-head-yesil .mv-foot-meta a:hover, .mv-head-yesil .mv-foot-meta button:hover { color: #ffffff; }
.mv-head-yesil .mv-foot-social a { border-color: rgba(242, 242, 234, .28); color: #f2f2ea; }
.mv-head-yesil .mv-foot-social a:hover { border-color: var(--gold); background: rgba(255, 255, 255, .06); color: var(--gold); }
.mv-head-yesil .mv-foot-legal { border-top-color: rgba(242, 242, 234, .14); }
.mv-head-yesil .mv-foot .mv-brand-word { color: #f2f2ea; }

.mv-foot-ghost { display: inline-flex; align-items: center; opacity: .85; transition: opacity var(--t) var(--ease); }
.mv-foot-ghost:hover { opacity: 1; }
.mv-foot-ghost img { height: 1.25rem; width: auto; }
.mv-foot-ghost .mv-ghost-light { display: none; }
:root[data-theme="dark"] .mv-foot-ghost .mv-ghost-dark, .mv-head-yesil .mv-foot-ghost .mv-ghost-dark { display: none; }
:root[data-theme="dark"] .mv-foot-ghost .mv-ghost-light, .mv-head-yesil .mv-foot-ghost .mv-ghost-light { display: block; }

/* 15 · Çerez bandı (davranış main.js'te) */
.mv-cerez { position: fixed; left: 50%; bottom: 20px; transform: translateX(-50%) translateY(140%); z-index: 90; width: min(640px, calc(100vw - 32px)); background: var(--ink); color: var(--on-ink); border-radius: var(--r-media); box-shadow: 0 18px 48px rgba(0, 0, 0, .28); padding: 20px 22px; font-size: .9rem; line-height: 1.55; opacity: 0; visibility: hidden; transition: transform .38s var(--ease), opacity .38s var(--ease); }
.mv-cerez.mv-acik { transform: translateX(-50%) translateY(0); opacity: 1; visibility: visible; }
.mv-cerez[hidden] { display: none; }
.mv-cerez p { margin: 0 0 14px; }
.mv-cerez a { color: inherit; text-decoration: underline; text-underline-offset: 3px; }
.mv-cerez-butonlar { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; }
.mv-cerez button { font: inherit; font-size: .875rem; font-weight: 600; cursor: pointer; padding: 9px 18px; border-radius: var(--r-pill); border: 1px solid transparent; transition: background .2s, color .2s; }
.mv-cerez .mv-kabul { background: var(--on-ink); color: var(--ink); }
.mv-cerez .mv-kabul:hover { opacity: .9; }
.mv-cerez .mv-red { background: transparent; color: var(--on-ink); border-color: rgba(255, 255, 255, .4); }
:root[data-theme="dark"] .mv-cerez .mv-red { border-color: rgba(0, 0, 0, .35); }
.mv-cerez .mv-red:hover { background: rgba(127, 127, 127, .18); }
.mv-cerez .mv-detay-ac { background: none; border: none; color: var(--on-ink); opacity: .8; text-decoration: underline; text-underline-offset: 3px; padding: 9px 4px; margin-left: auto; font-weight: 500; }
.mv-cerez .mv-detay-ac:hover { opacity: 1; }
.mv-cerez-detay { display: none; margin: 4px 0 16px; border-top: 1px solid rgba(127, 127, 127, .35); padding-top: 14px; }
.mv-cerez-detay.mv-acik { display: block; }
.mv-cerez-satir { display: flex; gap: 12px; align-items: flex-start; margin-bottom: 12px; }
.mv-cerez-satir label { font-weight: 600; display: block; }
.mv-cerez-satir span { display: block; font-size: .8125rem; opacity: .8; }
.mv-cerez-satir input { margin-top: 4px; accent-color: var(--accent); width: 16px; height: 16px; }
.mv-cerez-satir input:disabled { opacity: .5; }
/* Dar ekran: bant kucuk kalsin — Lighthouse mobilde bandin paragrafini LCP ogesi sayiyordu (audit §8). */
@media (max-width: 500px) { .mv-cerez { bottom: 10px; padding: 14px 16px; font-size: .8125rem; line-height: 1.45; width: calc(100vw - 20px); } .mv-cerez p { margin-bottom: 10px; } .mv-cerez .mv-detay-ac { margin-left: 0; } .mv-cerez-butonlar { gap: 8px; } .mv-cerez button { padding: 8px 14px; font-size: .8125rem; } .mv-cerez-butonlar button { flex: 1 1 auto; } }

/* 15a · Yukarı çık düğmesi (2026-09-04: code injection head'den temaya taşındı — head'i erken kapatıyordu) */
.mv-top { position: fixed; right: 29px; bottom: 24px; width: 50px; height: 50px; border-radius: 50%; background: var(--accent); color: #fff; font-size: 22px; display: grid; place-items: center; opacity: 0; visibility: hidden; transform: translateY(8px); transition: opacity .25s var(--ease), visibility .25s, transform .25s var(--ease); box-shadow: 0 6px 20px rgba(27, 51, 34, .15); z-index: 80; }
.mv-top.is-gorunur { opacity: 1; visibility: visible; transform: none; }
.mv-top:hover { background: #142719; }
:root[data-theme="dark"] .mv-top { background: var(--accent); color: var(--paper); }
@media (max-width: 768px) { .mv-top { right: 16px; bottom: 16px; width: 46px; height: 46px; } }

/* 16 · Hareket, baskı */
@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { transition-duration: .01ms !important; animation: none !important; }
    .mv-card:hover .mv-card-img img { transform: none; }
    .mv-species-item a:hover, .mv-index-item a:hover { transform: none; }
}
@media print {
    .mv-head, .mv-foot, .mv-cerez, .mv-toc, .mv-article-actions, .mv-related, .mv-top { display: none !important; }
    body { background: #fff; color: #000; font-size: 11pt; }
    a { text-decoration: none; color: inherit; }
}
