/* ==========================================================================
   İLKE — index3.css
   Visual, publication-focused. Distinct sections with strong identity.
   ========================================================================== */

@import url("https://fonts.googleapis.com/css2?family=Spectral:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,300;1,400;1,500;1,600;1,700;1,800&family=Inter:wght@400;500;600;700;800&display=swap");

:root {
  --f-disp: "Spectral", Georgia, serif;
  --f-body: "Inter", "Helvetica Neue", sans-serif;
  --container: 1280px;
  --gutter: 32px;
  --accent: #C8341E;
  --r: 12px;
  --r-btn: 8px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body { background: var(--paper); color: var(--ink); font-family: var(--f-body); }
h1, h2, h3, h4, h5, h6 { margin: 0; font-family: var(--f-disp); font-weight: 500; }
p { margin: 0; }
a { color: inherit; text-decoration: none; }

.shell {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.eyebrow {
  font-family: var(--f-body);
  font-weight: 600; font-size: 11px;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--accent);
  display: inline-flex; align-items: center; gap: 10px;
}
.eyebrow::before {
  content: ""; display: inline-block;
  width: 24px; height: 1.5px; background: var(--accent);
}

/* ==========================================================================
   HEADER
   ========================================================================== */
.header {
  position: sticky; top: 0; z-index: 40;
  background: rgba(245,241,234,0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--paper-edge);
}
.header .shell {
  display: flex; align-items: center; justify-content: space-between;
  height: 76px;
}
.brand {
  display: inline-flex; align-items: center; gap: 14px;
  text-decoration: none;
}
.brand-logo {
  height: 34px; width: auto; display: block;
}
.brand-tag {
  font-family: var(--f-disp); font-style: italic; font-weight: 400;
  font-size: 11px; color: var(--ink-3); line-height: 1.3;
  letter-spacing: 0.02em;
  border-left: 1px solid var(--paper-edge);
  padding-left: 14px;
  white-space: nowrap;
}
.nav-links {
  display: flex; gap: 4px; align-items: center;
  font-family: var(--f-body); font-size: 14px; font-weight: 500;
}
.nav-links > a, .nav-item.has-mega > a {
  display: inline-flex; align-items: center; gap: 6px;
  position: relative;
  padding: 8px 14px;
  color: var(--ink);
  border-radius: var(--r-btn);
  transition: background 0.18s ease, color 0.18s ease;
  white-space: nowrap;
}
.nav-links > a:hover, .nav-item.has-mega > a:hover { color: var(--accent); background: var(--paper-2); }
.nav-item.has-mega > a .chev { width: 11px; height: 11px; opacity: 0.55; transition: transform 0.3s cubic-bezier(.2,.8,.2,1); }
.nav-item.has-mega:hover > a { color: var(--accent); background: var(--paper-2); }
.nav-item.has-mega:hover > a .chev { transform: rotate(180deg); opacity: 1; }

/* ==========================================================================
   MEGA MENU — Etkinlikler (calendar) + Yayınlar (archive grid)
   ========================================================================== */

/* Backdrop dimmer + blur over rest of page */
.mega-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(26,26,26,0.18);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 38;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.24s ease;
}
.mega-backdrop.on {
  opacity: 1;
  pointer-events: auto;
}

/* Mega panel — fixed, JS-positioned under its trigger */
.nav-item.has-mega { position: static; }
.mega {
  position: fixed;
  top: 0; left: 0;
  background: var(--paper);
  border: 1px solid var(--paper-edge);
  border-radius: 14px;
  padding: 0;
  box-shadow: 0 30px 60px rgba(26,26,26,0.14), 0 8px 16px rgba(26,26,26,0.06);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity 0.22s ease, transform 0.32s cubic-bezier(.2,.8,.2,1);
  z-index: 60;
  overflow: hidden;
  visibility: hidden;
}
.nav-item.has-mega.is-open .mega {
  opacity: 1; pointer-events: auto; transform: translateY(0);
  visibility: visible;
}
.nav-item.has-mega.is-open > a { color: var(--accent); background: var(--paper-2); }
.nav-item.has-mega.is-open > a .chev { transform: rotate(180deg); opacity: 1; }

.mega .eyebrow {
  font-family: var(--f-body); font-weight: 600;
  font-size: 10.5px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--ink-3);
  display: inline-block;
  margin-bottom: 14px;
}
.mega-all {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--f-body); font-weight: 600; font-size: 12.5px;
  color: var(--ink); border-bottom: 1.5px solid var(--ink);
  padding-bottom: 2px;
  white-space: nowrap;
  cursor: pointer;
}
.mega-all:hover { color: var(--accent); border-color: var(--accent); }
.mega-all svg { width: 12px; height: 12px; }

/* ---------- ETKİNLİKLER MEGA — calendar widget ---------- */
.mega-etk { width: 720px; max-width: calc(100vw - 64px); }
.met-grid {
  display: grid;
  grid-template-columns: 320px 1fr;
}

.met-cal {
  padding: 22px;
  background: var(--paper-2);
  border-right: 1px solid var(--paper-edge);
}
.met-cal-head {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 16px;
}
.met-mo {
  display: flex; align-items: baseline; gap: 6px;
}
.met-mo-name {
  font-family: var(--f-disp); font-weight: 500; font-size: 18px;
  letter-spacing: -0.01em; color: var(--ink);
}
.met-mo-yr {
  font-family: var(--f-disp); font-style: italic; font-weight: 400;
  font-size: 14px; color: var(--ink-3);
}
.met-nav {
  width: 28px; height: 28px; border-radius: 99px;
  background: transparent; border: 1px solid var(--paper-edge);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--ink-2); cursor: pointer;
  transition: all 0.16s ease;
}
.met-nav:hover { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.met-nav svg { width: 12px; height: 12px; }

.met-cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
}
.met-dow {
  font-family: var(--f-body); font-weight: 600;
  font-size: 10px; letter-spacing: 0.1em;
  color: var(--ink-3); text-transform: uppercase;
  text-align: center;
  padding: 6px 0;
}
.met-d {
  position: relative;
  font-family: var(--f-disp); font-weight: 500;
  font-size: 13px; color: var(--ink);
  text-align: center;
  padding: 7px 0;
  border-radius: 6px;
  cursor: pointer;
  letter-spacing: -0.01em;
  transition: background 0.14s ease, color 0.14s ease;
}
.met-d:hover { background: var(--paper); color: var(--accent); }
.met-d.met-pad, .met-d.met-mute { color: var(--ink-4); }
.met-d.met-has { font-weight: 600; }
.met-d.met-today {
  background: var(--ink); color: var(--paper);
}
.met-d.met-today:hover { background: var(--accent); color: var(--paper); }
.met-pip {
  position: absolute;
  left: 50%; transform: translateX(-50%);
  bottom: 3px;
  width: 4px; height: 4px; border-radius: 99px;
}
.met-d.met-today .met-pip { background: var(--paper) !important; }
.met-legend {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--paper-edge);
  display: flex; flex-direction: column; gap: 6px;
  font-family: var(--f-body); font-size: 11px; color: var(--ink-2);
}
.met-legend span { display: inline-flex; align-items: center; gap: 8px; }
.met-legend i { width: 7px; height: 7px; border-radius: 99px; flex-shrink: 0; }

.met-list { padding: 22px; display: flex; flex-direction: column; }
.met-list-head {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 8px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--paper-edge);
}
.met-list-head .eyebrow { margin: 0; }
.met-evt {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 14px;
  align-items: center;
  padding: 12px 8px;
  margin: 0 -8px;
  border-radius: 8px;
  cursor: pointer;
  position: relative;
  transition: background 0.18s ease, padding 0.32s cubic-bezier(.2,.8,.2,1);
}
.met-evt:hover { background: var(--paper-2); padding-left: 14px; }
.met-evt-date {
  display: flex; flex-direction: column; gap: 0;
  align-items: center; justify-content: center;
  width: 46px; height: 46px;
  border-radius: 8px;
  background: #fff;
  border: 1px solid var(--paper-edge);
  line-height: 1;
  flex-shrink: 0;
}
.met-evt-date .d {
  font-family: var(--f-disp); font-weight: 500;
  font-size: 19px; letter-spacing: -0.02em;
  color: var(--ink);
}
.met-evt-date .m {
  font-family: var(--f-body); font-weight: 600;
  font-size: 9px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--ink-3);
  margin-top: 1px;
}
.met-evt.is-now .met-evt-date {
  background: var(--ev);
  border-color: var(--ev);
}
.met-evt.is-now .met-evt-date .d,
.met-evt.is-now .met-evt-date .m { color: #fff; }
.met-evt-body { display: flex; flex-direction: column; gap: 3px; min-width: 0; }
.met-evt-tag {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--f-body); font-weight: 700;
  font-size: 9.5px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--ev);
}
.met-evt.is-now .met-evt-tag i {
  width: 6px; height: 6px; border-radius: 99px; background: var(--ev);
  animation: blink 1.4s ease-in-out infinite;
}
.met-evt h5 {
  font-family: var(--f-disp); font-weight: 500;
  font-size: 14.5px; line-height: 1.2;
  letter-spacing: -0.005em;
  color: var(--ink);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.met-evt:hover h5 { color: var(--ev); }
.met-evt-meta {
  font-family: var(--f-body); font-size: 11px;
  color: var(--ink-3); letter-spacing: 0.04em;
}

/* ---------- YAYINLAR MEGA — archive with shelf ---------- */
.mega-yay { width: 880px; max-width: calc(100vw - 64px); padding: 24px; }
.myk-head {
  display: flex; align-items: flex-start; justify-content: space-between;
  gap: 24px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--paper-edge);
  margin-bottom: 20px;
}
.myk-head .eyebrow { margin-bottom: 4px; }
.myk-title {
  font-family: var(--f-disp); font-weight: 500;
  font-size: 22px; letter-spacing: -0.015em;
  color: var(--ink);
  line-height: 1;
}
.myk-title em { font-style: italic; color: var(--accent); }
.myk-filters {
  display: flex; gap: 6px; flex-wrap: wrap;
  align-self: center;
}
.myk-chip {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 6px 11px;
  border-radius: 99px;
  border: 1px solid var(--paper-edge);
  background: transparent;
  font-family: var(--f-body); font-weight: 500; font-size: 12px;
  color: var(--ink-2);
  cursor: pointer;
  transition: all 0.14s ease;
}
.myk-chip:hover { border-color: var(--ink); color: var(--ink); }
.myk-chip.on { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.myk-chip i { width: 6px; height: 6px; border-radius: 99px; display: inline-block; }

.myk-grid {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 28px;
  align-items: flex-start;
}
.myk-side {
  display: flex; flex-direction: column; gap: 0;
}
.myk-type {
  display: flex; align-items: baseline; justify-content: space-between;
  padding: 10px 6px;
  border-radius: 6px;
  text-decoration: none;
  font-family: var(--f-disp); font-weight: 500;
  font-size: 14px; color: var(--ink);
  letter-spacing: -0.005em;
  border-bottom: 1px solid var(--paper-edge);
  transition: padding 0.3s cubic-bezier(.2,.8,.2,1), color 0.2s ease, background 0.2s ease;
}
.myk-type:last-of-type { border-bottom: 0; }
.myk-type:hover { background: var(--paper-2); padding-left: 12px; color: var(--accent); }
.myk-type .c {
  font-family: var(--f-body); font-weight: 600;
  font-size: 11px; letter-spacing: 0.04em;
  color: var(--ink-3);
}
.myk-type:hover .c { color: var(--accent); }

.myk-shelf {
  position: relative;
  min-width: 0;
}
.myk-shelf-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
}
.myk-cover {
  position: relative;
  aspect-ratio: 3/4;
  background: var(--c-bg);
  color: var(--c-ink);
  border-radius: 8px;
  padding: 12px;
  display: flex; flex-direction: column;
  cursor: pointer;
  overflow: hidden;
  isolation: isolate;
  transition: transform 0.4s cubic-bezier(.2,.8,.2,1), box-shadow 0.4s ease;
  text-decoration: none;
}
.myk-cover:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 36px rgba(26,26,26,0.14), 0 4px 8px rgba(26,26,26,0.06);
}
.myk-cover::after {
  content: ""; position: absolute; inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='240' height='240'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' seed='5'/><feColorMatrix values='0 0 0 0 0.3 0 0 0 0 0.1 0 0 0 0 0.1 0 0 0 0.06 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  pointer-events: none; mix-blend-mode: multiply;
}
.myk-cover .c-chip {
  align-self: flex-start;
  background: var(--c-acc);
  color: #fff;
  padding: 3px 6px;
  font-family: var(--f-body); font-weight: 700;
  font-size: 8.5px; letter-spacing: 0.2em;
}
.myk-cover .c-num {
  font-family: var(--f-disp); font-style: italic; font-weight: 300;
  font-size: 56px; line-height: 0.88;
  letter-spacing: -0.04em;
  color: var(--c-acc);
  align-self: flex-end;
  margin-top: auto;
  margin-bottom: 4px;
}
.myk-cover .c-t {
  font-family: var(--f-disp); font-weight: 500;
  font-size: 12px; line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--c-ink);
  margin-bottom: 4px;
}
.myk-cover .c-t em { font-style: italic; color: var(--c-acc); }
.myk-cover .c-meta {
  font-family: var(--f-body); font-weight: 600;
  font-size: 9px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--c-ink); opacity: 0.7;
}

/* MYK shelf — photo covers */
.myk-cover-photo {
  background: var(--paper-2);
  padding: 0;
}
.myk-cover-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  position: absolute; inset: 0;
}
.myk-cover-photo::after { display: none; }
.myk-cover-photo .c-chip,
.myk-cover-photo .c-num,
.myk-cover-photo .c-t,
.myk-cover-photo .c-meta { display: none; }

@media (max-width: 1080px) {
  .mega-etk { width: 600px; }
  .met-grid { grid-template-columns: 1fr; }
  .met-cal { border-right: 0; border-bottom: 1px solid var(--paper-edge); }
  .mega-yay { width: 720px; }
  .myk-grid { grid-template-columns: 1fr; }
  .myk-shelf-row { grid-template-columns: repeat(4, 1fr); }
  .myk-shelf-row > :nth-child(5) { display: none; }
}
.nav-actions { display: flex; align-items: center; gap: 12px; }
.lang {
  display: inline-flex; align-items: center; gap: 4px;
  font-family: var(--f-body); font-size: 12px; font-weight: 600;
  border: 1px solid var(--paper-edge); border-radius: var(--r-btn);
  overflow: hidden;
}
.lang a { padding: 6px 11px; color: var(--ink-3); }
.lang a.active { background: var(--ink); color: var(--paper); }
.search-btn {
  width: 40px; height: 40px; border-radius: var(--r-btn);
  border: 1px solid var(--paper-edge); background: transparent;
  display: inline-flex; align-items: center; justify-content: center;
  cursor: pointer; color: var(--ink);
}
.search-btn:hover { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.search-btn svg { width: 16px; height: 16px; }
.cta {
  display: inline-flex; align-items: center; gap: 8px;
  height: 40px; padding: 0 18px;
  border-radius: var(--r-btn);
  background: var(--ink); color: var(--paper);
  font-family: var(--f-body); font-weight: 600; font-size: 13.5px;
  cursor: pointer; border: 0;
  transition: background 0.16s ease;
}
.cta:hover { background: var(--accent); }
.cta svg { width: 14px; height: 14px; }
.cta.ghost { background: transparent; color: var(--ink); border: 1px solid var(--ink); }
.cta.ghost:hover { background: var(--ink); color: var(--paper); }

@media (max-width: 980px) {
  .nav-links { display: none; }
}

/* ==========================================================================
   HERO — featured publication
   ========================================================================== */
.hero {
  position: relative;
  padding: 64px 0 96px;
  overflow: hidden;
  isolation: isolate;
}
.hero::before {
  content: ""; position: absolute; inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='240' height='240'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' seed='7'/><feColorMatrix values='0 0 0 0 0.42 0 0 0 0 0.36 0 0 0 0 0.26 0 0 0 0.16 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  opacity: 0.5; mix-blend-mode: multiply; pointer-events: none; z-index: -1;
}
.hero .shell {
  display: grid;
  grid-template-columns: 1fr 620px;
  gap: 80px;
  align-items: center;
}
.hero-left {
  display: flex; flex-direction: column; gap: 24px;
}
.hero-meta {
  display: inline-flex; align-items: center; gap: 14px;
  font-family: var(--f-body);
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--ink-2); font-weight: 600;
}
.hero-meta .pulse {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--accent); color: #fff;
  padding: 5px 10px; border-radius: 99px;
}
.hero-meta .pulse i { width: 6px; height: 6px; border-radius: 99px; background: #fff; animation: blink 1.4s ease-in-out infinite; }
@keyframes blink { 0%,100% { opacity:1; } 50% { opacity: 0.3; } }
.hero h1 {
  font-family: var(--f-disp);
  font-weight: 500;
  font-size: clamp(48px, 6vw, 84px);
  line-height: 0.98;
  letter-spacing: -0.03em;
  color: var(--ink);
  text-wrap: balance;
  margin: 0;
}
.hero h1 em { font-style: italic; color: var(--accent); font-weight: 400; }
.hero-deck {
  font-family: var(--f-disp);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(18px, 1.6vw, 22px);
  line-height: 1.45;
  color: var(--ink-2);
  max-width: 540px;
  text-wrap: pretty;
}
.hero-byline {
  display: flex; align-items: center; gap: 16px;
  padding: 16px 0;
  border-top: 1px solid var(--paper-edge);
  border-bottom: 1px solid var(--paper-edge);
  font-family: var(--f-body); font-size: 13px;
  color: var(--ink-3);
  flex-wrap: wrap;
}
.hero-byline b { color: var(--ink); font-weight: 600; }
.hero-byline .dot { width: 3px; height: 3px; border-radius: 99px; background: var(--ink-3); }

/* topic chips under deck */
.hero-topics { display: flex; flex-wrap: wrap; gap: 6px; margin: -8px 0 4px; }
.hero-topics .topic {
  display: inline-flex; align-items: center;
  padding: 6px 12px;
  border-radius: 99px;
  border: 1px solid var(--paper-edge);
  background: var(--bg-card);
  font-family: var(--f-body); font-weight: 500; font-size: 12.5px;
  color: var(--ink-2);
  letter-spacing: 0.01em;
}
.hero-topics .topic::before {
  content: ""; display: inline-block;
  width: 5px; height: 5px; border-radius: 99px;
  background: var(--accent);
  margin-right: 8px;
  opacity: 0.7;
}

/* key stats — derived from the report */
.hero-keystats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  padding: 18px 0;
  border-top: 1px solid var(--paper-edge);
  border-bottom: 1px solid var(--paper-edge);
}
.hero-keystats > div {
  display: flex; flex-direction: column; gap: 2px;
  border-left: 1px solid var(--paper-edge);
  padding-left: 14px;
}
.hero-keystats > div:first-child { border-left: 0; padding-left: 0; }
.hero-keystats b {
  font-family: var(--f-disp); font-weight: 500;
  font-style: italic;
  font-size: 28px; line-height: 1; letter-spacing: -0.02em;
  color: var(--ink);
}
.hero-keystats span {
  font-family: var(--f-body); font-size: 11.5px;
  letter-spacing: 0.06em;
  color: var(--ink-3);
}
@media (max-width: 540px) {
  .hero-keystats { grid-template-columns: 1fr 1fr; }
  .hero-keystats > div:nth-child(3) { border-left: 0; padding-left: 0; }
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  height: 50px; padding: 0 24px;
  border-radius: var(--r-btn);
  font-family: var(--f-body); font-weight: 600; font-size: 14px;
  cursor: pointer; border: 0;
  text-decoration: none;
  white-space: nowrap;
  transition: all 0.16s ease;
}
.btn.primary { background: var(--ink); color: var(--paper); }
.btn.primary:hover { background: var(--accent); }
.btn.secondary { background: transparent; color: var(--ink); border: 1.5px solid var(--ink); }
.btn.secondary:hover { background: var(--ink); color: var(--paper); }
.btn svg { width: 16px; height: 16px; }

/* Hero cover - single publication */
.hero-cover-wrap {
  position: relative;
  display: flex; justify-content: flex-end; align-items: center;
  min-height: 680px;
}
.hero-cover-single {
  position: relative;
  width: 460px;
  height: 620px;
  transform: rotate(2deg);
  transition: transform 0.4s cubic-bezier(.2,.8,.2,1);
}
.hero-cover-single:hover { transform: rotate(0deg) translateY(-4px); }
.hero-cover {
  position: absolute; inset: 0;
  border-radius: 8px;
  overflow: hidden;
  isolation: isolate;
}
.hero-cover-photo {
  background: var(--paper-2);
  box-shadow:
    0 60px 100px rgba(76,16,16,0.22),
    0 16px 32px rgba(76,16,16,0.12),
    inset 0 0 0 1px rgba(255,255,255,0.4);
}
.hero-cover-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.hero-cover::after {
  content: ""; position: absolute; inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='240' height='240'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' seed='5'/><feColorMatrix values='0 0 0 0 0.3 0 0 0 0 0.1 0 0 0 0 0.1 0 0 0 0.10 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  mix-blend-mode: multiply; pointer-events: none;
}
.hero-cover .pet {
  position: absolute; right: -80px; bottom: -120px;
  width: 360px; height: 360px;
  color: var(--accent); opacity: 0.45;
  pointer-events: none; z-index: -1;
}
.hero-cover .top-meta {
  display: flex; align-items: center; justify-content: space-between;
  font-family: var(--f-body); font-size: 10.5px;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: #5C1A22; font-weight: 600;
}
.hero-cover .top-meta .chip {
  background: var(--accent); color: #fff;
  padding: 4px 8px;
}
.hero-cover .num {
  font-family: var(--f-disp); font-weight: 300; font-style: italic;
  font-size: 200px; line-height: 0.85;
  letter-spacing: -0.06em;
  color: var(--accent);
  align-self: flex-end;
  margin-left: auto;
  margin-top: 36px;
  margin-bottom: auto;
}
.hero-cover .title {
  font-family: var(--f-disp); font-weight: 500;
  font-size: 52px; line-height: 0.96;
  color: #2A0810; letter-spacing: -0.025em;
  margin-bottom: 22px;
}
.hero-cover .title em { font-style: italic; color: var(--accent); }
.hero-cover .bot {
  display: flex; align-items: center; justify-content: space-between;
  font-family: var(--f-body); font-size: 11px; color: #5C1A22;
  letter-spacing: 0.06em; text-transform: uppercase;
  padding-top: 14px; border-top: 1px solid rgba(92,26,34,0.2);
}
.hero-cover .bot b { color: #2A0810; font-weight: 700; }
.hero-cover-floating {
  position: absolute; right: -32px; bottom: 32px;
  background: #fff;
  padding: 14px 18px;
  border-radius: 99px;
  box-shadow: 0 12px 24px rgba(0,0,0,0.12);
  display: flex; align-items: center; gap: 12px;
  font-family: var(--f-body); font-size: 12.5px;
  z-index: 2;
}
.hero-cover-floating .avs { display: flex; }
.hero-cover-floating .av {
  width: 28px; height: 28px; border-radius: 99px;
  background: var(--paper-2); border: 2px solid #fff;
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--f-disp); font-weight: 600; font-size: 11px;
  color: var(--ink); margin-left: -8px;
}
.hero-cover-floating .av:first-child { margin-left: 0; }
.hero-cover-floating .av.a1 { background: #E8C5C0; }
.hero-cover-floating .av.a2 { background: #DDECEB; }
.hero-cover-floating .av.a3 { background: #C9D3B5; }
.hero-cover-floating b { font-weight: 700; }

@media (max-width: 1180px) {
  .hero .shell { grid-template-columns: 1fr 520px; gap: 48px; }
  .hero-cover-single { width: 400px; height: 540px; }
  .hero-cover .num { font-size: 168px; }
  .hero-cover .title { font-size: 44px; }
}
@media (max-width: 980px) {
  .hero .shell { grid-template-columns: 1fr; gap: 56px; }
  .hero-cover-wrap { justify-content: center; min-height: 540px; }
  .hero-cover-single { width: 360px; height: 480px; transform: rotate(0); }
}
@media (max-width: 540px) {
  .hero-cover-single { width: 280px; height: 380px; }
  .hero-cover { padding: 28px; }
  .hero-cover .num { font-size: 120px; }
  .hero-cover .title { font-size: 32px; }
}

/* ==========================================================================
   SECTION HEAD
   ========================================================================== */
.section { padding: 80px 0; position: relative; }
.section.tight { padding: 56px 0; }

.sec-head {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 32px;
  margin-bottom: 40px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--ink);
}
.sec-head .left { display: flex; flex-direction: column; gap: 10px; }
.sec-head h2 {
  font-family: var(--f-disp);
  font-weight: 500;
  font-size: clamp(32px, 3.6vw, 50px);
  line-height: 1.0;
  letter-spacing: -0.025em;
  color: var(--ink);
  text-wrap: balance;
}
.sec-head h2 em { font-style: italic; color: var(--accent); font-weight: 400; }
.sec-head .right { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.more {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 18px;
  border: 1px solid var(--ink);
  border-radius: var(--r-btn);
  font-family: var(--f-body); font-weight: 600; font-size: 13px;
  color: var(--ink); white-space: nowrap;
  background: transparent; cursor: pointer;
  transition: all 0.14s ease;
}
.more:hover { background: var(--ink); color: var(--paper); }
.more svg { width: 13px; height: 13px; flex-shrink: 0; }
.sec-head .right .more { /* legacy alias */ }

/* filter chips */
.chips { display: flex; gap: 8px; flex-wrap: wrap; }
.chip {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 13px;
  border-radius: 99px;
  border: 1px solid var(--paper-edge);
  background: transparent;
  font-family: var(--f-body); font-weight: 500; font-size: 12.5px;
  color: var(--ink-2); cursor: pointer;
  transition: all 0.14s ease;
}
.chip:hover { border-color: var(--ink); color: var(--ink); }
.chip.on { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.chip .d { width: 7px; height: 7px; border-radius: 99px; }
.chip.epam .d { background: #E63946; }
.chip.todam .d { background: #5BAFA8; }
.chip.ikam .d { background: #4A6B3A; }
.chip.sta .d { background: #1E5B8F; }

/* ==========================================================================
   YAYINLAR — publication covers grid
   ========================================================================== */
.pubs {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 22px;
}
.pub {
  display: flex; flex-direction: column;
  text-decoration: none; color: inherit;
  cursor: pointer;
  min-width: 0;
}

/* Photo-cover variant */
.pub-cover-img {
  position: relative;
  aspect-ratio: 3/4.2;
  border-radius: 8px;
  overflow: hidden;
  background: var(--paper-2);
  margin-bottom: 14px;
  box-shadow:
    0 6px 14px rgba(26,26,26,0.08),
    0 1px 2px rgba(26,26,26,0.04);
  transition: transform 0.32s cubic-bezier(.2,.8,.2,1),
              box-shadow 0.32s cubic-bezier(.2,.8,.2,1);
}
.pub:hover .pub-cover-img {
  transform: translateY(-6px);
  box-shadow:
    0 24px 48px rgba(26,26,26,0.18),
    0 6px 12px rgba(26,26,26,0.10);
}
.pub-cover-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.pub-cover-img .pub-chip {
  position: absolute; top: 12px; left: 12px;
  color: #fff;
  padding: 4px 9px;
  font-family: var(--f-body); font-weight: 700;
  font-size: 9.5px; letter-spacing: 0.18em; text-transform: uppercase;
  border-radius: 3px;
  backdrop-filter: blur(4px);
}
.pub-cover {
  position: relative;
  aspect-ratio: 3/4.2;
  border-radius: 8px;
  overflow: hidden;
  padding: 16px 14px;
  display: flex; flex-direction: column;
  isolation: isolate;
  background: var(--p-bg, var(--paper-2));
  color: var(--p-ink, var(--ink));
  margin-bottom: 12px;
  transition: transform 0.24s ease, box-shadow 0.24s ease;
  box-shadow: 0 4px 16px rgba(26,26,26,0.06);
}
.pub:hover .pub-cover { transform: translateY(-6px); box-shadow: 0 20px 40px rgba(26,26,26,0.14), 0 4px 8px rgba(26,26,26,0.06); }
.pub-cover::after {
  content: ""; position: absolute; inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='240' height='240'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' seed='5'/><feColorMatrix values='0 0 0 0 0.3 0 0 0 0 0.1 0 0 0 0 0.1 0 0 0 0.08 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  pointer-events: none; mix-blend-mode: multiply;
}
.pub-cover .pet {
  position: absolute; right: -40px; top: -40px;
  width: 160px; height: 160px;
  color: var(--p-accent, var(--ink));
  opacity: 0.45; pointer-events: none; z-index: -1;
}
.pub-cover .top {
  display: flex; align-items: center; justify-content: space-between;
  gap: 8px;
}
.pub-cover .chip {
  background: var(--p-accent, var(--ink));
  color: #fff;
  padding: 3px 7px;
  border-radius: 3px;
  font-family: var(--f-body); font-weight: 700;
  font-size: 8.5px; letter-spacing: 0.18em; text-transform: uppercase;
}
.pub-cover .iss {
  font-family: var(--f-body); font-size: 9px;
  letter-spacing: 0.16em; text-transform: uppercase;
  font-weight: 600;
  opacity: 0.7;
}
.pub-cover .num {
  font-family: var(--f-disp); font-weight: 300; font-style: italic;
  font-size: 60px; line-height: 0.88;
  letter-spacing: -0.04em;
  color: var(--p-accent, var(--p-ink));
  align-self: flex-end;
  margin-top: auto; margin-bottom: 6px;
}
.pub-cover .t {
  font-family: var(--f-disp); font-weight: 500;
  font-size: 14px; line-height: 1.15;
  letter-spacing: -0.005em;
  text-wrap: balance;
  margin-top: auto;
}
.pub-cover .t em { font-style: italic; color: var(--p-accent); }
.pub-meta {
  display: flex; align-items: center; justify-content: space-between;
  gap: 8px;
  font-family: var(--f-body); font-size: 11px; color: var(--ink-3);
  letter-spacing: 0.02em;
  min-width: 0;
}
.pub-meta b { color: var(--ink); font-weight: 600; }
.pub-meta > span:first-child { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; min-width: 0; }
.pub-meta .dl {
  display: inline-flex; align-items: center; gap: 4px;
  font-weight: 600; color: var(--ink);
  flex-shrink: 0;
}
.pub-meta .dl svg { width: 11px; height: 11px; }
.pub:hover .pub-meta .dl { color: var(--accent); }

@media (max-width: 1180px) { .pubs { grid-template-columns: repeat(3, 1fr); gap: 22px; }
  .pubs > :nth-child(n+4) { display: none; }
}
@media (max-width: 700px) { .pubs { grid-template-columns: repeat(2, 1fr); }
  .pubs > :nth-child(n+3) { display: none; }
}
@media (max-width: 480px) { .pubs { grid-template-columns: 1fr; }
  .pubs > :nth-child(n+2) { display: none; }
}

/* ==========================================================================
   BİRİMLER — 4 centers
   ========================================================================== */
.units {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.unit {
  position: relative;
  border-radius: var(--r);
  padding: 32px 28px;
  overflow: hidden;
  isolation: isolate;
  background: var(--u-bg, var(--bg-card));
  color: var(--u-ink, var(--ink));
  cursor: pointer;
  text-decoration: none;
  min-height: 360px;
  display: flex; flex-direction: column;
  transition: transform 0.32s cubic-bezier(.2,.8,.2,1),
              box-shadow 0.32s cubic-bezier(.2,.8,.2,1);
  box-shadow: 0 4px 12px rgba(26,26,26,0.04);
}
.unit:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 44px rgba(26,26,26,0.12), 0 6px 12px rgba(26,26,26,0.06);
}
.unit::after {
  content: ""; position: absolute; inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='240' height='240'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' seed='5'/><feColorMatrix values='0 0 0 0 0.3 0 0 0 0 0.1 0 0 0 0 0.1 0 0 0 0.05 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  pointer-events: none; mix-blend-mode: multiply;
}
.unit .pet {
  position: absolute; right: -90px; bottom: -120px;
  width: 320px; height: 320px;
  color: var(--u-petal, var(--u-acc)); opacity: 0.10;
  pointer-events: none; z-index: -1;
  transition: opacity 0.5s ease, transform 0.8s cubic-bezier(.2,.8,.2,1);
}
.unit:hover .pet { opacity: 0.18; transform: rotate(28deg) scale(1.06); }
.unit-logo {
  height: 56px;
  width: auto;
  display: block;
  margin-bottom: 20px;
  max-width: 70%;
}
.unit .full {
  font-family: var(--f-disp); font-style: italic;
  font-weight: 400; font-size: 17px;
  line-height: 1.3;
  margin-bottom: 18px;
  color: var(--u-ink);
  text-wrap: balance;
}
.unit .desc {
  font-family: var(--f-body); font-size: 13.5px;
  line-height: 1.55;
  color: var(--u-ink);
  opacity: 0.82;
  margin-bottom: 24px;
  flex: 1;
  transition: opacity 0.35s ease;
}
.unit:hover .desc { opacity: 0.95; }
.unit .stats {
  display: flex; gap: 28px; align-items: baseline;
  padding-top: 18px;
  border-top: 1px solid var(--u-rule, rgba(26,26,26,0.14));
  font-family: var(--f-body); font-size: 10.5px;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--u-ink);
  opacity: 0.70;
  transition: opacity 0.35s ease;
}
.unit:hover .stats { opacity: 0.95; }
.unit .stats span b {
  display: block;
  font-family: var(--f-disp); font-style: italic; font-weight: 500;
  font-size: 28px; line-height: 1; letter-spacing: -0.02em;
  color: var(--u-ink);
  margin-bottom: 8px; opacity: 1;
}
.unit .arrow {
  position: absolute; top: 24px; right: 24px;
  width: 38px; height: 38px;
  border-radius: 99px;
  background: rgba(26,26,26,0.08);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--u-ink);
  transition: transform 0.4s cubic-bezier(.2,.8,.2,1),
              background 0.32s ease, color 0.32s ease;
}
.unit:hover .arrow {
  background: var(--u-acc);
  color: var(--paper);
  transform: translate(4px, -4px);
}
.unit .arrow svg { width: 15px; height: 15px; transition: transform 0.4s cubic-bezier(.2,.8,.2,1); }
.unit:hover .arrow svg { transform: translate(1px, -1px); }

@media (max-width: 1100px) { .units { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .units { grid-template-columns: 1fr; } }

/* ==========================================================================
   PODCAST
   ========================================================================== */
.podcast {
  position: relative;
  background: #14110D;
  color: #F5F1EA;
  border-radius: var(--r);
  overflow: hidden;
  isolation: isolate;
  padding: 48px;
}
.podcast::after {
  content: ""; position: absolute; inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='240' height='240'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' seed='9'/><feColorMatrix values='0 0 0 0 1 0 0 0 0 0.9 0 0 0 0 0.7 0 0 0 0.08 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  pointer-events: none; mix-blend-mode: screen;
}
.podcast .pet {
  position: absolute; right: -160px; top: -180px;
  width: 560px; height: 560px;
  color: var(--accent); opacity: 0.18;
  pointer-events: none; z-index: -1;
}
.podcast-head {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 32px; flex-wrap: wrap;
  padding-bottom: 24px; margin-bottom: 32px;
  border-bottom: 1px solid rgba(245,241,234,0.16);
}
.podcast-head .eyebrow { color: var(--gold-soft); }
.podcast-head .eyebrow::before { background: var(--gold-soft); }
.podcast-head h2 {
  color: #F5F1EA;
  font-family: var(--f-disp);
  font-weight: 500;
  font-size: clamp(28px, 3.4vw, 44px);
  line-height: 1.02;
  letter-spacing: -0.025em;
  margin-top: 10px;
}
.podcast-head h2 em { font-style: italic; color: var(--gold-soft); }
.podcast-head .platforms {
  display: flex; gap: 8px; align-items: center;
}
.podcast-head .platforms a {
  width: 38px; height: 38px;
  border-radius: 99px;
  background: rgba(245,241,234,0.08);
  border: 1px solid rgba(245,241,234,0.16);
  display: inline-flex; align-items: center; justify-content: center;
  color: #F5F1EA;
  transition: all 0.16s ease;
}
.podcast-head .platforms a:hover { background: var(--gold); color: #14110D; border-color: var(--gold); }
.podcast-head .platforms a svg { width: 15px; height: 15px; }
.podcast-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  align-items: start;
}
.pod-featured {
  background: rgba(245,241,234,0.04);
  border: 1px solid rgba(245,241,234,0.12);
  border-radius: var(--r);
  padding: 28px;
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 24px;
  align-items: center;
}
.pod-art {
  width: 200px; height: 200px;
  border-radius: 12px;
  background: linear-gradient(135deg, #4A2818 0%, #C8341E 100%);
  position: relative;
  overflow: hidden;
  isolation: isolate;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.pod-art::after {
  content: ""; position: absolute; inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='240' height='240'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' seed='4'/><feColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.12 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  mix-blend-mode: multiply;
}
.pod-art .ep {
  font-family: var(--f-disp); font-weight: 300; font-style: italic;
  font-size: 96px; line-height: 0.85;
  color: #F5F1EA; letter-spacing: -0.04em;
  position: absolute; right: 14px; bottom: 6px;
  opacity: 0.85;
}
.pod-art .lbl {
  position: absolute; left: 18px; top: 16px;
  font-family: var(--f-body); font-size: 10px;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: rgba(245,241,234,0.7); font-weight: 600;
}
.pod-art .pet-small {
  position: absolute; left: -40px; bottom: -40px;
  width: 140px; height: 140px;
  color: var(--gold); opacity: 0.4; z-index: -1;
}
.pod-featured-body { display: flex; flex-direction: column; gap: 10px; }
.pod-featured-body .epnum {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--f-body); font-size: 10.5px;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold-soft); font-weight: 600;
}
.pod-featured-body .epnum::before {
  content: "YENİ BÖLÜM";
  background: var(--accent); color: #fff;
  padding: 4px 8px;
  font-weight: 700;
}
.pod-featured-body h3 {
  font-family: var(--f-disp);
  font-weight: 500;
  font-size: 26px;
  line-height: 1.1;
  letter-spacing: -0.015em;
  color: #F5F1EA;
  margin: 4px 0;
}
.pod-featured-body h3 em { color: var(--gold-soft); font-style: italic; }
.pod-featured-body .hosts {
  font-family: var(--f-body); font-size: 13px;
  color: rgba(245,241,234,0.7);
}
.pod-featured-body .hosts b { color: #F5F1EA; font-weight: 600; }
.pod-featured-body .row {
  display: flex; align-items: center; gap: 14px;
  margin-top: 8px;
}
.play-btn {
  display: inline-flex; align-items: center; gap: 12px;
  background: var(--gold);
  color: #1A1A1A;
  border: 0; cursor: pointer;
  height: 46px; padding: 0 22px 0 18px;
  border-radius: var(--r-btn);
  font-family: var(--f-body); font-weight: 700; font-size: 13.5px;
  letter-spacing: 0.02em;
  transition: background 0.14s ease;
}
.play-btn:hover { background: #F5F1EA; }
.play-btn svg { width: 16px; height: 16px; }
.pod-featured-body .dur {
  font-family: var(--f-body); font-size: 12px;
  color: rgba(245,241,234,0.55);
  letter-spacing: 0.06em;
}

.pod-list { display: flex; flex-direction: column; gap: 4px; }
.pod-item {
  display: grid;
  grid-template-columns: 56px 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 14px;
  border-radius: 12px;
  cursor: pointer;
  transition: background 0.16s ease;
}
.pod-item:hover { background: rgba(245,241,234,0.06); }
.pod-item .miniart {
  width: 56px; height: 56px; border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--f-disp); font-weight: 300; font-style: italic;
  font-size: 28px; color: #F5F1EA; letter-spacing: -0.02em;
  flex-shrink: 0; position: relative; overflow: hidden;
}
.pod-item .miniart.a1 { background: linear-gradient(135deg, #2E6A66 0%, #5BAFA8 100%); }
.pod-item .miniart.a2 { background: linear-gradient(135deg, #2F4524 0%, #4A6B3A 100%); }
.pod-item .miniart.a3 { background: linear-gradient(135deg, #123E64 0%, #1E5B8F 100%); }
.pod-item .miniart.a4 { background: linear-gradient(135deg, #6E2E10 0%, #BE9A57 100%); }
.pod-item .pod-body { display: flex; flex-direction: column; gap: 4px; min-width: 0; }
.pod-item .ep-meta {
  font-family: var(--f-body); font-size: 10.5px;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold-soft); font-weight: 600;
}
.pod-item h5 {
  font-family: var(--f-disp); font-weight: 500;
  font-size: 16px; line-height: 1.25;
  letter-spacing: -0.005em;
  color: #F5F1EA;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.pod-item .ep-host {
  font-family: var(--f-body); font-size: 11.5px;
  color: rgba(245,241,234,0.6);
}
.pod-item .ep-play {
  width: 36px; height: 36px;
  border-radius: 99px;
  background: rgba(245,241,234,0.08);
  border: 1px solid rgba(245,241,234,0.16);
  display: inline-flex; align-items: center; justify-content: center;
  color: #F5F1EA;
  flex-shrink: 0;
  transition: all 0.14s ease;
}
.pod-item:hover .ep-play { background: var(--gold); color: #1A1A1A; border-color: var(--gold); }
.pod-item .ep-play svg { width: 13px; height: 13px; }

@media (max-width: 980px) {
  .podcast { padding: 32px; }
  .podcast-grid { grid-template-columns: 1fr; gap: 32px; }
  .pod-featured { grid-template-columns: 1fr; }
  .pod-art { width: 100%; height: 280px; }
}

/* ==========================================================================
   HABERLER — news 3-card grid + ajanda strip
   ========================================================================== */
.news-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 24px;
}
.news {
  display: flex; flex-direction: column;
  text-decoration: none; color: inherit;
  cursor: pointer;
}
.news-img {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 16px;
  aspect-ratio: 16/10;
  background: var(--n-bg, var(--paper-2));
  display: flex; align-items: flex-end;
  padding: 20px;
  isolation: isolate;
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}
.news:hover .news-img { transform: translateY(-4px); box-shadow: 0 18px 36px rgba(26,26,26,0.10); }
.news-img::after {
  content: ""; position: absolute; inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='240' height='240'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' seed='5'/><feColorMatrix values='0 0 0 0 0.3 0 0 0 0 0.1 0 0 0 0 0.1 0 0 0 0.06 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  mix-blend-mode: multiply; pointer-events: none;
}
.news-img .pet {
  position: absolute; right: -40px; top: -40px;
  width: 200px; height: 200px;
  color: var(--n-accent, var(--ink)); opacity: 0.32; z-index: -1;
}
.news-img .chip {
  background: var(--n-accent, var(--ink));
  color: #fff;
  padding: 5px 10px;
  font-family: var(--f-body); font-weight: 700;
  font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase;
  align-self: flex-end;
  margin-left: auto;
}
.news-img .lbl {
  position: absolute; left: 20px; top: 20px;
  font-family: var(--f-body); font-size: 10.5px;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--n-ink, var(--ink));
  opacity: 0.7; font-weight: 600;
}
.news-img .iconish {
  position: absolute; left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--f-disp); font-weight: 300; font-style: italic;
  font-size: 120px;
  color: var(--n-accent); opacity: 0.85;
  letter-spacing: -0.04em;
}
.news .date {
  font-family: var(--f-body); font-size: 11px;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--ink-3); font-weight: 600;
  margin-bottom: 8px;
}
.news h3 {
  font-family: var(--f-disp); font-weight: 500;
  font-size: 22px; line-height: 1.15;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin-bottom: 8px;
  text-wrap: balance;
}
.news h3 em { font-style: italic; color: var(--accent); }
.news:hover h3 { color: var(--accent); }
.news p {
  font-family: var(--f-body); font-size: 13.5px;
  line-height: 1.55;
  color: var(--ink-3);
  margin: 0;
}
.news.featured h3 { font-size: 26px; }
.news.featured .news-img { aspect-ratio: 16/11; }

@media (max-width: 1024px) {
  .news-grid { grid-template-columns: 1fr 1fr; }
  .news.featured { grid-column: 1 / -1; }
  .news.featured .news-img { aspect-ratio: 21/9; }
}
@media (max-width: 600px) {
  .news-grid { grid-template-columns: 1fr; }
  .news.featured .news-img { aspect-ratio: 16/10; }
}

/* ajanda strip */
.agenda-strip {
  background: var(--paper-2);
  border-radius: var(--r);
  padding: 28px 32px;
  margin-top: 32px;
  display: grid;
  grid-template-columns: 200px 1fr auto;
  gap: 32px;
  align-items: center;
}
.agenda-strip .heading {
  font-family: var(--f-disp); font-weight: 500;
  font-size: 22px;
  line-height: 1.15;
  letter-spacing: -0.01em;
}
.agenda-strip .heading em { font-style: italic; color: var(--accent); }
.agenda-strip .heading .lbl {
  display: block;
  font-family: var(--f-body); font-weight: 600;
  font-size: 10.5px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 4px;
}
.agenda-evts {
  display: flex; gap: 4px; flex: 1;
  overflow: hidden;
}
.agenda-evt {
  flex: 1; min-width: 0;
  display: flex; align-items: center; gap: 14px;
  padding: 10px 14px;
  border-left: 1px solid var(--paper-edge);
  cursor: pointer;
}
.agenda-evt:first-child { border-left: 0; }
.agenda-evt:hover h6 { color: var(--accent); }
.agenda-evt .d {
  text-align: center;
  flex-shrink: 0;
}
.agenda-evt .d .day {
  font-family: var(--f-disp); font-weight: 500;
  font-size: 28px; line-height: 0.9; letter-spacing: -0.03em;
  color: var(--ink);
  display: block;
}
.agenda-evt .d .mo {
  display: block;
  font-family: var(--f-body); font-weight: 600;
  font-size: 9.5px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--ink-3);
  margin-top: 2px;
}
.agenda-evt h6 {
  font-family: var(--f-disp); font-weight: 500;
  font-size: 14.5px; line-height: 1.2;
  letter-spacing: -0.005em;
  color: var(--ink);
  margin-bottom: 4px;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.agenda-evt .em {
  font-family: var(--f-body); font-size: 10.5px;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--ink-3); font-weight: 600;
}
.agenda-evt .em .tag {
  display: inline-block;
  font-family: var(--f-body); font-weight: 700;
  font-size: 9px; padding: 1px 5px;
  color: #fff; margin-right: 6px;
}
.agenda-evt .em .tag.epam { background: #E63946; }
.agenda-evt .em .tag.todam { background: #5BAFA8; }
.agenda-evt .em .tag.ikam { background: #4A6B3A; }
.agenda-evt .em .tag.sta { background: #1E5B8F; }

@media (max-width: 980px) {
  .agenda-strip { grid-template-columns: 1fr; gap: 18px; padding: 20px; }
  .agenda-evts { flex-direction: column; gap: 6px; }
  .agenda-evt { border-left: 0; border-top: 1px solid var(--paper-edge); padding: 12px 0; width: 100%; }
  .agenda-evt:first-child { border-top: 0; }
}

/* ==========================================================================
   ETKİNLİKLER — event cards (2-col with featured row)
   ========================================================================== */
.events {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.event {
  display: grid;
  grid-template-columns: 84px 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 20px 24px;
  background: transparent;
  border-bottom: 1px solid var(--paper-edge);
  border-radius: 0;
  text-decoration: none; color: inherit;
  position: relative;
  transition: background 0.3s cubic-bezier(.2,.8,.2,1);
}
.event:hover {
  background: var(--paper-2);
}

.event .ev-date {
  display: flex; flex-direction: column; gap: 0;
  text-align: left;
  border-right: 1px solid var(--paper-edge);
  padding-right: 20px;
  line-height: 1;
  height: 100%;
  justify-content: center;
}
.event .ev-date .d {
  font-family: var(--f-disp); font-weight: 500;
  font-size: 40px; letter-spacing: -0.03em;
  color: var(--ink);
}
.event .ev-date .m {
  font-family: var(--f-body); font-weight: 600;
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--ink-2);
  margin-top: 6px;
}
.event .ev-date .yr {
  font-family: var(--f-body);
  font-size: 10.5px; color: var(--ink-3);
  margin-top: 3px; letter-spacing: 0.04em;
}

.event .ev-body { display: flex; flex-direction: column; gap: 8px; min-width: 0; }
.event .ev-tags {
  display: flex; gap: 6px; flex-wrap: wrap;
}
.event .ev-tags .tag {
  display: inline-block;
  font-family: var(--f-body); font-weight: 700;
  font-size: 9.5px; letter-spacing: 0.18em; text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 3px;
  background: transparent;
  color: var(--e-accent, var(--ink-2));
  border: 1px solid var(--e-accent, var(--paper-edge));
}
.event .ev-tags .tag.todam { color: #2E6A66; border-color: #5BAFA8; }
.event .ev-tags .tag.ikam  { color: #2F4524; border-color: #4A6B3A; }
.event .ev-tags .tag.sta   { color: #123E64; border-color: #1E5B8F; }
.event .ev-tags .tag.epam  { color: #B4232F; border-color: #E63946; }
.event h3 {
  font-family: var(--f-disp); font-weight: 500;
  font-size: 20px; line-height: 1.2;
  letter-spacing: -0.012em;
  color: var(--ink);
  text-wrap: balance;
}
.event h3 em { font-style: italic; color: var(--e-accent, var(--accent)); }
.event p {
  font-family: var(--f-body); font-size: 13.5px;
  line-height: 1.5; color: var(--ink-3);
}
.event .ev-meta {
  display: flex; gap: 16px; flex-wrap: wrap;
  font-family: var(--f-body); font-size: 12px;
  color: var(--ink-2);
  margin-top: 4px;
}
.event .ev-meta span { display: inline-flex; align-items: center; gap: 6px; }
.event .ev-meta svg { width: 13px; height: 13px; color: var(--e-accent, var(--ink-3)); }

.event .ev-cta { display: flex; align-items: center; }
.btn-ev {
  display: inline-flex; align-items: center; gap: 8px;
  height: 40px; padding: 0 18px;
  border-radius: var(--r-btn);
  background: var(--ink); color: var(--paper);
  font-family: var(--f-body); font-weight: 600; font-size: 13px;
  white-space: nowrap;
}
.event:hover .btn-ev { background: var(--e-accent, var(--accent)); }
.btn-ev.outline {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--ink);
  padding: 0 17px;
}
.event:hover .btn-ev.outline {
  background: var(--e-accent, var(--ink));
  color: var(--paper);
  border-color: var(--e-accent, var(--ink));
}

/* Featured event spans full width on first row */
.event.featured {
  grid-column: 1 / -1;
  background: var(--e-bg);
  color: var(--e-ink);
  border: 0;
  border-radius: var(--r);
  padding: 32px 36px;
  grid-template-columns: 120px 1fr auto;
  gap: 32px;
  isolation: isolate;
  overflow: hidden;
}
.event.featured:hover { background: var(--e-bg); }
.event.featured::before { display: none; }
.event.featured::after {
  content: ""; position: absolute; inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='240' height='240'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' seed='5'/><feColorMatrix values='0 0 0 0 0.3 0 0 0 0 0.1 0 0 0 0 0.1 0 0 0 0.07 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  mix-blend-mode: multiply; pointer-events: none;
}
.event.featured .pet {
  position: absolute; right: -100px; bottom: -150px;
  width: 380px; height: 380px;
  color: var(--e-petal, currentColor);
  opacity: 0.20;
  pointer-events: none; z-index: -1;
}
.event.featured .ev-date { border-right-color: rgba(245,241,234,0.20); padding-right: 26px; }
.event.featured .ev-date .d {
  color: var(--e-ink);
  font-size: 64px;
  font-style: italic;
  font-weight: 400;
}
.event.featured .ev-date .m { color: var(--e-ink); opacity: 0.9; font-size: 13px; }
.event.featured .ev-date .yr { color: var(--e-ink); opacity: 0.65; font-size: 12px; }
.event.featured .ev-tags .tag {
  background: rgba(245,241,234,0.16);
  color: var(--e-ink);
  border: 1px solid rgba(245,241,234,0.22);
  backdrop-filter: blur(2px);
}
.event.featured .ev-tags .tag.g {
  background: rgba(245,241,234,0.08);
  border-color: rgba(245,241,234,0.14);
}
.event.featured h3 { color: var(--e-ink); font-size: 28px; }
.event.featured h3 em { color: rgba(245,241,234,0.85); }
.event.featured p { color: rgba(245,241,234,0.78); font-size: 14.5px; max-width: 56ch; }
.event.featured .ev-meta { color: rgba(245,241,234,0.72); }
.event.featured .ev-meta svg { color: rgba(245,241,234,0.72); }
.event.featured .btn-ev {
  background: var(--gold); color: #1A1A1A;
  height: 46px; padding: 0 22px; font-size: 14px;
}
.event:hover .btn-ev,
.event.featured:hover .btn-ev { background: var(--gold-soft); color: #1A1A1A; }

@media (max-width: 1024px) {
  .events { grid-template-columns: 1fr; }
}
@media (max-width: 880px) {
  .event { padding: 18px 20px; gap: 16px; grid-template-columns: 72px 1fr; }
  .event .ev-cta { grid-column: 2; margin-top: 4px; }
  .event.featured { padding: 24px 24px; grid-template-columns: 96px 1fr; }
  .event.featured .ev-cta { grid-column: 2; }
}
@media (max-width: 540px) {
  .event .ev-date .d { font-size: 36px; }
  .event.featured .ev-date .d { font-size: 48px; }
  .event h3, .event.featured h3 { font-size: 18px; }
  .event.featured h3 { font-size: 22px; }
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.signup-band {
  background: var(--ink);
  color: var(--paper);
  border-radius: var(--r);
  padding: 40px 48px;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 40px;
  align-items: center;
  margin-bottom: 0;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.signup-band::after {
  content: ""; position: absolute; inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='240' height='240'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' seed='3'/><feColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.10 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  mix-blend-mode: screen; pointer-events: none;
}
.signup-band .pet {
  position: absolute; right: -120px; bottom: -160px;
  width: 440px; height: 440px;
  color: var(--gold); opacity: 0.18;
  pointer-events: none; z-index: -1;
}
.signup-band h3 {
  font-family: var(--f-disp); font-weight: 500;
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.0; letter-spacing: -0.02em;
  color: var(--paper);
}
.signup-band h3 em { font-style: italic; color: var(--gold-soft); }
.signup-band p {
  font-family: var(--f-body); font-size: 14px;
  color: rgba(245,241,234,0.65);
  margin-top: 10px;
  line-height: 1.55;
  max-width: 420px;
}
.signup-form {
  display: flex; gap: 8px;
  background: rgba(245,241,234,0.06);
  border: 1px solid rgba(245,241,234,0.12);
  padding: 6px;
  border-radius: var(--r-btn);
  position: relative; z-index: 1;
}
.signup-form input {
  flex: 1; background: transparent; border: 0;
  padding: 0 18px;
  font-family: var(--f-body); font-size: 14px;
  color: var(--paper); outline: none;
}
.signup-form input::placeholder { color: rgba(245,241,234,0.4); }
.signup-form button {
  background: var(--gold);
  color: #1A1A1A;
  border: 0; cursor: pointer;
  padding: 12px 22px;
  border-radius: var(--r-btn);
  font-family: var(--f-body); font-weight: 700; font-size: 13.5px;
  white-space: nowrap;
  transition: background 0.14s ease;
}
.signup-form button:hover { background: var(--gold-soft); }
@media (max-width: 720px) {
  .signup-band { grid-template-columns: 1fr; padding: 32px; }
  .signup-form { flex-direction: column; border-radius: 14px; padding: 10px; }
  .signup-form input { padding: 12px 16px; }
  .signup-form button { border-radius: 8px; padding: 14px; }
}

/* ==========================================================================
   FOOTER — dark
   ========================================================================== */
.footer {
  padding: 72px 0 32px;
  background: #14110D;
  color: rgba(245,241,234,0.82);
  border-top: 0;
  position: relative;
  isolation: isolate;
  overflow: hidden;
}
.footer::before {
  content: ""; position: absolute; inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='240' height='240'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' seed='6'/><feColorMatrix values='0 0 0 0 1 0 0 0 0 0.95 0 0 0 0 0.85 0 0 0 0.05 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  mix-blend-mode: screen; pointer-events: none; z-index: -1;
}
.foot-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 56px;
}
.foot-brand .foot-mark {
  height: 38px;
  width: auto;
  display: block;
  filter: brightness(0) invert(1);
  opacity: 0.96;
  margin-bottom: 4px;
}
.foot-brand p {
  font-family: var(--f-disp); font-style: italic;
  font-size: 15px; color: rgba(245,241,234,0.7); line-height: 1.55;
  margin: 22px 0 22px;
  max-width: 320px;
}
.foot-brand p em { color: var(--gold-soft); }
.foot-brand .addr {
  font-family: var(--f-body); font-size: 12.5px;
  color: rgba(245,241,234,0.5);
  line-height: 1.6;
  margin-bottom: 22px;
}
.foot-brand .addr b { color: var(--paper); font-weight: 600; }
.social a {
  width: 38px; height: 38px;
  border-radius: 99px;
  border: 1px solid rgba(245,241,234,0.16);
  background: rgba(245,241,234,0.04);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--paper);
  transition: all 0.18s ease;
}
.social a:hover { background: var(--gold); color: #14110D; border-color: var(--gold); transform: translateY(-2px); }
.social svg { width: 14px; height: 14px; }

.foot-col h6 {
  font-family: var(--f-body); font-weight: 700;
  font-size: 10.5px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold-soft);
  margin-bottom: 18px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(245,241,234,0.16);
}
.foot-col a {
  display: block;
  font-family: var(--f-body); font-size: 14px;
  color: rgba(245,241,234,0.78);
  padding: 5px 0;
  transition: color 0.14s ease, padding 0.32s cubic-bezier(.2,.8,.2,1);
}
.foot-col a:hover { color: var(--gold-soft); padding-left: 6px; }

.foot-bottom {
  margin-top: 56px;
  padding-top: 24px;
  border-top: 1px solid rgba(245,241,234,0.12);
  display: flex; align-items: center; justify-content: space-between;
  font-family: var(--f-body); font-size: 12px;
  color: rgba(245,241,234,0.45); flex-wrap: wrap; gap: 14px;
}
.foot-bottom .legal { display: flex; gap: 20px; }
.foot-bottom a { color: rgba(245,241,234,0.55); }
.foot-bottom a:hover { color: var(--gold-soft); }

@media (max-width: 980px) { .foot-grid { grid-template-columns: 1fr 1fr; } .foot-brand { grid-column: 1 / -1; } }
@media (max-width: 540px) { .foot-grid { grid-template-columns: 1fr; } }
