/* =========================================================
   COP31 Landing — Hacettepe Üniversitesi
   Statik site stilleri (FTP ile yüklenebilir, build gerekmez)
   ========================================================= */

/* ---------- Temel ---------- */
* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: rgba(255,255,255,0.55) rgba(255,255,255,0.12);
}

body {
  margin: 0;
  padding: 0;
  background: #F6F8F3;
  color: #14301F;
  font-family: 'Instrument Sans', sans-serif;
  -webkit-font-smoothing: antialiased;
}

a { color: #1C5E43; text-decoration: none; }
a:hover { color: #14301F; }
::selection { background: #CDE3D2; }

::-webkit-scrollbar { width: 9px; height: 9px; }
::-webkit-scrollbar-track { background: rgba(255,255,255,0.12); }
::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.5); border-radius: 999px; border: 2px solid transparent; background-clip: padding-box; }
::-webkit-scrollbar-thumb:hover { background: rgba(255,255,255,0.72); }

img { max-width: 100%; }

.container { max-width: 1240px; margin: 0 auto; }

/* ---------- Animasyonlar ---------- */
@keyframes fadeUp { from { opacity: 0; transform: translateY(26px); } to { opacity: 1; transform: none; } }
@keyframes fadeDown { from { opacity: 0; transform: translateY(-18px); } to { opacity: 1; transform: none; } }
/* Header açılış animasyonu: transform kullanmaz — böylece fixed alt öğeler (mobil menü paneli)
   viewport'a göre konumlanır (transform'lu öğe, fixed çocukları için containing block olur). */
@keyframes headerReveal { from { opacity: 0; } to { opacity: 1; } }
@keyframes heroZoom { from { transform: scale(1.07); } to { transform: scale(1); } }

.anim-fadeup { animation: fadeUp 0.9s cubic-bezier(0.22,1,0.36,1) both; }
.anim-fadeup.d-1 { animation-duration: 0.8s; animation-delay: 0.15s; }
.anim-fadeup.d-2 { animation-delay: 0.28s; }
.anim-fadeup.d-3 { animation-delay: 0.42s; }
.anim-fadeup.d-4 { animation-delay: 0.56s; }
.anim-fadeup.d-5 { animation-duration: 1s; animation-delay: 0.75s; }

/* Scroll reveal (JS, IntersectionObserver) */
.reveal-init {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.22,1,0.36,1), transform 0.7s cubic-bezier(0.22,1,0.36,1);
}
.reveal-in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-delay: 0ms !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
  .p-gallery { scroll-behavior: auto !important; }
  .reveal-init { opacity: 1; transform: none; }
}

/* ---------- Ortak bileşenler ---------- */
.eyebrow { font-size: 12px; font-weight: 700; letter-spacing: 0.16em; color: #1C5E43; }
.eyebrow-light { color: #8FBF9F; }

.btn {
  display: inline-block;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  transition: transform 0.3s ease, background 0.3s ease, border-color 0.3s ease;
  /* .btn ilk kez <button> üzerinde de kullanılıyor (Detayları Gör vb.) —
     tarayıcı varsayılan buton görünümünü sıfırla, aksi halde native gri
     arkaplan/kenarlık btn-ghost/btn-solid stillerinin üzerine biner. */
  background: none;
  /* Varsayılan dolgu: yalnızca renk tanımlayan varyantlar (btn-solid-dark,
     btn-ghost-dark) dolgusuz kalmasın. Boyut veren sınıflar bunu ezer. */
  padding: 12px 26px;
  line-height: 1.2;
  /* Şeffaf 1px kenarlık: dolu (btn-solid) ve çerçeveli (btn-ghost) butonlar
     yan yana kullanıldığında aynı yüksekliğe otursun. */
  border: 1px solid transparent;
  font-family: inherit;
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
}
.btn-lg { padding: 15px 32px; font-size: 15px; }
.btn-solid { padding: 10px 22px; background: #FFFFFF; color: #14301F; }
.btn-solid:hover { background: #DFF0E2; color: #14301F; }
.btn-solid.btn-lg { padding: 15px 32px; }
.btn-solid.btn-lg:hover { transform: translateY(-2px); }
.btn-ghost { padding: 15px 32px; border-color: rgba(255,255,255,0.5); color: #FFFFFF; }
.btn-ghost:hover { border-color: #FFFFFF; background: rgba(255,255,255,0.1); color: #FFFFFF; transform: translateY(-2px); }

.badge {
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  color: #FFFFFF;
}
.badge-outline { border: 1px solid rgba(255,255,255,0.4); letter-spacing: 0.12em; }
.badge-glass { background: rgba(255,255,255,0.16); backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px); letter-spacing: 0.06em; }

/* =========================================================
   Hero + Manifesto (paylaşılan arka plan)
   ========================================================= */
.hero-wrap { position: relative; overflow: hidden; }

.hero-bg {
  position: absolute;
  inset: 0;
  animation: heroZoom 16s cubic-bezier(0.22,1,0.36,1) both;
  transform-origin: 50% 30%;
}
.hero-bg img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ---------- Hero ---------- */
.hero { position: relative; height: 820px; overflow: hidden; }

.scrim { position: absolute; inset: 0; pointer-events: none; }
.scrim-h { background: linear-gradient(90deg, rgba(10,32,20,0.72) 0%, rgba(10,32,20,0.42) 42%, rgba(10,32,20,0.10) 70%, rgba(10,32,20,0.28) 100%); }
.scrim-v { background: linear-gradient(180deg, rgba(10,32,20,0.45) 0%, rgba(10,32,20,0) 24%, rgba(10,32,20,0) 62%, rgba(10,32,20,0.55) 100%); }

/* ---------- Header ---------- */
.site-header {
  position: absolute;
  top: 0; left: 0; right: 0;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 26px 44px;
  animation: headerReveal 0.8s ease both;
}

.brand { display: flex; align-items: center; gap: 14px; flex-shrink: 0; }
.brand-link { display: flex; align-items: center; text-decoration: none; color: inherit; }
.brand-logo { height: 38px; width: auto; display: block; }
.brand-logo-cop31 { height: 46px; }
.brand-divider { width: 1px; height: 32px; background: rgba(255,255,255,0.55); flex-shrink: 0; }
.brand-text { display: flex; flex-direction: column; gap: 2px; max-width: 150px; }
.brand-title { font-size: 14px; font-weight: 700; letter-spacing: 0.08em; color: #FFFFFF; }
.brand-subtitle { font-size: 11px; line-height: 1.3; letter-spacing: 0.1em; color: rgba(255,255,255,0.72); text-transform: uppercase; }

.main-nav { display: flex; align-items: center; gap: 20px; }
.main-nav > a { font-size: 14px; font-weight: 500; color: rgba(255,255,255,0.85); }
.main-nav > a:hover { color: #FFFFFF; }
.main-nav .nav-cta { display: none; }
.nav-close { display: none; }
.nav-backdrop { display: none; }
body.nav-open { overflow: hidden; }

.header-actions { display: flex; align-items: center; gap: 16px; flex-shrink: 0; }

.lang-toggle {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  border: 1px solid rgba(255,255,255,0.35);
  border-radius: 999px;
  overflow: hidden;
  font-size: 12px;
  font-weight: 600;
}
/* Etkin olmayan dil bir bağlantıdır (js/i18n.js üretir), etkin olan
   düz metindir; ikisi de aynı görünür. */
.lang {
  padding: 6px 14px;
  color: rgba(255,255,255,0.9);
  cursor: pointer;
  white-space: nowrap;
  text-decoration: none;
  transition: background-color .18s ease, color .18s ease;
}
a.lang:hover, a.lang:focus-visible { background: rgba(255,255,255,0.16); color: #FFFFFF; }
a.lang:focus-visible { outline: 2px solid #FFFFFF; outline-offset: 2px; }
.lang.active { background: #FFFFFF; color: #14301F; cursor: default; }

/* İngilizce sürüm yayında değilken, panelden açılan "?onizleme=1"
   adresinde köşede duran şerit (js/i18n.js üretir). Ziyaretçi bunu
   hiç görmez: yayın kapalıyken /en/ adresleri Türkçesine gider. */
.en-onizleme {
  position: fixed;
  left: 16px;
  bottom: 16px;
  z-index: 900;
  max-width: calc(100vw - 32px);
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(20,48,31,0.92);
  color: #FFFFFF;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .01em;
  box-shadow: 0 6px 20px rgba(0,0,0,0.25);
  pointer-events: none;
}

/* Hamburger (yalnızca mobil) */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.35);
  border-radius: 12px;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: #FFFFFF;
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero içerik ---------- */
.hero-content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 56px 56px;
  pointer-events: none;
}
.hero-content a, .hero-content button, .hero-badges, .hero-ctas, .hero-stats { pointer-events: auto; }

.hero-copy { display: flex; flex-direction: column; gap: 26px; max-width: 700px; }

.hero-badges { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }

.hero h1 {
  margin: 0;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 500;
  font-size: clamp(38px, 6vw, 68px);
  line-height: 1.06;
  letter-spacing: -0.02em;
  color: #FFFFFF;
  text-wrap: balance;
}
.hero h1 .accent { color: #A9E0B8; }

.hero-lead {
  margin: 0;
  font-size: 18px;
  line-height: 1.6;
  color: rgba(255,255,255,0.88);
  max-width: 540px;
  text-wrap: pretty;
}

.hero-ctas { display: flex; align-items: center; gap: 16px; margin-top: 4px; flex-wrap: wrap; }

.hero-stats {
  display: flex;
  gap: 56px;
  margin-top: 48px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.22);
  max-width: 640px;
  flex-wrap: wrap;
}
.stat { display: flex; flex-direction: column; gap: 4px; }
.stat-num { font-family: 'Space Grotesk', sans-serif; font-size: 38px; font-weight: 500; color: #FFFFFF; }
.stat-label { font-size: 13px; color: rgba(255,255,255,0.75); letter-spacing: 0.04em; }

/* ---------- Manifesto ---------- */
.manifesto { position: relative; overflow: hidden; padding: 96px 56px; }
.manifesto-overlay {
  position: absolute;
  inset: 0;
  background: rgba(20,48,31,0.62);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  pointer-events: none;
}
.manifesto-inner {
  position: relative;
  z-index: 1;
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 36px;
  align-items: flex-start;
}
.manifesto-quote {
  margin: 0;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 300;
  font-size: clamp(24px, 3.6vw, 37px);
  line-height: 1.38;
  color: #F6F8F3;
  text-wrap: balance;
}
.link-more {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #8FBF9F;
  font-size: 15px;
  font-weight: 600;
  border-bottom: 1px solid #3D5C48;
  padding-bottom: 4px;
}
.link-more span { font-size: 18px; }
.link-more:hover { color: #F6F8F3; }

/* =========================================================
   Program
   ========================================================= */
.program {
  padding: 96px 56px;
  background: linear-gradient(180deg, #F6F8F3 0%, #E9F1E7 100%);
}
.program .container { display: flex; flex-direction: column; gap: 48px; }

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
}
.section-title { display: flex; flex-direction: column; gap: 12px; }
.section-title h2 {
  margin: 0;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 400;
  font-size: clamp(30px, 4.5vw, 44px);
  color: #14301F;
}
.link-all {
  flex-shrink: 0;
  font-size: 15px;
  font-weight: 600;
  color: #1C5E43;
  border-bottom: 1px solid #BBD2BF;
  padding-bottom: 4px;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
/* Bir veya iki kart varken üç sütunluk ızgarada kartlar sola yapışık
   kalır; bu durumda sütun sayısı içeriğe uyar ve blok ortalanır. */
.card-grid.is-sparse {
  grid-template-columns: repeat(auto-fit, minmax(0, 400px));
  justify-content: center;
}

.card {
  display: flex;
  flex-direction: column;
  background: rgba(255,255,255,0.50);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.75);
  border-radius: 26px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(20,48,31,0.05);
  transition: transform 0.35s ease, box-shadow 0.35s ease, background 0.35s ease;
}
.card:hover {
  background: rgba(255,255,255,0.68);
  box-shadow: 0 18px 44px rgba(20,48,31,0.10);
  transform: translateY(-6px);
}

/* Görsel yüklenene (ya da yedeğine geçene) kadar boş beyazlık yerine
   sakin bir zemin görünür */
.card-media { position: relative; height: 300px; background: #E4EDE3; }
.card-media img { width: 100%; height: 100%; object-fit: cover; display: block; }

.card-tags {
  position: absolute;
  top: 16px; left: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.tag {
  padding: 6px 13px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
}
.tag-workshop { background: #E3EEE2; color: #1C5E43; }
.tag-webinar { background: #E1ECF2; color: #2B5D77; }
.tag-mode {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  letter-spacing: 0.04em;
}
.tag-mode .dot { width: 7px; height: 7px; border-radius: 999px; }
.mode-inperson { color: #1C5E43; }
.mode-inperson .dot { background: #1C5E43; }
.mode-online { color: #2B5D77; }
.mode-online .dot { background: #2B5D77; }

.card-body {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 26px 28px 30px;
}
.card-body h3 {
  margin: 0;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 500;
  font-size: 23px;
  line-height: 1.28;
  color: #14301F;
}
.card-body > p { margin: 0; font-size: 14px; line-height: 1.65; color: #4A6153; }

.card-meta {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 2px;
  padding-top: 18px;
  border-top: 1px solid #DCE7DA;
}
.meta-row { display: flex; align-items: center; gap: 10px; font-size: 13px; color: #2C4535; }
.meta-row svg { flex-shrink: 0; }
.meta-row strong { font-weight: 600; }

/* =========================================================
   Ana sayfa — ayrı, kompakt içerik vitrinleri
   ========================================================= */
.showcase {
  --showcase-accent: #1C5E43;
  --showcase-tint: #E3EEE2;
  padding: 60px 56px;
  background: #F6F8F3;
  border-top: 1px solid rgba(20,48,31,0.08);
}
.showcase-webinar { --showcase-accent: #2B5D77; --showcase-tint: #E1ECF2; }
.showcase-workshop { --showcase-accent: #1C5E43; --showcase-tint: #E3EEE2; background: #EEF4EC; }
.showcase-project { --showcase-accent: #5B4172; --showcase-tint: #EDE6F2; background: #F5F2F6; }

.showcase .container {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.showcase-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 28px;
}
.showcase-title { display: flex; flex-direction: column; gap: 8px; min-width: 0; }
.showcase .eyebrow { color: var(--showcase-accent); }
.showcase-heading-line { display: flex; align-items: center; flex-wrap: wrap; gap: 12px; }
.showcase-heading-line h2 {
  margin: 0;
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(27px, 3.3vw, 36px);
  line-height: 1.08;
  font-weight: 500;
  color: #14301F;
}
.showcase-count {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--showcase-tint);
  color: var(--showcase-accent);
  font-size: 11px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.04em;
  white-space: nowrap;
}
.showcase .link-all { color: var(--showcase-accent); }
.showcase-empty { margin: 0; color: #66786B; font-size: 14px; }

.compact-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.compact-card-grid.is-sparse { grid-template-columns: minmax(0, 620px); }

.compact-card {
  display: grid;
  grid-template-columns: 156px minmax(0, 1fr);
  min-height: 156px;
  overflow: hidden;
  border: 1px solid rgba(20,48,31,0.10);
  border-radius: 20px;
  background: rgba(255,255,255,0.72);
  color: inherit;
  text-decoration: none;
  box-shadow: 0 7px 24px rgba(20,48,31,0.045);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease, background 0.28s ease;
}
a.compact-card:hover {
  transform: translateY(-3px);
  border-color: color-mix(in srgb, var(--showcase-accent) 30%, transparent);
  background: rgba(255,255,255,0.92);
  box-shadow: 0 13px 32px rgba(20,48,31,0.09);
}
a.compact-card:focus-visible { outline: 3px solid var(--showcase-accent); outline-offset: 3px; }

.compact-card-media {
  position: relative;
  min-height: 156px;
  overflow: hidden;
  background: var(--showcase-tint);
}
.compact-card-media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.compact-card-media.is-empty {
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 25% 25%, rgba(255,255,255,0.72), transparent 42%),
    linear-gradient(145deg, var(--showcase-tint), #D7E4D8);
}
.compact-media-mark {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 48px;
  font-weight: 500;
  color: var(--showcase-accent);
  opacity: 0.34;
}
.compact-card-tags {
  position: absolute;
  top: 10px;
  left: 10px;
  right: 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.compact-card-tags .tag { padding: 5px 9px; font-size: 9px; }

.compact-card-body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 7px;
  min-width: 0;
  padding: 16px 18px 15px;
}
.compact-card-body h3 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  margin: 0;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 18px;
  line-height: 1.25;
  font-weight: 600;
  color: #14301F;
}
.compact-card-body > p {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  margin: 0;
  font-size: 12.5px;
  line-height: 1.45;
  color: #5A6C5F;
}
.compact-card-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px 14px;
  margin-top: auto;
  min-width: 0;
}
.compact-card-meta > span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-width: 0;
  color: #405448;
  font-size: 11.5px;
  line-height: 1.25;
}
.compact-card-meta svg { width: 14px; height: 14px; flex: 0 0 auto; }
.compact-card-meta strong { font-weight: 600; }
.compact-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--showcase-accent);
  font-size: 12px;
  line-height: 1;
  font-weight: 700;
}
.compact-card-cta > span { transition: transform 0.25s ease; }
a.compact-card:hover .compact-card-cta > span { transform: translateX(3px); }

@media (max-width: 900px) {
  .showcase { padding: 52px 32px; }
  .compact-card-grid,
  .compact-card-grid.is-sparse { grid-template-columns: minmax(0, 1fr); }
}

@media (max-width: 720px) {
  .showcase { padding: 44px 20px; }
  .showcase .container { gap: 22px; }
  .showcase-head { align-items: flex-start; flex-direction: column; gap: 14px; }
  .showcase-heading-line h2 { font-size: 27px; }
  .compact-card-grid { gap: 12px; }
  .compact-card { grid-template-columns: 112px minmax(0, 1fr); min-height: 142px; border-radius: 17px; }
  .compact-card-media { min-height: 142px; }
  .compact-card-body { padding: 14px 14px 13px; }
  .compact-card-body h3 { font-size: 16px; }
  .compact-card-body > p { -webkit-line-clamp: 1; }
}

@media (max-width: 480px) {
  .compact-card { grid-template-columns: 100px minmax(0, 1fr); }
  .compact-card-tags .tag-mode { display: none; }
  .compact-card-meta { gap: 5px 10px; }
}

/* =========================================================
   Ana sayfa — haber vitrini

   Etkinlik kartlarından ayrı bir editoryal hiyerarşi kullanır:
   öne çıkan haber büyük manşet, kalanlar tarih/kategori odaklı akıştır.
   ========================================================= */
.home-news {
  padding: 78px 56px 82px;
  overflow: hidden;
  background:
    radial-gradient(circle at 88% 4%, rgba(111,177,132,.18), transparent 31%),
    #14301F;
  color: #fff;
}
.home-news .container {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.home-news-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 28px;
}
.home-news-title { display: flex; flex-direction: column; gap: 9px; min-width: 0; }
.home-news .eyebrow { color: #9BD3AB; }
.home-news-heading-line { display: flex; align-items: center; flex-wrap: wrap; gap: 13px; }
.home-news-heading-line h2 {
  margin: 0;
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(32px, 4vw, 45px);
  line-height: 1.04;
  font-weight: 500;
  color: #fff;
}
.home-news-count {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 5px 11px;
  border: 1px solid rgba(190,232,201,.24);
  border-radius: 999px;
  background: rgba(190,232,201,.09);
  color: #C9E8D1;
  font-size: 11px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: .05em;
}
.home-news-all {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding-bottom: 4px;
  border-bottom: 1px solid rgba(201,232,209,.42);
  color: #D6ECDD;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}
.home-news-all span { transition: transform .25s ease; }
.home-news-all:hover span { transform: translateX(4px); }
.home-news-empty { margin: 0; color: #C9D8CD; }

.home-news-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.28fr) minmax(340px, .82fr);
  gap: 20px;
  align-items: start;
}
.home-news-layout.is-single { grid-template-columns: minmax(0, 760px); }

.home-news-lead {
  display: flex;
  flex-direction: column;
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 28px;
  background: #F9FBF7;
  color: #14301F;
  text-decoration: none;
  box-shadow: 0 24px 60px rgba(0,0,0,.18);
  transition: transform .3s ease, box-shadow .3s ease;
}
.home-news-lead:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 72px rgba(0,0,0,.25);
}
.home-news-lead:focus-visible,
.home-news-row:focus-visible,
.home-news-all:focus-visible { outline: 3px solid #9BD3AB; outline-offset: 4px; }
.home-news-lead-media {
  position: relative;
  height: clamp(250px, 29vw, 350px);
  overflow: hidden;
  background: #DCE9DD;
}
.home-news-lead-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8,27,16,0) 46%, rgba(8,27,16,.38));
  pointer-events: none;
}
.home-news-lead-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s ease;
}
.home-news-lead:hover .home-news-lead-media img { transform: scale(1.025); }
.home-news-lead-media.is-empty {
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 18% 24%, rgba(255,255,255,.7), transparent 28%),
    linear-gradient(135deg, #DCEBDD, #A8C9B0);
}
.home-news-media-word {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(48px, 8vw, 92px);
  font-weight: 600;
  letter-spacing: -.06em;
  color: rgba(20,48,31,.16);
}
.home-news-media-pill {
  position: absolute;
  left: 20px;
  bottom: 18px;
  z-index: 1;
  padding: 7px 11px;
  border: 1px solid rgba(255,255,255,.42);
  border-radius: 999px;
  background: rgba(20,48,31,.72);
  backdrop-filter: blur(8px);
  color: #fff;
  font-size: 10px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.home-news-lead-body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  padding: 25px 28px 27px;
}
.home-news-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 7px 12px;
  min-width: 0;
  color: #617468;
  font-size: 11px;
  line-height: 1.3;
  font-weight: 600;
}
.home-news-meta > * + *::before {
  content: '';
  display: inline-block;
  width: 3px;
  height: 3px;
  margin: 0 10px 2px 0;
  border-radius: 50%;
  background: #8FB29A;
}
.home-news-category {
  color: #1C5E43;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .07em;
  text-transform: uppercase;
}
.home-news-source {
  max-width: 220px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.home-news-lead-body h3 {
  margin: 0;
  max-width: 760px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(25px, 3vw, 34px);
  line-height: 1.13;
  font-weight: 600;
  letter-spacing: -.02em;
  color: #14301F;
}
.home-news-lead-body > p {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  margin: 0;
  max-width: 760px;
  color: #52665A;
  font-size: 14px;
  line-height: 1.65;
}
.home-news-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 2px;
  color: #1C5E43;
  font-size: 12px;
  font-weight: 800;
}
.home-news-cta span { transition: transform .25s ease; }
.home-news-lead:hover .home-news-cta span { transform: translateX(4px); }

.home-news-feed { display: grid; gap: 12px; }
.home-news-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 118px;
  min-height: 150px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 20px;
  background: rgba(249,251,247,.97);
  color: #14301F;
  text-decoration: none;
  box-shadow: 0 12px 30px rgba(0,0,0,.1);
  transition: transform .26s ease, background .26s ease, box-shadow .26s ease;
}
.home-news-row:hover {
  transform: translateY(-3px);
  background: #fff;
  box-shadow: 0 18px 38px rgba(0,0,0,.17);
}
.home-news-row-body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  min-width: 0;
  padding: 18px 12px 17px 19px;
}
.home-news-row-body h3 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  margin: 0;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 18px;
  line-height: 1.23;
  font-weight: 600;
  color: #14301F;
}
.home-news-row-body > p {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
  margin: 0;
  color: #607267;
  font-size: 12px;
  line-height: 1.45;
}
.home-news-row-cta {
  display: inline-flex;
  gap: 6px;
  margin-top: auto;
  color: #1C5E43;
  font-size: 11px;
  font-weight: 800;
}
.home-news-thumb {
  position: relative;
  min-width: 0;
  overflow: hidden;
  background: #DCE9DD;
}
.home-news-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .4s ease; }
.home-news-row:hover .home-news-thumb img { transform: scale(1.04); }
.home-news-thumb.is-empty { display: grid; place-items: center; background: linear-gradient(145deg, #DFEBDF, #B8D2BE); }
.home-news-thumb.is-empty span {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 38px;
  font-weight: 600;
  color: rgba(20,48,31,.23);
}

@media (min-width: 1051px) {
  .home-news-feed.is-single { align-self: stretch; }
  .home-news-feed.is-single .home-news-row {
    grid-template-columns: minmax(0, 1fr);
    grid-template-rows: auto minmax(240px, 1fr);
    height: 100%;
  }
  .home-news-feed.is-single .home-news-row-body { padding: 23px 24px 22px; }
  .home-news-feed.is-single .home-news-row-body h3 { font-size: 25px; }
  .home-news-feed.is-single .home-news-row-body > p {
    -webkit-line-clamp: 3;
    font-size: 13px;
  }
  .home-news-feed.is-single .home-news-thumb { min-height: 240px; }
}

@media (max-width: 1050px) {
  .home-news-layout { grid-template-columns: minmax(0, 1fr); }
  .home-news-feed { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 720px) {
  .home-news { padding: 58px 20px 62px; }
  .home-news .container { gap: 24px; }
  .home-news-head { align-items: flex-start; flex-direction: column; gap: 15px; }
  .home-news-heading-line h2 { font-size: 32px; }
  .home-news-layout { gap: 14px; }
  .home-news-lead { border-radius: 21px; }
  .home-news-lead-media { height: 230px; }
  .home-news-lead-body { padding: 21px 20px 23px; }
  .home-news-lead-body h3 { font-size: 25px; }
  .home-news-feed { grid-template-columns: minmax(0, 1fr); }
  .home-news-row { grid-template-columns: minmax(0, 1fr) 108px; min-height: 142px; border-radius: 17px; }
  .home-news-row-body { padding: 16px 11px 15px 16px; }
  .home-news-row-body h3 { font-size: 17px; }
}

@media (max-width: 440px) {
  .home-news-lead-media { height: 205px; }
  .home-news-lead-body h3 { font-size: 22px; }
  .home-news-lead-body > p { font-size: 13px; }
  .home-news-row { grid-template-columns: minmax(0, 1fr) 88px; }
  .home-news-row-body > p { display: none; }
  .home-news-source { max-width: 125px; }
}

/* =========================================================
   Projeler
   ========================================================= */
.projects { background: #EDF3EA; padding: 96px 56px; }
.projects .container { display: flex; flex-direction: column; gap: 48px; }
.projects-h2 { max-width: 640px; }

.project-list { display: flex; flex-direction: column; }

.project-row {
  display: grid;
  grid-template-columns: 80px 1fr 2fr auto;
  align-items: center;
  gap: 32px;
  padding: 28px 8px;
  border-top: 1px solid #D3DECF;
  color: #14301F;
  transition: background 0.3s ease, transform 0.3s ease;
}
.project-row:hover { background: #F6F8F3; color: #14301F; transform: translateX(8px); }

.project-no { font-family: 'Space Grotesk', sans-serif; font-size: 28px; color: #8FA795; }
.project-title { font-family: 'Space Grotesk', sans-serif; font-size: 24px; font-weight: 500; }
.project-desc { font-size: 14px; line-height: 1.6; color: #4A6153; }
.project-arrow { font-size: 20px; color: #1C5E43; }

/* =========================================================
   Footer
   ========================================================= */
.site-footer { position: relative; overflow: hidden; padding: 72px 56px 40px; }

.footer-bg { position: absolute; inset: 0; }
.footer-bg img { width: 100%; height: 100%; object-fit: cover; display: block; }

.footer-overlay {
  position: absolute;
  inset: 0;
  background: rgba(20,48,31,0.78);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  pointer-events: none;
}

.footer-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 56px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
}

/* Footer sütunları panelden üretilir; sarmalayıcı ızgarada yer
   kaplamasın diye şeffaftır (çocukları doğrudan grid hücresine oturur). */
.footer-cols { display: contents; }

.footer-brand { display: flex; flex-direction: column; gap: 20px; }
.footer-logo { height: 36px; width: fit-content; }
.footer-brand p { margin: 0; font-size: 14px; line-height: 1.7; color: #A9C2B0; max-width: 320px; }

.footer-social { display: flex; align-items: center; gap: 12px; margin-top: 4px; }
.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 999px;
  color: #DDE9DF;
  transition: color 0.25s ease, background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}
.social-link:hover {
  color: #14301F;
  background: #FFFFFF;
  border-color: #FFFFFF;
  transform: translateY(-2px);
}
.social-link svg { display: block; }

.footer-col { display: flex; flex-direction: column; gap: 14px; }
.footer-head { font-size: 12px; font-weight: 700; letter-spacing: 0.14em; color: #8FBF9F; }
.footer-col a { font-size: 14px; color: #DDE9DF; }
.footer-col a:hover { color: #FFFFFF; }
.footer-address { font-size: 14px; color: #A9C2B0; }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 28px;
  border-top: 1px solid #2A4634;
}
.footer-bottom span { font-size: 13px; color: #7E9A88; }

/* =========================================================
   Başa dön
   ========================================================= */
.back-to-top {
  position: fixed;
  right: 32px;
  bottom: 32px;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border: none;
  border-radius: 999px;
  background: #14301F;
  color: #FFFFFF;
  cursor: pointer;
  box-shadow: 0 10px 28px rgba(20,48,31,0.28);
  font-size: 22px;
  line-height: 1;
  animation: fadeUp 0.35s ease both;
  transition: background 0.25s ease, transform 0.25s ease;
}
.back-to-top:hover { background: #1C5E43; }
.back-to-top[hidden] { display: none; }

/* =========================================================
   Webinarlar sayfası
   ========================================================= */

/* ---------------------------------------------------------
   Webinar hero — "yayın panosu"
   Ana sayfadaki fotoğraf hero'sundan kasıtlı olarak ayrışır:
   fotoğraf yerine koyu, ekran/yayın hissi veren bir yüzey ve
   içeriğe göre büyüyen (sabit yükseklik YOK) iki sütunlu düzen.
   --------------------------------------------------------- */
.whero {
  position: relative;
  overflow: hidden;
  padding: 176px 56px 96px;
  color: #FFFFFF;
  background:
    radial-gradient(130% 110% at 8% -10%, #1F6B4C 0%, #14472F 34%, #0C2419 68%, #08180F 100%);
}

.whero-canvas { position: absolute; inset: 0; pointer-events: none; }

/* Kampüs fotoğrafı — bahar çiçeklerinin pembesi korunur.
   Okunabilirlik renk kaydırmayla değil, yönlü scrim ile sağlanır:
   metnin oturduğu sol taraf koyu, sağ/orta bant açık kalır. */
.whero-photo { position: absolute; inset: 0; }
.whero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 45%;
  display: block;
  filter: saturate(1.3) contrast(1.03) brightness(0.95);
}

.whero-scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(100deg,
      rgba(6,20,13,0.90) 0%,
      rgba(8,26,17,0.72) 26%,
      rgba(10,30,20,0.30) 46%,
      rgba(10,30,20,0.08) 66%,
      rgba(8,26,17,0.16) 100%),
    linear-gradient(180deg,
      rgba(6,20,13,0.42) 0%,
      rgba(6,20,13,0.02) 30%,
      rgba(5,18,11,0.34) 100%);
}

/* Fotoğraf zaten görsel ilgi taşıdığı için ışık lekeleri yalnızca
   hafif bir derinlik katacak kadar tutulur. */
.whero-glow { position: absolute; border-radius: 50%; }
.whero-glow-b {
  right: -14%; bottom: -34%;
  width: min(640px, 70vw); height: min(640px, 70vw);
  background: radial-gradient(circle, rgba(43,93,119,0.18) 0%, rgba(43,93,119,0) 68%);
}

.whero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
  align-items: center;
  gap: 72px;
}

/* --- Sol sütun: sayfanın kimliği --- */
.whero-intro { display: flex; flex-direction: column; align-items: flex-start; gap: 22px; }
/* Fotoğrafın en açık noktalarına denk gelen harflerde de kontrast korunsun */
.whero-intro > *, .whero-stat { text-shadow: 0 1px 16px rgba(5,18,11,0.5); }
/* Koyu yeşil zeminde manifesto tonundan (#8FBF9F) daha okunur bir yeşil */
.whero-intro .eyebrow-light { color: #A9E0B8; }

.whero h1 {
  margin: 0;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 500;
  font-size: clamp(38px, 4.4vw, 60px);
  line-height: 1.04;
  letter-spacing: -0.022em;
  color: #FFFFFF;
  text-wrap: balance;
}
.whero h1 .accent { color: #A9E0B8; }

.whero-lead {
  margin: 0;
  font-size: 17px;
  line-height: 1.68;
  color: rgba(255,255,255,0.88);
  max-width: 50ch;
  text-wrap: pretty;
}

.whero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 52px;
  width: 100%;
  margin-top: 10px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.18);
}
.whero-stat { display: flex; flex-direction: column; gap: 5px; }
.whero-stat[hidden] { display: none; }
/* Hiç kayıt yokken sayaçların tamamı gizlenir; geriye yalnızca
   üstteki ince çizgi kalmasın diye kutu da kaldırılır. */
.whero-stats:not(:has(.whero-stat:not([hidden]))) { display: none; }
.whero-stat-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 34px;
  font-weight: 500;
  line-height: 1;
  color: #FFFFFF;
  font-variant-numeric: tabular-nums;
}
.whero-stat-label { font-size: 13px; letter-spacing: 0.03em; color: rgba(255,255,255,0.68); }

/* --- Sağ sütun: sıradaki yayın panosu --- */
.next-live {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 18px;
  padding: 30px 32px 32px;
  border-radius: 26px;
  /* Panel parlak/pembe fotoğrafın üzerinde durduğu için beyaz cam yerine
     koyu yeşil cam: çiçekler arkada bulanık görünür, beyaz metin okunur kalır. */
  background: rgba(10,34,22,0.56);
  border: 1px solid rgba(255,255,255,0.20);
  backdrop-filter: blur(22px) saturate(125%);
  -webkit-backdrop-filter: blur(22px) saturate(125%);
  box-shadow: 0 30px 70px rgba(5,18,11,0.5), inset 0 1px 0 rgba(255,255,255,0.16);
}
.next-live[hidden] { display: none; }
/* Üst kenarda ince vurgu çizgisi */
.next-live::before {
  content: '';
  position: absolute;
  top: -1px; left: 32px; right: 32px;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, rgba(169,224,184,0) 0%, #A9E0B8 45%, rgba(169,224,184,0) 100%);
}

.next-live-head { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.next-live-kicker {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.72);
}
.next-live-state {
  margin-left: auto;
  padding: 4px 11px;
  border-radius: 999px;
  background: rgba(169,224,184,0.14);
  border: 1px solid rgba(169,224,184,0.34);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #A9E0B8;
  white-space: nowrap;
}
.next-live-state:empty { display: none; }

.live-dot {
  width: 9px; height: 9px;
  border-radius: 999px;
  background: #A9E0B8;
  flex-shrink: 0;
  animation: livePulse 2.2s ease-out infinite;
}
@keyframes livePulse {
  0%   { box-shadow: 0 0 0 0 rgba(169,224,184,0.55); }
  70%  { box-shadow: 0 0 0 11px rgba(169,224,184,0); }
  100% { box-shadow: 0 0 0 0 rgba(169,224,184,0); }
}

/* Geri sayım segmentleri */
.next-live-countdown { display: flex; gap: 10px; flex-wrap: wrap; }
.next-live-countdown:empty { display: none; }
.cd-seg {
  flex: 0 0 auto;
  min-width: 74px;
  padding: 11px 14px 10px;
  border-radius: 14px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.14);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
}
.cd-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 27px;
  font-weight: 600;
  line-height: 1;
  color: #FFFFFF;
  font-variant-numeric: tabular-nums;
}
.cd-unit {
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.68);
}
/* Yayın başladıysa geri sayım yerine tek satırlık durum mesajı */
.cd-live {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  border-radius: 14px;
  background: rgba(169,224,184,0.12);
  border: 1px solid rgba(169,224,184,0.32);
  font-size: 14px;
  font-weight: 600;
  color: #DFF3E4;
}

.next-live-title {
  margin: 4px 0 0;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 500;
  font-size: clamp(21px, 2.1vw, 26px);
  line-height: 1.26;
  letter-spacing: -0.01em;
  color: #FFFFFF;
  text-wrap: balance;
}
.next-live-summary {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.65;
  color: rgba(255,255,255,0.74);
  text-wrap: pretty;
}

.next-live-meta {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 18px 0;
  border-top: 1px solid rgba(255,255,255,0.14);
  border-bottom: 1px solid rgba(255,255,255,0.14);
}
.next-live-meta .meta-row { color: rgba(255,255,255,0.86); font-size: 13.5px; }
.next-live-meta .meta-row strong { color: #FFFFFF; font-weight: 600; }

/* Hero panosunda katılımcı özeti — bütün olarak oturum modalını açar */
.next-live-people {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  padding: 10px 12px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.05);
  color: inherit;
  font-family: inherit;
  text-align: left;
  cursor: pointer;
  transition: background 0.25s ease, border-color 0.25s ease;
}
.next-live-people[hidden] { display: none; }
.next-live-people:hover { background: rgba(255,255,255,0.10); border-color: rgba(255,255,255,0.28); }
.next-live-people:focus-visible { outline: 2px solid #A9E0B8; outline-offset: 2px; }
.next-live-people-text { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.next-live-people-main { font-size: 14px; font-weight: 600; color: #FFFFFF; }
.next-live-people-sub { font-size: 12.5px; color: rgba(255,255,255,0.68); }
.next-live-people-cta {
  margin-left: auto;
  flex-shrink: 0;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: #A9E0B8;
}

.next-live-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 4px; }
.next-live-actions .btn { padding: 13px 24px; }
.next-live-actions .btn-solid:hover { transform: translateY(-2px); }

.main-nav > a.is-active {
  color: #FFFFFF;
  position: relative;
}
.main-nav > a.is-active::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -4px;
  height: 2px;
  border-radius: 2px;
  background: #A9E0B8;
}
@media (max-width: 1360px) {
  .main-nav > a.is-active::after { display: none; }
  .main-nav.open > a.is-active { color: #A9E0B8; }
}

/* =========================================================
   Kişiler: avatar, yüz yığını (facepile), katılımcı listesi
   ========================================================= */
.avatar {
  position: relative;
  width: 38px; height: 38px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
  background: #DFEFE2;
  color: #1C5E43;
}
/* Fotoğraf baş harflerin ÜZERİNE biner; ancak YALNIZCA başarıyla
   yüklendiğinde görünür olur (.is-loaded). Böylece dosya yoksa
   tarayıcının "kırık görsel" simgesi hiç görünmez, altındaki
   baş harfli avatar olduğu gibi kalır. */
.avatar-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: inherit;
  opacity: 0;
  transition: opacity 0.25s ease;
}
.avatar-img.is-loaded { opacity: 1; }

/* Fotoğrafı olmayan kişiler: baş harf + id'den türetilen sabit ton.
   Tonlar sitenin mevcut etiket paletinden alınmıştır. */
.avatar-initials {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 1;
  user-select: none;
}
.avatar-tint-0 { background: #DFEFE2; color: #1C5E43; }
.avatar-tint-1 { background: #E1ECF2; color: #2B5D77; }
.avatar-tint-2 { background: #F7E8D9; color: #96551E; }
.avatar-tint-3 { background: #E4EAE0; color: #46603C; }

/* ---- Yüz yığını ---- */
.facepile { display: inline-flex; align-items: center; flex-shrink: 0; }
.facepile .avatar {
  width: 34px; height: 34px;
  margin-left: -11px;
  box-shadow: 0 0 0 2px #F1F5EF;
}
.facepile .avatar:first-child { margin-left: 0; }
.facepile .avatar-initials { font-size: 11.5px; }
.facepile-more {
  background: #14301F;
  color: #FFFFFF;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 12px;
  font-weight: 600;
}
/* Koyu panelde halka rengi panelin zeminine uyar */
.next-live .facepile .avatar { box-shadow: 0 0 0 2px #14361F; }
.next-live .facepile-more { background: rgba(255,255,255,0.22); }

/* ---- Filtre sekmeleri ---- */
.filter-tabs {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  gap: 2px;
  padding: 4px;
  border: 1px solid #C9DBCC;
  border-radius: 999px;
  background: rgba(255,255,255,0.6);
}
.filter-tabs[hidden] { display: none; }
.filter-tab {
  padding: 9px 20px;
  border: none;
  border-radius: 999px;
  background: transparent;
  color: #4A6153;
  font-family: 'Instrument Sans', sans-serif;
  font-size: 13.5px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease;
}
.filter-tab:hover { color: #1C5E43; }
.filter-tab.active { background: #1C5E43; color: #FFFFFF; }
.filter-tab.active:hover { color: #FFFFFF; }
.filter-tab:focus-visible { outline: 2px solid #1C5E43; outline-offset: 2px; }
.tab-count { opacity: 0.6; font-variant-numeric: tabular-nums; }

/* ---- Webinar kartı (tıklanabilir) ---- */
.w-card { cursor: pointer; }
.w-card:focus-visible { outline: none; box-shadow: 0 0 0 3px rgba(28,94,67,0.4); }
.card-tags { flex-wrap: wrap; }

/* Kart giriş animasyonu.
   Kartlar filtreyle display:none olabildiği için scroll-reveal (IntersectionObserver)
   yerine burada, sekme her değiştiğinde yeniden tetiklenen bir animasyon kullanılır.
   Animasyon bittiğinde JS .is-in sınıfını kaldırır; aksi halde fill-mode'un bıraktığı
   transform, karttaki :hover yükselmesini bloke ederdi. */
@keyframes wCardIn { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: none; } }
.w-card.is-in { animation: wCardIn 0.55s cubic-bezier(0.22,1,0.36,1) both; }

/* Boş durum */
.w-empty {
  margin: 4px 0 0;
  padding: 44px 28px;
  border: 1px dashed #C2D6C6;
  border-radius: 22px;
  background: rgba(255,255,255,0.45);
  text-align: center;
  font-size: 14.5px;
  color: #4A6153;
}
.w-empty[hidden] { display: none; }

.status-pill {
  align-self: flex-start;
  padding: 5px 12px;
  border-radius: 999px;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.06em;
}
.status-open { background: #E3F3E6; color: #1C5E43; }
.status-full { background: #F7E8D9; color: #96551E; }
.status-done { background: #E6E9EC; color: #4A5568; }

/* Kartta katılımcı özeti: yüz yığını + rol dağılımı.
   Kartın kendisi tıklanabilir olduğu için buradaki kişiler
   ayrı ayrı tıklanabilir değildir (iç içe tıklama hedefi olmaz);
   kişi seçimi oturum modalında yapılır. */
.card-people {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 12px 0 0;
  margin-top: -2px;
  border-top: 1px solid #DCE7DA;
}
.card-people-text {
  font-size: 12.5px;
  line-height: 1.4;
  color: #4A6153;
  min-width: 0;
}

.card-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 2px;
  font-size: 13.5px;
  font-weight: 600;
  color: #1C5E43;
}
.card-cta span { transition: transform 0.25s ease; }
.w-card:hover .card-cta span { transform: translateX(4px); }

#webinar-grid[data-filter] .w-card { display: none; }
#webinar-grid[data-filter="upcoming"] .w-card[data-status="upcoming"],
#webinar-grid[data-filter="past"] .w-card[data-status="past"] { display: flex; }

/* ---- Detay modalı ---- */
body.modal-open { overflow: hidden; }

.w-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.w-modal[hidden] { display: none; }

/* Perde YALNIZCA düz bir renktir — bilerek backdrop-filter yok.
   Filtre, arkasındaki içeriği ("backdrop root") örnekleyerek çalışır;
   modalın içinde kendi birleştirme katmanını oluşturan bir öğe olduğunda
   (katılımcı paneli açılırken olan buydu) tarayıcı bu örneklemeyi boş
   sayıp perdeyi beyaz bir tabakaya çeviriyordu. Düz renkte böyle bir
   bağımlılık yoktur: panel açık da olsa kapalı da olsa arka plan aynı
   görünür, hiçbir ek efekt uygulanmaz. */
.w-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(6,18,12,0.82);
  opacity: 0;
  transition: opacity 0.35s ease;
}
.w-modal.is-open .w-modal-backdrop { opacity: 1; }

.w-modal-dialog {
  position: relative;
  z-index: 1;
  width: min(720px, 100%);
  max-height: 86vh;
  /* Görsel sabit kalır, yalnızca gövde kayar — böylece görselin üzerindeki
     kapatma düğmesi uzun içerikte de her zaman görünür kalır. */
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: #F6F8F3;
  border-radius: 28px;
  box-shadow: 0 30px 80px rgba(10,26,17,0.4);
  opacity: 0;
  transform: translateY(24px) scale(0.98);
  /* width: katılımcı paneli açılınca kart daralır (bkz. .people-open) —
     geçiş burada tanımlı olmazsa daralma zıplayarak olur. */
  transition: opacity 0.35s cubic-bezier(0.22,1,0.36,1),
              transform 0.35s cubic-bezier(0.22,1,0.36,1),
              width 0.5s cubic-bezier(0.22,1,0.36,1);
}
.w-modal.is-open .w-modal-dialog { opacity: 1; transform: none; }

.w-modal-media { position: relative; height: 260px; flex-shrink: 0; background: #E4EDE3; }
.w-modal-media img { width: 100%; height: 100%; object-fit: cover; display: block; }

.w-modal-close {
  position: absolute;
  top: 16px; right: 16px;
  z-index: 2;
  width: 42px; height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,0.32);
  border-radius: 999px;
  /* Perdeyle aynı gerekçe: modalın içinde backdrop-filter kullanılmıyor.
     Zemin biraz koyulaştırıldı, bulanıklığın yaptığı işi renk yapıyor. */
  background: rgba(20,48,31,0.68);
  color: #FFFFFF;
  cursor: pointer;
  transition: background 0.25s ease, transform 0.25s ease;
}
.w-modal-close:hover { background: #1C5E43; transform: rotate(90deg); }

.w-modal-tags {
  position: absolute;
  top: 16px; left: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.w-modal-body {
  padding: 28px 32px 32px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  overflow-y: auto;
  overscroll-behavior: contain;
}
.w-modal-body h2 {
  margin: 0;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 500;
  font-size: clamp(22px, 3.2vw, 29px);
  line-height: 1.25;
  color: #14301F;
}
.w-modal-desc { margin: 0; font-size: 14.5px; line-height: 1.75; color: #3A5142; }

.w-modal-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 24px;
  padding: 20px 0;
  border-top: 1px solid #DCE7DA;
  border-bottom: 1px solid #DCE7DA;
}
.w-modal-meta .meta-row { font-size: 13.5px; color: #2C4535; }

.w-modal-audience { font-size: 13.5px; line-height: 1.7; color: #4A6153; }
.w-modal-audience strong { color: #14301F; font-weight: 600; }

/* =========================================================
   Oturum modalı — katılımcı özeti
   Katılımcılar burada tek tek listelenmez; bu blok, hepsini yan yana
   gösteren katılımcılar popup'ını açan tek bir hedeftir.
   ========================================================= */
.people-block { display: flex; flex-direction: column; align-items: flex-start; gap: 12px; }

.people-open-button {
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
  padding: 13px 18px 13px 13px;
  border: 1px solid #DCE7DA;
  border-radius: 20px;
  font-family: inherit;
  text-align: left;
  cursor: pointer;
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.people-open-button:focus-visible { outline: 2px solid #1C5E43; outline-offset: 2px; }
.people-open-text { display: flex; flex-direction: column; gap: 3px; min-width: 0; }
.people-open-main { font-size: 14.5px; font-weight: 600; color: #14301F; }
.people-open-sub { font-size: 12.5px; line-height: 1.4; color: #6E8578; }
.people-open-cta {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-left: auto;
  flex-shrink: 0;
  font-size: 13px;
  font-weight: 600;
  color: #1C5E43;
}
.people-open-button .ui-chev { transition: transform 0.25s ease; }

/* Özet satırındaki yüz yığını karttakinden belirgin biçimde büyüktür:
   burada amaç yüzleri tanıtmak, yalnızca sayıyı belirtmek değil. */
.facepile-lg .avatar { width: 46px; height: 46px; margin-left: -14px; box-shadow: 0 0 0 2.5px #FBFCFA; }
.facepile-lg .avatar-initials { font-size: 14.5px; }
.facepile-lg .facepile-more { font-size: 13.5px; }

/* =========================================================
   Katılımcı paneli — oturum modalının yanından kayan yan panel
   Ayrı bir popup DEĞİLDİR: aynı .w-modal içinde yaşar. Oturum kartı
   zaten bir popup olduğu için üstüne ikinci bir popup yığmıyoruz.
   ========================================================= */

/* Varsayılan (dar ve orta ekran): sağ kenardan içeri kayan çekmece.
   Kenar boşlukları oturum kartınınkiyle aynı (24px) tutulur, böylece
   panel kartın üstüne binerken de aynı çerçeveye oturur.
   Kapalı konumda kendi genişliği + boşluk kadar dışarı çekilir ki
   ekranın sağında bir şerit görünmesin. */
.ppl-panel {
  position: absolute;
  top: 24px; right: 24px; bottom: 24px;
  z-index: 2;
  width: min(520px, calc(100% - 48px));
  visibility: hidden;
  transform: translateX(calc(100% + 26px));
  transition: transform 0.5s cubic-bezier(0.22,1,0.36,1), visibility 0s linear 0.5s;
}
.w-modal.people-open .ppl-panel {
  visibility: visible;
  transform: none;
  transition: transform 0.5s cubic-bezier(0.22,1,0.36,1), visibility 0s linear 0s;
}

.ppl-panel-inner {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: #F6F8F3;
  border-radius: 28px;
  box-shadow: 0 30px 80px rgba(10,26,17,0.4);
}

.ppl-panel-head {
  position: relative;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 7px;
  padding: 24px 26px 22px;
  background: linear-gradient(150deg, #1C5E43 0%, #143C2A 55%, #0E251A 100%);
  color: #FFFFFF;
}
.ppl-panel-head .eyebrow { padding-right: 46px; }
.ppl-panel-sub { font-size: 13px; line-height: 1.5; color: rgba(255,255,255,0.74); }

.ppl-panel-close {
  position: absolute;
  top: 16px; right: 16px;
  width: 38px; height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,0.28);
  border-radius: 999px;
  background: rgba(255,255,255,0.10);
  color: #FFFFFF;
  cursor: pointer;
  transition: background 0.25s ease, transform 0.25s ease;
}
.ppl-panel-close:hover { background: rgba(255,255,255,0.22); transform: rotate(90deg); }
.ppl-panel-close:focus-visible { outline: 2px solid #A9E0B8; outline-offset: 2px; }

.ppl-panel-body {
  flex: 1;
  min-height: 0;
  padding: 14px;
  overflow-y: auto;
  overscroll-behavior: contain;
}
.ppl-list { display: flex; flex-direction: column; gap: 8px; }

/* ---- Katılımcı satırı (açılır-kapanır) ----
   Kapalıyken yalnızca kimlik görünür; uzun biyografi ve iletişim
   bilgileri satırı şişirmesin diye açıldığında iner. */
.ppl-item {
  border: 1px solid #E0EADE;
  border-radius: 20px;
  background: #FFFFFF;
  overflow: hidden;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.ppl-item.is-open { border-color: #C9DBCC; box-shadow: 0 10px 26px rgba(20,48,31,0.08); }

.ppl-item-head {
  display: flex;
  align-items: center;
  gap: 14px;
  width: 100%;
  padding: 12px 14px;
  border: 0;
  border-radius: 20px;
  background: none;
  font-family: inherit;
  text-align: left;
  cursor: pointer;
}
.ppl-item.is-static .ppl-item-head { cursor: default; }
.ppl-item-head:focus-visible { outline: 2px solid #1C5E43; outline-offset: -2px; }

.avatar.ppl-photo { width: 84px; height: 84px; border-radius: 18px; }
.avatar.ppl-photo .avatar-initials { font-size: 27px; }

.ppl-item-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  flex: 1;
  min-width: 0;
}
.ppl-role {
  margin-bottom: 3px;
  padding: 2px 9px;
  border-radius: 999px;
  background: #EAF1E9;
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #4A6153;
}
.ppl-name {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: -0.01em;
  color: #14301F;
}
.ppl-title { font-size: 12.5px; font-weight: 600; line-height: 1.35; color: #1C5E43; }
.ppl-org { font-size: 12px; line-height: 1.4; color: #6E8578; }
/* Uzun kurum adı kapalı satırı boyuna savurmasın; açılınca tamamı görünür */
.ppl-item:not(.is-open) .ppl-org {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.ppl-item-head .ui-chev {
  flex-shrink: 0;
  margin-left: auto;
  color: #8FA795;
  transition: transform 0.3s cubic-bezier(0.22,1,0.36,1), color 0.25s ease;
}
.ppl-item.is-open .ui-chev { transform: rotate(90deg); color: #1C5E43; }

/* Akordeon: 0fr → 1fr, içeriğin doğal yüksekliğine yumuşak geçiş.
   max-height tahminlerinden farklı olarak uzun/kısa biyografide de
   aynı hızda ve kesintisiz açılır. */
.ppl-item-body {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.42s cubic-bezier(0.22,1,0.36,1);
}
.ppl-item.is-open .ppl-item-body { grid-template-rows: 1fr; }
.ppl-item-body > * { min-height: 0; overflow: hidden; }

/* DİKKAT: alt boşluk padding ile verilemez. Kapalıyken satır 0fr'ye
   iner ve içerik kırpılır, ama padding kırpılamaz — 16px'lik bir şerit
   her satırın altında açık kalırdı. Bu yüzden alt boşluk, kırpılabilen
   bir ::after öğesidir. Yatay padding yüksekliği etkilemediği için
   olduğu gibi kalabilir. */
.ppl-item-body-inner {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 0 16px;
  opacity: 0;
  transition: opacity 0.28s ease;
}
.ppl-item.is-open .ppl-item-body-inner { opacity: 1; transition-delay: 0.12s; }
/* Kimlik bloğundan ince bir çizgiyle ayrılır */
.ppl-item-body-inner::before {
  content: '';
  flex-shrink: 0;
  height: 1px;
  background: #EDF2EB;
}
.ppl-item-body-inner::after { content: ''; flex-shrink: 0; height: 2px; }

/* Ek görev/kurumlar: ince ayraçlı ikincil satırlar */
.ppl-also { display: flex; flex-direction: column; gap: 4px; }
.ppl-also-item {
  position: relative;
  padding-left: 14px;
  font-size: 12.5px;
  line-height: 1.45;
  color: #86998B;
}
.ppl-also-item::before {
  content: '';
  position: absolute;
  left: 0; top: 0.62em;
  width: 6px; height: 1px;
  background: #B7CDBB;
}

.ppl-bio { display: flex; flex-direction: column; gap: 10px; }
.ppl-bio p { margin: 0; font-size: 13.5px; line-height: 1.72; color: #4A6153; }

/* İletişim bağlantıları — yer dar olduğu için yalnızca ikon */
.ppl-links { display: flex; flex-wrap: wrap; gap: 8px; }
.ppl-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  border: 1px solid #D9E4D9;
  border-radius: 999px;
  background: #FBFCFA;
  color: #1C5E43;
  transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease, transform 0.25s ease;
}
.ppl-link:hover {
  background: #1C5E43;
  border-color: #1C5E43;
  color: #FFFFFF;
  transform: translateY(-2px);
}
.ppl-link:focus-visible { outline: 2px solid #1C5E43; outline-offset: 2px; }

/* Kişinin yer aldığı DİĞER oturumlar (açık oturum burada tekrarlanmaz) */
.ppl-sessions { display: flex; flex-direction: column; gap: 6px; }
.ppl-sessions-head {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #8FA795;
}
.ppl-session {
  display: flex;
  flex-direction: column;
  gap: 3px;
  width: 100%;
  padding: 9px 12px;
  border: 1px solid #E0EADE;
  border-radius: 13px;
  background: #F8FAF7;
  font-family: inherit;
  text-align: left;
  cursor: pointer;
  transition: background 0.25s ease, border-color 0.25s ease;
}
.ppl-session:hover { background: #FFFFFF; border-color: #BBD2BF; }
.ppl-session:focus-visible { outline: 2px solid #1C5E43; outline-offset: 2px; }
.ppl-session-date { font-size: 11.5px; font-weight: 600; color: #1C5E43; }
.ppl-session-title {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-size: 12px;
  line-height: 1.38;
  color: #3A5142;
}

/* ---- Geniş ekran: panel gerçekten YANA yerleşir ----
   Panel akışa girer ve dialogun kardeşi olarak aynı esnek satırda durur;
   .w-modal içeriği ortaladığı için panel açılırken ikili birlikte yeniden
   ortalanır, yani oturum kartı kendiliğinden sola kayar.

   Panel genişliği --ppl-en ile tek yerden yönetilir: hem iç kutunun
   genişliği hem de animasyonun hedefi buradan türer. */
@media (min-width: 1120px) {
  .ppl-panel {
    /* Panel ekranla birlikte büyür: sabit 400px, geniş monitörde
       kartın yanında ince bir şerit gibi kalıyordu. */
    --ppl-en: clamp(400px, 27vw, 620px);
    --ppl-aralik: 18px;
    position: relative;
    top: auto; right: auto; bottom: auto;
    flex-shrink: 0;
    width: 0;
    max-height: 86vh;
    overflow: hidden;
    transform: none;
    transition: width 0.5s cubic-bezier(0.22,1,0.36,1), visibility 0s linear 0.5s;
  }
  .w-modal.people-open .ppl-panel {
    width: calc(var(--ppl-en) + var(--ppl-aralik));
    transform: none;
    transition: width 0.5s cubic-bezier(0.22,1,0.36,1), visibility 0s linear 0s;
  }

  /* Sabit genişlikli iç kutu: dış kutu genişliği animasyon boyunca
     değişirken metin yeniden akmasın, panel bir bütün olarak açılsın.
     Burada opacity/transform ANİMASYONU YOK — kendi birleştirme
     katmanını oluşturan bir kardeş, perdenin backdrop-filter'ını
     bozup arka planı beyaz örnekletebiliyordu. Açılış hissini
     genişlik animasyonu zaten veriyor. */
  .ppl-panel-inner {
    width: var(--ppl-en);
    height: auto;
    max-height: 86vh;
    margin-left: var(--ppl-aralik);
  }

  /* Kart, panele yer bıraktıktan sonra kalanı alır; asla 720'yi aşmaz.
     466 = panelin en dar hâli (400) + aralık (18) + .w-modal iç boşluğu
     (48); üstüne 20px pay bırakılır. Böylece 1120px'te de sığar,
     1200px'ten sonra kart tam boyuna çıkar ve hiçbir kırılma
     noktasında zıplama olmaz. */
  .w-modal.people-open .w-modal-dialog { width: min(720px, calc(100vw - 486px)); }
}

.w-modal-video {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  border-radius: 16px;
  overflow: hidden;
  background: #0E251A;
}
.w-modal-video iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

.w-modal-video-placeholder {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  border-radius: 16px;
  overflow: hidden;
  background: linear-gradient(135deg, #0E251A, #1C5E43);
  display: flex;
}
.w-modal-video-placeholder-inner {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-align: center;
  padding: 24px;
  color: rgba(255,255,255,0.85);
}
.w-modal-video-placeholder-inner .play-circle {
  width: 52px; height: 52px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.14);
  border: 1px solid rgba(255,255,255,0.3);
  color: #FFFFFF;
}
.w-modal-video-placeholder-inner span.note { font-size: 12.5px; max-width: 320px; line-height: 1.5; }

/* ---- Modal aksiyon alanı ---- */
.w-modal-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 4px;
  padding-top: 22px;
  border-top: 1px solid #DCE7DA;
}
.w-modal-actions .btn { padding: 14px 28px; font-size: 14.5px; }

/* Açıklama notu butonların yanına sıkışmaz, kendi satırına iner */
.w-modal-note {
  flex: 1 0 100%;
  margin-top: 2px;
  font-size: 12.5px;
  line-height: 1.55;
  color: #6E8578;
}

.btn-solid-dark { background: #1C5E43; color: #FFFFFF; }
.btn-solid-dark:hover { background: #14301F; color: #FFFFFF; transform: translateY(-2px); }
.btn-ghost-dark { background: rgba(255,255,255,0.7); border-color: #B6CDBA; color: #1C5E43; }
.btn-ghost-dark:hover { background: rgba(28,94,67,0.08); border-color: #1C5E43; color: #1C5E43; transform: translateY(-2px); }

/* Devre dışı buton: soluk yeşil yerine kendi nötr tonu — "kapalı" olduğu
   solukluktan değil renginden anlaşılsın. */
.btn[disabled] {
  background: #E6ECE6;
  border-color: #D5E0D6;
  color: #7C8F82;
  opacity: 1;
  cursor: not-allowed;
  pointer-events: none;
}

/* =========================================================
   Responsive
   ========================================================= */

/* --- Tablet ve altı (<= 1360px) --- */
@media (max-width: 1360px) {
  .site-header { padding: 20px 32px; }

  /* Nav → sağdan kayan tam boy ferah menü paneli */
  .main-nav {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(460px, 100%);
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    gap: 2px;
    padding: 120px 56px 56px;
    background: #0E251A;
    border: none;
    border-radius: 0;
    transform: translateX(100%);
    transition: transform 0.55s cubic-bezier(0.22,1,0.36,1);
    z-index: 50;
    overflow-y: auto;
    counter-reset: navnum;
  }
  .main-nav.open { transform: translateX(0); }
  /* Pencere yeniden boyutlanırken (ör. masaüstü↔mobil geçişi) panel kaymasın */
  .nav-resizing .main-nav { transition: none !important; }

  .main-nav > a {
    display: flex;
    align-items: baseline;
    gap: 20px;
    padding: 18px 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(26px, 6.5vw, 34px);
    font-weight: 400;
    letter-spacing: -0.01em;
    line-height: 1.1;
    color: #F6F8F3;
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.5s ease, transform 0.55s cubic-bezier(0.22,1,0.36,1), color 0.25s ease;
  }
  .main-nav > a::before {
    counter-increment: navnum;
    content: counter(navnum, decimal-leading-zero);
    font-family: 'Instrument Sans', sans-serif;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.06em;
    color: #6E8F79;
  }
  .main-nav > a:hover { color: #A9E0B8; }
  .main-nav.open > a { opacity: 1; transform: none; }
  /* Kademeli (staggered) giriş */
  .main-nav.open > a:nth-child(2) { transition-delay: 0.10s; }
  .main-nav.open > a:nth-child(3) { transition-delay: 0.16s; }
  .main-nav.open > a:nth-child(4) { transition-delay: 0.22s; }
  .main-nav.open > a:nth-child(5) { transition-delay: 0.28s; }
  .main-nav.open > a:nth-child(6) { transition-delay: 0.34s; }
  .main-nav.open > a:nth-child(7) { transition-delay: 0.40s; }
  .main-nav.open > a:nth-child(8) { transition-delay: 0.46s; }

  .main-nav .nav-cta {
    display: flex;
    opacity: 0;
    transform: translateX(40px);
    margin-top: 36px;
    padding: 16px 28px;
    border-bottom: none;
    text-align: center;
    justify-content: center;
    background: #FFFFFF;
    color: #14301F;
    border-radius: 999px;
    font-family: 'Instrument Sans', sans-serif;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0;
  }
  .main-nav .nav-cta::before { content: none; }
  .main-nav .nav-cta:hover { background: #DFF0E2; color: #14301F; }

  /* Kapat düğmesi (panel içi) */
  .nav-close {
    position: absolute;
    top: 26px;
    right: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    padding: 0;
    background: transparent;
    border: 1px solid rgba(255,255,255,0.22);
    border-radius: 999px;
    color: #F6F8F3;
    cursor: pointer;
    transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
  }
  .nav-close:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.5); transform: rotate(90deg); }

  /* Arka plan karartması */
  .nav-backdrop {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 40;
    background: rgba(6,18,12,0.55);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.45s ease, visibility 0.45s ease;
  }
  body.nav-open .nav-backdrop { opacity: 1; visibility: visible; }
  body.nav-open .site-header { z-index: 100; }

  .header-cta { display: none; }
  .nav-toggle { display: flex; }

  .hero-content { padding: 0 32px 48px; }
  .manifesto, .program, .projects { padding: 80px 32px; }
  .site-footer { padding: 64px 32px 36px; }

  .card-grid { grid-template-columns: repeat(2, 1fr); }

  .project-row {
    grid-template-columns: 56px 1fr auto;
    grid-template-areas:
      "no title arrow"
      "no desc arrow";
    row-gap: 8px;
    gap: 8px 24px;
  }
  .project-no { grid-area: no; font-size: 24px; }
  .project-title { grid-area: title; }
  .project-desc { grid-area: desc; }
  .project-arrow { grid-area: arrow; }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }

  /* Hero'nun yatay boşluğu diğer bölümlerle hizalanır; sütun düzeni
     kendi kırılma noktasında (1040px) değişir, navigasyonla birlikte değil. */
  .whero { padding: 148px 32px 76px; }
  .whero-inner { gap: 48px; }

  .w-modal-meta { grid-template-columns: 1fr; }
}

/* --- Webinar hero: iki sütun artık sığmıyor (<= 1040px) --- */
@media (max-width: 1040px) {
  .whero-inner { grid-template-columns: minmax(0, 1fr); gap: 44px; align-items: start; }
  .whero-lead { max-width: none; }
  .next-live { max-width: 620px; }

  /* Tek sütunda metin tüm genişliğe yayıldığı için scrim yatay değil
     dikey çalışır: üst blok koyu, alt bantta çiçekler açığa çıkar. */
  .whero-scrim {
    background:
      linear-gradient(180deg,
        rgba(6,20,13,0.88) 0%,
        rgba(7,23,15,0.78) 46%,
        rgba(8,26,17,0.48) 78%,
        rgba(6,20,13,0.62) 100%),
      linear-gradient(90deg, rgba(6,20,13,0.34) 0%, rgba(6,20,13,0.06) 55%, rgba(6,20,13,0.16) 100%);
  }
}

/* --- Mobil (<= 720px) --- */
@media (max-width: 720px) {
  .site-header { padding: 16px 20px; gap: 16px; }
  .brand { gap: 10px; }
  .brand-logo { height: 26px; }
  .brand-logo-cop31 { height: 32px; }
  .brand-divider { height: 26px; }
  /* Küçük ekranlarda logolar zaten site adını taşıyor; metin bloğu ve ikinci ayırıcı gizlenir */
  .brand-text { display: none; }
  .brand-divider:nth-of-type(2) { display: none; }
  /* Dil düğmesi mobilde GİZLENMEZ, yalnızca küçülür: İngilizce sayfaya
     geçmenin başka bir yolu yok ve ziyaretçilerin çoğu telefondan geliyor.
     Yer açmak için başlık boşlukları ve logo yükseklikleri de kısılır —
     aksi halde hamburger menü ekrandan taşıyor. */
  .lang-toggle { font-size: 11px; }
  .lang { padding: 5px 10px; }
  .header-actions { gap: 10px; }
}

/* --- Dar mobil (<= 430px) --- */
@media (max-width: 430px) {
  .site-header { padding: 14px 14px; gap: 10px; }
  .brand { gap: 8px; }
  .brand-logo { height: 22px; }
  .brand-logo-cop31 { height: 27px; }
  .brand-divider { height: 22px; }
  .lang { padding: 5px 8px; }

  .hero { height: auto; min-height: 100svh; }
  .hero-content {
    position: relative;
    inset: auto;
    min-height: 100svh;
    padding: 110px 20px 44px;
  }
  .hero-copy { gap: 20px; }
  .hero-lead { font-size: 16px; }
  .hero-ctas .btn-lg { padding: 13px 24px; font-size: 14px; }
  .hero-stats { gap: 28px 36px; margin-top: 36px; padding-top: 22px; }
  .stat-num { font-size: 30px; }

  .manifesto, .program, .projects { padding: 64px 20px; }
  .manifesto-inner { gap: 24px; }
  .site-footer { padding: 56px 20px 32px; }

  .section-head { flex-direction: column; align-items: flex-start; gap: 20px; }
  .card-grid { grid-template-columns: 1fr; gap: 20px; }
  .card-media { height: 220px; }

  .project-row {
    grid-template-columns: 1fr auto;
    grid-template-areas:
      "no arrow"
      "title arrow"
      "desc arrow";
    padding: 22px 4px;
  }
  .project-title { font-size: 20px; }
  .project-row:hover { transform: none; }

  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }

  .back-to-top { right: 20px; bottom: 20px; width: 46px; height: 46px; }

  /* Webinar hero — mobil */
  .whero { padding: 124px 20px 60px; }
  .whero-inner { gap: 36px; }
  .whero-intro { gap: 18px; }
  .whero-lead { font-size: 16px; }
  .whero-stats { gap: 16px 32px; padding-top: 22px; }
  .whero-stat-num { font-size: 28px; }

  .next-live { padding: 24px 20px 26px; border-radius: 22px; }
  .next-live::before { left: 20px; right: 20px; }
  .next-live-countdown { gap: 8px; }
  .cd-seg { flex: 1 1 0; min-width: 0; padding: 10px 8px 9px; }
  .cd-num { font-size: 23px; }
  .next-live-actions .btn { flex: 1 1 auto; text-align: center; }

  .filter-tabs { width: 100%; }
  .filter-tab { flex: 1; text-align: center; padding: 9px 8px; }
  .w-empty { padding: 34px 20px; }

  .w-modal { padding: 0; }
  .w-modal-dialog { width: 100%; max-height: 100%; height: 100%; border-radius: 0; }
  .w-modal-media { height: 200px; }
  .w-modal-body { padding: 22px 20px 28px; }
  .w-modal-actions { padding-top: 20px; }
  .w-modal-actions .btn { flex: 1 1 100%; text-align: center; padding: 14px 22px; }

  /* Katılımcı özeti: "Tümünü gör" etiketi düşer, yalnızca ok kalır */
  .people-open-button { padding: 11px 14px 11px 11px; gap: 12px; }
  .people-open-main { font-size: 14px; }
  .people-open-cta > span { display: none; }
  .facepile-lg .avatar { width: 34px; height: 34px; margin-left: -11px; }
  .facepile-lg .avatar-initials { font-size: 11.5px; }
  .facepile-lg .facepile-more { font-size: 12px; }

  /* Katılımcı paneli: tam ekran çekmece olarak sağdan girer */
  .ppl-panel { top: 0; right: 0; bottom: 0; width: 100%; transform: translateX(100%); }
  .ppl-panel-inner { border-radius: 0; box-shadow: none; }
  .ppl-panel-head { padding: 20px 18px 18px; }
  .ppl-panel-body { padding: 12px 12px 20px; }
  .ppl-item-head { gap: 12px; padding: 11px 12px; }
  .avatar.ppl-photo { width: 68px; height: 68px; border-radius: 15px; }
  .avatar.ppl-photo .avatar-initials { font-size: 22px; }
  .ppl-name { font-size: 14.5px; }
  .ppl-item-body-inner { padding: 0 13px; }
  .ppl-link { width: 34px; height: 34px; }
  .next-live-people-cta { display: none; }
}

/* =========================================================
   Ana menü: açılır alt menü (Hakkında)
   Masaüstünde başlığın altına inen panel, mobil menüde ise
   satır içinde açılıp kapanan liste olarak davranır.
   ========================================================= */
.nav-group { position: relative; display: flex; align-items: center; }

.nav-group-head { display: inline-flex; align-items: center; gap: 4px; }

.nav-group-link { font-size: 14px; font-weight: 500; color: rgba(255,255,255,0.85); }
.nav-group-link:hover { color: #FFFFFF; }

.nav-group-link.is-active { color: #FFFFFF; position: relative; }
.nav-group-link.is-active::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -4px;
  height: 2px;
  border-radius: 2px;
  background: #A9E0B8;
}

.nav-group-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px; height: 22px;
  padding: 0;
  background: none;
  border: none;
  border-radius: 999px;
  color: rgba(255,255,255,0.68);
  cursor: pointer;
  transition: transform 0.3s cubic-bezier(0.22,1,0.36,1), color 0.25s ease, background 0.25s ease, border-color 0.25s ease;
  -webkit-appearance: none;
  appearance: none;
}
.nav-group-toggle svg { display: block; }
.nav-group-toggle:hover { color: #FFFFFF; }
.nav-group:hover .nav-group-toggle,
.nav-group:focus-within .nav-group-toggle,
.nav-group.is-open .nav-group-toggle { transform: rotate(180deg); }

.nav-group-panel {
  position: absolute;
  top: calc(100% + 16px);
  left: -18px;
  z-index: 5;
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 292px;
  padding: 10px;
  background: #0E251A;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 18px;
  box-shadow: 0 22px 50px rgba(6,18,12,0.45);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity 0.25s ease, transform 0.32s cubic-bezier(0.22,1,0.36,1), visibility 0.25s ease;
}
/* Başlık ile panel arasındaki boşlukta imleç kaybolmasın */
.nav-group-panel::before {
  content: '';
  position: absolute;
  left: 0; right: 0;
  top: -18px;
  height: 18px;
}
.nav-group:hover > .nav-group-panel,
.nav-group:focus-within > .nav-group-panel,
.nav-group.is-open > .nav-group-panel { opacity: 1; visibility: visible; transform: none; }

.nav-group-panel a {
  padding: 10px 14px;
  border-radius: 12px;
  font-size: 14px;
  line-height: 1.4;
  color: rgba(255,255,255,0.82);
  transition: background 0.22s ease, color 0.22s ease;
}
.nav-group-panel a:hover { background: rgba(255,255,255,0.09); color: #FFFFFF; }

/* =========================================================
   Doküman sayfaları (Manifesto, Hakkında)
   ========================================================= */

/* ---------- Sayfa hero'su ---------- */
.phero {
  position: relative;
  overflow: hidden;
  padding: 176px 56px 88px;
  color: #FFFFFF;
  background: radial-gradient(130% 110% at 8% -10%, #1F6B4C 0%, #14472F 34%, #0C2419 68%, #08180F 100%);
}
.phero-canvas { position: absolute; inset: 0; pointer-events: none; }

/* Hero fotoğrafı isteğe bağlıdır: panelden yüklenmediyse sayfa
   gradyan zeminle kalır. Fotoğraf varsa okunabilirlik yönlü bir
   scrim ile sağlanır — metnin oturduğu sol taraf koyu kalır. */
.phero-photo { position: absolute; inset: 0; }
.phero-photo[hidden] { display: none; }
.phero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
  display: block;
}
.phero-scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(100deg,
      rgba(6,20,13,0.92) 0%,
      rgba(8,26,17,0.78) 30%,
      rgba(10,30,20,0.44) 54%,
      rgba(10,30,20,0.24) 74%,
      rgba(8,26,17,0.34) 100%),
    linear-gradient(180deg,
      rgba(6,20,13,0.46) 0%,
      rgba(6,20,13,0.06) 32%,
      rgba(5,18,11,0.40) 100%);
}
.phero-scrim[hidden] { display: none; }

.phero-glow { position: absolute; border-radius: 50%; }
.phero-glow-b {
  right: -12%; bottom: -40%;
  width: min(620px, 68vw); height: min(620px, 68vw);
  background: radial-gradient(circle, rgba(43,93,119,0.20) 0%, rgba(43,93,119,0) 68%);
}

.phero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 0.65fr);
  align-items: end;
  gap: 64px;
}
.phero-intro { display: flex; flex-direction: column; align-items: flex-start; gap: 22px; }
.phero-intro .eyebrow-light { color: #A9E0B8; }
.phero h1 {
  margin: 0;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 500;
  font-size: clamp(36px, 4.4vw, 58px);
  line-height: 1.05;
  letter-spacing: -0.022em;
  color: #FFFFFF;
  text-wrap: balance;
}
.phero h1 .accent { color: #A9E0B8; }
.phero-lead {
  margin: 0;
  font-size: 18px;
  line-height: 1.65;
  color: rgba(255,255,255,0.85);
  max-width: 62ch;
  text-wrap: pretty;
}

/* Hero'nun sağındaki künye kartı */
.phero-card {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 28px 30px 30px;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 24px;
  background: rgba(255,255,255,0.07);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.phero-card-head {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: #A9E0B8;
}
.phero-fact { display: flex; flex-direction: column; gap: 4px; }
.phero-fact-label { font-size: 12.5px; letter-spacing: 0.06em; color: rgba(255,255,255,0.62); }
.phero-fact-value {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.25;
  color: #FFFFFF;
}
.phero-card .phero-fact + .phero-fact { padding-top: 16px; border-top: 1px solid rgba(255,255,255,0.14); }

/* ---------- Sayfa içi yapışkan alt gezinme ---------- */
.docnav {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(246,248,243,0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid #DCE7DA;
  padding: 0 56px;
}
.docnav-inner {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 11px 0;
  overflow-x: auto;
  scrollbar-width: none;
}
.docnav-inner::-webkit-scrollbar { display: none; }
.docnav a {
  flex-shrink: 0;
  padding: 9px 17px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  color: #3C5A48;
  white-space: nowrap;
  transition: background 0.25s ease, color 0.25s ease;
}
.docnav a:hover { background: #E1EBDF; color: #14301F; }
.docnav a.is-current { background: #14301F; color: #FFFFFF; }

/* ---------- Doküman gövdesi ---------- */
.doc {
  padding: 24px 56px 96px;
  background: linear-gradient(180deg, #F6F8F3 0%, #EDF3EA 100%);
}
.doc .container { display: flex; flex-direction: column; }

.doc-section {
  display: flex;
  flex-direction: column;
  gap: 30px;
  padding: 62px 0;
  border-top: 1px solid #DCE7DA;
  scroll-margin-top: 76px;
}
.doc-section:first-child { border-top: none; }

.doc-head { display: flex; flex-direction: column; gap: 12px; }
.doc-head h2 {
  margin: 0;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 400;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.15;
  color: #14301F;
  text-wrap: balance;
}

.prose {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 82ch;
}
.prose p {
  margin: 0;
  font-size: 17px;
  line-height: 1.78;
  color: #3A5245;
  text-wrap: pretty;
}
.prose strong { font-weight: 600; color: #14301F; }

/* ---------- Beyan kartı (koyu) ---------- */
.pledge {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding: 46px 48px 48px;
  border-radius: 28px;
  background: radial-gradient(120% 140% at 0% 0%, #1C5E43 0%, #163A28 44%, #12291C 100%);
  color: #F6F8F3;
}
.pledge-intro {
  margin: 0;
  font-size: 17px;
  line-height: 1.7;
  color: #DDE9DF;
  max-width: 78ch;
}
.pledge-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 36px;
}
.pledge-list li {
  position: relative;
  padding-left: 30px;
  font-size: 15.5px;
  line-height: 1.62;
  color: #EAF3EB;
}
.pledge-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 16px;
  height: 2px;
  border-radius: 2px;
  background: #A9E0B8;
}
.pledge-outro {
  margin: 0;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,0.14);
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 400;
  font-size: 19px;
  color: #FFFFFF;
}

/* ---------- Misyon / Vizyon ifadesi ---------- */
.statement {
  padding: 38px 42px 40px;
  border: 1px solid rgba(255,255,255,0.8);
  border-radius: 26px;
  background: rgba(255,255,255,0.58);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 8px 30px rgba(20,48,31,0.05);
}
.statement p {
  margin: 0;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 300;
  font-size: clamp(20px, 2.5vw, 28px);
  line-height: 1.45;
  color: #14301F;
  text-wrap: pretty;
}

/* ---------- Temel ilkeler ---------- */
.principle-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.principle {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 22px 26px;
  border: 1px solid rgba(255,255,255,0.75);
  border-radius: 20px;
  background: rgba(255,255,255,0.55);
  box-shadow: 0 8px 30px rgba(20,48,31,0.04);
  transition: transform 0.35s ease, background 0.35s ease, box-shadow 0.35s ease;
}
.principle:hover {
  background: rgba(255,255,255,0.82);
  box-shadow: 0 16px 38px rgba(20,48,31,0.09);
  transform: translateY(-4px);
}
.principle-no {
  flex-shrink: 0;
  min-width: 32px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 22px;
  font-weight: 500;
  line-height: 1.3;
  color: #8FA795;
}
.principle-text { font-size: 16.5px; font-weight: 500; line-height: 1.5; color: #14301F; }

/* ---------- Ekip ---------- */
.team-block { display: flex; flex-direction: column; gap: 22px; }
.team-block + .team-block { padding-top: 44px; border-top: 1px solid #DCE7DA; }

.team-head { display: flex; flex-direction: column; gap: 8px; }
.team-head h3 {
  margin: 0;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 500;
  font-size: 24px;
  color: #14301F;
}
.team-head p { margin: 0; font-size: 15px; line-height: 1.65; color: #4A6153; max-width: 78ch; }

.person-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.person {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
  border: 1px solid rgba(255,255,255,0.75);
  border-radius: 20px;
  background: rgba(255,255,255,0.55);
  box-shadow: 0 8px 30px rgba(20,48,31,0.04);
  transition: transform 0.35s ease, background 0.35s ease, box-shadow 0.35s ease;
}
.person:hover {
  background: rgba(255,255,255,0.82);
  box-shadow: 0 16px 38px rgba(20,48,31,0.09);
  transform: translateY(-3px);
}
.person .avatar { width: 56px; height: 56px; border-radius: 17px; }
.person .avatar-initials { font-size: 17px; }
.person-text { display: flex; flex-direction: column; gap: 4px; min-width: 0; }
.person-name { font-size: 15.5px; font-weight: 600; line-height: 1.35; color: #14301F; }
.person-role { font-size: 13px; line-height: 1.5; color: #4A6153; }

/* Tek kişilik blok (koordinatör) kartı biraz daha belirgin */
.person-grid.is-lead { grid-template-columns: minmax(0, 440px); }
.person-grid.is-lead .person { padding: 22px 24px; }
.person-grid.is-lead .avatar { width: 64px; height: 64px; border-radius: 19px; }
.person-grid.is-lead .avatar-initials { font-size: 19px; }
.person-grid.is-lead .person-name { font-size: 17px; }

/* ---------- Görev listesi ---------- */
.duties {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 26px 28px 28px;
  border: 1px solid #DCE7DA;
  border-radius: 20px;
  background: rgba(255,255,255,0.42);
}
.duties-head { font-size: 12px; font-weight: 700; letter-spacing: 0.14em; color: #1C5E43; }
.duty-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 36px;
}
.duty-list li {
  position: relative;
  padding-left: 22px;
  font-size: 15px;
  line-height: 1.62;
  color: #3A5245;
}
.duty-list li::before {
  content: '';
  position: absolute;
  left: 2px;
  top: 0.6em;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #8FBF9F;
}

/* ---------- Tema kartları (Danışma Kurulu) ---------- */
.theme-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.theme-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 26px 26px 28px;
  border: 1px solid rgba(255,255,255,0.75);
  border-radius: 22px;
  background: rgba(255,255,255,0.55);
  box-shadow: 0 8px 30px rgba(20,48,31,0.04);
  transition: transform 0.35s ease, background 0.35s ease, box-shadow 0.35s ease;
}
.theme-card:hover {
  background: rgba(255,255,255,0.85);
  box-shadow: 0 18px 44px rgba(20,48,31,0.10);
  transform: translateY(-5px);
}
.theme-no {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.16em;
  color: #8FA795;
}
.theme-card h3 {
  margin: 0;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 500;
  font-size: 21px;
  line-height: 1.25;
  color: #14301F;
}
.theme-tags { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 2px; }
.theme-tag {
  padding: 5px 12px;
  border-radius: 999px;
  background: #E3EEE2;
  color: #1C5E43;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.4;
}

/* ---------- Kişi tablosu ----------
   Uzun katkı/konuşmacı listeleri için: fotoğraf yok, üç sütun var.
   Tema kartlarıyla aynı malzemeden yapılır (yarı saydam beyaz, 22px
   köşe), böylece sayfanın geri kalanından kopmaz. */
.ptable-blok { display: flex; flex-direction: column; gap: 16px; }
.ptable-intro { margin: 0; font-size: 16px; line-height: 1.75; color: #3C5A48; max-width: 78ch; }

.ptable-arac {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.ptable-ara {
  position: relative;
  display: flex;
  align-items: center;
  flex: 1 1 320px;
  max-width: 420px;
}
.ptable-ara-simge {
  position: absolute;
  left: 16px;
  font-size: 17px;
  line-height: 1;
  color: #6E8C79;
  pointer-events: none;
}
.ptable-ara-girdi {
  width: 100%;
  padding: 12px 40px 12px 40px;
  border: 1px solid rgba(20,48,31,0.14);
  border-radius: 999px;
  background: #FFFFFF;
  color: #14301F;
  font-family: inherit;
  font-size: 14.5px;
  transition: border-color .2s ease, box-shadow .2s ease;
  -webkit-appearance: none;
  appearance: none;
}
.ptable-ara-girdi::placeholder { color: #7E9787; }
.ptable-ara-girdi:focus {
  outline: none;
  border-color: #1C5E43;
  box-shadow: 0 0 0 3px rgba(28,94,67,0.12);
}
/* Tarayıcının kendi temizleme düğmesi bizimkiyle üst üste binmesin */
.ptable-ara-girdi::-webkit-search-cancel-button { -webkit-appearance: none; appearance: none; }
.ptable-ara-sil {
  position: absolute;
  right: 8px;
  width: 28px;
  height: 28px;
  border: none;
  border-radius: 50%;
  background: #E3EEE2;
  color: #1C5E43;
  font-size: 12px;
  line-height: 1;
  cursor: pointer;
  transition: background .2s ease;
}
.ptable-ara-sil:hover { background: #CDE3D2; }
.ptable-ara-sil[hidden] { display: none; }

.ptable-sayi {
  flex-shrink: 0;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: #6E8C79;
}

/* overflow KESİLMEZ: kesen bir ata, position:sticky başlığı kendi
   içine hapsedip yapışmasını engelliyor. Kutunun yuvarlak köşeleri
   bu yüzden başlık hücrelerine ayrıca veriliyor. */
.ptable-kutu {
  border: 1px solid rgba(255,255,255,0.75);
  border-radius: 22px;
  background: rgba(255,255,255,0.55);
  box-shadow: 0 8px 30px rgba(20,48,31,0.04);
}
.ptable {
  width: 100%;
  /* separate + spacing 0: hücrelere köşe yarıçapı verilebilsin
     (collapse'ta yarıçap yok sayılır). Ayırıcı çizgiler bu yüzden
     satırda değil, hücrelerde durur. */
  border-collapse: separate;
  border-spacing: 0;
  font-size: 14.5px;
  line-height: 1.6;
  text-align: left;
}
/* Yapışkan başlık, sayfa içi gezinme çubuğunun (.docnav, 58px)
   ALTINA oturur; aksi halde onun arkasına kayardı. */
.ptable thead th {
  position: sticky;
  top: 58px;
  z-index: 1;
  padding: 15px 22px;
  background: #EDF3EC;
  border-bottom: 1px solid rgba(20,48,31,0.10);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #1C5E43;
  white-space: nowrap;
}
.ptable thead th:first-child { border-top-left-radius: 22px; }
.ptable thead th:last-child { border-top-right-radius: 22px; }
.ptable tbody tr:hover th,
.ptable tbody tr:hover td { background: rgba(255,255,255,0.75); }
.ptable tbody tr[hidden] { display: none; }
.ptable tbody th,
.ptable tbody td {
  padding: 16px 22px;
  vertical-align: top;
  border-top: 1px solid rgba(20,48,31,0.07);
  font-weight: 400;
  color: #3C5A48;
}
.ptable tbody tr:first-child th,
.ptable tbody tr:first-child td { border-top: none; }
.ptable-ad {
  display: block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 15.5px;
  font-weight: 500;
  line-height: 1.45;
  color: #14301F;
}
/* Ad sütunu satır başına sığsın, uzmanlık sütunu nefes alsın */
.ptable tbody th { width: 24%; min-width: 210px; }
.ptable tbody td:first-of-type { width: 34%; }

.ptable-bos {
  margin: 0;
  padding: 34px 22px;
  text-align: center;
  font-size: 14.5px;
  color: #6E8C79;
}
.ptable-bos[hidden] { display: none; }

.ptable-not {
  margin: 0;
  font-size: 13px;
  line-height: 1.65;
  color: #6E8C79;
  max-width: 88ch;
}

@media (max-width: 900px) {
  /* Dar ekranda tablo yatay kaymak yerine karta dönüşür: her hücre
     kendi başlığını data-baslik'ten alır. */
  .ptable-kutu { background: none; border: none; box-shadow: none; border-radius: 0; }
  .ptable, .ptable tbody, .ptable tbody tr, .ptable tbody th, .ptable tbody td { display: block; }
  .ptable thead { display: none; }
  /* Ayırıcı çizgiler karta dönüşen satırın İÇİNDE kalmasın */
  .ptable tbody th, .ptable tbody td { border-top: none; }
  .ptable tbody tr {
    border: 1px solid rgba(255,255,255,0.75);
    border-radius: 18px;
    background: rgba(255,255,255,0.55);
    box-shadow: 0 6px 22px rgba(20,48,31,0.04);
    padding: 18px 20px;
  }
  .ptable tbody tr + tr { margin-top: 12px; }
  /* Kart görünümünde satır vurgusu yok: dokunmatik ekranda takılı kalır */
  .ptable tbody tr:hover th,
  .ptable tbody tr:hover td { background: none; }
  .ptable tbody th,
  .ptable tbody td { width: auto; min-width: 0; padding: 0; }
  .ptable tbody td { margin-top: 10px; }
  .ptable tbody td::before {
    content: attr(data-baslik);
    display: block;
    margin-bottom: 3px;
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #1C5E43;
  }
  .ptable tbody td:empty { display: none; }
}

/* ---------- Sayfa sonu yönlendirmesi ---------- */
.doc-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 24px;
  padding: 34px 40px;
  border-radius: 24px;
  background: #14301F;
  color: #F6F8F3;
}
.doc-cta-text { display: flex; flex-direction: column; gap: 6px; }
.doc-cta-text strong {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 500;
  font-size: 22px;
  color: #FFFFFF;
}
.doc-cta-text span { font-size: 14.5px; color: #A9C2B0; }
.doc-cta .btn-solid { padding: 13px 26px; }
.doc-cta .btn-solid:hover { transform: translateY(-2px); }

/* =========================================================
   Doküman sayfaları + açılır menü — Responsive
   ========================================================= */
@media (max-width: 1360px) {
  /* --- Açılır menü, mobil panelde satır içi listeye dönüşür --- */
  .main-nav > .nav-group {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.5s ease, transform 0.55s cubic-bezier(0.22,1,0.36,1);
  }
  .main-nav.open > .nav-group { opacity: 1; transform: none; }
  .main-nav.open > .nav-group:nth-child(2) { transition-delay: 0.10s; }
  .main-nav.open > .nav-group:nth-child(3) { transition-delay: 0.16s; }
  .main-nav.open > .nav-group:nth-child(4) { transition-delay: 0.22s; }
  .main-nav.open > .nav-group:nth-child(5) { transition-delay: 0.28s; }
  .main-nav.open > .nav-group:nth-child(6) { transition-delay: 0.34s; }
  .main-nav.open > .nav-group:nth-child(7) { transition-delay: 0.40s; }
  .main-nav.open > .nav-group:nth-child(8) { transition-delay: 0.46s; }

  .nav-group-head { justify-content: space-between; gap: 14px; padding: 18px 0; }
  .nav-group-link {
    display: flex;
    align-items: baseline;
    gap: 20px;
    flex: 1;
    min-width: 0;
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(26px, 6.5vw, 34px);
    font-weight: 400;
    letter-spacing: -0.01em;
    line-height: 1.1;
    color: #F6F8F3;
  }
  .nav-group-link::before {
    counter-increment: navnum;
    content: counter(navnum, decimal-leading-zero);
    font-family: 'Instrument Sans', sans-serif;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.06em;
    color: #6E8F79;
  }
  .nav-group-link:hover { color: #A9E0B8; }
  .nav-group-link.is-active { color: #A9E0B8; }
  .nav-group-link.is-active::after { display: none; }

  .nav-group-toggle {
    width: 42px; height: 42px;
    border: 1px solid rgba(255,255,255,0.20);
    color: #A9E0B8;
    flex-shrink: 0;
  }
  .nav-group-toggle:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.45); color: #FFFFFF; }

  .nav-group-panel {
    position: static;
    display: block;
    min-width: 0;
    padding: 0 0 0 42px;
    background: none;
    border: none;
    border-radius: 0;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.45s cubic-bezier(0.22,1,0.36,1);
  }
  .nav-group-panel::before { content: none; }
  .nav-group.is-open > .nav-group-panel { max-height: 460px; }
  .nav-group-panel a {
    display: block;
    padding: 12px 0;
    border-radius: 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    font-size: 16px;
    color: #BFD6C6;
  }
  .nav-group-panel a:last-child { border-bottom: none; padding-bottom: 20px; }
  .nav-group-panel a:hover { background: none; color: #A9E0B8; }

  /* --- Doküman sayfaları --- */
  .phero { padding: 148px 32px 72px; }
  .phero-inner { grid-template-columns: minmax(0, 1fr); gap: 40px; align-items: start; }
  .phero-card { max-width: 460px; }
  .docnav { padding: 0 32px; }
  .doc { padding: 20px 32px 80px; }
  .doc-section { padding: 52px 0; }

  .theme-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .person-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .pledge { padding: 38px 34px 40px; }
}

/* Uzun cümleli listeler iki sütunda daralmaya başladığı noktada tek sütuna iner */
@media (max-width: 1000px) {
  .pledge-list { grid-template-columns: minmax(0, 1fr); gap: 13px; }
  .duty-list { grid-template-columns: minmax(0, 1fr); }
  .principle-grid { grid-template-columns: minmax(0, 1fr); }
}

@media (max-width: 720px) {
  .phero { padding: 120px 20px 56px; }
  .phero-intro { gap: 18px; }
  .phero-lead { font-size: 16px; }
  .phero-card { padding: 24px 22px 26px; }

  .docnav { padding: 0 20px; }
  .docnav a { padding: 8px 14px; font-size: 13.5px; }

  .doc { padding: 16px 20px 64px; }
  .doc-section { padding: 42px 0; gap: 24px; scroll-margin-top: 68px; }
  .prose p { font-size: 16px; line-height: 1.72; }

  .statement { padding: 26px 22px 28px; border-radius: 22px; }
  .pledge { padding: 30px 22px 32px; border-radius: 22px; gap: 22px; }
  .pledge-list { grid-template-columns: minmax(0, 1fr); gap: 12px; }
  .pledge-outro { font-size: 17px; }

  .principle-grid { grid-template-columns: minmax(0, 1fr); }
  .principle { padding: 18px 20px; gap: 14px; }
  .principle:hover { transform: none; }

  .person-grid, .person-grid.is-lead { grid-template-columns: minmax(0, 1fr); }
  .person:hover { transform: none; }
  .team-block + .team-block { padding-top: 34px; }

  .duties { padding: 22px 20px 24px; }
  .duty-list { grid-template-columns: minmax(0, 1fr); }

  .theme-grid { grid-template-columns: minmax(0, 1fr); }
  .theme-card { padding: 22px 20px 24px; }
  .theme-card:hover { transform: none; }

  .doc-cta { padding: 26px 22px 28px; }
  .doc-cta .btn { width: 100%; text-align: center; }
}

/* =========================================================
   ATÖLYELER ve PROJELER

   Atölye sayfası webinar sayfasıyla aynı bileşenleri kullanır
   (.card, .w-modal, .filter-tabs); burada yalnızca atölyeye özgü
   parçalar tanımlanır. Projeler sayfası ise kasıtlı olarak ayrışır:
   etkinlik değil vitrin olduğu için kartlar daha geniş, sayılar
   (metrics) öne çıkar.
   ========================================================= */

/* ---------- Ortak: etiketler ve boş görsel alanı ---------- */
.tag-project { background: #EDE6F2; color: #5B4172; }
.tag-news    { background: #E1ECF5; color: #2C5779; }
.tag-level   { background: #EAF1E9; color: #4A6153; }
.tag-past    { background: #E6E9EC; color: #4A5568; }

/* Kart görseli yoksa gri yüzey kalır, kırık simge çıkmaz */
.card-media.is-empty,
.w-modal-media.is-empty,
.p-card-media.is-empty,
.p-hero-media.is-empty {
  background: linear-gradient(135deg, #E4EDE3 0%, #D6E4D8 100%);
}

/* Ana sayfadaki bağlı kartlar tıklanabilir */
a.card-link { text-decoration: none; color: inherit; display: flex; flex-direction: column; }
a.card-link:hover { transform: translateY(-4px); }

/* ---------- Atölye: rozet şeritleri ---------- */
.w-modal-chips, .p-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chip {
  padding: 5px 12px;
  border-radius: 999px;
  background: #EAF1E9;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: #1C5E43;
}

/* ---------- Detay penceresi: künye satırları ---------- */
.w-facts {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 14px 26px;
  margin: 0;
  padding: 18px 0;
  border-top: 1px solid #E2EAE0;
  border-bottom: 1px solid #E2EAE0;
}
.w-fact { display: flex; flex-direction: column; gap: 4px; }
.w-fact dt {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #6E8578;
}
.w-fact-icon { display: inline-flex; color: #1C5E43; }
.w-fact dd { margin: 0; font-size: 14.5px; line-height: 1.5; color: #14301F; }

/* ---------- Detay penceresi: başlıklı bloklar ---------- */
.w-block { display: flex; flex-direction: column; gap: 12px; }
.w-block-head {
  margin: 0;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #1C5E43;
}
.w-bullets { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 9px; }
.w-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14.5px;
  line-height: 1.6;
  color: #3A5142;
}
.w-bullets:not(.w-bullets-check) li { padding-left: 18px; position: relative; }
.w-bullets:not(.w-bullets-check) li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 8px; height: 2px;
  border-radius: 2px;
  background: #8FBF9F;
}
.w-bullet-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 20px; height: 20px;
  margin-top: 1px;
  border-radius: 999px;
  background: #E3F3E6;
  color: #1C5E43;
}

/* ---------- Detay penceresi: kişi listesi ---------- */
.w-people {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 14px;
}
.w-person {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 14px;
  border: 1px solid #E2EAE0;
  border-radius: 14px;
  background: #FBFDFA;
}
.w-person-text { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.w-person-role {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #6E8578;
}
.w-person-name { font-size: 14.5px; font-weight: 600; line-height: 1.35; color: #14301F; }
.w-person-title { font-size: 12.5px; font-weight: 600; color: #1C5E43; }
.w-person-org { font-size: 12px; line-height: 1.4; color: #6E8578; }

/* Atölyede eğitmen panosu tıklanmaz — yalnızca bilgi gösterir */
.next-live-people.is-static { cursor: default; }
.next-live-people.is-static:hover { background: rgba(255,255,255,0.08); }

/* =========================================================
   PROJELER — vitrin
   ========================================================= */

/* Tek sütunlu hero: sağda pano olmadığı için metin ortalanmaz,
   sola yaslı kalır ama tüm genişliği kullanır. */
.whero-tek .whero-inner { grid-template-columns: minmax(0, 1fr); }
.whero-tek .whero-intro { max-width: 780px; }

.p-showcase { background: #F6F8F3; padding: 96px 56px; }

/* ---- Öne çıkan proje ---- */
.p-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 0;
  margin-bottom: 64px;
  border-radius: 28px;
  overflow: hidden;
  background: #FFFFFF;
  box-shadow: 0 20px 60px rgba(20,48,31,0.08);
}
.p-hero[hidden] { display: none; }
.p-hero-media { position: relative; min-height: 420px; background: #E4EDE3; }
.p-hero-media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.p-hero-body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  padding: 48px 46px;
}
.p-hero-title {
  margin: 0;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 500;
  font-size: clamp(26px, 2.6vw, 36px);
  line-height: 1.15;
  letter-spacing: -0.015em;
  color: #14301F;
}
.p-hero-summary { margin: 0; font-size: 15.5px; line-height: 1.7; color: #3A5142; }
.p-hero-meta { display: flex; flex-wrap: wrap; align-items: center; gap: 12px; }
.p-meta-item {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  color: #4A6153;
}
.p-meta-item svg { color: #1C5E43; flex-shrink: 0; }

/* ---- Vitrin sayıları ---- */
.p-metrics { display: flex; flex-wrap: wrap; gap: 26px; }
.p-metric { display: flex; flex-direction: column; gap: 2px; }
.p-metric-value {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 500;
  line-height: 1;
  color: #1C5E43;
}
.p-metric-label { font-size: 12.5px; line-height: 1.35; color: #6E8578; }
.p-metrics-lg { gap: 32px; padding: 4px 0; }
.p-metrics-lg .p-metric-value { font-size: 40px; }
.p-metrics-md .p-metric-value { font-size: 30px; }
.p-metrics-sm { gap: 20px; }
.p-metrics-sm .p-metric-value { font-size: 24px; }
.p-metrics-sm .p-metric-label { font-size: 11.5px; }

/* ---- Proje ızgarası ---- */
.p-section-head { margin-bottom: 30px; }

.p-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 26px;
}
.p-card {
  display: flex;
  flex-direction: column;
  border-radius: 22px;
  overflow: hidden;
  background: #FFFFFF;
  border: 1px solid #E2EAE0;
  cursor: pointer;
  transition: transform 0.3s cubic-bezier(0.22,1,0.36,1), box-shadow 0.3s ease, border-color 0.3s ease;
}
.p-card:hover, .p-card:focus-visible {
  transform: translateY(-5px);
  border-color: #C2D6C6;
  box-shadow: 0 18px 44px rgba(20,48,31,0.10);
}
.p-card:focus-visible { outline: 2px solid #1C5E43; outline-offset: 3px; }

/* Filtre: seçili duruma uymayan kartlar gizlenir */
.p-grid[data-filter="ongoing"]   .p-card:not([data-status="ongoing"]),
.p-grid[data-filter="completed"] .p-card:not([data-status="completed"]),
.p-grid[data-filter="planned"]   .p-card:not([data-status="planned"]) { display: none; }

.p-card-media { position: relative; height: 210px; background: #E4EDE3; }
.p-card-media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.p-card-media .status-pill { position: absolute; left: 16px; top: 16px; }

.p-card-body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  padding: 24px 26px 26px;
  flex: 1;
}
.p-card-body h3 {
  margin: 0;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 500;
  font-size: 21px;
  line-height: 1.25;
  color: #14301F;
}
.p-card-body > p { margin: 0; font-size: 14px; line-height: 1.65; color: #4A6153; }
.p-card-meta { display: flex; flex-wrap: wrap; gap: 8px 18px; }
.p-card .card-cta { margin-top: auto; }

/* ---- Detay penceresindeki galeri ---- */
.p-gallery-shell {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.p-gallery-shell[hidden] { display: none; }
.p-gallery-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.p-gallery-head h3 {
  margin: 0;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #14301F;
}
.p-gallery-count {
  flex: 0 0 auto;
  min-width: 42px;
  padding: 5px 9px;
  border-radius: 999px;
  background: #E4EDE3;
  color: #31523D;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  text-align: center;
}
.p-gallery-viewport {
  position: relative;
  min-width: 0;
}
.p-gallery {
  display: grid;
  grid-template-columns: none;
  grid-auto-flow: column;
  grid-auto-columns: minmax(160px, 45%);
  gap: 10px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  padding: 2px 48px 5px;
  scroll-behavior: smooth;
  scroll-snap-type: inline mandatory;
  scrollbar-width: none;
  touch-action: pan-x pinch-zoom;
}
.p-gallery::-webkit-scrollbar { display: none; }
.p-gallery:empty { display: none; }
.p-gallery-item {
  appearance: none;
  position: relative;
  margin: 0;
  padding: 0;
  overflow: hidden;
  border: 1px solid transparent;
  border-radius: 12px;
  background: #E4EDE3;
  cursor: zoom-in;
  scroll-snap-align: start;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}
.p-gallery-item:hover {
  border-color: rgba(28, 94, 67, 0.35);
  box-shadow: 0 8px 20px rgba(20, 48, 31, 0.12);
  transform: translateY(-2px);
}
.p-gallery-item:focus-visible {
  outline: 3px solid #A9E0B8;
  outline-offset: 2px;
}
.p-gallery-item[aria-current="true"] { border-color: #1C5E43; }
.p-gallery-item img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}
.p-gallery-item:hover img { transform: scale(1.025); }
.p-gallery-zoom {
  position: absolute;
  right: 8px;
  bottom: 8px;
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border-radius: 50%;
  background: rgba(20, 48, 31, 0.9);
  color: #FFFFFF;
  box-shadow: 0 4px 12px rgba(8, 26, 16, 0.25);
  pointer-events: none;
}
.p-gallery-zoom svg { width: 15px; height: 15px; }
.p-gallery-nav {
  position: absolute;
  top: 50%;
  z-index: 2;
  display: grid;
  width: 40px;
  height: 40px;
  padding: 0;
  place-items: center;
  border: 1px solid rgba(255,255,255,0.7);
  border-radius: 50%;
  background: rgba(20, 48, 31, 0.94);
  color: #FFFFFF;
  box-shadow: 0 6px 18px rgba(20, 48, 31, 0.2);
  cursor: pointer;
  transform: translateY(-50%);
  transition: background 0.2s ease, opacity 0.2s ease, transform 0.2s ease;
}
.p-gallery-nav.is-prev { left: 4px; }
.p-gallery-nav.is-next { right: 4px; }
.p-gallery-nav:hover:not(:disabled) {
  background: #1C5E43;
  transform: translateY(-50%) scale(1.05);
}
.p-gallery-nav:focus-visible { outline: 3px solid #A9E0B8; outline-offset: 2px; }
.p-gallery-nav:disabled { opacity: 0.28; cursor: default; }
.p-gallery-nav[hidden] { display: none; }
.p-gallery-nav svg { width: 18px; height: 18px; }

/* ---- Proje detay penceresi: geniş, yatay kompozisyon ----
   Webinar ve atölye pencereleri mevcut dikey yapısını korur; bu düzen
   yalnızca projects.js tarafından eklenen .p-modal sınıfına uygulanır. */
.p-modal .w-modal-dialog {
  width: min(1320px, calc(100vw - 48px));
  height: min(720px, 84vh);
  max-height: 84vh;
}
.p-modal .w-modal-media { height: 170px; }
.p-modal .w-modal-body {
  min-height: 0;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(220px, 0.72fr) minmax(0, 1.26fr);
  align-items: start;
  gap: 28px;
  padding: 28px 32px 32px;
}
.p-modal-intro,
.p-modal-aside,
.p-modal-main {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.p-modal-intro,
.p-modal-aside {
  align-self: stretch;
  padding-right: 28px;
  border-right: 1px solid #DCE7DA;
}
.p-modal .w-modal-body h2 {
  font-size: clamp(27px, 2.5vw, 35px);
  line-height: 1.15;
}
.p-modal .w-modal-desc { font-size: 14px; line-height: 1.72; }

/* Sayılar ve künye orta sütunda daha yoğun bir bilgi panosu oluşturur. */
.p-modal .p-metrics-md {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 14px;
}
.p-modal .p-metrics-md .p-metric-value { font-size: 28px; }
.p-modal .w-facts {
  grid-template-columns: minmax(0, 1fr);
  gap: 13px;
  padding: 16px 0;
}
.p-modal .w-fact dd { font-size: 13.5px; }
.p-modal .w-modal-actions {
  flex-direction: column;
  align-items: stretch;
  padding-top: 16px;
}
.p-modal .w-modal-actions .btn {
  width: 100%;
  justify-content: center;
  padding: 11px 14px;
  font-size: 13.5px;
}

/* Çıktılar ve paydaşlar yan yana; galeri oklarla yatay akar. */
.p-modal-list-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}
.p-modal-main .people-block {
  padding-top: 18px;
  border-top: 1px solid #DCE7DA;
}
.p-modal .w-people { grid-template-columns: minmax(0, 1fr); }

/* Galeri fotoğrafı, proje penceresinden kopmadan aynı alanı kaplar. */
.p-gallery-viewer {
  position: absolute;
  inset: 0;
  z-index: 12;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: inherit;
  background:
    radial-gradient(circle at 50% 36%, rgba(43, 99, 72, 0.48), transparent 45%),
    #0D2116;
  color: #FFFFFF;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}
.p-gallery-viewer[hidden] { display: none; }
.p-gallery-viewer.is-open { opacity: 1; pointer-events: auto; }
.p-gallery-viewer-head {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: 18px;
  padding: 17px 22px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
  background: rgba(13, 33, 22, 0.72);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.p-gallery-back {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 13px;
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  color: #FFFFFF;
  font: inherit;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease;
}
.p-gallery-back:hover { border-color: rgba(255,255,255,0.5); background: rgba(255,255,255,0.15); }
.p-gallery-back:focus-visible,
.p-gallery-viewer-nav:focus-visible { outline: 3px solid #A9E0B8; outline-offset: 2px; }
.p-gallery-back svg { width: 16px; height: 16px; }
.p-gallery-viewer-count {
  min-width: 58px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.12);
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  text-align: center;
}
.p-gallery-viewer-hint {
  justify-self: end;
  color: rgba(255,255,255,0.68);
  font-size: 12px;
  line-height: 1.3;
}
.p-gallery-viewer-stage {
  position: relative;
  flex: 1 1 auto;
  min-height: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px 92px 34px;
  touch-action: pan-y pinch-zoom;
}
.p-gallery-viewer-image {
  display: block;
  max-width: 100%;
  max-height: 100%;
  border-radius: 16px;
  object-fit: contain;
  box-shadow: 0 22px 70px rgba(0,0,0,0.38);
  user-select: none;
  -webkit-user-drag: none;
}
.p-gallery-viewer-nav {
  position: absolute;
  top: 50%;
  z-index: 2;
  display: grid;
  width: 48px;
  height: 48px;
  padding: 0;
  place-items: center;
  border: 1px solid rgba(255,255,255,0.24);
  border-radius: 50%;
  background: rgba(255,255,255,0.11);
  color: #FFFFFF;
  cursor: pointer;
  transform: translateY(-50%);
  transition: background 0.2s ease, transform 0.2s ease;
}
.p-gallery-viewer-nav.is-prev { left: 24px; }
.p-gallery-viewer-nav.is-next { right: 24px; }
.p-gallery-viewer-nav[hidden] { display: none; }
.p-gallery-viewer-nav:hover {
  background: rgba(255,255,255,0.2);
  transform: translateY(-50%) scale(1.05);
}
.p-gallery-viewer-nav svg { width: 22px; height: 22px; }

/* Tablet: başlık tam satıra geçer, diğer iki bilgi grubu yan yana kalır. */
@media (max-width: 980px) {
  .p-modal .w-modal-dialog {
    width: min(840px, calc(100vw - 32px));
    height: min(820px, 90vh);
    max-height: 90vh;
  }
  .p-modal .w-modal-media { height: 180px; }
  .p-modal .w-modal-body {
    grid-template-columns: minmax(210px, 0.72fr) minmax(0, 1.28fr);
    gap: 24px;
    padding: 26px 28px 30px;
  }
  .p-modal-intro {
    grid-column: 1 / -1;
    padding: 0 0 22px;
    border-right: 0;
    border-bottom: 1px solid #DCE7DA;
  }
  .p-modal-aside { padding-right: 24px; }
}

/* Mobil: tam ekran içinde okunaklı tek sütunlu akış. */
@media (max-width: 720px) {
  .p-modal .w-modal-dialog {
    width: 100%;
    height: 100%;
    max-height: 100%;
  }
  .p-modal .w-modal-media { height: 190px; }
  .p-modal .w-modal-body {
    display: flex;
    gap: 22px;
    padding: 22px 20px 28px;
  }
  .p-modal-intro,
  .p-modal-aside {
    padding: 0 0 22px;
    border-right: 0;
    border-bottom: 1px solid #DCE7DA;
  }
  .p-modal .p-metrics-md { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .p-modal-list-grid { grid-template-columns: minmax(0, 1fr); gap: 20px; }
  .p-modal .p-gallery {
    grid-auto-columns: minmax(170px, 82%);
    padding-right: 42px;
    padding-left: 42px;
  }
  .p-gallery-nav { width: 36px; height: 36px; }
  .p-gallery-viewer-head {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 12px;
    padding: 13px 14px;
  }
  .p-gallery-viewer-hint { display: none; }
  .p-gallery-back { padding: 8px 11px; }
  .p-gallery-viewer-stage { padding: 18px 14px 74px; }
  .p-gallery-viewer-image { max-width: 100%; max-height: 100%; border-radius: 12px; }
  .p-gallery-viewer-nav {
    top: auto;
    bottom: 14px;
    width: 44px;
    height: 44px;
    transform: none;
  }
  .p-gallery-viewer-nav.is-prev { left: calc(50% - 52px); }
  .p-gallery-viewer-nav.is-next { right: calc(50% - 52px); }
  .p-gallery-viewer-nav:hover { transform: scale(1.05); }
}

/* Proje penceresi geniştir; ekip paneli yana açıldığında kullanılabilir
   alanı korur, orta ekranlarda içerik iki sütuna yeniden akar. */
@media (min-width: 1120px) {
  .p-modal.people-open .w-modal-dialog {
    width: min(1020px, calc(100vw - 486px));
  }
}
@media (min-width: 1120px) and (max-width: 1380px) {
  .p-modal.people-open .w-modal-body {
    grid-template-columns: minmax(210px, 0.72fr) minmax(0, 1.28fr);
    gap: 24px;
  }
  .p-modal.people-open .p-modal-intro {
    grid-column: 1 / -1;
    padding: 0 0 22px;
    border-right: 0;
    border-bottom: 1px solid #DCE7DA;
  }
  .p-modal.people-open .p-modal-aside { padding-right: 24px; }
}

/* =========================================================
   İLETİŞİM
   ========================================================= */
.contact-card {
  display: flex;
  flex-direction: column;
  gap: 22px;
  padding: 38px 40px 40px;
  border: 1px solid rgba(255,255,255,0.8);
  border-radius: 26px;
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 8px 30px rgba(20,48,31,0.05);
}
.contact-intro { margin: 0; font-size: 16px; line-height: 1.7; color: #3A5245; }
.contact-rows { display: flex; flex-direction: column; gap: 12px; }
.contact-row {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
  padding: 20px 24px;
  border: 1px solid #DCE7DA;
  border-radius: 18px;
  background: #FFFFFF;
  text-decoration: none;
  transition: border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}
a.contact-row:hover {
  border-color: #1C5E43;
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(20,48,31,0.08);
}
.contact-row.is-static { cursor: default; }
.contact-row-label {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #6E8578;
}
.contact-row-value {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(18px, 2vw, 23px);
  font-weight: 500;
  line-height: 1.35;
  color: #14301F;
  overflow-wrap: anywhere;
}
.contact-row-arrow { font-size: 20px; color: #1C5E43; }
.contact-note { margin: 0; font-size: 13.5px; line-height: 1.7; color: #6E8578; }

/* =========================================================
   Duyarlı düzen — yeni bölümler
   ========================================================= */
@media (max-width: 1040px) {
  .p-hero { grid-template-columns: minmax(0, 1fr); }
  .p-hero-media { min-height: 260px; }
  .p-hero-body { padding: 34px 30px 36px; }
}

@media (max-width: 720px) {
  .p-showcase { padding: 64px 22px; }
  .p-grid { grid-template-columns: 1fr; gap: 18px; }
  .p-card-media { height: 190px; }
  .p-card-body { padding: 20px 20px 22px; }
  .p-metrics-lg { gap: 22px; }
  .p-metrics-lg .p-metric-value { font-size: 30px; }
  .p-hero { margin-bottom: 42px; }

  .w-people { grid-template-columns: 1fr; }
  .w-facts { grid-template-columns: 1fr; padding: 16px 0; }

  .contact-card { padding: 26px 22px 28px; gap: 18px; }
  .contact-row { grid-template-columns: 1fr; gap: 6px; padding: 18px 20px; }
  .contact-row-arrow { display: none; }
}

/* =========================================================
   HABERLER

   Haber sayfası kendi kart dilini kullanır — projeler sayfasının
   kartları KASITLI olarak yeniden kullanılmaz. Gerekçe:

   · Proje bir vitrindir: az sayıda, görsel ağırlıklı, uzun ömürlü.
     Kart büyük fotoğrafla başlar, sayılarla anlatır.
   · Haber bir akıştır: çok sayıda, kısa ömürlü, TARİH eksenli ve
     çoğu zaman fotoğrafsız. Büyük fotoğraflı dikey kart burada hem
     yer israfıdır hem de fotoğrafsız haberde boş kutu bırakır.

   Bu yüzden düzen iki katmanlıdır:

     .n-lead   manşet — tam genişlikte, fotoğrafın üstüne yazılan
               tek büyük haber
     .n-list   akış — yatay, küçük kare görselli, yoğun satır kartları
               (görsel yoksa satır kendiliğinden tam genişliğe geçer)
   ========================================================= */

.n-showcase { background: #F6F8F3; padding: 88px 56px; }
.n-section-head { margin-bottom: 26px; }

/* ---------------------------------------------------------
   Manşet

   Beyaz panel yerine fotoğrafın ÜSTÜNE yazılır: haber sayfasının
   ilk bakışta manşet gibi okunmasını sağlayan şey budur. Fotoğraf
   yoksa aynı kutu koyu yeşil bir zemine düşer — düzen değişmez,
   kart boş görünmez.
   --------------------------------------------------------- */
.n-lead {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 440px;
  margin-bottom: 40px;
  border-radius: 26px;
  overflow: hidden;
  background: linear-gradient(135deg, #1C5E43 0%, #14301F 100%);
  color: #FFFFFF;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.35s cubic-bezier(0.22,1,0.36,1), box-shadow 0.35s ease;
}
.n-lead[hidden] { display: none; }
.n-lead:hover { transform: translateY(-4px); box-shadow: 0 24px 60px rgba(20,48,31,0.22); }
.n-lead:focus-visible { outline: 2px solid #1C5E43; outline-offset: 4px; }

.n-lead-media { position: absolute; inset: 0; }
.n-lead-media img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* Okunabilirlik renk kaydırmayla değil yönlü scrim ile sağlanır:
   altta ve solda koyulaşır, fotoğrafın üst kısmı açık kalır. */
.n-lead-scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(20,48,31,0) 34%, rgba(20,48,31,0.58) 66%, rgba(8,22,14,0.93) 100%),
    linear-gradient(90deg, rgba(8,22,14,0.62), rgba(8,22,14,0) 62%);
}
.n-lead-body {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  max-width: 720px;
  padding: 44px 46px;
}
.n-lead-top { display: flex; flex-wrap: wrap; align-items: center; gap: 10px; }
.n-lead-title {
  margin: 0;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 500;
  font-size: clamp(28px, 3.4vw, 42px);
  line-height: 1.1;
  letter-spacing: -0.015em;
  color: #FFFFFF;
}
.n-lead-summary {
  margin: 0;
  max-width: 60ch;
  font-size: 15.5px;
  line-height: 1.7;
  color: rgba(255,255,255,0.86);
}
.n-lead-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 18px;
  font-size: 13px;
  color: rgba(255,255,255,0.78);
}
.n-lead-meta .n-meta-item svg { color: rgba(255,255,255,0.7); }
/* Manşetteki düğme gerçek bir <a> değil, kartın kendisi tıklanabilir
   olduğu için görsel bir işarettir. */
.n-lead .btn { margin-top: 4px; }
.n-lead .btn svg { vertical-align: -2px; }

/* ---------------------------------------------------------
   Akış listesi

   Kart yatay olduğu için ızgara sütunu projelerinkinden geniştir
   (420px) ama kart YÜKSEKLİĞİ çok daha azdır: aynı ekranda kat kat
   fazla haber görünür. Boşluk da bilerek dardır — liste, kart
   koleksiyonu değil akış hissi vermelidir.
   --------------------------------------------------------- */
.n-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(420px, 1fr));
  gap: 14px;
}
.n-list[hidden] { display: none; }

.n-item {
  display: grid;
  grid-template-columns: 118px minmax(0, 1fr);
  gap: 18px;
  padding: 16px;
  border-radius: 18px;
  background: #FFFFFF;
  border: 1px solid #E2EAE0;
  color: inherit;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.28s cubic-bezier(0.22,1,0.36,1), box-shadow 0.28s ease, border-color 0.28s ease;
}
/* Görseli olmayan haber, boş bir kutu bırakmak yerine tüm satırı
   metne verir. Fotoğrafsız haber bu sayfada istisna değil kuraldır. */
.n-item.is-textonly { grid-template-columns: minmax(0, 1fr); }
.n-item[hidden] { display: none; }
.n-item:hover, .n-item:focus-visible {
  transform: translateY(-3px);
  border-color: #C2D6C6;
  box-shadow: 0 14px 34px rgba(20,48,31,0.09);
}
.n-item:focus-visible { outline: 2px solid #1C5E43; outline-offset: 3px; }

.n-thumb {
  width: 118px;
  height: 118px;
  border-radius: 14px;
  overflow: hidden;
  background: linear-gradient(135deg, #E4EDE3 0%, #D6E4D8 100%);
}
.n-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }

.n-item-body { display: flex; flex-direction: column; gap: 7px; min-width: 0; }
.n-item-top { display: flex; flex-wrap: wrap; align-items: center; gap: 8px 10px; }
.n-item-title {
  margin: 0;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 500;
  font-size: 17.5px;
  line-height: 1.3;
  color: #14301F;
}
/* Özet iki satırla sınırlanır: satır yükseklikleri eşit kalsın,
   uzun özet listenin ritmini bozmasın. */
.n-item-summary {
  margin: 0;
  font-size: 13.5px;
  line-height: 1.6;
  color: #4A6153;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.n-item-foot {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px 14px;
  margin-top: auto;
  padding-top: 4px;
  font-size: 12.5px;
  font-weight: 600;
  color: #1C5E43;
}
.n-item-foot .n-source { font-weight: 500; color: #6E8578; }
.n-item-cta { display: inline-flex; align-items: center; gap: 6px; }
.n-item-cta svg { flex-shrink: 0; }
.n-arrow { transition: transform 0.25s ease; }
.n-item:hover .n-arrow { transform: translateX(3px); }

/* ---------------------------------------------------------
   Ortak küçük parçalar
   --------------------------------------------------------- */

/* Tarih haberin kimliğidir: küçük ama büyük harfli ve aralıklı —
   başlıktan önce göz ona takılır. */
.n-date {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #6E8578;
  font-variant-numeric: tabular-nums;
}
.n-lead .n-date { color: rgba(255,255,255,0.8); }

.n-cat-pill {
  padding: 4px 11px;
  border-radius: 999px;
  background: #E3F3E6;
  color: #1C5E43;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
/* Fotoğraf üzerinde aynı rozet: dolu yeşil yerine camsı çerçeve */
.n-cat-pill-over {
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.34);
  color: #EAF5EC;
}

.n-meta-item { display: inline-flex; align-items: center; gap: 7px; }
.n-meta-item svg { color: #1C5E43; flex-shrink: 0; }

/* ---------------------------------------------------------
   Detay penceresi
   Haber uzun metin taşır: dış pencere proje detayından daha geniş ve
   yüksektir; metin sütunu okunabilir satır uzunluğunda ortalanır.
   --------------------------------------------------------- */
.n-modal .w-modal-dialog {
  width: min(1440px, calc(100vw - 32px));
  height: min(800px, 92vh);
  max-height: 92vh;
}
.n-modal .w-modal-media { height: 260px; }
.n-modal .w-modal-body { padding: 34px 48px 52px; }
.n-modal .w-modal-body > h2,
.n-modal .w-modal-body > .w-modal-desc,
.n-modal-meta,
.n-modal-text {
  width: min(100%, 1040px);
  align-self: center;
}
.n-modal-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  padding-bottom: 18px;
  border-bottom: 1px solid #DCE7DA;
}
/* Gövde panelde zengin metin olarak yazılır: başlık, liste, alıntı,
   bağlantı ve görsel içerebilir. Ölçek makale okumaya göre kurulur —
   satır uzunluğu pencerenin genişliğiyle zaten sınırlıdır. */
.n-modal-text { font-size: 15px; line-height: 1.8; color: #3A5142; }
.n-modal-text > *:first-child { margin-top: 0; }
.n-modal-text > *:last-child { margin-bottom: 0; }
.n-modal-text p { margin: 0 0 16px; }
.n-modal-text h3 {
  margin: 30px 0 12px;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 500;
  font-size: 21px;
  line-height: 1.3;
  color: #14301F;
}
.n-modal-text h4 {
  margin: 24px 0 10px;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 500;
  font-size: 17px;
  line-height: 1.35;
  color: #1C5E43;
}
.n-modal-text ul, .n-modal-text ol { margin: 0 0 16px; padding-left: 22px; }
.n-modal-text li { margin-bottom: 7px; }
.n-modal-text blockquote {
  margin: 0 0 18px;
  padding: 6px 0 6px 18px;
  border-left: 3px solid #8FBF9F;
  font-size: 16px;
  font-style: italic;
  color: #2C4535;
}
.n-modal-text a { color: #1C5E43; font-weight: 600; text-decoration: underline; }
.n-modal-text a:hover { color: #14301F; }
.n-modal-text strong { color: #14301F; font-weight: 600; }
.n-modal-text img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 14px;
}
.n-modal-text figure { margin: 0 0 18px; }
.n-modal-text [data-width="75"] { width: 75%; }
.n-modal-text [data-width="50"] { width: 50%; }
.n-modal-text [data-width="33"] { width: 33%; }
.n-modal-text [data-width="25"] { width: 25%; }
.n-modal-text img[data-width], .n-modal-text figure[data-width],
.n-modal-text img[data-align="left"], .n-modal-text figure[data-align="left"] {
  margin-left: 0;
  margin-right: auto;
}
.n-modal-text img[data-align="center"], .n-modal-text figure[data-align="center"] {
  margin-left: auto;
  margin-right: auto;
}
.n-modal-text img[data-align="right"], .n-modal-text figure[data-align="right"] {
  margin-left: auto;
  margin-right: 0;
}
.n-modal-text p[data-align="left"], .n-modal-text h3[data-align="left"],
.n-modal-text h4[data-align="left"], .n-modal-text blockquote[data-align="left"],
.n-modal-text li[data-align="left"] { text-align: left; }
.n-modal-text p[data-align="center"], .n-modal-text h3[data-align="center"],
.n-modal-text h4[data-align="center"], .n-modal-text blockquote[data-align="center"],
.n-modal-text li[data-align="center"] { text-align: center; }
.n-modal-text p[data-align="right"], .n-modal-text h3[data-align="right"],
.n-modal-text h4[data-align="right"], .n-modal-text blockquote[data-align="right"],
.n-modal-text li[data-align="right"] { text-align: right; }
.n-modal-text [data-font-size="12"] { font-size: 12px; }
.n-modal-text [data-font-size="14"] { font-size: 14px; }
.n-modal-text [data-font-size="16"] { font-size: 16px; }
.n-modal-text [data-font-size="18"] { font-size: 18px; }
.n-modal-text [data-font-size="20"] { font-size: 20px; }
.n-modal-text [data-font-size="24"] { font-size: 24px; }
.n-modal-text [data-font-size="28"] { font-size: 28px; }
.n-modal-text [data-font-size="32"] { font-size: 32px; }
.n-modal-text figure[data-width] img { width: 100%; }
.n-modal-text figcaption {
  margin-top: 8px;
  font-size: 12.5px;
  line-height: 1.5;
  color: #6E8578;
}

/* ---------------------------------------------------------
   Duyarlı düzen
   --------------------------------------------------------- */
@media (max-width: 1040px) {
  .n-lead { min-height: 380px; }
  .n-lead-body { padding: 34px 32px 36px; }
}

@media (max-width: 720px) {
  .n-showcase { padding: 60px 20px; }
  .n-lead { min-height: 320px; margin-bottom: 28px; border-radius: 22px; }
  .n-lead-body { padding: 26px 22px 28px; gap: 12px; }
  .n-lead-summary { font-size: 14.5px; line-height: 1.65; }

  .n-list { grid-template-columns: 1fr; gap: 12px; }
  .n-item { grid-template-columns: 92px minmax(0, 1fr); gap: 14px; padding: 14px; }
  .n-thumb { width: 92px; height: 92px; border-radius: 12px; }
  .n-item-title { font-size: 16.5px; }
  .n-item-summary { -webkit-line-clamp: 3; }

  .n-modal .w-modal-dialog { width: 100%; height: 100%; max-height: 100%; }
  .n-modal .w-modal-media { height: 190px; }
  .n-modal .w-modal-body { padding: 22px 20px 28px; }
  .n-modal-text { font-size: 14.5px; line-height: 1.75; }
  .n-modal-text h3 { font-size: 19px; margin-top: 24px; }
  .n-modal-text h4 { font-size: 16px; margin-top: 20px; }
  .n-modal-text blockquote { font-size: 15px; }
}

/* Çok dar ekranda küçük kare satırı sıkıştırır; görseli üste al */
@media (max-width: 420px) {
  .n-item { grid-template-columns: minmax(0, 1fr); }
  .n-thumb { width: 100%; height: 150px; }
}
