/* ============================================================
   TSK Elele Vakfı — Ana stil (Bootstrap üzerine)
   Bootstrap'ten SONRA yüklenir; özelleştirmeler baskındır.
   Renk revizesi: mavi tonu açıldı.
   ============================================================ */

:root {
  /* revize 2: mavi tonu bir tık daha açıldı */
  --navy:        #235C9B;
  --navy-deep:   #1B4E86;
  --navy-soft:   #3A75B4;
  --menu-ink:    #143C6A;      /* menü metni — açık maviye göre daha koyu */
  --red:         #C8102E;
  --red-dark:    #9F0C22;
  --red-light:   #E23A52;
  --gold:        #C9A227;
  --cream:       #F6F3EC;
  --line:        #E8E3D8;
  --ink:         #1B2A41;
  --muted:       #5B6B80;
  --muted-2:     #7A8798;
  --on-dark:     #B9C6DE;
  --on-dark-2:   #CBD6E8;
  --veil:        26, 62, 104;     /* hero perde rengi (rgb) — bir tık açıldı */
  --shell:       1420px;
  --logo-h:      100px;   /* navbar logo yüksekliği */
  --header-h:    100px;   /* header yüksekliği — app.js gerçek ölçümle günceller; buradakiler yedek */
  --serif:       'Playfair Display', serif;
  --sans:        'Source Sans 3', sans-serif;
  --radius:      16px;
}

*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body { overflow-x: clip; }   /* AOS başlangıç ötelemesi/taşma güvenliği (sticky'yi etkilemez) */

/* Bootstrap .container'ı orijinal tasarım genişliğine ayarla (tek kademe, 1420).
   Tüm yatay hizalama .container üzerinden yürür; --shell yalnızca bu genişliğin tek kaynağıdır. */
.container, .container-fluid { width: 100%; margin-right: auto; margin-left: auto; padding-right: 24px; padding-left: 24px; }
.container { max-width: var(--shell); }
body {
  font-family: var(--sans); color: var(--ink); background: #fff;
  -webkit-font-smoothing: antialiased;
}
a { color: var(--red); text-decoration: none; }
img { max-width: 100%; display: block; }
h1,h2,h3,h4 { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }
button { font: inherit; color: inherit; margin: 0; padding: 0; border: 0; background: none; cursor: pointer; }

/* --- Animasyonlar --- */
@keyframes heartbeat { 0%,100%{transform:scale(1)} 12%{transform:scale(1.12)} 24%{transform:scale(1)} 36%{transform:scale(1.08)} 48%{transform:scale(1)} }
@keyframes gradmove  { 0%{background-position:0% 50%} 50%{background-position:100% 50%} 100%{background-position:0% 50%} }
@keyframes sweep     { 0%{transform:translateX(-160%) skewX(-20deg)} 55%,100%{transform:translateX(420%) skewX(-20deg)} }
@keyframes modalpop  { from{opacity:0;transform:translateY(28px) scale(.94)} to{opacity:1;transform:none} }
@keyframes menuDrop  { from{transform:translateY(-8px)} to{transform:none} }
@keyframes annivShine{ 0%{transform:translateX(-120%) skewX(-20deg)} 60%,100%{transform:translateX(320%) skewX(-20deg)} }
@keyframes annivFloat{ 0%,100%{transform:translateY(2px)} 50%{transform:translateY(-2px)} }
@keyframes flagWave  { 0%,100%{transform:perspective(220px) rotateY(0)} 50%{transform:perspective(220px) rotateY(-14deg)} }
@keyframes dotProgress { from{transform:scaleX(0)} to{transform:scaleX(1)} }

/* --- Bölüm başlığı (rozet yerine alt çizgiler) --- */
.sec-head { display: flex; flex-direction: column; gap: 14px; }
.sec-head__eyebrow { font-size: 15px; font-weight: 800; letter-spacing: .2em; color: var(--red); text-transform: uppercase; }
.sec-head__title { font-family: var(--serif); font-weight: 700; font-size: 40px; line-height: 1.18; color: var(--navy); }
.sec-head__title em { font-style: italic; color: inherit; }
.sec-head__sub { margin: 0; font-size: 17px; line-height: 1.7; color: var(--muted); }
.sec-head__accent { display: flex; align-items: center; gap: 8px; }
.sec-head__accent i { display: block; height: 4px; border-radius: 2px; background: var(--red); }
.sec-head__accent i:first-child { width: 100px; }
.sec-head__accent i:last-child { width: 50px; opacity: .35; }
.sec-head--center { align-items: center; text-align: center; margin: 0 auto 52px; }
.sec-head--center .sec-head__accent { justify-content: center; }
.sec-head--center .sec-head__sub { max-width: 640px; }

/* --- Butonlar (btn-el; Bootstrap .btn ile çakışmasın) --- */
.btn-el { display: inline-flex; align-items: center; gap: 10px; font-weight: 700; font-size: 16px; padding: 15px 26px; border-radius: 999px; white-space: nowrap; transition: transform .25s ease, box-shadow .25s ease, background-color .25s ease, color .25s ease; }
.btn-el i { font-size: 1.05em; line-height: 0; }
.btn-el--primary { background: linear-gradient(135deg, var(--red), var(--red-dark)); color: #fff; box-shadow: 0 12px 30px rgba(200,16,46,.4); }
.btn-el--primary:hover { transform: translateY(-2px); color: #fff; }
.btn-el--primary i { animation: heartbeat 2.2s ease-in-out infinite; }
.btn-el--ghost { border: 1.5px solid rgba(255,255,255,.55); color: #fff; font-weight: 600; padding: 14px 24px; }
.btn-el--ghost:hover { background: rgba(255,255,255,.12); color: #fff; }
.btn-el--light { background: #fff; color: var(--red); font-weight: 800; font-size: 17px; padding: 16px 30px; box-shadow: 0 14px 32px rgba(0,0,0,.22); }
.btn-el--light:hover { transform: translateY(-2px); color: var(--red-dark); }
.btn-el--outline { border: 1.5px solid var(--navy); color: var(--navy); font-weight: 700; font-size: 15px; padding: 12px 24px; }
.btn-el--outline:hover { background: var(--navy); color: #fff; }

/* ============================================================
   ÜST BANT
   ============================================================ */
.topbar { background: var(--navy-deep); color: #fff; position: relative; overflow: hidden; }
.topbar .topbar__inner { --tb-metin: min(1120px, 68%); position: relative; z-index: 2; min-height: 82px; padding-top: 12px; padding-bottom: 12px; display: flex; flex-direction: column; align-items: flex-start; justify-content: center; gap: 2px; }
/* sarmalayıcı söze göre daralır; imza flex-end ile sözün sağ ucuna hizalanır */
.topbar .topbar__text { display: flex; flex-direction: column; align-items: flex-end; gap: 2px; max-width: var(--tb-metin); }
.topbar .topbar__quote { margin: 0; color: #DCE6F5; font-family: var(--serif); font-style: italic; font-size: 15px; line-height: 1.5; }
/* imza, sözün altında ve söz bloğunun sağına hizalı */
.topbar .topbar__sign { display: flex; align-items: center; opacity: .95; }
.topbar .topbar__sign img { height: 34px; width: auto; filter: brightness(0) invert(1); }
/* sağ üst dekor — Türk bayrağı kırmızısı container'a hizalı:
   (1) container dışı sağ marjı dolduran düz kırmızı → kenara kadar devam
   (2) ::before ile container'dan sola fade eden güçlü kırmızı gradient
   (3) bayrak.svg + Atatürk + ışıltı */
.topbar .topbar__decor { position: absolute; right: 0; top: 0; bottom: 0; width: max(0px, calc((100vw - var(--shell)) / 2 + 1px)); background: var(--red); z-index: 0; pointer-events: none; }
.topbar .topbar__inner::before { content: ""; position: absolute; top: 0; bottom: 0; right: 0; width: 700px; max-width: 62%; background: linear-gradient(90deg, rgba(20,60,106,0) 0%, rgba(159,12,34,.92) 46%, var(--red) 78%); z-index: -1; pointer-events: none; }
.topbar .topbar__flag { position: absolute; right: 45px; top: 50%; transform: translateY(-50%); width: fit-content; height: 60px; z-index: 2; border-radius: 2px;  }
.topbar .topbar__ata { position: absolute; right: 0; top: 0; height: 100%; width: auto; z-index: 2; }
.topbar .topbar__sweep { position: absolute; top: 0; bottom: 0; right: 0; width: 80px; z-index: 3; background: linear-gradient(90deg, transparent, rgba(255,255,255,.26), transparent); animation: sweep 5s ease-in-out infinite; pointer-events: none; }

/* ============================================================
   HEADER + NAVBAR
   ============================================================ */
/* Negatif marj header'ın GERÇEK yüksekliğine eşit olmalı; aksi halde hero
   yukarı kayıp üst bandın üstüne biner. --header-h app.js tarafından ölçülür. */
.site-header { position: sticky; top: 0; z-index: 90; padding: 16px 0 0; margin-bottom: calc(-1 * var(--header-h)); }
/* Sayfa başında navbar hero'nun üzerinde saydam durur; app.js kaydırmada
   .site-header'a .is-stuck ekler → zemin koyulaşır, menü linkleri koyu renge döner. */
#navbar { position: relative; padding: 2px 10px 2px 10px; display: flex; align-items: center; justify-content: space-between; gap: 24px; background: rgba(255,255,255,.22); backdrop-filter: blur(5px); border-radius: 22px; box-shadow: 0 18px 50px rgba(20,60,106,.20); transition: background-color .35s ease, box-shadow .35s ease; }
.site-header.is-stuck #navbar { background: rgba(255,255,255,.62); }
#navbar .navbar__logo { display: flex; align-items: center; margin: -10px 0;}
#navbar .navbar__logo img { height: var(--logo-h); width: auto; transition: height .25s ease; }

#navbar .menu { display: flex; align-items: center; gap: 2px; }
#navbar .menu > li { position: static; }
#navbar .menu > li.menu__item--drop { position: relative; }
#navbar .menu > li > a { display: flex; align-items: center; gap: 6px; padding: 10px 9px; border-radius: 8px; font-size: 14px; font-weight: 600; white-space: nowrap; color: var(--menu-ink); transition: color .2s ease, background-color .2s ease; }
#navbar .menu > li > a .chev { font-size: 11px; }
#navbar .menu > li:hover > a { color: var(--red); background-color: #fff; }

/* Saydam durumdaki (sayfa başı) menü renkleri — yalnızca yatay masaüstü menüsünde.
   1199 altında menü beyaz panel içine düştüğü için koyu renk kalmalı. */
@media (min-width: 1200px) {
  .site-header:not(.is-stuck) #navbar .menu > li > a { color: #fff; }
  .site-header:not(.is-stuck) #navbar .menu > li:hover > a { color: var(--red); background-color: #fff; }
}
/* hamburger çizgileri de saydam durumda beyaz */
.site-header:not(.is-stuck) #navbar .navbar__toggle span { background: #fff; }

/* açılır paneller (ortak) */
#navbar .menu .panel { position: absolute; top: 100%; background: #fff; border-top: 3px solid var(--red); box-shadow: 0 34px 80px rgba(20,60,106,.25); opacity: 0; visibility: hidden; pointer-events: none; transition: opacity .2s ease; }
#navbar .menu > li:hover .panel { opacity: 1; visibility: visible; pointer-events: auto; }
#navbar .menu .panel::before { content: ""; position: absolute; left: 0; right: 0; top: -26px; height: 26px; }

#navbar .menu .panel--drop { top: calc(100% + 15px); left: 6px; min-width: 240px; padding: 8px; border-radius: 12px; display: flex; flex-direction: column; }
#navbar .menu .panel--drop > a { padding: 10px 14px; border-radius: 8px; font-weight: 500; color: var(--menu-ink); transition: background-color .2s ease, color .2s ease, transform .2s ease; }

#navbar .menu .panel--mega { left: 0; width: 100%; padding: 20px; border-radius: 18px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 6px; align-items: start; }
#navbar .menu .panel .item { display: flex; gap: 14px; align-items: flex-start; padding: 14px; border-radius: 14px; transition: background-color .2s ease, transform .2s ease; }
#navbar .menu .panel > a:hover, #navbar .menu .panel .item:hover { background-color: var(--cream); color: var(--red); transform: translateX(2px); }
#navbar .menu .panel .item:hover .item__title { color: var(--red); }
#navbar .menu .panel .item__num { flex-shrink: 0; width: 44px; height: 44px; border-radius: 12px; background: var(--menu-ink); color: #fff; display: flex; align-items: center; justify-content: center;  font-weight: 800; font-size: 16px; }
#navbar .menu .panel .item__body { display: flex; flex-direction: column; gap: 3px; }
#navbar .menu .panel .item__title { font-weight: 700; font-size: 15px; color: var(--menu-ink); transition: color .2s ease; }
#navbar .menu .panel .item__desc { font-size: 13px; line-height: 1.5; color: var(--muted-2); }
/* Katkı Sağladığımız Alanlar alt-listesi (eski Tesisler) */
#navbar .menu .panel .item__children { display: flex; flex-direction: column; gap: 2px; margin-top: 8px; padding-top: 8px; border-top: 1px dashed var(--line); }
#navbar .menu .panel .item__children a { display: flex; align-items: center; gap: 2px; font-size: 13px; font-weight: 600; color: var(--muted); }
#navbar .menu .panel .item__children a:hover { color: var(--red); }
#navbar .menu .panel .item__children i { color: var(--red); }

#navbar .menu .panel .cta { display: flex; flex-direction: column; justify-content: center; gap: 8px; padding: 16px 18px; border-radius: 14px; color: #fff; background: linear-gradient(135deg, var(--red), var(--red-dark)); transition: transform .2s ease, box-shadow .2s ease; }
#navbar .menu .panel .cta:hover { transform: translateY(-2px); box-shadow: 0 14px 30px rgba(200,16,46,.42); color: #fff; }
#navbar .menu .panel .cta__title { font-family: var(--serif); font-weight: 700; font-size: 18px; }
#navbar .menu .panel .cta__desc { font-size: 13px; line-height: 1.5; color: #F6D2D9; }
#navbar .menu .panel .cta__action { display: flex; align-items: center; gap: 8px; font-weight: 700; font-size: 14px; }

#navbar .navbar__donate { display: flex; align-items: center; gap: 9px; background: linear-gradient(135deg, var(--red), var(--red-dark)); color: #fff; font-weight: 700; font-size: 15px; padding: 12px 22px; border-radius: 999px; box-shadow: 0 8px 22px rgba(200,16,46,.35); transition: transform .25s ease, box-shadow .25s ease; }
#navbar .navbar__donate:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(200,16,46,.45); color: #fff; }
#navbar .navbar__donate i { animation: heartbeat 2.2s ease-in-out infinite; }

#navbar .navbar__toggle { display: none; width: 44px; height: 44px; border-radius: 10px; flex-direction: column; align-items: center; justify-content: center; gap: 5px; flex-shrink: 0; transition: background-color .2s ease; }
#navbar .navbar__toggle:hover { background: var(--cream); }
#navbar .navbar__toggle span { display: block; width: 24px; height: 2px; border-radius: 2px; background: var(--navy); transition: transform .3s ease, opacity .2s ease; }
#navbar.is-open .navbar__toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
#navbar.is-open .navbar__toggle span:nth-child(2) { opacity: 0; }
#navbar.is-open .navbar__toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
.hero { position: relative; height: 700px; background: var(--navy); overflow: hidden; --hero-autoplay: 5500ms; }
.hero .hero__slider { position: absolute; inset: 0; height: 700px; }
.hero .hero__slider > .swiper-wrapper > .swiper-slide { width: 100% !important; }
.hero .hero__slide { position: relative; overflow: hidden; background: var(--navy); }
.hero .hero__media { position: absolute; inset: 0; }
.hero .hero__media img { width: 100%; height: 100%; object-fit: cover; }
.hero .hero__veil { position: absolute; inset: 0; pointer-events: none; background: linear-gradient(90deg, rgba(var(--veil),.94) 0%, rgba(var(--veil),.82) 34%, rgba(var(--veil),.32) 62%, rgba(var(--veil),.12) 100%); }
.hero .hero__inner { position: relative; padding-top: calc(var(--header-h) + 82px); height: 100%; pointer-events: none; }
.hero .hero__content { max-width: 620px; display: flex; flex-direction: column; gap: 22px; }
.hero .hero__title { font-family: var(--serif); font-weight: 700; font-size: 58px; line-height: 1.12; color: #fff; }
.hero .hero__title em { font-style: italic; color: #E8B4BD; }
.hero .hero__desc { margin: 0; font-size: 19px; line-height: 1.65; color: #D8E2F2; max-width: 520px; }
.hero .hero__actions { display: flex; align-items: center; gap: 14px; margin-top: 8px; pointer-events: auto; }

.hero .hero__dots { position: absolute; left: 0; right: 0; bottom: 44px; z-index: 20; display: flex; align-items: center; gap: 10px; }
.hero .hero__dots .swiper-pagination-bullet { position: relative; overflow: hidden; width: 28px; height: 5px; margin: 0 !important; border-radius: 999px; background: rgba(255,255,255,.28); opacity: 1; cursor: pointer; transition: width .5s cubic-bezier(.34,1.56,.64,1); }
.hero .hero__dots .swiper-pagination-bullet-active { width: 68px; background: rgba(255,255,255,.22); }
.hero .hero__dots .swiper-pagination-bullet-active::after { content: ""; position: absolute; inset: 0; border-radius: 999px; background: linear-gradient(90deg, var(--red), var(--red-light)); box-shadow: 0 0 12px rgba(226,58,82,.7); transform-origin: left; transform: scaleX(0); animation: dotProgress var(--hero-autoplay) linear forwards; }

.hero .hero__arrow { position: absolute; top: 50%; z-index: 20; width: 64px; height: 64px; display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,.3); font-size: 40px; transition: color .3s ease, transform .4s cubic-bezier(.34,1.56,.64,1); }
.hero .hero__arrow--prev { left: 26px; transform: translateY(-50%); }
.hero .hero__arrow--next { right: 26px; transform: translateY(-50%); }
.hero .hero__arrow:hover { color: #fff; }
.hero .hero__arrow--prev:hover { transform: translateY(-50%) translateX(-5px); }
.hero .hero__arrow--next:hover { transform: translateY(-50%) translateX(5px); }


/* ============================================================
   HAKKINDA (30. yıl vurgusu belirgin)
   ============================================================ */
.about { padding: 96px 0 100px; }
.about .about__media { position: relative; padding-bottom: 56px; }
/* height: auto şart — img'deki width/height öznitelikleri yoksa görsel dikey ezilir */
.about .about__photo { width: 100%; height: auto; border-radius: 18px; box-shadow: 0 24px 50px rgba(20,60,106,.20); }
/* ikinci görsel yuvarlak arma (şeffaf PNG): daire beyaz rozet içinde, kırpılmadan */
.about .about__float { position: absolute; right: -8px; bottom: 0; width: 208px; height: 208px; object-fit: contain; background: #fff; border-radius: 50%; border: 6px solid #fff; box-shadow: 0 18px 40px rgba(20,60,106,.25); }
/* 30. yıl amblemi — animasyonlu (üst bar sweep'ine benzer) */
.about__anniv { position: relative; flex-shrink: 0; width: 150px; height: auto; z-index: 4; filter: drop-shadow(0 14px 30px rgba(20,60,106,.35)); animation: annivFloat 8s ease-in-out infinite; }
.about__anniv img { width: 100%; height: 100%; object-fit: contain; }
/* shine, 30-ci-yil.png'nin alfa şekline maskelenir → parıltı yalnız görselin üstünden geçer */
.about__anniv-shine { position: absolute; inset: 0; pointer-events: none; -webkit-mask: url("../img/30-ci-yil.png") center / contain no-repeat; mask: url("../img/30-ci-yil.png") center / contain no-repeat; }
.about__anniv-shine::before { content: ""; position: absolute; top: 0; bottom: 0; left: 0; width: 46px; background: linear-gradient(90deg, transparent, rgba(255,255,255,.78), transparent); animation: annivShine 4.5s ease-in-out infinite; }
.about .about__body { display: flex; flex-direction: column; gap: 20px; }
.about .about__text { margin: 0; font-size: 17px; line-height: 1.75; color: #4A5A70; }
/* sayaç alanı revizeyle kaldırıldı; yerine 30. yıl amblemi geldi */
.about .about__foot { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; margin-top: 4px; }
.about .about__more { display: inline-flex; align-items: center; gap: 10px; color: var(--navy); font-weight: 700; font-size: 16px; border-bottom: 2px solid var(--red); padding-bottom: 4px; transition: color .2s ease; }
.about .about__more:hover { color: var(--red); }

/* ============================================================
   HABERLER
   ============================================================ */
/* İletişim sayfası sosyal medya — açık zeminde dolgulu marka renkleri */
.contact-social { margin-top: 26px; }
.contact-social__label { font-size: 13px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--muted-2); margin-bottom: 12px; }
.social-row { display: flex; flex-wrap: wrap; gap: 12px; }
.social-row a { width: 46px; height: 46px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 21px; color: #fff; transition: transform .25s ease, box-shadow .25s ease; }
.social-row a:hover { transform: translateY(-3px); box-shadow: 0 10px 22px rgba(20,60,106,.28); color: #fff; }
.social-row--facebook  { background: #1877F2; }
.social-row--twitter   { background: #000; }
.social-row--linkedin  { background: #0A66C2; }
.social-row--instagram { background: linear-gradient(45deg, #F58529 0%, #DD2A7B 45%, #8134AF 70%, #515BD4 100%); }

.news { background: #F5F8FC; padding: 84px 0 92px; }

/* Bölüm başlığı: solda başlık, sağda kırmızı buton (OYAK düzeni) */
.block-head { display: flex; align-items: center; justify-content: space-between; gap: 24px; margin-bottom: 34px; }
.block-head__title { margin: 0; font-family: var(--serif); font-weight: 800; font-size: 38px; line-height: 1.2; color: var(--navy); }

/* ---- Öne çıkan blok: solda büyük slider, sağda liste ---- */
.feat { --feat-media-h: 420px; display: grid; grid-template-columns: 1.02fr 1fr; gap: 26px; align-items: start; }
/* width/max-width: swiper kökü grid hücresinde içerik genişliğine şişmesin */
.feat__main { position: relative; min-width: 0; width: 100%; max-width: 100%; background: #fff; border-radius: 18px; overflow: hidden; box-shadow: 0 16px 38px rgba(20,60,106,.10); }
.feat__card { display: block; color: inherit; }
.feat__media { display: block; height: var(--feat-media-h); overflow: hidden; }
.feat__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.feat__card:hover .feat__media img { transform: scale(1.03); }
.feat__body { display: block; padding: 20px 26px 28px; }
.feat__date { display: block; font-size: 14px; color: var(--muted-2); font-weight: 600; }
.feat__title { display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; margin-top: 12px; font-family: var(--serif); font-weight: 700; font-size: 25px; line-height: 1.35; color: var(--navy); transition: color .2s ease; }
.feat__card:hover .feat__title { color: var(--red); }
.feat__desc { display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; margin-top: 10px; font-size: 15.5px; line-height: 1.65; color: var(--muted); }
.feat__link { display: inline-block; margin-top: 14px; color: var(--red); font-weight: 700; font-size: 15px; }
.feat__arrow { position: absolute; top: calc(var(--feat-media-h) / 2); transform: translateY(-50%); z-index: 3; width: 44px; height: 44px; border-radius: 50%; border: 0; background: rgba(255,255,255,.94); color: var(--navy); display: flex; align-items: center; justify-content: center; font-size: 18px; box-shadow: 0 8px 20px rgba(20,60,106,.22); transition: background-color .25s ease, color .25s ease; }
.feat__arrow:hover { background: var(--red); color: #fff; }
.feat__arrow--prev { left: 16px; }
.feat__arrow--next { right: 16px; }
/* noktalar tarih satırının sağına hizalanır */
/* özgüllük: swiper.css'in .swiper-horizontal > .swiper-pagination-bullets kuralını geçmeli */
.feat .feat__main .feat__dots { position: absolute; left: 0; right: 0; width: auto; top: var(--feat-media-h); bottom: auto; margin-top: 24px; padding: 0 26px; z-index: 2; display: flex; justify-content: flex-end; align-items: center; gap: 8px; }
.feat .feat__dots .swiper-pagination-bullet { width: 8px; height: 8px; margin: 0 !important; background: #C9D4E4; opacity: 1; transition: background-color .25s ease, width .25s ease; }
.feat .feat__dots .swiper-pagination-bullet-active { width: 22px; border-radius: 999px; background: var(--red); }

.feat__list { min-width: 0; display: flex; flex-direction: column; gap: 14px; }
.fitem { display: flex; align-items: center; gap: 18px; background: #fff; border-radius: 14px; padding: 10px; box-shadow: 0 10px 26px rgba(20,60,106,.07); transition: transform .25s ease, box-shadow .25s ease; }
.fitem:hover { transform: translateY(-3px); box-shadow: 0 18px 36px rgba(20,60,106,.14); }
.fitem__media { flex-shrink: 0; width: 172px; height: 100px; border-radius: 10px; overflow: hidden; }
.fitem__media img { width: 100%; height: 100%; object-fit: cover; }
.fitem__body { display: block; padding-right: 8px; }
.fitem__title { display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; font-weight: 600; font-size: 17px; line-height: 1.4; color: var(--navy); transition: color .2s ease; }
.fitem:hover .fitem__title { color: var(--red); }
.fitem__date { display: block; margin-top: 8px; font-size: 13.5px; color: var(--muted-2); }
.ncard { border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; background: #fff; display: flex; flex-direction: column; transition: transform .35s ease, box-shadow .35s ease; }
.ncard:hover { transform: translateY(-5px); box-shadow: 0 22px 44px rgba(20,60,106,.14); }
.ncard__media { position: relative; height: 210px; }
.ncard__media img { width: 100%; height: 100%; object-fit: cover; }
.ncard__date { position: absolute; left: 16px; bottom: -20px; background: var(--red); color: #fff; border-radius: 10px; padding: 9px 13px; text-align: center; box-shadow: 0 10px 22px rgba(200,16,46,.35); }
.ncard__date b { display: block; font-family: var(--serif); font-weight: 800; font-size: 20px; line-height: 1; }
.ncard__date small { font-size: 11px; font-weight: 700; letter-spacing: .08em; }
.ncard__body { padding: 34px 22px 24px; display: flex; flex-direction: column; gap: 10px; }
.ncard__cat { font-size: 13px; font-weight: 700; color: var(--red); letter-spacing: .1em; }
.ncard__title { font-family: var(--serif); font-weight: 700; font-size: 20px; line-height: 1.4; color: var(--navy); }
.ncard__desc { font-size: 15px; line-height: 1.6; color: var(--muted); }
.ncard__more { display: flex; align-items: center; gap: 8px; color: var(--navy); font-weight: 700; font-size: 14px; margin-top: 4px; }
.ncard:hover .ncard__more { color: var(--red); }

/* ============================================================
   BAĞIŞ
   ============================================================ */
.donate { background: linear-gradient(180deg, #FFFFFF 0%, var(--cream) 100%); padding: 92px 0 16px; }
.donate .dcard { background: #fff; border-radius: var(--radius); overflow: hidden; display: flex; flex-direction: column; box-shadow: 0 16px 38px rgba(20,60,106,.12); transition: transform .35s ease, box-shadow .35s ease; }
.donate .dcard:hover { transform: translateY(-6px); box-shadow: 0 24px 48px rgba(20,60,106,.18); }
.donate .dcard__media { height: 160px; overflow: hidden; }
.donate .dcard__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.donate .dcard:hover .dcard__media img { transform: scale(1.06); }
.donate .dcard__body { padding: 20px 20px 22px; display: flex; flex-direction: column; gap: 8px; }
.donate .dcard__title { font-family: var(--serif); font-weight: 700; font-size: 19px; color: var(--navy); }
.donate .dcard__desc { font-size: 15px; line-height: 1.6; color: var(--muted); }
/* Kartlar eşit yükseklikte: başlık 2, açıklama 3 satırla sınırlı; taşan metin "…" ile kesilir.
   min-height sabit satır sayısını garanti eder, böylece "İncele" satırı da hizalanır. */
.donate .dcard { height: 100%; }
.donate .dcard__body { flex: 1; }
.donate .dcard__title,
.donate .dcard__desc { display: -webkit-box; -webkit-box-orient: vertical; overflow: hidden; }
.donate .dcard__title { line-height: 1.35; -webkit-line-clamp: 2; min-height: calc(2 * 1.35em); }
.donate .dcard__desc { -webkit-line-clamp: 3; min-height: calc(3 * 1.6em); }
.donate .donate__band { position: relative; overflow: hidden; margin-top: 56px; background: linear-gradient(120deg, var(--red) 0%, var(--red-dark) 100%); border-radius: 20px; padding: 44px 48px; display: flex; align-items: center; justify-content: space-between; gap: 40px; box-shadow: 0 24px 60px rgba(200,16,46,.32); }
.donate .donate__band-bg { position: absolute; right: -20px; top: -30px; font-size: 240px; color: rgba(255,255,255,.12); }
.donate .donate__band-text { position: relative; display: flex; flex-direction: column; gap: 10px; max-width: 560px; }
.donate .donate__band-text h3 { font-family: var(--serif); font-weight: 700; font-size: 36px; line-height: 1.2; color: #fff; }
.donate .donate__band-text p { margin: 0; font-size: 17px; line-height: 1.6; color: #F6D2D9; }
.donate .donate__band-actions { position: relative; display: flex; flex-direction: column; gap: 14px; align-items: flex-end; }
.donate .donate__sms { display: flex; align-items: center; gap: 8px; color: #F6D2D9; font-size: 14px; font-weight: 600; background: rgba(0,0,0,.18); border-radius: 999px; padding: 8px 16px; }
.donate .donate__sms b { color: #fff; }

/* ============================================================
   ZİYARETLER
   ============================================================ */
.visits { background: var(--cream); padding: 84px 0 96px; }

/* ============================================================
   FAB
   ============================================================ */
.fab { position: fixed; right: 26px; bottom: 26px; z-index: 120; pointer-events: none; display: flex; }
.fab .fab__panel { position: absolute; right: 0; bottom: calc(100% + 14px); display: flex; flex-direction: column; align-items: flex-end; gap: 10px; opacity: 0; transform: translateY(18px) scale(.88); pointer-events: none; transition: all .4s cubic-bezier(.34,1.56,.64,1); }
.fab.is-open .fab__panel { opacity: 1; transform: none; pointer-events: auto; }
.fab .fab__link { display: flex; align-items: center; gap: 10px; border-radius: 999px; box-shadow: 0 12px 28px rgba(20,60,106,.28); background: var(--navy); color: #fff; font-weight: 600; font-size: 14px; padding: 11px 18px; transition: transform .25s ease, background-color .25s ease; }
.fab .fab__link i { color: var(--gold); }
.fab .fab__link:hover { transform: translateX(-4px); background: var(--navy-soft); color: #fff; }
.fab .fab__link--donate { background: #fff; color: var(--red); font-weight: 800; }
.fab .fab__link--donate i { color: var(--red); }
.fab .fab__toggle { pointer-events: auto; position: relative; width: 62px; height: 62px; border-radius: 50%; background: linear-gradient(135deg, var(--red-light), var(--red), #7E0A1C, var(--red)); background-size: 300% 300%; animation: gradmove 5s ease infinite; box-shadow: 0 16px 38px rgba(200,16,46,.5); transition: transform .25s ease; color: #fff; font-size: 24px; }
.fab .fab__toggle:hover { transform: scale(1.08); }
.fab .fab__icon { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; transition: all .3s ease; }
.fab .fab__icon--close { opacity: 0; transform: rotate(-90deg) scale(.4); }
.fab.is-open .fab__icon--heart { opacity: 0; transform: rotate(90deg) scale(.4); }
.fab.is-open .fab__icon--close { opacity: 1; transform: none; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--navy-deep); border-top: 1px solid rgba(255,255,255,.1); color: var(--on-dark-2); }
/* Not: bu üç blok .container sınıfını da taşır — yatay padding'i kısayolla
   sıfırlamayın, yoksa mobilde içerik ekran kenarına yapışır. */
.site-footer .footer__news { padding-top: 44px; }
.site-footer .footer__news-inner { display: flex; align-items: center; justify-content: space-between; gap: 40px; background: linear-gradient(120deg, var(--navy), var(--navy-soft)); border: 1px solid rgba(255,255,255,.1); border-radius: 18px; padding: 26px 30px; }
.site-footer .footer__news-text { display: flex; align-items: center; gap: 18px; }
.site-footer .footer__news-icon { width: 52px; height: 52px; border-radius: 14px; background: rgba(200,16,46,.2); display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--red-light); font-size: 22px; }
.site-footer .footer__news-text b { font-family: var(--serif); font-weight: 700; font-size: 21px; color: #fff; }
.site-footer .footer__news-text span { font-size: 14px; color: var(--on-dark); }
.site-footer .footer__form { display: flex; gap: 10px; flex-shrink: 0; }
.site-footer .footer__form input { width: 280px; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.2); border-radius: 999px; padding: 13px 20px; color: #fff; font-size: 15px; outline: none; }
.site-footer .footer__form input::placeholder { color: rgba(255,255,255,.55); }
.site-footer .footer__form button { background: linear-gradient(135deg, var(--red), var(--red-dark)); color: #fff; font-weight: 700; font-size: 15px; padding: 13px 26px; border-radius: 999px; }
.site-footer .footer__cols { padding-top: 44px; padding-bottom: 40px; display: grid; grid-template-columns: 1.35fr .85fr 1.1fr 1fr 1.35fr; gap: 38px; }
.site-footer .footer__col { display: flex; flex-direction: column; gap: 12px; }
.site-footer .footer__col h4 { color: #fff; font-weight: 700; font-size: 15px; letter-spacing: .1em; margin-bottom: 6px; }
.site-footer .footer__col a { color: var(--on-dark-2); font-size: 15px; transition: color .2s ease; }
.site-footer .footer__col a:hover { color: #fff; }
.site-footer .footer__brand { gap: 18px; }
.site-footer .footer__logo { background: #fff; border-radius: 12px; padding: 12px 16px; display: inline-flex; align-self: flex-start; }
.site-footer .footer__logo img { height: 48px; }
.site-footer .footer__about { font-size: 15px; line-height: 1.7; }
.site-footer .footer__trust { display: flex; align-items: center; gap: 10px; background: rgba(201,162,39,.12); border: 1px solid rgba(201,162,39,.3); border-radius: 12px; padding: 10px 14px; font-size: 13px; color: #E3C96B; line-height: 1.45; }
.site-footer .footer__trust i { color: var(--gold); font-size: 18px; }
.site-footer .footer__social { display: flex; gap: 10px; }
/* ikonlar orijinal marka renklerinde; koyu zeminde okunması için beyaz daire */
.site-footer .footer__social a { width: 46px; height: 46px; border-radius: 50%; border: 1px solid #fff; background: #fff; font-size: 21px; display: flex; align-items: center; justify-content: center; transition: transform .25s ease, box-shadow .25s ease; }
.site-footer .footer__social a:hover { transform: translateY(-3px); box-shadow: 0 10px 22px rgba(0,0,0,.3); }
.site-footer .footer__social--facebook i  { color: #1877F2; }
.site-footer .footer__social--twitter i   { color: #000; }
.site-footer .footer__social--linkedin i  { color: #0A66C2; }
.site-footer .footer__social--instagram i { background: linear-gradient(45deg, #F58529 0%, #DD2A7B 45%, #8134AF 70%, #515BD4 100%); -webkit-background-clip: text; background-clip: text; color: transparent; }
.site-footer .footer__line { display: flex; gap: 11px; font-size: 15px; align-items: center; }
.site-footer .footer__line i { color: var(--gold); flex-shrink: 0; }
.site-footer .footer__line--top { align-items: flex-start; line-height: 1.6; }
.site-footer .footer__line--top i { margin-top: 3px; }
.site-footer .footer__sms { display: inline-flex; align-self: flex-start; align-items: flex-start; gap: 11px; background: rgba(200,16,46,.12); border: 1px solid rgba(226,58,82,.35); border-radius: 12px; padding: 12px 14px; margin-top: 2px; }
.site-footer .footer__sms > i { color: var(--red-light); font-size: 18px; }
.site-footer .footer__sms small { font-size: 12px; letter-spacing: .1em; color: var(--on-dark); font-weight: 700; display: block; }
.site-footer .footer__sms span { font-size: 14px; color: #fff; font-weight: 600; white-space: nowrap; }
.site-footer .footer__sms b { color: #E3C96B; }
.site-footer .footer__bottom { border-top: 1px solid rgba(255,255,255,.1); }
/* alt bant: solda telif, ortada sözleşmeler, sağda kredi — orta sütunun gerçekten ortalanması için grid */
.site-footer .footer__bottom-inner { padding-top: 18px; padding-bottom: 18px; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 16px; font-size: 14px; color: #93A4C2; }
.site-footer .footer__bottom-inner nav { justify-self: center; }
.site-footer .footer__credit { justify-self: end; white-space: nowrap; }
.site-footer .footer__bottom-inner nav { display: flex; gap: 26px; }
.site-footer .footer__bottom-inner a { color: #93A4C2; transition: color .2s ease; }
.site-footer .footer__bottom-inner a:hover { color: #fff; }

/* ============================================================
   DUYURU MODALI
   ============================================================ */
.announce { position: fixed; inset: 0; z-index: 200; display: none; align-items: center; justify-content: center; background: rgba(var(--veil),.62); backdrop-filter: blur(6px); }
.announce.is-open { display: flex; }
.announce .announce__card { width: 500px; max-width: calc(100vw - 32px); background: #fff; border-radius: 22px; overflow: hidden; box-shadow: 0 40px 100px rgba(0,0,0,.45); animation: modalpop .55s cubic-bezier(.34,1.56,.64,1) both; }
.announce .announce__media { position: relative; height: 250px; }
.announce .announce__media img { width: 100%; height: 100%; object-fit: cover; }
.announce .announce__close { position: absolute; right: 14px; top: 14px; width: 38px; height: 38px; border-radius: 50%; background: rgba(var(--veil),.55); backdrop-filter: blur(6px); display: flex; align-items: center; justify-content: center; color: #fff; transition: background-color .2s ease; }
.announce .announce__close:hover { background: var(--red); }
.announce .announce__tag { position: absolute; left: 18px; bottom: -14px; background: linear-gradient(120deg, var(--red-light), var(--red) 45%, #8F0B1F); color: #fff; font-weight: 800; font-size: 11px; letter-spacing: .2em; padding: 8px 16px; border-radius: 4px; box-shadow: 0 10px 24px rgba(200,16,46,.4); }
.announce .announce__body { padding: 30px 28px 22px; display: flex; flex-direction: column; gap: 12px; }
.announce .announce__title { font-family: var(--serif); font-weight: 700; font-size: 24px; line-height: 1.3; color: var(--navy); }
.announce .announce__desc { font-size: 15px; line-height: 1.65; color: var(--muted); }
.announce .announce__cta { display: inline-flex; align-self: flex-start; align-items: center; gap: 9px; margin-top: 4px; background: linear-gradient(135deg, var(--red), var(--red-dark)); color: #fff; font-weight: 700; font-size: 15px; padding: 12px 24px; border-radius: 999px; transition: transform .25s ease; }
.announce .announce__cta:hover { transform: translateY(-2px); color: #fff; }
.announce .announce__foot { display: flex; align-items: center; justify-content: flex-end; border-top: 1px solid #EEE9DD; padding: 14px 28px; }
.announce .announce__dismiss { font-size: 14px; font-weight: 700; color: var(--navy); transition: color .2s ease; }
.announce .announce__dismiss:hover { color: var(--red); }

/* ============================================================
   İÇ SAYFALAR — ortak banner + kurumsal + faaliyet detay
   ============================================================ */
/* --- İç sayfa banner'ı (tüm alt sayfalar) --- */
.page-hero { position: relative; background-color: var(--navy); background-image: var(--ph-img); background-size: cover; background-position: center; overflow: hidden; padding: calc(var(--header-h) + 68px) 0 72px; }
.page-hero__veil { position: absolute; inset: 0; background: linear-gradient(120deg, rgba(var(--veil),.94) 0%, rgba(var(--veil),.78) 46%, rgba(var(--veil),.55) 100%); }
.page-hero__sweep { position: absolute; top: 0; bottom: 0; left: 0; width: 120px; background: linear-gradient(90deg, transparent, rgba(255,255,255,.10), transparent); animation: sweep 6s ease-in-out infinite; pointer-events: none; }
.page-hero__inner { position: relative; z-index: 2; color: #fff; }
.crumbs { display: flex; align-items: center; flex-wrap: wrap; gap: 8px; font-size: 14px; color: var(--on-dark-2); margin-bottom: 18px; }
.crumbs a { color: var(--on-dark-2); transition: color .2s ease; }
.crumbs a:hover { color: #fff; }
.crumbs i { font-size: 10px; opacity: .6; }
.crumbs span { color: #fff; font-weight: 600; }
.page-hero__eyebrow { display: inline-block; font-size: 13px; font-weight: 800; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); margin-bottom: 12px; }
.page-hero__title { font-family: var(--serif); font-weight: 800; font-size: 46px; line-height: 1.12; }
.page-hero__sub { margin: 16px 0 0; max-width: 680px; font-size: 17px; line-height: 1.7; color: var(--on-dark-2); }

/* --- Lead (kurumsal) --- */
.inner-lead { padding: 84px 0 44px; }
.inner-lead__text { margin: 0 0 16px; font-size: 17px; line-height: 1.8; color: var(--muted); }
.inner-lead__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 26px; }
.inner-lead__media { position: relative; }
.inner-lead__photo { width: 100%; border-radius: 20px; box-shadow: 0 30px 60px rgba(20,60,106,.22); aspect-ratio: 4 / 3; object-fit: cover; }

/* --- Tarihçe zaman çizelgesi --- */
.timeline-sec { padding: 64px 0 88px; background: #F5F8FC; }
/* Not: .timeline'a yatay padding vermeyin — dikey çizgi (::before) mutlak
   konumlu olduğu için padding yalnızca işaretçileri kaydırır ve çizgi noktaların
   dışında kalır. Çizgi/işaretçi merkezleri: masaüstü 22px, ≤576px 18px. */
.timeline { position: relative; max-width: 820px; margin: 46px auto 0; }
.timeline::before { content: ""; position: absolute; left: 21px; top: 6px; bottom: 30px; width: 2px; background: linear-gradient(180deg, var(--red), rgba(200,16,46,.15)); }
.tl-item { position: relative; padding: 0 0 26px 64px; }
.tl-item__marker { position: absolute; left: 12px; top: 4px; width: 20px; height: 20px; border-radius: 50%; background: #fff; border: 2px solid var(--red); display: grid; place-items: center; }
.tl-item__marker span { width: 8px; height: 8px; border-radius: 50%; background: var(--red); }
.tl-item__card { background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: 22px 24px; box-shadow: 0 14px 34px rgba(20,60,106,.08); transition: transform .25s ease, box-shadow .25s ease; }
.tl-item:hover .tl-item__card { transform: translateY(-3px); box-shadow: 0 20px 44px rgba(20,60,106,.14); }
.tl-item__year { display: inline-block; font-family: var(--serif); font-weight: 800; font-size: 14px; color: var(--red); background: rgba(200,16,46,.08); padding: 4px 12px; border-radius: 999px; margin-bottom: 10px; }
.tl-item__title { font-family: var(--serif); font-weight: 700; font-size: 20px; color: var(--navy); margin-bottom: 8px; }
.tl-item__text { font-size: 16px; line-height: 1.75; color: var(--muted); }

/* --- Misyon kartları --- */
.mission-sec { padding: 84px 0 88px; }
.mission-card { height: 100%; background: #fff; border: 1px solid var(--line); border-radius: 18px; padding: 32px 26px; text-align: center; transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease; }
.mission-card:hover { transform: translateY(-4px); box-shadow: 0 22px 44px rgba(20,60,106,.12); border-color: transparent; }
.mission-card__icon { display: inline-grid; place-items: center; width: 66px; height: 66px; border-radius: 18px; background: linear-gradient(135deg, var(--navy), var(--navy-soft)); color: #fff; font-size: 28px; margin-bottom: 18px; }
.mission-card__title { font-family: var(--serif); font-weight: 700; font-size: 20px; color: var(--navy); margin-bottom: 10px; }
.mission-card__text { font-size: 16px; line-height: 1.7; color: var(--muted); }

/* --- İstatistik bandı --- */
.stat-band { margin-top: 56px; background: linear-gradient(120deg, var(--navy), var(--navy-deep)); border-radius: 22px; padding: 40px 30px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; box-shadow: 0 30px 60px rgba(20,60,106,.28); }
.stat-band .stat { text-align: center; border-right: 1px solid rgba(255,255,255,.14); }
.stat-band .stat:last-child { border-right: 0; }
.stat-band .stat__num { font-family: var(--serif); font-weight: 800; font-size: 34px; color: #fff; }
.stat-band .stat__label { font-size: 12px; letter-spacing: .12em; color: var(--on-dark-2); margin-top: 6px; font-weight: 700; }

/* --- İç sayfa CTA bandı --- */
.inner-cta { padding: 20px 0 96px; }
.inner-cta__band { position: relative; overflow: hidden; background: linear-gradient(120deg, var(--red-dark), var(--red)); border-radius: 24px; padding: 44px 48px; display: flex; align-items: center; justify-content: space-between; gap: 30px; box-shadow: 0 30px 60px rgba(200,16,46,.26); }
.inner-cta__bg { position: absolute; right: -10px; bottom: -34px; font-size: 220px; color: rgba(255,255,255,.10); pointer-events: none; line-height: 1; }
.inner-cta__text { position: relative; z-index: 1; color: #fff; }
.inner-cta__text h3 { font-family: var(--serif); font-weight: 800; font-size: 30px; margin-bottom: 8px; }
.inner-cta__text p { font-size: 16px; color: rgba(255,255,255,.92); }
.inner-cta__actions { position: relative; z-index: 1; display: flex; flex-wrap: wrap; gap: 14px; }

/* --- Faaliyet detay: giriş --- */
.detail-intro { padding: 84px 0 40px; }
.detail-intro__media { position: relative; border-radius: 20px; overflow: hidden; box-shadow: 0 30px 60px rgba(20,60,106,.22); }
.detail-intro__media img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.detail-intro__badge { position: absolute; left: 18px; bottom: 18px; display: inline-flex; align-items: center; gap: 8px; background: rgba(255,255,255,.95); color: var(--red); font-weight: 800; font-size: 13px; padding: 9px 16px; border-radius: 999px; box-shadow: 0 10px 24px rgba(0,0,0,.18); }
.detail-intro__text { font-size: 17px; line-height: 1.8; color: var(--muted); margin: 0 0 20px; }
.detail-highlights { display: grid; gap: 14px; margin: 4px 0 0; }
.detail-highlights li { display: flex; align-items: center; gap: 12px; font-weight: 600; color: var(--ink); font-size: 16px; }
.detail-highlights li i { flex-shrink: 0; font-size: 22px; line-height: 1; color: var(--red); }

/* --- Faaliyet detay: metin gövdesi --- */
.detail-body { padding: 24px 0 20px; }
.detail-body__wrap { max-width: 860px; margin: 0 auto; }
.detail-body__wrap p { font-size: 17px; line-height: 1.85; color: var(--muted); margin: 0 0 20px; }
.detail-quote { position: relative; margin: 30px 0; padding: 26px 30px 26px 64px; background: var(--cream); border-left: 4px solid var(--red); border-radius: 0 16px 16px 0; }
.detail-quote i { position: absolute; left: 22px; top: 20px; font-size: 26px; color: var(--red); }
.detail-quote p { font-family: var(--serif); font-style: italic; font-size: 20px; line-height: 1.5; color: var(--navy); margin: 0; }

/* --- Galeri: Instagram tarzı mozaik --- */
.detail-gallery { padding: 58px 0 96px; }
.gallery { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 200px; grid-auto-flow: dense; gap: 14px; margin-top: 44px; }
.gallery__item { position: relative; display: block; overflow: hidden; border-radius: 16px; background: var(--cream); }
.gallery__item img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.gallery__item:hover img { transform: scale(1.06); }
.gallery__item::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 55%, rgba(var(--veil),.5)); opacity: 0; transition: opacity .3s ease; }
.gallery__item:hover::after { opacity: 1; }
.gallery__zoom { position: absolute; right: 12px; bottom: 12px; z-index: 2; width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,.92); color: var(--red); display: grid; place-items: center; font-size: 16px; transform: scale(.6); opacity: 0; transition: transform .3s ease, opacity .3s ease; }
.gallery__item:hover .gallery__zoom { transform: scale(1); opacity: 1; }
/* mozaik boyutlandırma — 10'luk tekrar deseni (dense pack ile büyük kutular dönüşümlü) */
.gallery__item:nth-child(10n+1) { grid-column: span 2; grid-row: span 2; }
.gallery__item:nth-child(10n+5) { grid-column: span 2; }
.gallery__item:nth-child(10n+8) { grid-row: span 2; }

/* ============================================================
   LİSTE / ALT SAYFA BİLEŞENLERİ
   ============================================================ */
.list-sec { padding: 84px 0 44px; }

/* Genel resimli/ikonlu kart */
.tile-card { display: block; height: 100%; background: #fff; border: 1px solid var(--line); border-radius: 18px; overflow: hidden; transition: transform .25s ease, box-shadow .25s ease; }
.tile-card:hover { transform: translateY(-5px); box-shadow: 0 24px 48px rgba(20,60,106,.14); }
.tile-card__media { position: relative; aspect-ratio: 16 / 10; overflow: hidden; background: var(--cream); }
.tile-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.tile-card:hover .tile-card__media img { transform: scale(1.06); }
.tile-card__ic { position: absolute; left: 14px; top: 14px; width: 44px; height: 44px; border-radius: 12px; background: var(--menu-ink); color: #fff; display: grid; place-items: center; font-size: 20px; }
.tile-card__ic--static { position: static; margin-bottom: 16px; }
.tile-card__badge { position: absolute; right: 14px; top: 14px; background: rgba(255,255,255,.92); color: var(--navy); font-weight: 700; font-size: 13px; padding: 6px 12px; border-radius: 999px; display: inline-flex; align-items: center; gap: 6px; }
.tile-card__play { position: absolute; inset: 0; display: grid; place-items: center; }
.tile-card__play i { width: 60px; height: 60px; border-radius: 50%; background: rgba(200,16,46,.92); color: #fff; display: grid; place-items: center; font-size: 26px; box-shadow: 0 10px 24px rgba(0,0,0,.3); transition: transform .25s ease; }
.tile-card:hover .tile-card__play i { transform: scale(1.1); }
.tile-card__body { padding: 22px 22px 24px; }
.tile-card__meta { display: inline-flex; align-items: center; gap: 7px; font-size: 13px; color: var(--muted-2); font-weight: 600; margin-bottom: 10px; }
.tile-card__title { font-family: var(--serif); font-weight: 700; font-size: 20px; color: var(--navy); margin-bottom: 8px; line-height: 1.3; }
.tile-card__desc { font-size: 15px; line-height: 1.65; color: var(--muted); display: flex; align-items: center; gap: 6px; }
.tile-card__more { display: inline-flex; align-items: center; gap: 8px; margin-top: 14px; color: var(--red); font-weight: 700; font-size: 14px; }
.mag-card__media { aspect-ratio: 3 / 4; }
.mag-card__title { font-size: 16px; }

/* İlan / duyuru satırları */
.ann-list { display: flex; flex-direction: column; gap: 14px; max-width: 980px; margin: 44px auto 0; }
.ann-row { display: flex; align-items: center; gap: 20px; background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 18px 22px; transition: transform .2s ease, box-shadow .2s ease; }
.ann-row:hover { transform: translateX(4px); box-shadow: 0 16px 34px rgba(20,60,106,.10); }
.ann-row__date { flex-shrink: 0; width: 130px; font-size: 13px; color: var(--muted-2); font-weight: 600; }
.ann-row__type { flex-shrink: 0; font-size: 12px; font-weight: 800; letter-spacing: .08em; color: var(--red); background: rgba(200,16,46,.08); padding: 5px 12px; border-radius: 999px; }
.ann-row__title { font-weight: 600; color: var(--ink); font-size: 16px; }
.ann-row__ic { margin-left: auto; color: var(--muted-2); }

/* Doküman listesi (indirilebilir) */
.doc-list { display: grid; gap: 12px; max-width: 860px; margin: 44px auto 0; }
.doc-list--spaced { margin-top: 40px; }
.doc-row { display: flex; align-items: center; gap: 16px; background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 16px 20px; transition: border-color .2s ease, box-shadow .2s ease; }
.doc-row:hover { border-color: var(--red); box-shadow: 0 14px 30px rgba(20,60,106,.10); }
.doc-row__ic { flex-shrink: 0; width: 44px; height: 44px; border-radius: 11px; background: rgba(200,16,46,.08); color: var(--red); display: grid; place-items: center; font-size: 20px; }
.doc-row__title { font-weight: 600; color: var(--navy); font-size: 16px; }
.doc-row__dl { margin-left: auto; display: inline-flex; align-items: center; gap: 8px; color: var(--red); font-weight: 700; font-size: 14px; white-space: nowrap; }

/* Yönetim kurulu üye kartı */
.member-card { height: 100%; text-align: center; background: #fff; border: 1px solid var(--line); border-radius: 18px; padding: 28px 18px; transition: transform .25s ease, box-shadow .25s ease; }
.member-card:hover { transform: translateY(-4px); box-shadow: 0 22px 44px rgba(20,60,106,.12); }
.member-card__avatar { width: 92px; height: 92px; border-radius: 50%; margin: 0 auto 16px; background: linear-gradient(135deg, var(--navy), var(--navy-soft)); color: #fff; display: grid; place-items: center; font-size: 38px; overflow: hidden; }
.member-card__avatar img { width: 100%; height: 100%; object-fit: cover; }
.member-card__name { font-family: var(--serif); font-weight: 700; font-size: 17px; color: var(--navy); line-height: 1.3; }
.member-card__role { font-size: 12px; letter-spacing: .06em; color: var(--red); font-weight: 700; margin-top: 5px; text-transform: uppercase; }

/* Vizyon-Misyon blokları */
.vm-block { height: 100%; background: #fff; border: 1px solid var(--line); border-radius: 20px; padding: 34px 32px; box-shadow: 0 18px 40px rgba(20,60,106,.08); }
.vm-block__ic { display: inline-grid; place-items: center; width: 60px; height: 60px; border-radius: 16px; background: linear-gradient(135deg, var(--red), var(--red-dark)); color: #fff; font-size: 26px; margin-bottom: 18px; }
.vm-block__title { font-family: var(--serif); font-weight: 700; font-size: 24px; color: var(--navy); margin-bottom: 12px; }
.vm-block__text { font-size: 16px; line-height: 1.8; color: var(--muted); }

/* Teşkilat şeması */
.org { display: flex; flex-direction: column; align-items: center; margin-top: 44px; }
.org__node { background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 15px 26px; font-weight: 700; color: var(--navy); box-shadow: 0 10px 24px rgba(20,60,106,.08); text-align: center; }
.org__node--top { background: linear-gradient(135deg, var(--navy), var(--navy-deep)); color: #fff; border: 0; }
.org__line { width: 2px; height: 28px; background: var(--line); }
.org__row { display: flex; gap: 20px; flex-wrap: wrap; justify-content: center; }

/* Atatürk sözleri */
.quote-card { height: 100%; position: relative; background: #fff; border: 1px solid var(--line); border-left: 4px solid var(--red); border-radius: 0 18px 18px 0; padding: 30px 32px 26px 64px; margin: 0; }
.quote-card > i { position: absolute; left: 24px; top: 26px; font-size: 28px; color: var(--red); }
.quote-card p { font-family: var(--serif); font-style: italic; font-size: 19px; line-height: 1.55; color: var(--navy); margin: 0 0 12px; }
.quote-card cite { font-style: normal; font-weight: 700; font-size: 14px; color: var(--muted-2); letter-spacing: .04em; }

/* İletişim */
.contact-grid { display: grid; grid-template-columns: 1fr 1.15fr; gap: 44px; align-items: start; }
.contact-info { display: grid; gap: 14px; margin-top: 8px; }
.contact-item { display: flex; gap: 16px; align-items: flex-start; background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 18px 20px; transition: border-color .2s ease; }
a.contact-item:hover { border-color: var(--red); }
.contact-item__ic { flex-shrink: 0; width: 46px; height: 46px; border-radius: 12px; background: rgba(35,92,155,.08); color: var(--navy); display: grid; place-items: center; font-size: 20px; }
.contact-item__label { font-size: 12px; letter-spacing: .08em; color: var(--muted-2); font-weight: 700; text-transform: uppercase; margin-bottom: 3px; }
.contact-item__val { color: var(--ink); font-weight: 600; font-size: 16px; line-height: 1.5; }
.contact-map { margin-top: 40px; border-radius: 18px; overflow: hidden; border: 1px solid var(--line); }
.contact-map iframe { display: block; width: 100%; height: 380px; border: 0; }

/* Formlar */
.form-card { background: #fff; border: 1px solid var(--line); border-radius: 20px; padding: 32px; box-shadow: 0 20px 44px rgba(20,60,106,.08); }
.form-row { display: grid; gap: 0 16px; grid-template-columns: 1fr 1fr; }
.form-field { display: flex; flex-direction: column; gap: 7px; margin-bottom: 16px; }
.form-field label { font-size: 14px; font-weight: 700; color: var(--navy); }
.form-field input, .form-field textarea, .form-field select { border: 1.5px solid var(--line); border-radius: 11px; padding: 13px 15px; font: inherit; color: var(--ink); background: #fff; transition: border-color .2s ease; width: 100%; }
.form-field input:focus, .form-field textarea:focus, .form-field select:focus { outline: none; border-color: var(--navy); }
.form-field textarea { resize: vertical; min-height: 120px; }

/* Bağış seçenekleri */
.donate-opts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 44px; }
.donate-opt { background: #fff; border: 1px solid var(--line); border-radius: 18px; padding: 30px 24px; text-align: center; transition: transform .25s ease, box-shadow .25s ease; }
.donate-opt:hover { transform: translateY(-4px); box-shadow: 0 22px 44px rgba(20,60,106,.12); }
.donate-opt__ic { width: 60px; height: 60px; border-radius: 16px; margin: 0 auto 16px; background: linear-gradient(135deg, var(--red), var(--red-dark)); color: #fff; display: grid; place-items: center; font-size: 26px; }
.donate-opt__title { font-family: var(--serif); font-weight: 700; font-size: 19px; color: var(--navy); margin-bottom: 8px; }
.donate-opt__text { font-size: 15px; line-height: 1.6; color: var(--muted); }
.bank-card { background: var(--cream); border-radius: 16px; padding: 12px 26px; margin: 20px auto 0; max-width: 820px; }
.bank-row { display: flex; justify-content: space-between; gap: 16px; padding: 14px 0; border-bottom: 1px dashed #D9D2C4; font-size: 15px; color: var(--muted); }
.bank-row:last-child { border-bottom: 0; }
.bank-row b { color: var(--navy); }

/* Prose (yasal / metin sayfaları) */
.prose-sec { padding: 76px 0 44px; }
.prose { max-width: 860px; margin: 0 auto; }
.prose h2 { font-family: var(--serif); font-size: 23px; color: var(--navy); margin: 32px 0 12px; }
.prose h2:first-child { margin-top: 0; }
.prose p { font-size: 17px; line-height: 1.85; color: var(--muted); margin: 0 0 16px; }
.prose-list { display: grid; gap: 10px; margin: 0 0 20px; }
.prose-list li { display: flex; gap: 12px; align-items: flex-start; color: var(--ink); font-size: 16px; line-height: 1.6; }
.prose-list li i { color: var(--red); margin-top: 3px; }

/* Site haritası */
.sitemap-col { background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: 24px 26px; height: 100%; }
.sitemap-col__head { display: flex; align-items: center; gap: 10px; font-family: var(--serif); font-weight: 700; font-size: 18px; color: var(--navy); padding-bottom: 14px; margin-bottom: 12px; border-bottom: 2px solid var(--line); }
.sitemap-col__head i { color: var(--red); }
.sitemap-col__list { display: grid; gap: 8px; }
.sitemap-col__list a { display: flex; align-items: center; gap: 8px; color: var(--muted); font-size: 15px; font-weight: 500; transition: color .2s ease; }
.sitemap-col__list a:hover { color: var(--red); }
.sitemap-col__list i { font-size: 11px; color: var(--red); }

/* ============================================================
   DETAY SAYFALARI — video, makale, galeri girişi, vizyon-misyon
   ============================================================ */
.list-sec--tight { padding-top: 40px; }
.detail-gallery--top { padding-top: 24px; }

/* Bağış kartı link oku */
.donate .dcard__more { display: inline-flex; align-items: center; gap: 8px; margin-top: 12px; color: var(--red); font-weight: 700; font-size: 14px; }

/* Galeri / ziyaret girişi */
.gallery-intro, .visit-head { max-width: 860px; margin: 0 auto; }
.visit-head { margin-bottom: 8px; }
.gallery-intro__meta, .visit-head__meta { display: flex; flex-wrap: wrap; gap: 10px 24px; margin-bottom: 18px; }
.gallery-intro__meta span, .visit-head__meta span { display: inline-flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 600; color: var(--navy); }
.gallery-intro__meta i, .visit-head__meta i { color: var(--red); }
.gallery-intro p { font-size: 17px; line-height: 1.85; color: var(--muted); margin: 0; }

/* Video embed (16:9) */
.video-embed { position: relative; aspect-ratio: 16 / 9; border-radius: 18px; overflow: hidden; box-shadow: 0 24px 50px rgba(20,60,106,.25); margin: 0 auto 26px; max-width: 960px; }
.video-embed iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

/* Haber detay (makale) */
.article-meta { display: flex; align-items: center; gap: 16px; margin-bottom: 20px; font-size: 14px; color: var(--muted-2); font-weight: 600; }
.article-meta span { display: inline-flex; align-items: center; gap: 7px; }
.article-meta__cat { font-weight: 800; letter-spacing: .08em; color: var(--red); }
.article-cover { width: 100%; border-radius: 18px; margin-bottom: 26px; aspect-ratio: 16 / 9; object-fit: cover; box-shadow: 0 24px 50px rgba(20,60,106,.16); }
.article-lead { font-size: 19px; line-height: 1.75; color: var(--ink); font-weight: 500; }
.article-share { display: flex; align-items: center; gap: 12px; margin-top: 30px; padding-top: 22px; border-top: 1px solid var(--line); }
.article-share span { font-weight: 700; color: var(--navy); font-size: 14px; }
.article-share a { width: 40px; height: 40px; border-radius: 50%; background: var(--cream); color: var(--navy); display: grid; place-items: center; transition: background-color .2s ease, color .2s ease; }
.article-share a:hover { background: var(--red); color: #fff; }

/* Vizyon-Misyon (görsel + metin, dönüşümlü) */
.inner-lead--alt { padding-top: 20px; }
.vm-text__ic { display: inline-grid; place-items: center; width: 60px; height: 60px; border-radius: 16px; background: linear-gradient(135deg, var(--navy), var(--navy-soft)); color: #fff; font-size: 26px; margin-bottom: 18px; }
.vm-text .sec-head__eyebrow { display: block; margin-bottom: 10px; }
.vm-text__title { font-family: var(--serif); font-weight: 700; font-size: 32px; line-height: 1.2; color: var(--navy); margin-bottom: 14px; }
.vm-text__desc { font-size: 17px; line-height: 1.85; color: var(--muted); }
.vm-media img { width: 100%; border-radius: 20px; box-shadow: 0 30px 60px rgba(20,60,106,.22); aspect-ratio: 4 / 3; object-fit: cover; }

/* ============================================================
   KURUMSAL İÇERİK — mevzuat, gelir-gider, ilan, bağış, yönetim
   ============================================================ */
/* Mevzuat kartı */
.law-card { height: 100%; background: #fff; border: 1px solid var(--line); border-radius: 18px; padding: 28px 26px; transition: transform .25s ease, box-shadow .25s ease; }
.law-card:hover { transform: translateY(-4px); box-shadow: 0 22px 44px rgba(20,60,106,.12); }
.law-card__head { display: flex; align-items: center; gap: 14px; padding-bottom: 16px; margin-bottom: 16px; border-bottom: 2px solid var(--line); }
.law-card__ic { flex-shrink: 0; width: 48px; height: 48px; border-radius: 13px; background: linear-gradient(135deg, var(--navy), var(--navy-soft)); color: #fff; display: grid; place-items: center; font-size: 21px; }
.law-card__title { font-family: var(--serif); font-weight: 700; font-size: 20px; color: var(--navy); }
.law-card__list { display: grid; gap: 12px; }
.law-card__list li { display: flex; gap: 11px; align-items: flex-start; font-size: 15px; line-height: 1.6; color: var(--muted); }
.law-card__list i { flex-shrink: 0; color: var(--red); font-size: 15px; margin-top: 3px; }

/* Uyarı / bilgi kutusu */
.notice-box { display: flex; gap: 16px; align-items: flex-start; background: #FAFBFD; border: 1px solid var(--line); border-left: 3px solid var(--red); border-radius: 4px 16px 16px 4px; padding: 22px 26px; margin-top: 26px; }
.notice-box--center { max-width: 900px; margin: 40px auto 0; }
.notice-box__ic { flex-shrink: 0; color: var(--red); font-size: 20px; line-height: 1; margin-top: 2px; }
.notice-box p { margin: 0; font-size: 15px; line-height: 1.7; color: var(--muted); }
.notice-box b { color: var(--navy); font-weight: 700; }

/* Bilgi paneli (gelir kaynakları) */
.info-panel { background: linear-gradient(135deg, var(--navy), var(--navy-deep)); border-radius: 20px; padding: 34px 32px; box-shadow: 0 30px 60px rgba(20,60,106,.28); }
.info-panel__title { display: flex; align-items: center; gap: 12px; font-family: var(--serif); font-weight: 700; font-size: 21px; color: #fff; padding-bottom: 18px; margin-bottom: 18px; border-bottom: 1px solid rgba(255,255,255,.16); }
.info-panel__title i { color: var(--gold); }
.info-panel__list { display: grid; gap: 16px; }
.info-panel__list li { display: flex; gap: 14px; align-items: flex-start; color: var(--on-dark-2); font-size: 15px; line-height: 1.65; }
.info-panel__ic { flex-shrink: 0; width: 38px; height: 38px; border-radius: 11px; background: rgba(255,255,255,.10); color: #fff; display: grid; place-items: center; font-size: 16px; }

/* Gelir/gider oran çubuğu */
.ratio-bar { display: flex; margin-top: 20px; border-radius: 12px; overflow: hidden; height: 46px; }
.ratio-bar__fill { width: var(--w); display: flex; align-items: center; justify-content: center; gap: 6px; font-size: 13px; font-weight: 700; color: #fff; text-align: center; padding: 0 8px; }
.ratio-bar__fill b { font-family: var(--serif); font-size: 15px; }
.ratio-bar__fill--main { background: linear-gradient(135deg, var(--red), var(--red-dark)); }
.ratio-bar__fill--alt { background: var(--navy-soft); }
.mission-card--left { text-align: left; }
.mission-card--left .mission-card__icon { margin-left: 0; }

/* İlan kartı */
.ilan-list { display: grid; gap: 22px; max-width: 980px; margin: 44px auto 0; }
.ilan-card { background: #fff; border: 1px solid var(--line); border-radius: 20px; padding: 32px 34px; box-shadow: 0 18px 40px rgba(20,60,106,.08); }
.ilan-card__head { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; margin-bottom: 14px; }
.ilan-card__type { font-size: 12px; font-weight: 800; letter-spacing: .1em; color: #fff; background: linear-gradient(135deg, var(--red), var(--red-dark)); padding: 6px 14px; border-radius: 999px; }
.ilan-card__date { display: inline-flex; align-items: center; gap: 7px; font-size: 14px; color: var(--muted-2); font-weight: 600; }
.ilan-card__title { font-family: var(--serif); font-weight: 700; font-size: 24px; line-height: 1.3; color: var(--navy); margin-bottom: 16px; }
.ilan-card__price { display: inline-flex; align-items: center; gap: 12px; background: var(--cream); border-radius: 12px; padding: 12px 20px; margin-bottom: 18px; }
.ilan-card__price span { font-size: 13px; font-weight: 700; letter-spacing: .06em; color: var(--muted-2); text-transform: uppercase; }
.ilan-card__price b { font-family: var(--serif); font-size: 22px; color: var(--red); }
.ilan-card__desc { font-size: 16px; line-height: 1.8; color: var(--muted); margin: 0 0 22px; }
.ilan-card__files-label { display: flex; align-items: center; gap: 9px; font-size: 13px; font-weight: 800; letter-spacing: .06em; color: var(--navy); text-transform: uppercase; margin-bottom: 12px; }
.ilan-card__files-label i { color: var(--red); }
.ilan-card__files .doc-list { margin: 0; max-width: none; }

/* Bağış karşılığı objeler */
.obj-card { position: relative; height: 100%; text-align: center; background: #fff; border: 1px solid var(--line); border-radius: 20px; padding: 36px 24px 30px; box-shadow: 0 1px 2px rgba(20,60,106,.04); overflow: hidden; transition: transform .3s cubic-bezier(.2,.7,.3,1), box-shadow .3s ease, border-color .3s ease; }
.obj-card::before { content: ""; position: absolute; left: 0; right: 0; top: 0; height: 3px; background: var(--tone, var(--navy)); transform: scaleX(0); transition: transform .35s cubic-bezier(.2,.7,.3,1); }
.obj-card:hover { transform: translateY(-4px); border-color: transparent; box-shadow: 0 18px 44px rgba(20,60,106,.13); }
.obj-card:hover::before { transform: scaleX(1); }
.obj-card__ic { display: grid; place-items: center; width: 62px; height: 62px; border-radius: 50%; margin: 0 auto 18px; font-size: 26px; color: var(--tone, var(--navy)); background: color-mix(in srgb, var(--tone, var(--navy)) 10%, #fff); transition: background-color .3s ease, color .3s ease; }
.obj-card:hover .obj-card__ic { background: var(--tone, var(--navy)); color: #fff; }
.obj-card--bronze { --tone: #B4763B; }
.obj-card--plaque { --tone: var(--navy); }
.obj-card--silver { --tone: #7E8894; }
.obj-card--gold   { --tone: #C9A227; }
.obj-card__title { font-family: var(--serif); font-weight: 700; font-size: 18px; color: var(--navy); margin-bottom: 12px; letter-spacing: -.01em; }
.obj-card__range { display: inline-block; font-size: 13px; font-weight: 700; color: var(--muted); border: 1px solid var(--line); padding: 7px 15px; border-radius: 999px; }

/* Genel Müdür portresi */
.gm-photo { position: relative; margin: 0; border-radius: 22px; overflow: hidden; background: linear-gradient(135deg, var(--navy), var(--navy-deep)); box-shadow: 0 30px 60px rgba(20,60,106,.26); }
.gm-photo img { width: 100%; height: auto; aspect-ratio: 600 / 697; object-fit: cover; object-position: center top; display: block; }
.gm-photo__ph { display: grid; place-items: center; aspect-ratio: 600 / 697; font-family: var(--serif); font-weight: 800; font-size: 76px; color: rgba(255,255,255,.34); }
.gm-photo__cap { position: absolute; left: 0; right: 0; bottom: 0; padding: 64px 26px 24px; background: linear-gradient(180deg, rgba(var(--veil),0) 0%, rgba(var(--veil),.82) 45%, rgba(var(--veil),.97) 100%); color: #fff; display: flex; flex-direction: column; gap: 4px; }
.gm-photo__role { font-size: 12px; font-weight: 800; letter-spacing: .18em; color: var(--gold); text-transform: uppercase; }
.gm-photo__name { font-family: var(--serif); font-weight: 700; font-size: 22px; line-height: 1.25; }
.gm-photo__since { display: inline-flex; align-items: center; gap: 8px; margin-top: 6px; font-size: 13px; color: var(--on-dark-2); }

/* Emeği geçen genel müdürler */
.past-sec { padding: 40px 0 96px; background: #F5F8FC; }
.past-card { height: 100%; background: #fff; border: 1px solid var(--line); border-radius: 18px; overflow: hidden; transition: transform .25s ease, box-shadow .25s ease; }
.past-card:hover { transform: translateY(-5px); box-shadow: 0 24px 48px rgba(20,60,106,.14); }
.past-card__photo { position: relative; aspect-ratio: 3 / 4; background: linear-gradient(135deg, var(--navy), var(--navy-soft)); overflow: hidden; }
.past-card__photo img { width: 100%; height: 100%; object-fit: cover; object-position: center top; transition: transform .5s ease; }
.past-card:hover .past-card__photo img { transform: scale(1.05); }
.past-card__ph { display: grid; place-items: center; width: 100%; height: 100%; font-family: var(--serif); font-weight: 800; font-size: 48px; color: rgba(255,255,255,.42); }
.past-card__ribbon { position: absolute; right: 12px; top: 12px; width: 34px; height: 34px; border-radius: 50%; background: rgba(255,255,255,.94); color: var(--gold); display: grid; place-items: center; font-size: 14px; }
.past-card__body { padding: 20px 20px 22px; text-align: center; }
.past-card__name { font-family: var(--serif); font-weight: 700; font-size: 17px; line-height: 1.35; color: var(--navy); margin-bottom: 10px; }
.past-card__term { display: inline-flex; align-items: center; gap: 7px; font-size: 13px; font-weight: 700; color: var(--red); background: rgba(200,16,46,.07); padding: 6px 13px; border-radius: 999px; }

/* ============================================================
   BAĞIŞ — kategoriler, IBAN, SMS adımları, form
   ============================================================ */
/* --- Ortak modern öğeler --- */
.eyebrow-line { display: inline-flex; align-items: center; gap: 10px; font-size: 12px; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; color: var(--red); margin-bottom: 14px; }
.eyebrow-line::before { content: ""; width: 26px; height: 2px; background: var(--red); border-radius: 2px; }
.chip { display: inline-flex; align-items: center; gap: 7px; border: 1px solid var(--line); border-radius: 999px; padding: 7px 15px; font-size: 14px; font-weight: 600; color: var(--navy); background: #fff; }

/* Kategori kutusu (link) — sade, ince çizgili, hover'da yükselen */
.donate-opt--link { position: relative; display: flex; flex-direction: column; height: 100%; text-align: left; padding: 34px 30px 30px; border-radius: 20px; border: 1px solid var(--line); background: #fff; box-shadow: 0 1px 2px rgba(20,60,106,.04); overflow: hidden; transition: transform .3s cubic-bezier(.2,.7,.3,1), box-shadow .3s ease, border-color .3s ease; }
.donate-opt--link::before { content: ""; position: absolute; left: 0; right: 0; top: 0; height: 3px; background: linear-gradient(90deg, var(--red), var(--red-light)); transform: scaleX(0); transform-origin: left; transition: transform .35s cubic-bezier(.2,.7,.3,1); }
.donate-opt--link:hover { transform: translateY(-4px); border-color: transparent; box-shadow: 0 18px 44px rgba(20,60,106,.13); }
.donate-opt--link:hover::before { transform: scaleX(1); }
.donate-opt--link .donate-opt__ic { width: 52px; height: 52px; margin: 0 0 20px; border-radius: 15px; background: rgba(200,16,46,.07); color: var(--red); font-size: 23px; box-shadow: none; transition: background-color .3s ease, color .3s ease; }
.donate-opt--link:hover .donate-opt__ic { background: var(--red); color: #fff; }
.donate-opt--link .donate-opt__title { font-size: 19px; margin-bottom: 9px; letter-spacing: -.01em; }
.donate-opt--link .donate-opt__text { font-size: 15px; line-height: 1.65; color: var(--muted); }
.donate-opt__more { display: inline-flex; align-items: center; gap: 9px; margin-top: auto; padding-top: 20px; color: var(--navy); font-weight: 700; font-size: 14px; transition: color .25s ease, gap .25s ease; }
.donate-opt--link:hover .donate-opt__more { color: var(--red); gap: 13px; }

/* SMS paneli — görsel + tek kutu */
.sms-panel { display: grid; grid-template-columns: .85fr 1.15fr; gap: 0; background: #fff; border: 1px solid var(--line); border-radius: 24px; overflow: hidden; box-shadow: 0 20px 50px rgba(20,60,106,.10); margin-top: 8px; }
.sms-panel__media { position: relative; display: grid; place-items: center; padding: 34px 24px; background: #fefefe;}
.sms-panel__media img { width: 100%; max-width: 500px; height: auto; border-radius: 14px; }
.sms-panel__body { padding: 44px 46px; display: flex; flex-direction: column; }
.sms-panel__title { font-family: var(--serif); font-weight: 700; font-size: 30px; line-height: 1.2; color: var(--navy); margin-bottom: 22px; letter-spacing: -.01em; }
.sms-code { display: inline-flex; align-items: center; gap: 16px; align-self: flex-start; background: var(--navy); border-radius: 14px; padding: 15px 22px; margin-bottom: 26px; }
.sms-code__kw, .sms-code__no { font-family: var(--serif); font-weight: 800; font-size: 24px; color: #fff; letter-spacing: .02em; }
.sms-code__no { color: var(--gold); }
.sms-code i { color: rgba(255,255,255,.5); font-size: 16px; }
.sms-steps { display: grid; gap: 15px; margin: 0 0 26px; padding: 0; list-style: none; counter-reset: none; }
.sms-steps li { display: flex; align-items: flex-start; gap: 14px; font-size: 16px; line-height: 1.6; color: var(--muted); }
.sms-steps li b { color: var(--navy); font-weight: 700; }
.sms-steps__no { flex-shrink: 0; width: 27px; height: 27px; border-radius: 50%; background: rgba(200,16,46,.08); color: var(--red); font-size: 13px; font-weight: 800; display: grid; place-items: center; margin-top: 1px; }
.sms-ops { display: flex; align-items: center; flex-wrap: wrap; gap: 12px 16px; padding-top: 22px; border-top: 1px solid var(--line); }
.sms-ops__label { font-size: 12px; font-weight: 800; letter-spacing: .08em; color: var(--muted-2); text-transform: uppercase; }
.sms-ops__list { display: flex; flex-wrap: wrap; gap: 8px; }
.sms-panel__note { display: flex; align-items: flex-start; gap: 10px; margin: 20px 0 0; font-size: 14px; line-height: 1.6; color: var(--muted-2); }
.sms-panel__note i { color: var(--red); margin-top: 2px; }

/* IBAN listesi */
.iban-sec { padding: 24px 0 96px; }
.iban-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; margin-top: 44px; }
.iban-list--wide { grid-template-columns: repeat(2, 1fr); margin-top: 34px; }
.iban-card { background: #fff; border: 1px solid var(--line); border-radius: 20px; padding: 26px 28px; box-shadow: 0 1px 2px rgba(20,60,106,.04); transition: transform .3s cubic-bezier(.2,.7,.3,1), border-color .3s ease, box-shadow .3s ease; }
.iban-card:hover { transform: translateY(-3px); border-color: transparent; box-shadow: 0 18px 40px rgba(20,60,106,.12); }
.iban-card__bank { display: flex; align-items: center; gap: 14px; padding-bottom: 16px; margin-bottom: 16px; border-bottom: 1px solid var(--line); }
.iban-card__ic { flex-shrink: 0; width: 46px; height: 46px; border-radius: 14px; background: rgba(35,92,155,.07); color: var(--navy); display: grid; place-items: center; font-size: 19px; transition: background-color .3s ease, color .3s ease; }
.iban-card:hover .iban-card__ic { background: var(--navy); color: #fff; }
.iban-card__bank b { display: block; font-family: var(--serif); font-weight: 700; font-size: 18px; color: var(--navy); letter-spacing: -.01em; }
.iban-card__bank small { display: block; font-size: 13px; color: var(--muted-2); margin-top: 3px; }
.iban-card__accounts { display: grid; gap: 10px; }
.iban-row { display: flex; align-items: center; gap: 14px; }
.iban-row__cur { flex-shrink: 0; min-width: 52px; font-size: 11px; font-weight: 800; letter-spacing: .08em; color: var(--muted-2); border: 1px solid var(--line); padding: 5px 9px; border-radius: 7px; text-align: center; }
.iban-row__no { font-family: ui-monospace, 'Consolas', monospace; font-size: 15px; font-weight: 600; color: var(--ink); letter-spacing: .015em; }

/* IBAN kopyala butonu + geri bildirim */
.iban-copy { display: inline-flex; align-items: center; gap: 7px; margin-left: auto; flex-shrink: 0; border: 1px solid var(--line); border-radius: 9px; padding: 7px 12px; font-size: 13px; font-weight: 700; color: var(--muted-2); background: #fff; transition: border-color .2s ease, color .2s ease, background-color .2s ease; }
.iban-copy:hover { border-color: var(--navy); color: var(--navy); }
.iban-copy i { font-size: 14px; line-height: 1; }
.iban-copy.is-copied { border-color: #1E9E5A; color: #1E9E5A; background: rgba(30,158,90,.07); }
.iban-copy.is-failed { border-color: var(--red); color: var(--red); background: rgba(200,16,46,.07); }

/* Doküman satırı ikon renkleri (PDF / Word) */
.doc-row__ic--pdf { background: rgba(200,16,46,.08); color: var(--red); }
.doc-row__ic--doc { background: rgba(35,92,155,.08); color: var(--navy); }

/* Online bağış tutar seçimi */
.amount-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.amount-btn { border: 1px solid var(--line); border-radius: 12px; padding: 14px 8px; font-weight: 700; font-size: 15px; color: var(--navy); background: #fff; transition: border-color .25s ease, background-color .25s ease, color .25s ease, transform .2s ease; }
.amount-btn:hover { border-color: var(--navy); transform: translateY(-1px); }
.amount-btn.is-active { background: var(--red); border-color: var(--red); color: #fff; }

/* Gayrimenkul usul kartı */
.usul-card { position: relative; height: 100%; background: #fff; border: 1px solid var(--line); border-radius: 20px; padding: 34px 30px; box-shadow: 0 1px 2px rgba(20,60,106,.04); overflow: hidden; transition: transform .3s cubic-bezier(.2,.7,.3,1), box-shadow .3s ease, border-color .3s ease; }
.usul-card::before { content: ""; position: absolute; left: 0; right: 0; top: 0; height: 3px; background: linear-gradient(90deg, var(--navy), var(--navy-soft)); transform: scaleX(0); transform-origin: left; transition: transform .35s cubic-bezier(.2,.7,.3,1); }
.usul-card:hover { transform: translateY(-4px); border-color: transparent; box-shadow: 0 18px 44px rgba(20,60,106,.13); }
.usul-card:hover::before { transform: scaleX(1); }
.usul-card__ic { display: inline-grid; place-items: center; width: 52px; height: 52px; border-radius: 15px; background: rgba(35,92,155,.07); color: var(--navy); font-size: 22px; margin-bottom: 18px; transition: background-color .3s ease, color .3s ease; }
.usul-card:hover .usul-card__ic { background: var(--navy); color: #fff; }
.usul-card__tag { display: inline-block; font-size: 11px; font-weight: 800; letter-spacing: .1em; color: var(--muted-2); border: 1px solid var(--line); padding: 5px 11px; border-radius: 999px; margin-bottom: 12px; text-transform: uppercase; }
.usul-card__title { font-family: var(--serif); font-weight: 700; font-size: 21px; color: var(--navy); margin-bottom: 12px; letter-spacing: -.01em; }
.usul-card__text { font-size: 15px; line-height: 1.75; color: var(--muted); }

/* Destek kartı */
.help-card { display: flex; align-items: center; gap: 20px; background: #fff; border: 1px solid var(--line); border-radius: 18px; padding: 24px 28px; margin-top: 24px; transition: border-color .3s ease, box-shadow .3s ease; }
.help-card:hover { border-color: transparent; box-shadow: 0 16px 36px rgba(20,60,106,.10); }
.help-card--center { max-width: 620px; margin: 44px auto 0; }
.help-card > i { flex-shrink: 0; width: 52px; height: 52px; border-radius: 50%; background: rgba(200,16,46,.07); color: var(--red); display: grid; place-items: center; font-size: 22px; }
.help-card span { display: block; font-size: 14px; color: var(--muted-2); margin-bottom: 3px; }
.help-card a { font-family: var(--serif); font-weight: 800; font-size: 23px; color: var(--navy); letter-spacing: -.01em; transition: color .2s ease; }
.help-card a:hover { color: var(--red); }

/* ============================================================
   RESPONSIVE — büyükten küçüğe (1280 · 1200 · 1199 · 992 · 768 · 576)
   Menü kırılımları ayrı tutulur: 8 öğelik menü tek satıra ancak
   1280 altında sıkışık ölçülerle, 1200 altında ise hiç sığmaz.
   1199 eşiği app.js'teki isMobile() ile aynı olmalıdır.
   ============================================================ */
/* logo yüksekliği aralıkları — üst üste binmesin diye alt sınırlar açıkça verildi */
@media (min-width: 1281px) and (max-width: 1400px) { :root { --logo-h: 84px; } }
@media (min-width: 1200px) and (max-width: 1280px) { :root { --logo-h: 68px; } }
/* hamburger aralığı: bol yer var, logo yeniden büyür (sınırdan uzak tutuldu) */
@media (max-width: 1100px) { :root { --logo-h: 84px; --header-h: 84px; } }

@media (max-width: 1200px) {
  .hero { height: 640px; } .hero .hero__slider { height: 640px; }
  .hero .hero__title { font-size: 50px; }
  .sec-head__title { font-size: 34px; }
  .about { gap: 48px; padding: 80px 24px 84px; }
  .site-footer .footer__cols { grid-template-columns: 1.4fr 1fr 1.1fr; gap: 30px 40px; }
  .site-footer .footer__form input { width: 220px; }
}

/* Hamburger menü — 1199 altı (app.js isMobile() ile eşleşir) */
@media (max-width: 1199px) {
  #navbar .navbar__toggle { display: flex; }
  #navbar .navbar__donate { margin-left: auto; margin-right: 10px; padding: 11px 18px; font-size: 15px; }
  #navbar .menu { position: absolute; top: calc(100% + 10px); left: 0; right: 0; flex-direction: column; align-items: stretch; gap: 2px; background: #fff; border-radius: 18px; padding: 10px; box-shadow: 0 24px 60px rgba(20,60,106,.22); max-height: calc(100vh - 150px); overflow-y: auto; display: none; }
  #navbar.is-open .menu { display: flex; animation: menuDrop .25s ease both; }
  #navbar .menu > li > a { justify-content: space-between; padding: 14px 16px; font-size: 16px; border-radius: 12px; }
  #navbar .menu > li.is-expanded > a { color: var(--red); background: var(--cream); }
  #navbar .menu > li.is-expanded > a .chev { transform: rotate(180deg); }
  #navbar .menu > li > a .chev { transition: transform .25s ease; }
  #navbar .menu .panel { position: static; width: auto; opacity: 1; visibility: visible; pointer-events: auto; box-shadow: none; border-top: 0; background: transparent; display: none; padding: 4px 6px 10px; }
  #navbar .menu .panel::before { display: none; }
  #navbar .menu > li.is-expanded .panel { display: flex; flex-direction: column; gap: 2px; }
  #navbar .menu > li:hover .panel { opacity: 1; visibility: visible; }
  #navbar .menu .panel--drop { min-width: 0; padding: 2px 0 8px; }
  #navbar .menu .panel--drop > a { display: block; padding: 11px 16px 11px 26px; font-size: 15px; border-radius: 8px; }
  #navbar .menu .panel .item { padding: 10px 12px; }
  #navbar .menu .panel .item__children { display: none; }   /* mobilde alt-liste gizli, detay sayfada */
}

@media (max-width: 992px) {
  .topbar .topbar__decor, .topbar .topbar__ata, .topbar .topbar__flag, .topbar .topbar__sweep { display: none; }
  .topbar .topbar__inner::before { display: none; }
  .topbar .topbar__inner { --tb-metin: 100%; }
  .topbar .topbar__quote { font-size: 14px; }

  .hero { height: auto; min-height: 560px; } .hero .hero__slider { position: relative; height: auto; min-height: 560px; } .hero .hero__slide { min-height: 560px; }
  .hero .hero__inner { padding: calc(var(--header-h) + 62px) 24px 130px; }
  .hero .hero__title { font-size: 40px; } .hero .hero__content { max-width: 560px; gap: 18px; }
  .hero .hero__arrow { display: none; } .hero .hero__dots { bottom: 40px; }

  .about { padding: 72px 0 76px; }
  .about .about__media { max-width: 560px; }

  .donate .donate__band { flex-direction: column; align-items: flex-start; gap: 26px; padding: 36px 32px; }
  .donate .donate__band-actions { align-items: flex-start; width: 100%; }

  .feat { grid-template-columns: 1fr; --feat-media-h: 340px; }
  .feat__list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }

  .site-footer .footer__news-inner { flex-direction: column; align-items: flex-start; gap: 20px; }
  .site-footer .footer__form { width: 100%; } .site-footer .footer__form input { flex: 1; width: auto; }
  .site-footer .footer__cols { grid-template-columns: repeat(2, 1fr); gap: 30px; }
  .site-footer .footer__brand { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
  :root { --logo-h: 64px; --header-h: 72px; }
  .feat { --feat-media-h: 260px; }
  .feat__list { grid-template-columns: 1fr; }
  .block-head { flex-wrap: wrap; gap: 16px; }
  .block-head__title { font-size: 28px; }
  .topbar .topbar__sign img { height: 28px; }
  .sec-head__title { font-size: 29px; }
  .sec-head__accent i:first-child { width: 72px; } .sec-head__accent i:last-child { width: 36px; }
  .hero .hero__title { font-size: 34px; } .hero .hero__desc { font-size: 16px; } .hero .hero__inner { padding: calc(var(--header-h) + 52px) 18px 110px; }
  .about .about__stats { grid-template-columns: repeat(2, 1fr); gap: 18px 14px; }
  /* right: 12px → Bootstrap sütununun negatif marjı yüzünden ekran dışına taşmasın */
  .about .about__float { width: 148px; height: 148px; padding: 9px; right: 12px; }
  .about__anniv { width: 118px; height: 118px; left: -8px; bottom: -34px; top: auto; }
  .site-footer .footer__cols { grid-template-columns: 1fr 1fr; }
  .container { padding-left: 18px; padding-right: 18px; }
}

@media (max-width: 568px) {
  :root { --logo-h: 46px; --header-h: 66px; }
  .feat { --feat-media-h: 205px; }
  .feat__body { padding: 18px 18px 24px; }
  .feat .feat__main .feat__dots { padding: 0 18px; margin-top: 20px; }
  .feat__title { font-size: 20px; }
  .fitem { gap: 12px; }
  .fitem__media { width: 118px; height: 76px; }
  .fitem__title { font-size: 15.5px; }
  .block-head__title { font-size: 24px; }
  #navbar .navbar__donate { padding: 11px; font-size: 0; gap: 0; }
  #navbar .navbar__donate i { font-size: 16px; }
  .topbar .topbar__inner { min-height: 0; padding: 10px 16px; } .topbar .topbar__quote { font-size: 13px; line-height: 1.45; }
  .sec-head__title { font-size: 25px; } .sec-head__sub { font-size: 16px; }
  .hero { min-height: 500px; } .hero .hero__slider, .hero .hero__slide { min-height: 500px; }
  .hero .hero__inner { padding: calc(var(--header-h) + 44px) 16px 96px; } .hero .hero__title { font-size: 29px; } .hero .hero__desc { font-size: 15px; }
  .hero .hero__actions { flex-direction: column; align-items: stretch; } .hero .hero__actions .btn-el { justify-content: center; }
  .hero .hero__dots { bottom: 26px; }
  .about { padding: 56px 0 60px; } .about .stat__num { font-size: 24px; }
  .donate .donate__band { padding: 28px 22px; } .donate .donate__band-text h3 { font-size: 28px; }
  .container { padding-left: 16px; padding-right: 16px; }
  .donate .donate__band-actions .btn-el { width: 100%; justify-content: center; } .donate .donate__sms { align-self: stretch; justify-content: center; }
  .corners .corner { height: 280px; }
  .fab { right: 16px; bottom: 16px; } .fab .fab__toggle { width: 56px; height: 56px; }
  .site-footer .footer__cols { grid-template-columns: 1fr; gap: 28px; }
  .site-footer .footer__bottom-inner { grid-template-columns: 1fr; justify-items: center; gap: 12px; text-align: center; }
  .site-footer .footer__credit { justify-self: center; }
  .site-footer .footer__bottom-inner nav { gap: 18px; flex-wrap: wrap; justify-content: center; }
}

/* ---- İç sayfalar: responsive (büyükten küçüğe) ---- */
@media (max-width: 1200px) {
  .page-hero { padding: calc(var(--header-h) + 56px) 0 64px; }
  .page-hero__title { font-size: 40px; }
  .gallery { grid-auto-rows: 180px; }
}

@media (max-width: 992px) {
  .page-hero { padding: calc(var(--header-h) + 46px) 0 56px; }
  .page-hero__title { font-size: 36px; }
  .inner-lead, .detail-intro { padding-top: 64px; }
  .inner-lead__media, .detail-intro__media { max-width: 560px; margin: 0 auto; }
  .stat-band { grid-template-columns: repeat(2, 1fr); gap: 20px 24px; }
  .stat-band .stat:nth-child(2) { border-right: 0; }
  .inner-cta__band { flex-direction: column; align-items: flex-start; text-align: left; padding: 36px 32px; }
  .gallery { grid-template-columns: repeat(3, 1fr); }
  .list-sec { padding-top: 64px; }
  .contact-grid { grid-template-columns: 1fr; gap: 34px; }
  .donate-opts { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .page-hero { padding: calc(var(--header-h) + 38px) 0 46px; }
  .page-hero__title { font-size: 30px; }
  .page-hero__sub { font-size: 16px; }
  .timeline-sec, .mission-sec { padding: 56px 0 64px; }
  .detail-quote { padding: 22px 24px 22px 24px; } .detail-quote i { display: none; }
  .detail-quote p { font-size: 18px; }
  .gallery { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 160px; gap: 10px; }
  .form-row { grid-template-columns: 1fr; }
  .ann-row { flex-wrap: wrap; gap: 8px 14px; }
  .ann-row__title { order: 3; flex-basis: 100%; }
  .ann-row__ic { display: none; }
  .org__row { flex-direction: column; align-items: stretch; width: 100%; max-width: 360px; }
  .contact-map iframe { height: 300px; }
  .vm-block { padding: 28px 24px; }
  .vm-text__title { font-size: 26px; }
  .article-lead { font-size: 17px; }
  .article-cover { margin-bottom: 20px; }
  .ilan-card { padding: 26px 24px; }
  .ilan-card__title { font-size: 20px; }
  .iban-list, .iban-list--wide { grid-template-columns: 1fr; }
  .sms-panel { grid-template-columns: 1fr; }
  .sms-panel__media { padding: 30px 24px 0; }
  .sms-panel__media img { max-width: 250px; }
  .sms-panel__body { padding: 32px 28px 36px; }
  .sms-panel__title { font-size: 25px; }
  .info-panel { padding: 28px 24px; }
  .law-card { padding: 24px 22px; }
  .gm-photo { max-width: 420px; margin: 0 auto; }
  .past-sec { padding-bottom: 64px; }
}

@media (max-width: 576px) {
  .page-hero { padding: calc(var(--header-h) + 30px) 0 40px; }
  .page-hero__title { font-size: 26px; }
  .crumbs { font-size: 13px; }
  .stat-band { grid-template-columns: 1fr 1fr; padding: 30px 20px; }
  .stat-band .stat__num { font-size: 27px; }
  .inner-cta__band { padding: 30px 24px; } .inner-cta__text h3 { font-size: 25px; }
  .inner-cta__actions { width: 100%; } .inner-cta__actions .btn-el { width: 100%; justify-content: center; }
  .tl-item { padding-left: 52px; } .timeline::before { left: 17px; } .tl-item__marker { left: 8px; }
  .gallery { grid-auto-rows: 140px; }
  .doc-row { flex-wrap: wrap; }
  .doc-row__dl { margin-left: 60px; }
  .bank-row { flex-direction: column; gap: 4px; }
  .quote-card { padding: 26px 24px 22px 56px; } .quote-card p { font-size: 17px; }
  .form-card { padding: 24px; }
  .ratio-bar { height: auto; flex-direction: column; }
  .ratio-bar__fill { width: 100%; padding: 10px 8px; }
  .gm-photo__cap { padding: 48px 18px 18px; } .gm-photo__name { font-size: 18px; }
  .past-card__name { font-size: 15px; } .past-card__body { padding: 16px 14px 18px; }
  .ilan-card__price { width: 100%; justify-content: space-between; }
  .notice-box { padding: 18px 20px; }
  .amount-grid { grid-template-columns: repeat(2, 1fr); }
  .iban-row { flex-wrap: wrap; gap: 6px 10px; }
  .iban-row__no { font-size: 14px; }
  .iban-copy { margin-left: 0; padding: 6px 10px; font-size: 12px; }
  .iban-copy span { display: none; }
  .iban-card { padding: 22px 20px; }
  .sms-code { gap: 12px; padding: 13px 18px; } .sms-code__kw, .sms-code__no { font-size: 20px; }
  .sms-panel__body { padding: 28px 20px 32px; }
  .help-card { flex-direction: column; text-align: center; gap: 12px; }
  .donate-opt--link { padding: 28px 24px 26px; }
}

/* ============================================================
   DÖNÜŞÜMLÜ İÇERİK BÖLÜMÜ (alt_section) — görsel carousel'i + metin
   ============================================================ */
.alt-sec { padding: 56px 0; }
.alt-sec:nth-of-type(even) { background: #F5F8FC; }
.alt-sec__row { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.alt-sec__row--ters .alt-sec__media { order: 2; }
.alt-sec__media { min-width: 0; }
.alt-sec__body { min-width: 0; display: flex; flex-direction: column; gap: 18px; }
.alt-sec__text { margin: 0; font-size: 16.5px; line-height: 1.8; color: var(--muted); }

/* carousel: swiper kökü grid hücresinde şişmesin diye genişlik sabit */
.alt-carousel { position: relative; min-width: 0; width: 100%; max-width: 100%; border-radius: 18px; overflow: hidden; box-shadow: 0 20px 46px rgba(20,60,106,.16); }
.alt-carousel .swiper-slide { aspect-ratio: 4 / 3; }
.alt-carousel .swiper-slide img { width: 100%; height: 100%; object-fit: cover; display: block; }
.alt-carousel__arrow { position: absolute; top: 50%; transform: translateY(-50%); z-index: 3; width: 42px; height: 42px; border: 0; border-radius: 50%; background: rgba(255,255,255,.94); color: var(--navy); display: flex; align-items: center; justify-content: center; font-size: 17px; box-shadow: 0 8px 20px rgba(20,60,106,.22); transition: background-color .25s ease, color .25s ease; }
.alt-carousel__arrow:hover { background: var(--red); color: #fff; }
.alt-carousel__arrow--prev { left: 14px; }
.alt-carousel__arrow--next { right: 14px; }
/* özgüllük: swiper.css'in .swiper-horizontal > .swiper-pagination-bullets kuralını geçmeli */
.alt-carousel .alt-carousel__dots { position: absolute; left: 0; right: 0; bottom: 14px; width: auto; z-index: 3; display: flex; justify-content: center; align-items: center; gap: 7px; }
.alt-carousel .alt-carousel__dots .swiper-pagination-bullet { width: 8px; height: 8px; margin: 0 !important; background: rgba(255,255,255,.7); opacity: 1; transition: width .25s ease, background-color .25s ease; }
.alt-carousel .alt-carousel__dots .swiper-pagination-bullet-active { width: 22px; border-radius: 999px; background: var(--red); }

@media (max-width: 992px) {
  .alt-sec { padding: 44px 0; }
  .alt-sec__row { grid-template-columns: 1fr; gap: 28px; }
  .alt-sec__row--ters .alt-sec__media { order: 0; }   /* mobilde görsel hep üstte */
}

/* ============================================================
   İŞTİRAKLER
   ============================================================ */
.ist-list { display: flex; flex-direction: column; gap: 18px; max-width: 980px; margin: 44px auto 0; }
.ist-card { display: flex; gap: 22px; background: #fff; border: 1px solid var(--line); border-radius: 18px; padding: 26px 28px; box-shadow: 0 14px 34px rgba(20,60,106,.08); transition: transform .25s ease, box-shadow .25s ease; }
.ist-card:hover { transform: translateY(-3px); box-shadow: 0 20px 44px rgba(20,60,106,.14); }
.ist-card__ic { flex-shrink: 0; width: 58px; height: 58px; border-radius: 50%; display: grid; place-items: center; font-size: 24px; color: var(--red); background: rgba(200,16,46,.08); }
.ist-card__body { min-width: 0; }
.ist-card__title { font-family: var(--serif); font-weight: 700; font-size: 21px; line-height: 1.35; color: var(--navy); margin: 0 0 10px; }
.ist-card__meta { display: flex; flex-wrap: wrap; gap: 8px 22px; margin-bottom: 12px; font-size: 14px; color: var(--muted-2); }
.ist-card__meta i { color: var(--red); margin-right: 6px; }
.ist-card__meta b { color: var(--navy); font-weight: 700; }
.ist-card__desc { margin: 0; font-size: 15.5px; line-height: 1.75; color: var(--muted); }

/* menüdeki dış bağlantı işareti */
#navbar .menu .panel--drop .panel__dis { font-size: 11px; opacity: .55; margin-left: 2px; }

@media (max-width: 576px) {
  .ist-card { flex-direction: column; gap: 14px; padding: 22px 20px; }
  .ist-card__title { font-size: 18.5px; }
}
