/* ==========================================================================
   TİMBİR — Türk İnternet Medya Birliği
   Tek dosya stil sayfası. Derleme adımı yoktur; doğrudan sunucuya atılır.
   ========================================================================== */

/* --------------------------------------------------------------- değişkenler */
:root {
  --brand-50:  #eefafc;
  --brand-100: #d3f1f6;
  --brand-200: #ade4ee;
  --brand-300: #74d0e1;
  --brand-400: #38b3cc;
  --brand-500: #1d95b1;
  --brand-600: #1a7895;
  --brand-700: #1c6179;
  --brand-800: #205064;
  --brand-900: #1f4354;
  --brand-950: #0f2b39;

  --ink-50:  #f4f7f9;
  --ink-100: #e5ecf1;
  --ink-200: #cbd8e2;
  --ink-300: #a3bacb;
  --ink-400: #7496af;
  --ink-500: #547994;
  --ink-600: #41617a;
  --ink-700: #364e63;
  --ink-800: #2f4353;
  --ink-900: #1d2c39;
  --ink-950: #0a1620;

  --ember-400: #f3a93c;
  --ember-500: #e08e19;
  --ember-600: #bd6d10;

  --red-50: #fef2f2;
  --red-600: #dc2626;
  --red-700: #b91c1c;

  --font-display: 'Manrope', ui-sans-serif, system-ui, sans-serif;
  --font-sans: 'Inter', ui-sans-serif, system-ui, sans-serif;

  --shadow: 0 1px 2px rgb(10 22 32 / .04), 0 12px 32px -12px rgb(10 22 32 / .18);
  --shadow-lg: 0 2px 4px rgb(10 22 32 / .05), 0 28px 60px -24px rgb(10 22 32 / .28);

  --r-sm: .75rem;
  --r-md: 1rem;
  --r-lg: 1.5rem;
  --r-xl: 2rem;
  --r-full: 999px;

  --container: 80rem;
  --ease: cubic-bezier(.22, 1, .36, 1);
}

/* ------------------------------------------------------------------- temel */
*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  overflow-x: clip;
  background: #fff;
  color: var(--ink-800);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-wrap: pretty;
}

h1, h2, h3, h4, h5 {
  margin: 0;
  font-family: var(--font-display);
  color: var(--ink-950);
  letter-spacing: -.02em;
  line-height: 1.15;
  text-wrap: balance;
}

p { margin: 0; }
ul, ol, dl, dd { margin: 0; padding: 0; }
li { list-style: none; }
img, svg, iframe { display: block; max-width: 100%; }
img { height: auto; }

a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; cursor: pointer; }

::selection { background: var(--brand-200); color: var(--brand-950); }
:focus-visible { outline: 2px solid var(--brand-500); outline-offset: 2px; }

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

.skip-link {
  position: absolute; left: -9999px; z-index: 100;
}
.skip-link:focus {
  left: 1rem; top: 1rem; padding: .7rem 1.25rem;
  background: var(--brand-600); color: #fff; border-radius: var(--r-full);
  font-family: var(--font-display); font-weight: 700; font-size: .875rem;
}

/* ------------------------------------------------------------------ yardımcı */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: 1.25rem; }
@media (min-width: 640px) { .container { padding-inline: 2rem; } }

.section { padding-block: 4rem; }
@media (min-width: 640px) { .section { padding-block: 5rem; } }
.section--tight { padding-block: 3rem; }

.mt-xs { margin-top: .5rem; }
.mt-sm { margin-top: .75rem; }
.mt-md { margin-top: 1.5rem; }
.mt-lg { margin-top: 2.5rem; }
.mt-xl { margin-top: 3.5rem; }
.mb-md { margin-bottom: 1.25rem; }
.ta-center { text-align: center; }
.ta-right { text-align: right; }
.block { display: block; width: 100%; }
.muted { color: var(--ink-500); }
.strong { font-weight: 600; color: var(--ink-900); }
.sm { font-size: .8rem; }
.hint { font-size: .8rem; color: var(--ink-400); }
.lead { font-size: 1.05rem; font-weight: 600; }
.measure { max-width: 56rem; margin-inline: auto; }
.measure-narrow { max-width: 46rem; margin-inline: auto; }
.on-dark { color: #fff !important; }
.on-dark-muted { color: var(--ink-300); }
.brand-name { color: var(--brand-700); font-family: var(--font-display); font-weight: 700; }
.dot { width: 4px; height: 4px; border-radius: 50%; background: currentColor; opacity: .45; }
.rule { flex: 1; height: 1px; background: var(--ink-100); }
.row-between { display: flex; align-items: flex-start; justify-content: space-between; gap: 1rem; }
.clamp-4 { display: -webkit-box; -webkit-line-clamp: 4; -webkit-box-orient: vertical; overflow: hidden; }

.h2 { font-size: clamp(1.75rem, 3.2vw, 2.6rem); font-weight: 800; }
.h3 { font-size: 1.4rem; font-weight: 800; }
.h4 { font-size: 1.1rem; font-weight: 700; }
.h5 { font-size: .98rem; font-weight: 700; }

.grid { display: grid; gap: 1.5rem; }
.grid--2 { grid-template-columns: 1fr; }
.grid--3 { grid-template-columns: 1fr; }
.grid--4 { grid-template-columns: 1fr; }
@media (min-width: 640px) {
  .grid--2, .grid--3, .grid--4 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .grid--3 { grid-template-columns: repeat(3, 1fr); }
  .grid--4 { grid-template-columns: repeat(4, 1fr); }
}

.two-col { display: grid; gap: 3rem; }
@media (min-width: 1024px) { .two-col { grid-template-columns: 1fr 1fr; align-items: start; } }

.split-aside { display: grid; gap: 3rem; }
@media (min-width: 1024px) { .split-aside { grid-template-columns: minmax(0, 44rem) 1fr; align-items: start; } }
.sticky-aside { position: static; }
@media (min-width: 1024px) { .sticky-aside { position: sticky; top: 7rem; } }

.prose p { margin-bottom: 1rem; line-height: 1.85; color: var(--ink-700); }
.prose p:last-child { margin-bottom: 0; }
.prose--lg p { font-size: 1.02rem; }

/* -------------------------------------------------------------- bileşenler */
.eyebrow {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .25rem .75rem; border-radius: var(--r-full);
  border: 1px solid var(--brand-200); background: var(--brand-50);
  font-family: var(--font-display); font-size: .7rem; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase; color: var(--brand-700);
}
.eyebrow--dark { border-color: rgb(255 255 255 / .15); background: rgb(255 255 255 / .05); color: var(--brand-200); }
.eyebrow--onBrand { border-color: rgb(255 255 255 / .25); background: rgb(255 255 255 / .1); color: #fff; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  padding: .8rem 1.5rem; border: 0; border-radius: var(--r-full);
  font-family: var(--font-display); font-size: .875rem; font-weight: 700;
  transition: background .2s, color .2s, border-color .2s, box-shadow .2s, transform .2s;
}
.btn:disabled { opacity: .6; cursor: not-allowed; }
.btn--sm { padding: .6rem 1.15rem; font-size: .82rem; }
.btn--xs { padding: .45rem .9rem; font-size: .78rem; }
.btn--primary { background: var(--brand-600); color: #fff; box-shadow: var(--shadow); }
.btn--primary:hover { background: var(--brand-700); box-shadow: var(--shadow-lg); }
.btn--ghost { background: #fff; color: var(--ink-800); border: 1px solid var(--ink-200); }
.btn--ghost:hover { border-color: var(--brand-300); color: var(--brand-700); }
.btn--onDark { background: rgb(255 255 255 / .1); color: #fff; border: 1px solid rgb(255 255 255 / .25); backdrop-filter: blur(6px); }
.btn--onDark:hover { background: rgb(255 255 255 / .2); }
.btn--white { background: #fff; color: var(--brand-800); box-shadow: var(--shadow); }
.btn--white:hover { background: var(--brand-50); }
.btn--danger:hover { border-color: #fca5a5; color: var(--red-600); }

.btn-row { display: flex; flex-wrap: wrap; gap: .75rem; }
.btn-row--center { justify-content: center; }

.arrow { width: 1rem; height: 1rem; transition: transform .2s; }
.readmore {
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: var(--font-display); font-size: .85rem; font-weight: 700; color: var(--brand-700);
}
.readmore:hover .arrow { transform: translateX(4px); }
.readmore--dark { color: var(--brand-300); }

.panel { background: #fff; border: 1px solid var(--ink-100); border-radius: var(--r-lg); padding: 1.75rem; box-shadow: var(--shadow); }
.panel--tight { padding: 1.25rem; }
.panel--muted { background: rgb(244 247 249 / .7); }
.panel--brand { background: var(--brand-50); border-color: var(--brand-100); }
.panel--form { padding: 1.75rem; border-radius: var(--r-xl); box-shadow: var(--shadow-lg); }
@media (min-width: 640px) { .panel--form { padding: 2.25rem; } }
.panel--link { display: block; transition: transform .3s, border-color .3s, box-shadow .3s; }
.panel--link:hover { transform: translateY(-3px); border-color: var(--brand-200); box-shadow: var(--shadow-lg); }

.label { font-family: var(--font-display); font-size: .72rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-500); }
.label--brand { color: var(--brand-700); }

.chip {
  display: inline-flex; align-items: center; gap: .4rem;
  padding: .3rem .75rem; border-radius: var(--r-full);
  font-family: var(--font-display); font-size: .68rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
}
.chip--soft { background: var(--brand-50); color: var(--brand-700); }
.chip--grey { background: var(--ink-100); color: var(--ink-600); }
.chip--dark { background: rgb(10 22 32 / .8); color: #fff; backdrop-filter: blur(6px); }
.chip--live { background: var(--brand-500); color: #fff; }
.chip--outline { border: 1px solid rgb(255 255 255 / .2); color: var(--brand-200); }
.chip--overlay { position: absolute; top: 1rem; left: 1rem; background: rgb(10 22 32 / .75); color: #fff; backdrop-filter: blur(6px); }
.chip--filter { border: 1px solid var(--ink-200); background: #fff; color: var(--ink-600); text-transform: none; letter-spacing: 0; font-size: .78rem; padding: .35rem .85rem; }
.chip--filter:hover { border-color: var(--brand-300); }
.chip--filter.is-on { background: var(--brand-500); border-color: var(--brand-500); color: #fff; }
.chips { display: flex; flex-wrap: wrap; gap: .5rem; }

.pulse { position: relative; width: 6px; height: 6px; border-radius: 50%; background: #fff; }
.pulse::before {
  content: ''; position: absolute; inset: 0; border-radius: 50%;
  background: #fff; animation: ping 1.4s cubic-bezier(0, 0, .2, 1) infinite;
}
@keyframes ping { 75%, 100% { transform: scale(2.4); opacity: 0; } }

.ticks li { position: relative; padding-left: 1.15rem; margin-bottom: .55rem; color: var(--ink-600); line-height: 1.5; }
.ticks li::before { content: ''; position: absolute; left: 0; top: .58em; width: 6px; height: 6px; border-radius: 50%; background: var(--brand-400); }
.ticks li:last-child { margin-bottom: 0; }

.dashes li { position: relative; padding-left: .9rem; margin-bottom: .4rem; font-size: .86rem; color: var(--ink-600); }
.dashes li::before { content: '—'; position: absolute; left: 0; color: var(--ink-300); }

.gradient-text {
  background: linear-gradient(90deg, var(--brand-300), var(--brand-200) 45%, var(--ember-400));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

/* ----------------------------------------------------------------- şeritler */
.band { position: relative; overflow: hidden; }
.band--dark { background: var(--ink-950); }
.band--dark h2, .band--dark h3 { color: #fff; }
.band--tint { background: rgb(244 247 249 / .7); }
.band__glow {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(50rem 28rem at 10% 0%, rgb(29 149 177 / .34), transparent 60%),
    radial-gradient(40rem 26rem at 100% 100%, rgb(56 179 204 / .18), transparent 58%);
}
.band__grid {
  position: absolute; inset: 0; pointer-events: none; opacity: .05;
  background-image:
    linear-gradient(to right, rgb(255 255 255 / .6) 1px, transparent 1px),
    linear-gradient(to bottom, rgb(255 255 255 / .6) 1px, transparent 1px);
  background-size: 58px 58px;
}
.band > .container { position: relative; }

.sec-head { display: flex; flex-direction: column; gap: 1.25rem; }
@media (min-width: 768px) { .sec-head { flex-direction: row; align-items: flex-end; justify-content: space-between; } }
.sec-head__text { max-width: 42rem; }
.sec-head__text h2 { margin-top: 1rem; font-size: clamp(1.75rem, 3.2vw, 2.6rem); font-weight: 800; }
.sec-head__text p { margin-top: 1rem; color: var(--ink-600); font-size: 1.02rem; }
.sec-head--dark .sec-head__text h2 { color: #fff; }
.sec-head--dark .sec-head__text p { color: var(--ink-300); }

/* -------------------------------------------------------------- açılış perdesi */
.preloader { position: fixed; inset: 0; z-index: 200; overflow: hidden; display: none; }
.preloader.is-on { display: block; }
.preloader__panel { position: absolute; left: 0; right: 0; height: 50%; background: var(--ink-950); transition: transform .85s cubic-bezier(.76,0,.24,1); }
.preloader__panel--top { top: 0; }
.preloader__panel--bottom { bottom: 0; }
.preloader.is-leaving .preloader__panel--top { transform: translateY(-100%); }
.preloader.is-leaving .preloader__panel--bottom { transform: translateY(100%); }

.preloader__stage {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  transition: opacity .5s, transform .5s;
}
.preloader.is-leaving .preloader__stage { opacity: 0; transform: scale(1.05); }
.preloader__glow {
  position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(34rem 24rem at 50% 42%, rgb(29 149 177 / .32), transparent 70%);
}

/* 3B tel küre */
.globe-scene { position: relative; perspective: 900px; }
.globe {
  position: relative; width: 14rem; height: 14rem;
  transform-style: preserve-3d;
  animation: globe-spin 9s linear infinite, globe-in 1.1s var(--ease) both;
}
@media (min-width: 640px) { .globe { width: 16rem; height: 16rem; } }
.globe__meridian, .globe__latitude {
  position: absolute; inset: 0; border-radius: 50%;
  border: 1px solid rgb(56 179 204 / .35);
}
.globe__latitude { border-color: rgb(116 208 225 / .25); }
.globe__dot {
  position: absolute; top: 50%; left: 50%; width: 8px; height: 8px; border-radius: 50%;
  background: var(--brand-200); box-shadow: 0 0 14px 4px rgb(116 208 225 / .55);
}
@keyframes globe-spin {
  from { transform: rotateX(-16deg) rotateY(0); }
  to   { transform: rotateX(-16deg) rotateY(360deg); }
}
@keyframes globe-in {
  from { opacity: 0; scale: .55; }
  to   { opacity: 1; scale: 1; }
}

.preloader__brand { position: relative; margin-top: 2.5rem; perspective: 1000px; }
.preloader__logo {
  position: relative; width: fit-content; margin-inline: auto;
  transform-style: preserve-3d;
  animation: logo-3d 1.2s .45s var(--ease) both;
}
.preloader__logo img { height: 3rem; width: auto; filter: brightness(0) invert(1); }
@media (min-width: 640px) { .preloader__logo img { height: 3.5rem; } }
.preloader__shine {
  position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(105deg, transparent 38%, rgb(116 208 225 / .95) 50%, transparent 62%);
  -webkit-mask-size: contain; mask-size: contain;
  -webkit-mask-repeat: no-repeat; mask-repeat: no-repeat;
  -webkit-mask-position: center; mask-position: center;
  animation: pl-shine 1.5s 1.2s ease-in-out;
}
@keyframes logo-3d {
  from { opacity: 0; transform: translateZ(-380px) rotateX(52deg); }
  60%  { opacity: 1; }
  to   { opacity: 1; transform: translateZ(0) rotateX(0); }
}
@keyframes pl-shine {
  from { transform: translateX(-115%); }
  to   { transform: translateX(115%); }
}
.preloader__caption {
  margin-top: 1.25rem; text-align: center;
  font-family: var(--font-display); font-size: .66rem; font-weight: 700;
  letter-spacing: .36em; text-transform: uppercase; color: rgb(116 208 225 / .7);
  animation: pl-in .8s .9s var(--ease) both;
}
@keyframes pl-in { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: none; } }
.preloader__bar { width: 12rem; height: 1px; margin: 1.5rem auto 0; overflow: hidden; background: rgb(255 255 255 / .1); }
.preloader__bar span {
  display: block; height: 100%; transform-origin: left;
  background: linear-gradient(90deg, var(--brand-400), var(--brand-200));
  animation: pl-bar 2.2s cubic-bezier(.4,0,.2,1) both;
}
@keyframes pl-bar { from { transform: scaleX(0); } to { transform: scaleX(1); } }

/* --------------------------------------------------------- kaydırma çizgisi */
.scroll-progress { position: fixed; inset-inline: 0; top: 0; z-index: 60; height: 2px; }
.scroll-progress span {
  display: block; height: 100%; transform: scaleX(0); transform-origin: left;
  background: linear-gradient(90deg, var(--brand-400), var(--brand-600));
}

/* ------------------------------------------------------------------ başlık */
.site-header { position: sticky; top: 0; z-index: 50; }

.topbar { display: none; background: var(--ink-950); color: var(--ink-300); font-size: .78rem; }
@media (min-width: 1024px) { .topbar { display: block; } }
.topbar__inner { display: flex; align-items: center; justify-content: space-between; height: 2.5rem; }
.topbar__left { display: flex; gap: 1.5rem; }
.topbar__right { display: flex; align-items: center; gap: 1.25rem; }
.topbar a:hover { color: #fff; }
.topbar__admin { font-weight: 600; color: var(--brand-300); }
.topbar__admin:hover { color: var(--brand-200); }

.navbar { background: #fff; border-bottom: 1px solid transparent; transition: background .3s, border-color .3s, box-shadow .3s, backdrop-filter .3s; }
.site-header.is-scrolled .navbar {
  background: rgb(255 255 255 / .85); border-bottom-color: var(--ink-100);
  box-shadow: var(--shadow); backdrop-filter: blur(16px);
}
.navbar__inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; height: 6rem; }
.brand img { height: 3.6rem; width: auto; }
@media (min-width: 640px) { .brand img { height: 4.4rem; } }

.nav { display: none; align-items: center; gap: 0; }
@media (min-width: 1200px) { .nav { display: flex; } }
.nav__link {
  display: flex; align-items: center; gap: .3rem; white-space: nowrap;
  padding: .5rem .55rem; border-radius: var(--r-full);
  font-family: var(--font-display); font-size: .84rem; font-weight: 600; color: var(--ink-700);
  transition: color .2s;
}
@media (min-width: 1440px) { .nav__link { padding-inline: .8rem; font-size: .88rem; } }
.nav__link:hover, .nav__link.is-active { color: var(--brand-700); }
.chev { width: .7rem; height: .7rem; transition: transform .2s; }
.nav__group { position: relative; }
.nav__group:hover .chev { transform: rotate(180deg); }
.nav__menu {
  position: absolute; top: 100%; left: 0; width: 21rem; padding-top: .75rem;
  opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: opacity .2s, transform .2s, visibility .2s;
}
.nav__group:hover .nav__menu, .nav__group:focus-within .nav__menu { opacity: 1; visibility: visible; transform: none; }
.nav__menu-inner { background: #fff; border: 1px solid var(--ink-100); border-radius: var(--r-md); padding: .5rem; box-shadow: var(--shadow-lg); }
.nav__menu-inner a { display: block; padding: .6rem .85rem; border-radius: var(--r-sm); transition: background .2s; }
.nav__menu-inner a:hover { background: var(--brand-50); }
.nav__menu-label { display: block; font-family: var(--font-display); font-size: .9rem; font-weight: 600; color: var(--ink-900); }
.nav__menu-detail { display: block; margin-top: .15rem; font-size: .78rem; color: var(--ink-500); }

.navbar__actions { display: flex; align-items: center; gap: .5rem; }
.navbar__cta { display: none; padding: .65rem 1.1rem; white-space: nowrap; font-size: .82rem; }
@media (min-width: 640px) { .navbar__cta { display: inline-flex; } }

.burger {
  display: flex; align-items: center; justify-content: center;
  width: 2.75rem; height: 2.75rem; border-radius: 50%;
  border: 1px solid var(--ink-200); background: transparent; position: relative;
}
@media (min-width: 1200px) { .burger { display: none; } }
.burger span {
  position: absolute; left: 50%; width: 1.25rem; height: 2px; border-radius: 2px;
  background: var(--ink-800); transition: transform .3s, opacity .2s, top .3s;
  margin-left: -.625rem;
}
.burger span:nth-child(1) { top: calc(50% - 6px); }
.burger span:nth-child(2) { top: 50%; }
.burger span:nth-child(3) { top: calc(50% + 6px); }
.burger.is-open span:nth-child(1) { top: 50%; transform: rotate(45deg); }
.burger.is-open span:nth-child(2) { opacity: 0; }
.burger.is-open span:nth-child(3) { top: 50%; transform: rotate(-45deg); }

.mobile-menu {
  position: fixed; inset: 5.5rem 0 0; z-index: 40; overflow-y: auto; background: #fff;
  opacity: 0; transform: translateY(-12px); pointer-events: none;
  transition: opacity .3s, transform .3s;
}
.mobile-menu.is-open { opacity: 1; transform: none; pointer-events: auto; }
@media (min-width: 1200px) { .mobile-menu { display: none; } }
.mobile-menu__inner { display: flex; flex-direction: column; padding-block: 1.5rem; }
.mobile-menu__link, .mobile-menu__toggle {
  display: flex; align-items: center; justify-content: space-between;
  width: 100%; padding: 1rem 0; border: 0; border-bottom: 1px solid var(--ink-100);
  background: none; text-align: left;
  font-family: var(--font-display); font-size: 1.1rem; font-weight: 700; color: var(--ink-900);
}
.mobile-menu__group { border-bottom: 1px solid var(--ink-100); }
.mobile-menu__group .mobile-menu__toggle { border-bottom: 0; }
.mobile-menu__sub { display: none; padding-bottom: .75rem; }
.mobile-menu__group.is-open .mobile-menu__sub { display: block; }
.mobile-menu__group.is-open .chev { transform: rotate(180deg); }
.mobile-menu__sub a { display: block; padding: .5rem 0 .5rem 1rem; border-left: 2px solid var(--brand-100); color: var(--ink-600); font-size: .95rem; }
.mobile-menu__contact { margin-top: 2rem; font-size: .875rem; color: var(--ink-500); }
.mobile-menu__contact a { display: block; }

/* -------------------------------------------------------------- haber kaydıracı */
.news-hero { position: relative; overflow: hidden; background: var(--ink-950); }
.news-hero__wash { position: absolute; inset: 0; opacity: .25; }
.news-hero__wash img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transform: scale(1.1); filter: blur(48px); }
.news-hero__veil { position: absolute; inset: 0; background: rgb(10 22 32 / .8); }
.news-hero__inner { position: relative; padding-block: 3rem; }
@media (min-width: 1024px) { .news-hero__inner { padding-block: 4rem; } }

.news-hero__grid { display: grid; gap: 2.5rem; align-items: center; }
@media (min-width: 1024px) { .news-hero__grid { grid-template-columns: 1fr 1.08fr; gap: 3.5rem; } }
.news-hero__text { order: 2; }
.news-hero__media { order: 1; position: relative; }
@media (min-width: 1024px) {
  .news-hero__text { order: 1; }
  .news-hero__media { order: 2; }
}

.slide__chips { display: flex; flex-wrap: wrap; gap: .6rem; animation: slide-in .65s var(--ease) both; }
.slide__meta { display: flex; align-items: center; gap: .6rem; margin-top: 1.25rem; font-size: .8rem; color: var(--ink-400); animation: slide-in .65s .04s var(--ease) both; }
.slide__title {
  margin-top: 1rem; font-size: clamp(1.75rem, 4.2vw, 2.9rem); font-weight: 800; color: #fff; line-height: 1.14;
  animation: slide-in .65s .08s var(--ease) both;
}
.slide__title a:hover { color: var(--brand-200); }
.slide__excerpt {
  margin-top: 1.25rem; max-width: 36rem; color: var(--ink-300); line-height: 1.8;
  display: -webkit-box; -webkit-line-clamp: 4; -webkit-box-orient: vertical; overflow: hidden;
  animation: slide-in .65s .13s var(--ease) both;
}
.slide__actions { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 2rem; animation: slide-in .65s .18s var(--ease) both; }
@keyframes slide-in { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: none; } }

.news-hero__figure {
  position: relative; display: block; aspect-ratio: 16 / 10; overflow: hidden;
  border: 1px solid rgb(255 255 255 / .1); border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg); background: var(--ink-800);
}
.news-hero__figure img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  opacity: 0; transition: opacity .7s;
}
.news-hero__figure img.is-on { opacity: 1; }

.thumbs { display: grid; grid-template-columns: repeat(5, 1fr); gap: .6rem; margin-top: 1rem; }
.thumb {
  position: relative; overflow: hidden; padding: 0; border-radius: var(--r-sm);
  border: 1px solid rgb(255 255 255 / .1); background: var(--ink-800);
  opacity: .55; transition: opacity .3s, border-color .3s, box-shadow .3s;
}
.thumb:hover { opacity: 1; }
.thumb.is-on { opacity: 1; border-color: var(--brand-400); box-shadow: 0 0 0 2px rgb(56 179 204 / .4); }
.thumb img { aspect-ratio: 16 / 10; width: 100%; object-fit: cover; }
.thumb__bar { position: absolute; inset-inline: 0; bottom: 0; height: 3px; background: var(--brand-400); transform: scaleX(0); transform-origin: left; }
.thumb.is-on .thumb__bar { animation: slide-progress 7s linear both; }
.thumb.is-on.is-paused .thumb__bar { animation-play-state: paused; }
@keyframes slide-progress { from { transform: scaleX(0); } to { transform: scaleX(1); } }

.news-hero__controls {
  display: flex; align-items: center; justify-content: space-between; gap: 1.5rem;
  margin-top: 2.5rem; padding-top: 1.25rem; border-top: 1px solid rgb(255 255 255 / .1);
}
.news-hero__count { font-family: var(--font-display); font-size: .78rem; font-weight: 700; color: var(--ink-500); font-variant-numeric: tabular-nums; }
.news-hero__state { display: none; margin-left: .75rem; font-weight: 400; }
@media (min-width: 640px) { .news-hero__state { display: inline; } }
.news-hero__nav { display: flex; gap: .5rem; }
.icon-btn {
  display: flex; align-items: center; justify-content: center;
  width: 2.5rem; height: 2.5rem; border-radius: 50%;
  border: 1px solid rgb(255 255 255 / .2); background: transparent; color: #fff;
  transition: border-color .2s, background .2s;
}
.icon-btn:hover { border-color: var(--brand-400); background: rgb(255 255 255 / .1); }
.icon-btn svg { width: 1rem; height: 1rem; }

/* --------------------------------------------------------------- haber kartları */
.card-news {
  display: flex; flex-direction: column; height: 100%; overflow: hidden;
  background: #fff; border: 1px solid var(--ink-100); border-radius: var(--r-lg);
  box-shadow: var(--shadow); transition: transform .3s, border-color .3s, box-shadow .3s;
}
.card-news:hover { transform: translateY(-4px); border-color: var(--brand-200); box-shadow: var(--shadow-lg); }
.card-news__media { position: relative; display: block; aspect-ratio: 16 / 10; overflow: hidden; background: var(--ink-100); }
.card-news__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s; }
.card-news:hover .card-news__media img { transform: scale(1.06); }
.card-news__body { display: flex; flex-direction: column; flex: 1; padding: 1.5rem; }
.card-news__meta {
  display: flex; align-items: center; gap: .6rem;
  font-family: var(--font-display); font-size: .72rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase; color: var(--brand-600);
}
.card-news__body h3 { margin-top: .75rem; font-size: 1.05rem; line-height: 1.35; font-weight: 700; }
.card-news:hover h3 a { color: var(--brand-700); }
.card-news__body > p {
  margin-top: .75rem; flex: 1; font-size: .9rem; color: var(--ink-600); line-height: 1.6;
  display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden;
}
.card-news__body .readmore { margin-top: 1.25rem; }

.card-wide {
  display: grid; height: 100%; overflow: hidden; background: #fff;
  border: 1px solid var(--ink-100); border-radius: var(--r-lg); box-shadow: var(--shadow);
  transition: border-color .3s, box-shadow .3s;
}
@media (min-width: 640px) { .card-wide { grid-template-columns: 1fr 1fr; } }
.card-wide:hover { border-color: var(--brand-200); box-shadow: var(--shadow-lg); }
.card-wide__media { position: relative; display: block; overflow: hidden; background: var(--ink-100); aspect-ratio: 16 / 10; }
@media (min-width: 640px) { .card-wide__media { aspect-ratio: auto; } }
.card-wide__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s; }
.card-wide:hover .card-wide__media img { transform: scale(1.05); }
.card-wide__body { display: flex; flex-direction: column; justify-content: center; padding: 1.75rem; }
@media (min-width: 640px) { .card-wide__body { padding: 2rem; } }
.card-wide__body h3 { margin-top: .75rem; font-size: 1.35rem; font-weight: 800; line-height: 1.3; }
.card-wide:hover h3 a { color: var(--brand-700); }
.card-wide__body > p {
  margin-top: 1rem; color: var(--ink-600); line-height: 1.65; font-size: .94rem;
  display: -webkit-box; -webkit-line-clamp: 4; -webkit-box-orient: vertical; overflow: hidden;
}
.card-wide__body .readmore { margin-top: 1.5rem; }

.news-lead { display: grid; gap: 1.5rem; margin-top: 2.75rem; }
@media (min-width: 1024px) { .news-lead { grid-template-columns: 1.55fr 1fr; } }
.news-side { background: rgb(244 247 249 / .5); border: 1px solid var(--ink-100); border-radius: var(--r-lg); padding: 1.5rem; }
@media (min-width: 640px) { .news-side { padding: 1.75rem; } }
.news-side__title { font-family: var(--font-display); font-size: .72rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--ink-500); }
.news-side__list { margin-top: .5rem; }
.news-side .readmore { margin-top: 1.25rem; }

.news-row { display: flex; gap: 1rem; padding-block: 1rem; border-bottom: 1px solid var(--ink-100); }
.news-row:last-of-type { border-bottom: 0; }
.news-row__no { font-family: var(--font-display); font-size: .8rem; font-weight: 800; color: var(--ink-300); font-variant-numeric: tabular-nums; }
.news-row__body { flex: 1; min-width: 0; }
.news-row__title {
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
  font-size: .92rem; font-weight: 600; line-height: 1.4; color: var(--ink-800);
}
.news-row:hover .news-row__title { color: var(--brand-700); }
.news-row__meta { display: flex; align-items: center; gap: .5rem; margin-top: .35rem; font-size: .72rem; color: var(--ink-400); }

/* ----------------------------------------------------------- sayılar / şerit */
.brand-split { display: grid; gap: 3rem; align-items: center; }
@media (min-width: 1024px) { .brand-split { grid-template-columns: 1.1fr .9fr; } }
.brand-split__title { margin-top: 1.5rem; font-size: clamp(1.9rem, 4.4vw, 3.1rem); font-weight: 800; color: #fff; line-height: 1.08; }
.brand-split__desc { margin-top: 1.5rem; max-width: 34rem; color: var(--ink-300); line-height: 1.8; }
.brand-split .btn-row { margin-top: 2rem; }

.stat-grid { display: grid; gap: 1rem; grid-template-columns: 1fr; }
@media (min-width: 640px) { .stat-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .stat-grid--4 { grid-template-columns: repeat(4, 1fr); } }
.stat {
  position: relative; overflow: hidden; padding: 1.5rem; border-radius: var(--r-md);
  border: 1px solid rgb(255 255 255 / .1); background: rgb(255 255 255 / .04);
  transition: border-color .3s, background .3s;
}
.stat:hover { border-color: rgb(56 179 204 / .4); background: rgb(255 255 255 / .07); }
.stat__value { font-family: var(--font-display); font-size: 2.25rem; font-weight: 800; color: #fff; }
.stat__label { margin-top: .5rem; font-family: var(--font-display); font-size: .74rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--brand-300); }
.stat__detail { margin-top: .5rem; font-size: .8rem; color: var(--ink-400); line-height: 1.5; }

.marquee { position: relative; margin-top: 3.5rem; padding-top: 1.25rem; border-top: 1px solid rgb(255 255 255 / .1); }
.marquee__track {
  display: flex; overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}
.marquee__set { display: flex; flex-shrink: 0; gap: 2.5rem; padding-right: 2.5rem; animation: marquee 42s linear infinite; }
.marquee__set span {
  display: flex; align-items: center; gap: 2.5rem; flex-shrink: 0; white-space: nowrap;
  font-family: var(--font-display); font-size: .8rem; font-weight: 600;
  letter-spacing: .14em; text-transform: uppercase; color: var(--ink-500);
}
.marquee__set i { width: 4px; height: 4px; border-radius: 50%; background: var(--brand-500); }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-100%); } }

/* -------------------------------------------------------------------- harita */
.map-split { display: grid; gap: 2rem; align-items: start; }
@media (min-width: 1024px) { .map-split { grid-template-columns: 1.55fr 1fr; } }
.map-wrap { position: relative; }
.tr-map { width: 100%; height: auto; }
.tr-map__path {
  cursor: pointer; stroke: #fff; stroke-width: 1.1; stroke-linejoin: round;
  vector-effect: non-scaling-stroke; transition: fill .2s;
}
.tr-map__path[data-level="0"] { fill: var(--ink-100); }
.tr-map__path[data-level="1"] { fill: var(--brand-200); }
.tr-map__path[data-level="2"] { fill: var(--brand-300); }
.tr-map__path[data-level="3"] { fill: var(--brand-500); }
.tr-map__path[data-level="4"] { fill: var(--brand-700); }
.tr-map__path:hover { fill: var(--brand-400); }
.tr-map__path.is-selected { fill: var(--ember-500); }

.map-tip {
  position: absolute; z-index: 10; pointer-events: none;
  transform: translate(-50%, calc(-100% - 12px));
  padding: .5rem .75rem; border-radius: var(--r-sm);
  background: var(--ink-950); text-align: center; box-shadow: var(--shadow-lg);
}
.map-tip__name { font-family: var(--font-display); font-size: .82rem; font-weight: 700; color: #fff; }
.map-tip__count { font-size: .72rem; color: var(--brand-300); }

.map-legend {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
  gap: .5rem 1.25rem; margin-top: 1.5rem; font-size: .72rem; color: var(--ink-500);
}
.map-legend span { display: flex; align-items: center; gap: .4rem; }
.map-legend__label { font-family: var(--font-display); font-weight: 600; text-transform: uppercase; letter-spacing: .06em; color: var(--ink-600); }
.map-legend i { width: 1.25rem; height: .75rem; border-radius: 3px; }
.map-legend i[data-level="0"] { background: var(--ink-100); }
.map-legend i[data-level="1"] { background: var(--brand-200); }
.map-legend i[data-level="2"] { background: var(--brand-300); }
.map-legend i[data-level="3"] { background: var(--brand-500); }
.map-legend i[data-level="4"] { background: var(--brand-700); }

.map-aside { display: flex; flex-direction: column; gap: 1rem; }
.map-aside__stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
.big-num { font-family: var(--font-display); font-size: 2.25rem; font-weight: 800; color: var(--brand-700); }
.big-num--warn { color: var(--ember-600); }
.big-num--brand { color: var(--brand-700); }
.map-detail__region { font-family: var(--font-display); font-size: .72rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--brand-700); }
.map-detail__count { margin-top: .5rem; color: var(--ink-600); }

.top-list { display: flex; flex-direction: column; gap: .6rem; }
.top-list button, .top-list a { display: flex; align-items: center; gap: .75rem; width: 100%; padding: 0; border: 0; background: none; text-align: left; }
.top-list__no { width: 1.25rem; font-family: var(--font-display); font-size: .78rem; font-weight: 700; color: var(--ink-400); }
.top-list__name { flex: 1; font-size: .92rem; font-weight: 600; color: var(--ink-800); }
.top-list button:hover .top-list__name, .top-list a:hover .top-list__name { color: var(--brand-700); }
.top-list__count { padding: .1rem .6rem; border-radius: var(--r-full); background: var(--brand-50); font-family: var(--font-display); font-size: .75rem; font-weight: 700; color: var(--brand-700); }

/* ------------------------------------------------------------- üye dizini */
.member-card {
  display: flex; flex-direction: column; height: 100%; padding: 1.25rem;
  background: #fff; border: 1px solid var(--ink-100); border-radius: var(--r-md); box-shadow: var(--shadow);
  transition: transform .2s, border-color .2s, box-shadow .2s;
}
.member-card:hover { transform: translateY(-2px); border-color: var(--brand-200); box-shadow: var(--shadow-lg); }
.member-card h3 { font-size: 1rem; font-weight: 700; line-height: 1.35; }
.member-card__site { margin-top: .35rem; font-size: .85rem; font-weight: 500; color: var(--brand-700); }
.member-card__site:hover { text-decoration: underline; }
.member-card__meta { flex: 1; margin-top: 1rem; font-size: .85rem; color: var(--ink-600); }
.member-card__tags { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 1rem; padding-top: .75rem; border-top: 1px solid var(--ink-100); }

.dir-group + .dir-group { margin-top: 2.5rem; }
.dir-group__head { display: flex; align-items: center; gap: .75rem; font-family: var(--font-display); font-size: .82rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-500); }

.empty { padding: 3rem 1.5rem; text-align: center; background: rgb(244 247 249 / .6); border: 1px dashed var(--ink-200); border-radius: var(--r-lg); }
.empty--sm { padding: 2.5rem 1.5rem; color: var(--ink-500); }
.empty__icon { display: inline-flex; align-items: center; justify-content: center; width: 3.5rem; height: 3.5rem; border-radius: 50%; background: var(--brand-50); color: var(--brand-600); }
.empty__icon svg { width: 1.75rem; height: 1.75rem; }

/* ------------------------------------------------------------- sayfa başlığı */
/* Eski koyu bant kaldırıldı: başlık artık aydınlık ve ince. */
.page-head { position: relative; overflow: hidden; background: #fff; padding-block: 1.75rem 2.25rem; border-bottom: 1px solid var(--ink-100); }
@media (min-width: 640px) { .page-head { padding-block: 2.25rem 2.75rem; } }
.page-head--bare { padding-block: 1rem .75rem; border-bottom: 0; }
.page-head__wash {
  position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(46rem 18rem at 8% -40%, rgb(29 149 177 / .10), transparent 62%);
}
.page-head > .container { position: relative; }
.page-head__title { margin-top: .85rem; max-width: 52rem; font-size: clamp(1.75rem, 3.6vw, 2.75rem); font-weight: 800; }
.page-head__desc { margin-top: .9rem; max-width: 46rem; color: var(--ink-600); line-height: 1.7; font-size: 1rem; }

.crumbs { display: flex; flex-wrap: wrap; align-items: center; gap: .5rem; font-size: .8rem; color: var(--ink-400); }
.crumbs a:hover { color: var(--brand-700); }
.crumbs span { color: var(--ink-300); }

.pull-up { margin-top: 1.5rem; position: relative; z-index: 1; }
.logo-plate { display: flex; align-items: center; justify-content: center; padding: 2.5rem; background: var(--ink-950); border: 1px solid var(--ink-100); border-radius: var(--r-lg); box-shadow: var(--shadow-lg); }
.logo-plate img { max-width: 32rem; }
.logo-plate--light { background: #fff; padding: 2rem; }
.logo-plate--light img { width: 12rem; }

/* ---------------------------------------------------------------- haber sayfası */
.article-meta { display: flex; flex-wrap: wrap; align-items: center; gap: .5rem 1.25rem; margin-top: 1.25rem; font-size: .85rem; color: var(--ink-500); }
.article-meta time { color: var(--brand-700); font-weight: 600; }
.article-cover { margin-top: 1.5rem; position: relative; z-index: 1; }
.article-cover img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; border: 1px solid var(--ink-100); border-radius: var(--r-lg); box-shadow: var(--shadow-lg); }
.article-layout { display: grid; gap: 3rem; padding-block: 3.5rem; }
@media (min-width: 1024px) { .article-layout { grid-template-columns: minmax(0, 46rem) 1fr; } }
.article-aside { position: static; }
@media (min-width: 1024px) { .article-aside { position: sticky; top: 7rem; align-self: start; } }

.shot { margin: 0; overflow: hidden; border: 1px solid var(--ink-100); border-radius: var(--r-md); background: var(--ink-100); }
.shot img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }

.article-nav { display: grid; gap: 1rem; margin-top: 3.5rem; padding-top: 2rem; border-top: 1px solid var(--ink-100); }
@media (min-width: 640px) { .article-nav { grid-template-columns: 1fr 1fr; } }
.article-nav a { display: block; padding: 1.25rem; border: 1px solid var(--ink-100); border-radius: var(--r-md); transition: border-color .2s, background .2s; }
.article-nav a:hover { border-color: var(--brand-200); background: rgb(238 250 252 / .4); }
.article-nav p { margin-top: .5rem; font-weight: 600; color: var(--ink-900); display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.article-nav a:hover p { color: var(--brand-700); }

.mini-list li + li { margin-top: 1rem; }
.mini-list a { display: flex; gap: .75rem; }
.mini-list__img { flex-shrink: 0; width: 5rem; height: 3.5rem; overflow: hidden; border-radius: .5rem; background: var(--ink-100); }
.mini-list__img img { width: 100%; height: 100%; object-fit: cover; }
.mini-list__title { display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; font-size: .85rem; font-weight: 600; line-height: 1.35; color: var(--ink-800); }
.mini-list a:hover .mini-list__title { color: var(--brand-700); }
.mini-list time { display: block; margin-top: .25rem; font-size: .72rem; color: var(--ink-400); }

/* ------------------------------------------------------------------ kurullar */
.council-card {
  display: flex; flex-direction: column; height: 100%; padding: 1.5rem;
  border: 1px solid rgb(255 255 255 / .1); border-radius: var(--r-md); background: rgb(255 255 255 / .04);
  transition: transform .3s, border-color .3s, background .3s;
}
.council-card:hover { transform: translateY(-4px); border-color: rgb(56 179 204 / .4); background: rgb(255 255 255 / .08); }
.council-card__tag { font-family: var(--font-display); font-size: .7rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--brand-400); }
.council-card h3 { margin-top: .75rem; font-size: 1.1rem; font-weight: 700; color: #fff; }
.council-card p { margin-top: .75rem; flex: 1; font-size: .86rem; line-height: 1.6; color: var(--ink-400); display: -webkit-box; -webkit-line-clamp: 4; -webkit-box-orient: vertical; overflow: hidden; }
.council-card .readmore { margin-top: 1.25rem; }

.member { display: flex; gap: 1rem; height: 100%; padding: 1.5rem; border: 1px solid var(--ink-100); border-radius: var(--r-lg); background: #fff; box-shadow: var(--shadow); transition: transform .3s, box-shadow .3s; }
.member:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.member--lead { border-color: var(--brand-200); background: rgb(238 250 252 / .6); }
.member__avatar {
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  width: 3rem; height: 3rem; border-radius: var(--r-md);
  background: linear-gradient(135deg, var(--brand-400), var(--brand-700));
  font-family: var(--font-display); font-size: .875rem; font-weight: 800; color: #fff;
}
.member__name { font-size: 1.02rem; font-weight: 700; line-height: 1.3; margin-top: .25rem; }
.member__title { margin-top: .35rem; font-size: .85rem; line-height: 1.4; color: var(--ink-600); }

.member-row { display: flex; align-items: center; gap: 1rem; height: 100%; padding: 1rem; border: 1px solid var(--ink-100); border-radius: var(--r-md); background: #fff; box-shadow: var(--shadow); }
.member-row:hover { border-color: var(--brand-200); }
.member-row__no { width: 1.75rem; text-align: center; font-family: var(--font-display); font-size: .8rem; font-weight: 700; color: var(--ink-300); }
.member-row__body { flex: 1; min-width: 0; }
.member-row__name { font-size: .95rem; font-weight: 600; line-height: 1.35; color: var(--ink-900); }

.poster-frame { margin: 0; padding: .75rem; background: #fff; border: 1px solid var(--ink-100); border-radius: var(--r-lg); box-shadow: var(--shadow); }
.poster-frame img { border-radius: var(--r-md); }

/* ------------------------------------------------------------------ projeler */
.project { display: flex; flex-direction: column; height: 100%; overflow: hidden; background: #fff; border: 1px solid var(--ink-100); border-radius: var(--r-lg); box-shadow: var(--shadow); transition: transform .3s, border-color .3s, box-shadow .3s; }
.project:hover { transform: translateY(-4px); border-color: var(--brand-200); box-shadow: var(--shadow-lg); }
.project__media { position: relative; aspect-ratio: 3 / 4; overflow: hidden; background: var(--ink-100); }
.project__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s; }
.project:hover .project__media img { transform: scale(1.04); }
.project__media .chip { position: absolute; top: 1rem; left: 1rem; }
.project__body { display: flex; flex-direction: column; flex: 1; padding: 1.5rem; }
.project__body > p { flex: 1; font-size: .9rem; color: var(--ink-600); line-height: 1.6; }
.project__supporter { margin-top: 1.25rem; padding-top: 1rem; border-top: 1px solid var(--ink-100); font-size: .78rem; line-height: 1.5; color: var(--ink-500); }

.poster-card { display: block; overflow: hidden; background: #fff; border: 1px solid var(--ink-100); border-radius: var(--r-lg); box-shadow: var(--shadow); transition: transform .3s, box-shadow .3s; }
.poster-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.poster-card__media { display: block; aspect-ratio: 3 / 4; overflow: hidden; background: var(--ink-100); }
.poster-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s; }
.poster-card:hover .poster-card__media img { transform: scale(1.05); }
.poster-card__body { display: block; padding: 1.25rem; }
.poster-card__title { display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; font-family: var(--font-display); font-size: .95rem; font-weight: 700; line-height: 1.35; color: var(--ink-950); }
.poster-card__sub { display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; margin-top: .5rem; font-size: .78rem; color: var(--ink-500); }

.promo { position: relative; display: flex; flex-direction: column; justify-content: space-between; height: 100%; overflow: hidden; padding: 2rem; border-radius: var(--r-xl); }
@media (min-width: 640px) { .promo { padding: 2.5rem; } }
.promo--dark { background: #16283a; }
.promo--dark h3 { color: #fff; }
.promo--dark p { color: var(--ink-300); }
.promo--light { background: var(--brand-50); border: 1px solid var(--brand-100); }
.promo--light p { color: var(--ink-600); }
.promo__glow { position: absolute; inset: 0; opacity: .7; transition: opacity .5s; background: radial-gradient(30rem 18rem at 80% 0%, rgb(29 149 177 / .4), transparent 65%); }
.promo:hover .promo__glow { opacity: 1; }
.promo > * { position: relative; }
.promo__logo { height: 3rem; width: auto; }
.promo__logo--sm { height: 3.5rem; }
.promo h3 { margin-top: 1.75rem; font-size: 1.5rem; font-weight: 800; }
@media (min-width: 640px) { .promo h3 { font-size: 1.75rem; } }
.promo p { margin-top: 1rem; max-width: 28rem; font-size: .95rem; line-height: 1.65; }
.promo .readmore { margin-top: 2rem; }

.decree { position: relative; }
.decree__main { overflow: hidden; background: #fff; border: 1px solid var(--ink-100); border-radius: var(--r-xl); box-shadow: var(--shadow-lg); }
.decree__inset { display: none; position: absolute; bottom: -1.5rem; left: -1rem; width: 14rem; overflow: hidden; border: 3px solid #fff; border-radius: var(--r-md); box-shadow: var(--shadow-lg); }
@media (min-width: 640px) { .decree__inset { display: block; } }

/* ---------------------------------------------------- listeler ve tablolar */
.numbered { display: grid; gap: .75rem; }
.numbered li { display: flex; gap: .75rem; padding: 1rem; background: #fff; border: 1px solid var(--ink-100); border-radius: var(--r-md); box-shadow: var(--shadow); font-size: .92rem; line-height: 1.6; color: var(--ink-700); }
.numbered__no { display: flex; align-items: center; justify-content: center; flex-shrink: 0; width: 1.75rem; height: 1.75rem; border-radius: .5rem; background: var(--brand-50); font-family: var(--font-display); font-size: .75rem; font-weight: 800; color: var(--brand-700); }

.numbered-list li { display: flex; align-items: center; gap: .75rem; padding: .85rem 1.25rem; margin-bottom: .6rem; background: #fff; border: 1px solid var(--ink-100); border-radius: var(--r-md); box-shadow: var(--shadow); font-size: .94rem; font-weight: 500; color: var(--ink-800); }
.numbered-list li span { font-family: var(--font-display); font-size: .75rem; font-weight: 800; color: var(--brand-400); }

.check-cards li { display: flex; gap: .75rem; padding: 1.25rem; margin-bottom: .75rem; background: #fff; border: 1px solid var(--ink-100); border-radius: var(--r-md); box-shadow: var(--shadow); font-size: .94rem; line-height: 1.6; color: var(--ink-700); }
.check-cards svg { flex-shrink: 0; width: 1rem; height: 1rem; margin-top: .25rem; color: var(--brand-500); }

.pledges li { display: flex; gap: .75rem; height: 100%; padding: 1.25rem; border: 1px solid rgb(255 255 255 / .1); border-radius: var(--r-md); background: rgb(255 255 255 / .04); font-size: .88rem; line-height: 1.6; color: var(--ink-300); }
.pledges svg { flex-shrink: 0; width: 1rem; height: 1rem; margin-top: .25rem; color: var(--brand-400); }

.tile { padding: 1rem 1.25rem; background: var(--brand-50); border: 1px solid var(--brand-100); border-radius: var(--r-md); font-size: .9rem; font-weight: 600; color: var(--brand-800); }

.deflist > div { display: flex; gap: .75rem; margin-bottom: 1rem; }
.deflist > div:last-child { margin-bottom: 0; }
.deflist dt { flex-shrink: 0; width: 7rem; font-family: var(--font-display); font-size: .72rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-400); }
.deflist dd { flex: 1; font-size: .92rem; color: var(--ink-800); }

.table-wrap { overflow-x: auto; border: 1px solid var(--ink-100); border-radius: var(--r-lg); background: #fff; box-shadow: var(--shadow); }
.table-wrap--dark { border-color: rgb(255 255 255 / .1); background: transparent; box-shadow: none; }
.table { width: 100%; border-collapse: collapse; text-align: left; font-size: .9rem; }
.table th { padding: .9rem 1.25rem; font-family: var(--font-display); font-size: .74rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.table td { padding: .85rem 1.25rem; vertical-align: top; }
.table .num { font-family: var(--font-display); font-weight: 700; color: var(--ink-400); }
.table .strong { font-weight: 600; color: var(--ink-900); }

.table--brand thead tr { background: var(--brand-700); color: #fff; }
.table--brand tbody tr:nth-child(even) { background: rgb(244 247 249 / .6); }

.table--dark { min-width: 46rem; }
.table--dark thead tr { background: rgb(255 255 255 / .06); color: #fff; }
.table--dark td { color: var(--ink-300); border-top: 1px solid rgb(255 255 255 / .05); }
.table--dark .strong { color: #fff; }
.table--dark .num { color: var(--ink-500); }
.table--dark tbody tr:hover { background: rgb(255 255 255 / .05); }

.table--admin { min-width: 62rem; font-size: .88rem; }
.table--admin thead tr { background: rgb(244 247 249 / .7); border-bottom: 1px solid var(--ink-100); }
.table--admin th { color: var(--ink-500); }
.table--admin tbody tr { border-bottom: 1px solid var(--ink-100); }
.table--admin tbody tr:last-child { border-bottom: 0; }
.table--admin tbody tr:hover { background: rgb(238 250 252 / .3); }

/* ----------------------------------------------------------------- akordeon */
.accordion .acc { margin-bottom: .75rem; }
.acc { overflow: hidden; background: #fff; border: 1px solid var(--ink-100); border-radius: var(--r-md); box-shadow: var(--shadow); transition: border-color .2s, box-shadow .2s; }
.acc[open] { border-color: var(--brand-200); box-shadow: var(--shadow-lg); }
.acc summary {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 1.15rem 1.5rem; cursor: pointer; list-style: none;
  font-family: var(--font-display); font-size: 1rem; font-weight: 700; color: var(--ink-900);
}
.acc summary::-webkit-details-marker { display: none; }
.acc summary:hover, .acc[open] summary { color: var(--brand-700); }
.acc__icon { display: flex; align-items: center; justify-content: center; flex-shrink: 0; width: 1.75rem; height: 1.75rem; border: 1px solid var(--ink-200); border-radius: 50%; color: var(--ink-500); transition: transform .2s, border-color .2s, color .2s; }
.acc__icon svg { width: .85rem; height: .85rem; }
.acc[open] .acc__icon { transform: rotate(45deg); border-color: var(--brand-300); color: var(--brand-600); }
.acc__body { padding: 1.25rem 1.5rem; border-top: 1px solid var(--ink-100); font-size: .96rem; line-height: 1.8; color: var(--ink-600); }
.acc__body p { margin-bottom: .5rem; }
.acc__body p:last-child { margin-bottom: 0; }
.acc--sm summary { padding: .85rem 1.25rem; font-size: .9rem; }
.acc--sm .acc__body { padding: 1rem 1.25rem; font-size: .86rem; line-height: 1.75; }
.acc--sm { margin-bottom: .5rem; box-shadow: none; }
.contract { max-height: 34rem; overflow-y: auto; padding-right: .5rem; }

/* -------------------------------------------------------------------- form */
.form .field { margin-bottom: 1.25rem; }
.field label, .field legend { display: block; margin-bottom: .4rem; font-family: var(--font-display); font-size: .875rem; font-weight: 600; color: var(--ink-800); }
.field input, .field select, .field textarea {
  width: 100%; padding: .7rem 1rem; border: 1px solid var(--ink-200); border-radius: var(--r-sm);
  background: #fff; font: inherit; font-size: .95rem; color: var(--ink-900);
  transition: border-color .2s, box-shadow .2s;
}
.field textarea { resize: vertical; }
.field input::placeholder, .field textarea::placeholder { color: var(--ink-400); }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--brand-400); box-shadow: 0 0 0 4px var(--brand-100);
}
.field input:disabled, .field select:disabled { background: var(--ink-50); color: var(--ink-400); cursor: not-allowed; }
.field .hint { margin-top: .35rem; }
.form-row { display: grid; gap: 1.25rem; }
@media (min-width: 640px) { .form-row { grid-template-columns: 1fr 1fr; } }

.checkbox { display: flex; align-items: flex-start; gap: .75rem; margin-block: 1.25rem; font-size: .9rem; line-height: 1.6; color: var(--ink-700); cursor: pointer; }
.checkbox input { flex-shrink: 0; width: 1.25rem; height: 1.25rem; margin-top: .15rem; accent-color: var(--brand-600); }
.checkbox a { font-weight: 600; color: var(--brand-700); }
.checkbox a:hover { text-decoration: underline; }

.form-msg { display: none; margin-bottom: 1rem; padding: .75rem 1rem; border-radius: var(--r-sm); font-size: .88rem; }
.form-msg.is-error { display: block; background: var(--red-50); color: var(--red-700); }
.form-msg.is-ok { display: block; background: var(--brand-50); color: var(--brand-800); }

.form-done { padding: 2rem; text-align: center; background: var(--brand-50); border: 1px solid var(--brand-200); border-radius: var(--r-lg); }
.form-done__icon { display: inline-flex; align-items: center; justify-content: center; width: 3.5rem; height: 3.5rem; border-radius: 50%; background: var(--brand-600); color: #fff; }
.form-done__icon svg { width: 1.75rem; height: 1.75rem; }

.newsletter { display: flex; flex-wrap: wrap; gap: .75rem; max-width: 32rem; margin-top: 1rem; }
.newsletter input {
  flex: 1; min-width: 12rem; padding: .75rem 1.25rem; border-radius: var(--r-full);
  border: 1px solid rgb(255 255 255 / .15); background: rgb(255 255 255 / .05);
  font: inherit; font-size: .92rem; color: #fff;
}
.newsletter input::placeholder { color: var(--ink-500); }
.newsletter input:focus { outline: none; border-color: var(--brand-400); box-shadow: 0 0 0 4px rgb(29 149 177 / .2); }
.newsletter .form-msg { flex-basis: 100%; margin: 0; }

.contact-grid { display: grid; gap: 3rem; }
@media (min-width: 1024px) { .contact-grid { grid-template-columns: 1fr minmax(0, 34rem); } }
.contact-cards { display: flex; flex-direction: column; gap: 1rem; }
.contact-cards dt { margin-bottom: .35rem; }
.contact-cards dd { font-size: .98rem; line-height: 1.6; color: var(--ink-800); }
.contact-cards a:hover { color: var(--brand-700); }
.map-embed { overflow: hidden; border: 1px solid var(--ink-100); border-radius: var(--r-lg); box-shadow: var(--shadow); }
.map-embed iframe { width: 100%; height: 18rem; border: 0; }

.apply-grid { display: grid; gap: 3rem; }
@media (min-width: 1024px) { .apply-grid { grid-template-columns: minmax(0, 40rem) 1fr; align-items: start; } }

/* -------------------------------------------------------------------- çağrı */
.cta { position: relative; overflow: hidden; background: var(--brand-700); }
.cta__glow { position: absolute; inset: 0; pointer-events: none; background: radial-gradient(40rem 22rem at 85% 15%, rgb(255 255 255 / .16), transparent 62%); }
.cta__inner { position: relative; max-width: 48rem; margin-inline: auto; text-align: center; }
.cta h2 { margin-top: 1.25rem; font-size: clamp(1.75rem, 3.6vw, 2.8rem); font-weight: 800; color: #fff; }
.cta p { margin-top: 1.25rem; color: rgb(238 250 252 / .9); line-height: 1.7; font-size: 1.02rem; }
.cta .btn-row { margin-top: 2.25rem; }

/* ------------------------------------------------------------------ altbilgi */
.site-footer { position: relative; overflow: hidden; background: var(--ink-950); color: var(--ink-300); }
.site-footer::before {
  content: ''; position: absolute; inset-inline: 0; top: -10rem; height: 20rem; pointer-events: none; opacity: .6;
  background: radial-gradient(50rem 20rem at 20% 0%, rgb(29 149 177 / .28), transparent 70%);
}
.footer__grid { position: relative; display: grid; gap: 3rem; padding-block: 4rem 0; }
@media (min-width: 1024px) { .footer__grid { grid-template-columns: 1.4fr 2fr; padding-block: 5rem 0; } }
.footer__logo { height: 2.5rem; width: auto; filter: brightness(0) invert(1); }
.footer__desc { margin-top: 1.5rem; max-width: 32rem; font-size: .92rem; line-height: 1.7; color: var(--ink-400); }
.footer__legal { margin-top: 1rem; font-size: .82rem; color: var(--ink-500); }
.footer__contact { margin-top: 2rem; display: flex; flex-direction: column; gap: .6rem; font-size: .9rem; }
.footer__contact > div { display: flex; gap: .75rem; }
.footer__contact dt { flex-shrink: 0; width: 5rem; color: var(--ink-500); }
.footer__contact a:hover { color: #fff; }
.footer__cols { display: grid; gap: 2.5rem; }
@media (min-width: 640px) { .footer__cols { grid-template-columns: repeat(3, 1fr); } }
.footer__cols h3 { font-family: var(--font-display); font-size: .72rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: #fff; }
.footer__cols ul { margin-top: 1rem; display: flex; flex-direction: column; gap: .6rem; }
.footer__cols a { font-size: .9rem; color: var(--ink-400); }
.footer__cols a:hover { color: var(--brand-300); }
.footer__newsletter { grid-column: 1 / -1; }
.footer__newsletter p { margin-top: .5rem; font-size: .88rem; color: var(--ink-400); }
.footer__bottom {
  position: relative; display: flex; flex-direction: column; gap: 1rem;
  margin-top: 3.5rem; padding-block: 1.75rem 2.5rem; border-top: 1px solid rgb(255 255 255 / .1);
  font-size: .82rem; color: var(--ink-500);
}
@media (min-width: 640px) { .footer__bottom { flex-direction: row; align-items: center; justify-content: space-between; } }
.footer__links { display: flex; flex-wrap: wrap; gap: .5rem 1.5rem; }
.footer__links a:hover { color: var(--brand-300); }

/* --------------------------------------------------------------- yönetim paneli */
.admin-body { background: rgb(244 247 249 / .6); }
.admin { display: flex; flex-direction: column; min-height: 100vh; }
@media (min-width: 1024px) { .admin { flex-direction: row; } }

.admin__side { display: flex; flex-direction: column; padding: 1.25rem; background: var(--ink-950); border-bottom: 1px solid var(--ink-100); }
@media (min-width: 1024px) {
  .admin__side { position: sticky; top: 0; height: 100vh; width: 16rem; flex-shrink: 0; border-bottom: 0; border-right: 1px solid rgb(255 255 255 / .08); }
}
.admin__brand img { height: 2rem; width: auto; filter: brightness(0) invert(1); }
.admin__brand span { display: block; margin-top: .5rem; font-family: var(--font-display); font-size: .68rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--brand-400); }

.admin__nav { display: flex; flex-direction: column; gap: .25rem; margin-top: 2rem; }
.admin__link {
  display: flex; align-items: center; gap: .75rem; padding: .65rem .85rem; border-radius: var(--r-sm);
  font-family: var(--font-display); font-size: .88rem; font-weight: 600; color: var(--ink-300);
  transition: background .2s, color .2s;
}
.admin__link:hover { background: rgb(255 255 255 / .06); color: #fff; }
.admin__link.is-active { background: var(--brand-600); color: #fff; }
.admin__link svg { flex-shrink: 0; width: 1rem; height: 1rem; }
.admin__link span { flex: 1; }
.admin__badge { padding: .1rem .5rem; border-radius: var(--r-full); background: var(--ember-500); font-family: var(--font-display); font-size: .68rem; font-weight: 800; color: #fff; }
.admin__link.is-active .admin__badge { background: rgb(255 255 255 / .2); }

.admin__foot { margin-top: auto; padding-top: 1.5rem; }
.admin__user { padding: 1rem; border: 1px solid rgb(255 255 255 / .1); border-radius: var(--r-md); background: rgb(255 255 255 / .04); }
.admin__user .strong { font-family: var(--font-display); font-size: .85rem; color: #fff; }
.admin__user .muted { font-size: .75rem; color: var(--ink-400); overflow: hidden; text-overflow: ellipsis; }
.admin__logout { display: block; margin-top: .75rem; padding: .5rem; border: 1px solid rgb(255 255 255 / .15); border-radius: .5rem; text-align: center; font-family: var(--font-display); font-size: .78rem; font-weight: 600; color: var(--ink-300); }
.admin__logout:hover { border-color: rgb(255 255 255 / .3); color: #fff; }
.admin__back { display: block; margin-top: .75rem; text-align: center; font-size: .78rem; color: var(--ink-500); }
.admin__back:hover { color: var(--brand-300); }

.admin__main { flex: 1; min-width: 0; }
.admin-head { display: flex; flex-direction: column; gap: 1rem; padding: 1.75rem 1.5rem; background: #fff; border-bottom: 1px solid var(--ink-100); }
@media (min-width: 640px) { .admin-head { flex-direction: row; align-items: center; justify-content: space-between; } }
@media (min-width: 1024px) { .admin-head { padding-inline: 2rem; } }
.admin-head h1 { font-size: 1.6rem; font-weight: 800; }
@media (min-width: 1024px) { .admin-head h1 { font-size: 1.85rem; } }
.admin-body-pad { padding: 1.5rem; }
@media (min-width: 1024px) { .admin-body-pad { padding: 2rem; } }

.admin-split { display: grid; gap: 1.5rem; }
@media (min-width: 1280px) { .admin-split { grid-template-columns: 1.4fr 1fr; align-items: start; } }

.pill { display: inline-block; padding: .25rem .65rem; border-radius: var(--r-full); font-family: var(--font-display); font-size: .7rem; font-weight: 700; white-space: nowrap; }
.pill--ok { background: var(--brand-50); color: var(--brand-700); }
.pill--warn { background: rgb(243 169 60 / .15); color: var(--ember-600); }
.pill--bad { background: var(--red-50); color: var(--red-600); }
.pill--grey { background: var(--ink-100); color: var(--ink-600); }

.filters { display: grid; gap: 1rem; align-items: end; }
@media (min-width: 1024px) { .filters { grid-template-columns: 1fr 12rem 12rem auto; } }
.filters .field { margin-bottom: 0; }
.filters__actions { display: flex; gap: .5rem; }

.row-actions { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: .4rem; }
.row-actions form { display: inline; }
.mini { padding: .35rem .7rem; border: 1px solid var(--ink-200); border-radius: .5rem; background: #fff; font-family: var(--font-display); font-size: .74rem; font-weight: 700; color: var(--ink-600); transition: border-color .2s, color .2s, background .2s; }
.mini:hover { border-color: var(--brand-300); color: var(--brand-700); }
.mini--ok { background: var(--brand-600); border-color: var(--brand-600); color: #fff; }
.mini--ok:hover { background: var(--brand-700); border-color: var(--brand-700); color: #fff; }
.mini--bad { color: var(--ink-400); }
.mini--bad:hover { border-color: #fca5a5; color: var(--red-600); }

.recent li { display: flex; align-items: center; gap: .75rem; padding-bottom: .75rem; margin-bottom: .75rem; border-bottom: 1px solid var(--ink-100); }
.recent li:last-child { padding-bottom: 0; margin-bottom: 0; border-bottom: 0; }
.recent li > div { flex: 1; min-width: 0; }
.recent .strong, .recent .muted { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.link-sm { font-size: .8rem; font-weight: 600; color: var(--brand-700); }
.link-sm:hover { text-decoration: underline; }

.application__facts { display: grid; gap: .75rem 1.5rem; margin-top: 1.25rem; flex: 1; font-size: .87rem; }
@media (min-width: 640px) { .application__facts { grid-template-columns: 1fr 1fr; } }
.application__facts dt { font-family: var(--font-display); font-size: .68rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-400); }
.application__facts dd { margin-top: .15rem; color: var(--ink-800); word-break: break-word; }
.application__facts a { color: var(--brand-700); }
.application { display: flex; flex-direction: column; }
.application__actions { display: flex; gap: .75rem; margin-top: 1.5rem; padding-top: 1.25rem; border-top: 1px solid var(--ink-100); }
.application__actions form { flex: 1; }

.message { margin-bottom: 1rem; }
.message--new { border-color: rgb(243 169 60 / .4); }
.message__body { margin-top: 1rem; padding-top: 1rem; border-top: 1px solid var(--ink-100); font-size: .92rem; line-height: 1.75; color: var(--ink-700); }

.modal { position: fixed; inset: 0; z-index: 50; display: flex; align-items: flex-start; justify-content: center; overflow-y: auto; padding: 1rem; background: rgb(10 22 32 / .6); backdrop-filter: blur(4px); }
.modal[hidden] { display: none; }
@media (min-width: 640px) { .modal { padding: 2rem; } }
.modal__box { width: 100%; max-width: 42rem; margin: auto; padding: 1.75rem; background: #fff; border-radius: var(--r-lg); box-shadow: var(--shadow-lg); }
.modal__actions { display: flex; justify-content: flex-end; gap: .75rem; margin-top: 1.75rem; }

.notice { padding: 1.25rem; border: 1px solid rgb(243 169 60 / .4); border-radius: var(--r-md); background: rgb(243 169 60 / .1); font-size: .85rem; line-height: 1.65; color: var(--ink-700); }
.notice--warn { border-color: rgb(243 169 60 / .5); }
.notice code { padding: .1rem .35rem; border-radius: 4px; background: rgb(255 255 255 / .6); font-family: ui-monospace, monospace; font-size: .85em; color: var(--brand-800); }

.toast { margin: 1.5rem 1.5rem 0; padding: .85rem 1.25rem; border-radius: var(--r-md); background: var(--brand-50); border: 1px solid var(--brand-200); font-size: .9rem; color: var(--brand-800); }
@media (min-width: 1024px) { .toast { margin-inline: 2rem; } }
.toast--error { background: var(--red-50); border-color: #fca5a5; color: var(--red-700); }

/* giriş ekranı */
.login { display: grid; min-height: 100vh; }
@media (min-width: 1024px) { .login { grid-template-columns: 1fr 1fr; } }
.login__art { display: none; position: relative; overflow: hidden; background: var(--ink-950); }
@media (min-width: 1024px) { .login__art { display: block; } }
.login__glow { position: absolute; inset: 0; background: radial-gradient(44rem 28rem at 20% 10%, rgb(29 149 177 / .4), transparent 62%), radial-gradient(34rem 24rem at 90% 90%, rgb(56 179 204 / .2), transparent 60%); }
.login__art-inner { position: relative; display: flex; flex-direction: column; justify-content: space-between; height: 100%; padding: 3rem; }
.login__art-inner img {
  align-self: flex-start;      /* sütun flex'te stretch logoyu eziyordu */
  height: 2.75rem; width: auto; max-width: 14rem;
  object-fit: contain;
  filter: brightness(0) invert(1);
}
.login__art-inner h1 { max-width: 26rem; font-size: 2.25rem; font-weight: 800; color: #fff; line-height: 1.2; }
.login__art-inner > div > p { margin-top: 1.25rem; max-width: 26rem; color: var(--ink-300); line-height: 1.7; }
.login__copy { font-size: .8rem; color: var(--ink-500); }
.login__form { display: flex; align-items: center; justify-content: center; padding: 1.5rem; background: #fff; }
@media (min-width: 640px) { .login__form { padding: 3rem; } }
.login__box { width: 100%; max-width: 24rem; }
.login__logo-sm { display: block; height: 2.25rem; width: auto; max-width: 12rem; object-fit: contain; margin-bottom: 2rem; }
@media (min-width: 1024px) { .login__logo-sm { display: none; } }
.login__back { display: inline-block; margin-top: 2rem; font-size: .88rem; color: var(--ink-500); }
.login__back:hover { color: var(--brand-700); }

/* ------------------------------------------------------------ giriş animasyonu */
/* Gizleme YALNIZCA .js sınıfı varken uygulanır — bu sınıfı app.js ekler.
   Böylece JavaScript çalışmazsa veya hata verirse içerik görünmez kalmaz. */
.js [data-reveal] { opacity: 0; transform: translateY(32px); transition: opacity .75s var(--ease), transform .75s var(--ease); }
.js [data-reveal][data-from="left"] { transform: translateX(-32px); }
.js [data-reveal][data-from="right"] { transform: translateX(32px); }
.js [data-reveal][data-from="scale"] { transform: scale(.96); }
.js [data-reveal].is-in { opacity: 1; transform: none; }

/* ---------------------------------------------------- azaltılmış hareket tercihi */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
    scroll-behavior: auto !important;
  }
  [data-reveal] { opacity: 1; transform: none; }
  .preloader { display: none !important; }
}

/* --------------------------------------------------------------------- yazdır */
@media print {
  .site-header, .site-footer, .preloader, .scroll-progress, .admin__side { display: none !important; }
  body { background: #fff; }
}

/* ------------------------------------------------------------------ yayınlar */
.yayin { display: flex; flex-direction: column; gap: 1.5rem; }
@media (min-width: 640px) { .yayin { flex-direction: row; align-items: flex-start; } }
.yayin__kapak {
  display: block; flex-shrink: 0; width: 100%; max-width: 14rem; margin-inline: auto;
  overflow: hidden; border: 1px solid var(--ink-100); border-radius: var(--r-md);
  box-shadow: var(--shadow); transition: transform .3s, box-shadow .3s;
}
@media (min-width: 640px) { .yayin__kapak { width: 12rem; margin-inline: 0; } }
.yayin__kapak:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.yayin__kapak img { width: 100%; height: auto; display: block; }
.yayin__govde { flex: 1; min-width: 0; }

/* kurul listelerinde başkan/başkan vekili vurgusu */
.member-row--lead { border-color: var(--brand-200); background: rgb(238 250 252 / .5); }

/* ═══════════════════════════════════════════════════════ yeni bileşenler */

/* ------------------------------------------------ navbar dış bağlantı (BHAWEB) */
.nav__link--dis { display: flex; align-items: center; gap: .35rem; padding-inline: .6rem; }
.nav__logo { height: 1.35rem; width: auto; opacity: .85; transition: opacity .2s; }
.nav__link--dis:hover .nav__logo { opacity: 1; }
.nav__dis-ok { font-size: .7rem; color: var(--ink-400); }

/* -------------------------------------------------------- yönetim şeması */
.sema { display: flex; flex-direction: column; gap: 2.5rem; }
.sema__baslik { display: flex; align-items: center; gap: .85rem; }
.sema__baslik h2 { font-size: 1rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; color: var(--brand-700); white-space: nowrap; }
.sema__cizgi { flex: 1; height: 1px; background: linear-gradient(90deg, transparent, var(--ink-200), transparent); }
.sema__adet { padding: .1rem .6rem; border-radius: var(--r-full); background: var(--brand-50); font-family: var(--font-display); font-size: .72rem; font-weight: 700; color: var(--brand-700); }
.sema__satir { display: grid; gap: 1rem; margin-top: 1.25rem; }
.sema__satir--tek { max-width: 30rem; margin-inline: auto; }
@media (min-width: 640px) { .sema__satir--az { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) {
  .sema__satir--az  { grid-template-columns: repeat(4, 1fr); }
  .sema__satir--cok { grid-template-columns: repeat(3, 1fr); }
}
.sema__kat + .sema__kat { position: relative; }
.sema__kat + .sema__kat::before {
  content: ''; position: absolute; top: -1.6rem; left: 50%; width: 1px; height: 1.2rem;
  background: var(--ink-200);
}

/* -------------------------------------------------------- tanıtım videosu */
.tanitim { display: grid; gap: 2rem; align-items: center; }
@media (min-width: 1024px) { .tanitim { grid-template-columns: .85fr 1.15fr; gap: 3rem; } }
.video-cerceve { position: relative; aspect-ratio: 16 / 9; overflow: hidden; border-radius: var(--r-lg); background: var(--ink-900); box-shadow: var(--shadow-lg); }
.video-cerceve iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.video-bos {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  aspect-ratio: 16 / 9; padding: 2rem; text-align: center;
  border: 1px dashed var(--ink-200); border-radius: var(--r-lg); background: rgb(244 247 249 / .7);
}
.video-bos__ikon { display: flex; align-items: center; justify-content: center; width: 3.5rem; height: 3.5rem; border-radius: 50%; background: var(--brand-50); color: var(--brand-600); }
.video-bos__ikon svg { width: 1.6rem; height: 1.6rem; }

/* --------------------------------------------------- kurum ve kuruluşlar */
.kurum {
  display: flex; align-items: center; gap: 1rem; height: 100%; padding: 1.25rem 1.5rem;
  background: #fff; border: 1px solid var(--ink-100); border-radius: var(--r-lg);
  box-shadow: var(--shadow); transition: transform .3s, border-color .3s, box-shadow .3s;
}
.kurum:hover { transform: translateY(-3px); border-color: var(--brand-200); box-shadow: var(--shadow-lg); }
.kurum__logo { display: flex; align-items: center; justify-content: center; flex-shrink: 0; width: 3.75rem; height: 3.75rem; }
.kurum__logo img { max-width: 100%; max-height: 100%; object-fit: contain; }
.kurum__logo--yazi {
  border-radius: var(--r-md); background: linear-gradient(135deg, var(--brand-400), var(--brand-700));
  font-family: var(--font-display); font-size: .85rem; font-weight: 800; color: #fff; letter-spacing: .04em;
}
.kurum__govde { flex: 1; min-width: 0; }
.kurum__ad { display: block; margin-top: .2rem; font-family: var(--font-display); font-size: 1rem; font-weight: 700; color: var(--ink-950); }
.kurum__aciklama { display: block; margin-top: .3rem; font-size: .84rem; line-height: 1.5; color: var(--ink-600); }
.kurum__ok { flex-shrink: 0; color: var(--ink-300); font-size: 1.1rem; transition: transform .2s, color .2s; }
.kurum:hover .kurum__ok { color: var(--brand-600); transform: translateX(3px); }

/* ------------------------------------------------ ana sayfa harita alt bloğu */
.map-alt { display: grid; gap: 1rem; }
@media (min-width: 1024px) { .map-alt { grid-template-columns: 1.2fr 1fr; align-items: start; } }
.map-alt__stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }

/* ------------------------------------------------------ akademik kurul kartı */
.akademisyen {
  display: flex; gap: .9rem; height: 100%; padding: 1.1rem 1.25rem;
  background: #fff; border: 1px solid var(--ink-100); border-radius: var(--r-md);
  box-shadow: var(--shadow); transition: border-color .2s, transform .2s;
}
.akademisyen:hover { border-color: var(--brand-200); transform: translateY(-2px); }
.akademisyen__no { flex-shrink: 0; width: 1.75rem; font-family: var(--font-display); font-size: .78rem; font-weight: 800; color: var(--ink-300); }
.akademisyen__ad { font-size: .95rem; font-weight: 700; line-height: 1.35; color: var(--ink-950); }
.akademisyen__kurum { margin-top: .3rem; font-size: .82rem; color: var(--brand-700); font-weight: 500; }
.akademisyen__alan { margin-top: .2rem; font-size: .8rem; color: var(--ink-500); line-height: 1.45; }

/* ------------------------------------------------ altbilgi logolu kurum şeridi */
.footer-marka { background: #fff; border-top: 1px solid var(--ink-100); border-bottom: 1px solid var(--ink-100); }
.footer-marka__ic {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
  gap: 1.75rem 3rem; padding-block: 1.75rem;
}
/* Kutu yüksekliği sabit; logolar farklı en/boy oranında olduğundan
   yükseklikleri KURUMLAR içindeki 'logo_h' ile ayrı ayrı verilir. */
.footer-marka__ic a {
  display: flex; align-items: center; justify-content: center;
  height: 3.6rem; opacity: .62; transition: opacity .25s, transform .25s;
}
.footer-marka__ic a:hover { opacity: 1; transform: translateY(-2px); }
.footer-marka__ic img { height: 2.4rem; max-width: 10rem; width: auto; object-fit: contain; }
.footer-marka__ic span { font-family: var(--font-display); font-size: .9rem; font-weight: 700; color: var(--ink-500); }

/* ---------------------------------------------------------------- akordiyon */
/* Açılır bilgi kutuları — <details> tabanlı, JS gerektirmez. */
.akordiyon { display: grid; gap: .6rem; text-align: left; }

.akordiyon__oge {
  border: 1px solid var(--ink-100);
  border-radius: var(--r-lg);
  background: #fff;
  overflow: hidden;
  transition: border-color .2s, box-shadow .2s;
}
.akordiyon__oge[open] { border-color: var(--brand-200); box-shadow: var(--shadow-lift); }
.akordiyon__oge:hover { border-color: var(--brand-200); }

.akordiyon__bas {
  display: flex; align-items: center; gap: .85rem;
  padding: 1.05rem 1.25rem;
  cursor: pointer; list-style: none;
  font-family: var(--font-display); font-weight: 700; font-size: 1.02rem;
  color: var(--ink-900);
}
.akordiyon__bas::-webkit-details-marker { display: none; }
.akordiyon__bas > span:not([class]) { flex: 1 1 auto; }
.akordiyon__oge[open] .akordiyon__bas { color: var(--brand-700); }

.akordiyon__ok {
  flex: 0 0 auto; width: 1.15rem; height: 1.15rem;
  color: var(--brand-600); transition: transform .25s ease;
}
.akordiyon__oge[open] .akordiyon__ok { transform: rotate(180deg); }

.akordiyon__govde {
  padding: 0 1.25rem 1.25rem; text-align: left;
  color: var(--ink-600); font-size: .96rem; line-height: 1.75;
}
.akordiyon__govde > * + * { margin-top: .75rem; }

/* Program modülleri: sıra no + biçim etiketi */
.akordiyon__no {
  flex: 0 0 auto;
  font-family: var(--font-display); font-size: .78rem; font-weight: 800;
  color: var(--brand-600); letter-spacing: .04em;
}
.akordiyon__ad { flex: 1 1 auto; text-align: left; }
.akordiyon__etiket {
  display: none; flex: 0 0 auto;
  padding: .3rem .7rem; border-radius: var(--r-full);
  background: var(--brand-50); color: var(--brand-700);
  font-size: .72rem; font-weight: 700; letter-spacing: .02em; white-space: nowrap;
}
@media (min-width: 640px) { .akordiyon__etiket { display: inline-block; } }

.akordiyon__meta {
  font-size: .8rem; font-weight: 600; letter-spacing: .02em;
  color: var(--ink-500); text-transform: uppercase;
}

.akordiyon--program .akordiyon__bas { padding-block: .95rem; }
.akordiyon--program .akordiyon__govde { padding-left: 3.05rem; }
@media (max-width: 639px) { .akordiyon--program .akordiyon__govde { padding-left: 1.25rem; } }

.akordiyon .check-cards { margin-top: 0; }

/* Haber detay başlığı — diğer sayfalarla aynı açık düzen, biraz daha ferah. */
.page-head--makale { padding-block: 2rem 1.5rem; border-bottom: 0; }
.page-head--makale .page-head__title { max-width: 44rem; }
@media (min-width: 640px) { .page-head--makale { padding-block: 2.5rem 1.75rem; } }

/* ------------------------------------------------- harita kapalı düzeni */
/* HARITA ayarı 'off' iken üye dizini filtreleri tam genişlikte, yan yana. */
.filtre-tek { display: block; }
.filtre-tek .filtre-satir { display: grid; gap: 1rem; }
@media (min-width: 720px) {
  .filtre-tek .filtre-satir { grid-template-columns: 2fr 1fr; align-items: end; }
  .filtre-tek .filtre-satir .field.mt-md { margin-top: 0; }
}
.filtre-tek .btn.block { max-width: 16rem; }
@media (min-width: 720px) { .filtre-tek .btn.block { margin-left: auto; } }

/* ---------------------------------------------------------- proje detayı */
/* Geniş tablolar sayfayı yatay kaydırmaz; kendi kabında kayar. */
.tablo-sar { overflow-x: auto; border: 1px solid var(--ink-100); border-radius: var(--r-lg); background: #fff; }
.tablo { width: 100%; min-width: 36rem; border-collapse: collapse; font-size: .93rem; }
.tablo th {
  padding: .85rem 1rem; text-align: left; white-space: nowrap;
  background: var(--brand-50); color: var(--brand-700);
  font-family: var(--font-display); font-size: .74rem; font-weight: 800;
  letter-spacing: .1em; text-transform: uppercase;
}
.tablo td { padding: .85rem 1rem; border-top: 1px solid var(--ink-100); vertical-align: top; color: var(--ink-700); }
.tablo td.muted { white-space: nowrap; }
.tablo tbody tr:hover { background: var(--brand-50); }
.tablo__tarih { white-space: nowrap; font-weight: 700; color: var(--brand-700); }

.konusmaci { display: grid; gap: .5rem; }
.konusmaci li { position: relative; padding-left: 1.1rem; line-height: 1.65; }
.konusmaci li::before {
  content: ''; position: absolute; left: 0; top: .62em;
  width: .38rem; height: .38rem; border-radius: 50%; background: var(--brand-500);
}

.kunye { display: grid; gap: .75rem; font-size: .9rem; }
.kunye dt {
  font-family: var(--font-display); font-size: .7rem; font-weight: 800;
  letter-spacing: .1em; text-transform: uppercase; color: var(--ink-500);
}
.kunye dd { margin-top: .15rem; color: var(--ink-700); line-height: 1.6; }

.project__body .readmore { display: inline-flex; }
.project__body h3 a:hover { color: var(--brand-700); }

/* ====================================================== panel: haber yönetimi */
.tablo--admin { min-width: 46rem; }
.tablo--admin td { vertical-align: middle; }
.nowrap { white-space: nowrap; }
.small { font-size: .82rem; }

.hbr-kapak { width: 4.5rem; }
.hbr-kapak img {
  width: 4rem; height: 2.8rem; object-fit: cover;
  border-radius: var(--r-sm); border: 1px solid var(--ink-100);
}
.hbr-kapak__bos {
  display: block; width: 4rem; height: 2.8rem;
  border-radius: var(--r-sm); background: var(--ink-100);
}

.rozet {
  display: inline-block; padding: .22rem .6rem; border-radius: var(--r-full);
  font-size: .72rem; font-weight: 700; letter-spacing: .03em; white-space: nowrap;
}
.rozet--ok    { background: #e7f6ef; color: #1c7a4f; }
.rozet--bekle { background: #fdf3e0; color: #9a6708; }

.satir-islem { display: flex; gap: .4rem; align-items: center; }
.satir-islem form { display: inline; }
.btn--sm { padding: .38rem .75rem; font-size: .78rem; }
.btn--tehlike { background: #fdecec; color: #b42318; border: 1px solid #f6c9c5; }
.btn--tehlike:hover { background: #f9d9d7; }

/* haber düzenleme düzeni */
.haber-form { display: grid; gap: 1.25rem; align-items: start; }
@media (min-width: 1100px) { .haber-form { grid-template-columns: minmax(0, 1fr) 20rem; } }
.haber-form__yan .panel { position: relative; }
@media (min-width: 1100px) { .haber-form__yan { position: sticky; top: 1.5rem; } }

.haber-form textarea {
  width: 100%; resize: vertical; line-height: 1.7;
  font-family: inherit; font-size: .93rem;
}
#body { min-height: 24rem; }

.zorunlu { color: #b42318; }
.ipucu { margin-top: .35rem; font-size: .78rem; color: var(--ink-500); line-height: 1.5; }

.gorsel-onizleme {
  border-radius: var(--r-md); overflow: hidden; border: 1px solid var(--ink-100);
}
.gorsel-onizleme img { display: block; width: 100%; height: auto; }

.onay { display: flex; align-items: center; gap: .5rem; font-size: .85rem; color: var(--ink-600); }

.galeri-izgara { display: grid; grid-template-columns: repeat(3, 1fr); gap: .5rem; }
.galeri-oge { display: block; cursor: pointer; }
.galeri-oge img {
  width: 100%; aspect-ratio: 4 / 3; object-fit: cover;
  border-radius: var(--r-sm); border: 1px solid var(--ink-100);
}
.galeri-oge__sil {
  display: flex; align-items: center; gap: .3rem;
  margin-top: .25rem; font-size: .72rem; color: var(--ink-500);
}

.uyari { border-left: 3px solid #b42318; background: #fdecec; }
.uyari ul { padding-left: 1.1rem; list-style: disc; font-size: .88rem; }

.filters { display: grid; gap: 1rem; }
@media (min-width: 720px) { .filters { grid-template-columns: 2fr 1fr auto; align-items: end; } }
.filters__actions { display: flex; gap: .5rem; }

/* ------------------------------------------------ panel: içerik düzenleyici */
.ic-sekme { display: flex; flex-wrap: wrap; gap: .4rem; }
.ic-sekme__oge {
  padding: .5rem 1rem; border-radius: var(--r-full);
  border: 1px solid var(--ink-100); background: #fff;
  font-family: var(--font-display); font-size: .85rem; font-weight: 600; color: var(--ink-600);
  transition: border-color .2s, color .2s, background .2s;
}
.ic-sekme__oge:hover { border-color: var(--brand-200); color: var(--brand-700); }
.ic-sekme__oge.is-on { background: var(--brand-600); border-color: var(--brand-600); color: #fff; }

.izgara-2, .izgara-3, .izgara-4 { display: grid; gap: 1rem; }
@media (min-width: 720px) { .izgara-2 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 720px) { .izgara-3 { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 900px) { .izgara-4 { grid-template-columns: .5fr 1.4fr 1.4fr 1.2fr; } }

.satir-liste { display: grid; gap: .75rem; }
.satir {
  padding: .85rem; border: 1px solid var(--ink-100);
  border-radius: var(--r-md); background: var(--ink-25, #fafbfc);
}
.satir--dikey { display: grid; gap: .75rem; }
.satir-kart { margin-bottom: .75rem; }
.satir .field label { font-size: .72rem; }

.ayirac { margin: 1.75rem 0; border: 0; border-top: 1px solid var(--ink-100); }
.admin__head--ic { margin-bottom: .25rem; padding: 0; border: 0; }

.anahtar {
  display: flex; gap: .8rem; align-items: flex-start;
  padding: 1rem; margin-bottom: .75rem;
  border: 1px solid var(--ink-100); border-radius: var(--r-md); cursor: pointer;
  transition: border-color .2s;
}
.anahtar:hover { border-color: var(--brand-200); }
.anahtar input { margin-top: .2rem; flex: 0 0 auto; }
.anahtar b { display: block; font-family: var(--font-display); font-size: .95rem; color: var(--ink-900); }
.anahtar small { display: block; margin-top: .25rem; font-size: .82rem; color: var(--ink-500); line-height: 1.55; }
.izgara-kurul { display: grid; gap: 1rem; }
@media (min-width: 900px) { .izgara-kurul { grid-template-columns: 1.2fr 1fr 1.4fr; } }

/* Üye dizini 800'den fazla kart içeriyor; ekran dışındakilerin yerleşimini
   ve boyamasını tarayıcıya atlattırıyoruz. Bu olmadan sayfa donuyordu. */
.dir-group { content-visibility: auto; contain-intrinsic-size: auto 480px; }
.member-card { content-visibility: auto; contain-intrinsic-size: auto 168px; }

/* -------------------------------------------------------- panel: sayfalama */
.sayfalama { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: .75rem; }
.sayfalama__orta { display: flex; flex-wrap: wrap; gap: .3rem; }
.sayfalama a {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 2.25rem; padding: .45rem .7rem;
  border: 1px solid var(--ink-100); border-radius: var(--r-md); background: #fff;
  font-family: var(--font-display); font-size: .85rem; font-weight: 600; color: var(--ink-600);
  transition: border-color .2s, color .2s, background .2s;
}
.sayfalama a:hover { border-color: var(--brand-200); color: var(--brand-700); }
.sayfalama a.is-on { background: var(--brand-600); border-color: var(--brand-600); color: #fff; }
.sayfalama__ok.is-pasif { opacity: .4; pointer-events: none; }
.sayfalama__ara { padding: .45rem .2rem; color: var(--ink-400); }

/* ---------------------------------------------------- panel: toplu üye işlemi */
.table--admin .tik { width: 2.5rem; text-align: center; }
.table--admin .tik input { width: 1.1rem; height: 1.1rem; cursor: pointer; }

.toplu-bar {
  position: sticky; top: .5rem; z-index: 5;
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: .75rem;
  margin-bottom: .75rem; padding: .7rem 1rem;
  background: var(--brand-700, #123f4d); color: #fff;
  border-radius: var(--r-md); box-shadow: var(--shadow-lift);
}
.toplu-bar strong { font-size: 1.05rem; }
.toplu-bar__btn { display: flex; gap: .4rem; flex-wrap: wrap; }
.toplu-bar .btn { background: rgba(255,255,255,.14); color: #fff; border: 1px solid rgba(255,255,255,.25); }
.toplu-bar .btn:hover { background: rgba(255,255,255,.26); }
.toplu-bar .mini--ok { background: #1c7a4f; border-color: #1c7a4f; }
.toplu-bar .mini--bad { background: #b42318; border-color: #b42318; }
