/* Oto Sanayicileri — Kurumsal premium (kontrollü şıklık, açık okunabilirlik) */
@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:wght@400;500;600;700&family=Source+Sans+3:wght@400;500;600;700&display=swap');

:root {
  --navy-950: #141820;
  --navy-900: #1e2633;
  --navy-800: #2a3344;
  --navy-700: #3a4558;
  --slate-50: #f7f8f9;
  --slate-100: #f0f2f4;
  --slate-200: #e2e5ea;
  --slate-300: #c8ced6;
  --slate-400: #9aa3b0;
  --slate-500: #6b7380;
  --slate-600: #4d5562;
  --slate-700: #363d49;
  --slate-800: #232933;
  --accent: #b8953c;
  --accent-hover: #9a7c30;
  --nav-underline: #b8953c;
  --nav-underline-dark: #ffffff;
  --warning: #b45309;
  --font-sans: 'Source Sans 3', system-ui, sans-serif;
  --font-display: 'IBM Plex Sans', system-ui, sans-serif;
  --max-width: 72rem;
  --measure: 65ch;
  --radius: 3px;
  --space-section: clamp(3.5rem, 7vw, 6rem);
  --header-h: 4.75rem;
  --overlay-hero: linear-gradient(100deg, rgba(20, 24, 32, 0.82) 0%, rgba(20, 24, 32, 0.5) 50%, rgba(20, 24, 32, 0.25) 100%);
  --text-display-xl: clamp(2.5rem, 6vw, 4.25rem);
  --text-display-lg: clamp(1.875rem, 3.5vw, 2.75rem);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: clip; max-width: 100%; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--font-sans);
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--slate-800);
  background: #fff;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
  max-width: 100%;
}
html.is-home,
body.is-home {
  background: #fff;
}
/* Overlay: ilk ekranda beyaz sızmasın — hero koyu zemini üste kadar */
html.is-home.header-overlay,
body.is-home.header-overlay {
  background: var(--navy-950);
}
h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--navy-900);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
}
h1 { font-size: var(--text-display-xl); }
h2 { font-size: var(--text-display-lg); }
h3 { font-size: 1.375rem; letter-spacing: -0.01em; }
a { color: var(--accent); text-decoration: none; transition: color 0.15s; }
a:hover { color: var(--accent-hover); }
img { max-width: 100%; height: auto; display: block; }

.container { width: 100%; max-width: var(--max-width); margin: 0 auto; padding: 0 1rem; }
@media (min-width: 640px) { .container { padding: 0 1.5rem; } }

.section { padding: var(--space-section) 0; background: #fff; }
.section-alt { background: var(--slate-50); }
.section--dark { background: var(--navy-900); color: #fff; }
.section--dark h2, .section--dark h3 { color: #fff; }
.section--tight { padding: 2.5rem 0; }

.eyebrow {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--slate-500);
  margin-bottom: 0.75rem;
}
.section--dark .eyebrow { color: var(--slate-400); }
.section-lead {
  font-size: clamp(1.0625rem, 1.5vw, 1.25rem);
  line-height: 1.7;
  color: var(--slate-600);
  max-width: var(--measure);
  margin-top: 1rem;
}
.section-header { display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between; gap: 1rem; margin-bottom: 2.75rem; }
.section-header p { color: var(--slate-600); margin-top: 0.5rem; }
.section-link { font-size: 0.875rem; font-weight: 600; white-space: nowrap; }

.split-53, .split-75, .split-84 { display: grid; gap: 2.5rem; }
@media (min-width: 1024px) {
  .split-53 { grid-template-columns: 5fr 7fr; gap: 4rem; }
  .split-75 { grid-template-columns: 7fr 5fr; gap: 3rem; align-items: center; }
  .split-84 { grid-template-columns: 8fr 4fr; gap: 3.5rem; align-items: start; }
}

/* Header — ince, premium */
.site-header {
  background: #fff;
  border-bottom: 1px solid var(--slate-200);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 1px 2px rgba(0,0,0,.04);
  transition: background 0.2s, box-shadow 0.2s, border-color 0.2s;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 0;
  gap: 1rem;
}
.logo {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  max-width: 100%;
  gap: 0;
  color: var(--navy-900);
  flex-shrink: 0;
  text-decoration: none;
  position: relative;
  line-height: 0;
  background: transparent;
  padding: 0;
  margin: 0;
  box-shadow: none;
}
.logo:hover { color: var(--navy-900); }
/* Yükseklik odaklı — okunur, hitbox görsele yakın */
.logo-img {
  height: 66px;
  width: auto;
  max-width: min(320px, 52vw);
  object-fit: contain;
  object-position: left center;
  display: block;
  background: transparent;
  filter: none;
}
/* Varsayılan: koyu logo. Overlay (scroll öncesi): açık logo */
.logo-img--light { display: none !important; }
.site-header--overlay:not(.is-scrolled) .logo-img--dark { display: none !important; }
.site-header--overlay:not(.is-scrolled) .logo-img--light { display: block !important; }
.site-header--overlay.is-scrolled .logo-img--light { display: none !important; }
.site-header--overlay.is-scrolled .logo-img--dark { display: block !important; }

/* Footer: şeffaf + açık logo */
.logo--footer {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  background: transparent;
  padding: 0;
  border-radius: 0;
  box-shadow: none;
  border: none;
  margin-bottom: 1.15rem;
  line-height: 0;
}
.logo--footer .logo-img {
  height: 76px;
  width: auto;
  max-width: min(360px, 82vw);
  margin-bottom: 0;
  filter: none;
  display: block !important;
}
.logo--footer .logo-img--dark { display: none !important; }
.logo--footer .logo-img--light { display: block !important; }
@media (min-width: 768px) {
  .logo-img { height: 72px; max-width: min(340px, 34vw); }
  .logo--footer .logo-img { height: 82px; max-width: min(380px, 38vw); }
  .header-inner { padding: 0.5rem 0; }
}
@media (min-width: 1100px) {
  .logo-img { height: 78px; max-width: min(360px, 30vw); }
  .logo--footer .logo-img { height: 88px; max-width: min(400px, 32vw); }
}
@media (max-width: 640px) {
  .logo-img { height: 50px; max-width: min(210px, 56vw); }
  .header-inner { padding: 0.4rem 0; }
  .logo--footer .logo-img { height: 62px; max-width: min(280px, 80vw); }
  .section-header .section-link { white-space: normal; }
  .news-row h3 { min-width: 0; flex-basis: 100%; }
}

/* Anasayfa overlay */
.site-header--overlay:not(.is-scrolled) .logo,
.site-header--overlay:not(.is-scrolled) .logo:hover {
  color: #fff;
}
.site-header--overlay.is-scrolled .logo,
.site-header--overlay.is-scrolled .logo:hover {
  color: var(--navy-900);
}

/* Anasayfa: hero üzerine şeffaf menü (görsel en üstten) */
body.is-home .site-header--overlay:not(.is-scrolled),
.site-header--overlay:not(.is-scrolled) {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  width: 100%;
  margin: 0;
  background: transparent;
  border-bottom: none;
  box-shadow: none;
  z-index: 100;
}
.site-header--overlay {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  width: 100%;
  margin: 0;
  z-index: 100;
}
.site-header--overlay .main-nav > a,
.site-header--overlay .main-nav > .nav-dropdown > a {
  color: rgba(255,255,255,.92);
}
.site-header--overlay .main-nav > a:hover,
.site-header--overlay .main-nav > .nav-dropdown > a:hover {
  color: #fff;
  border-bottom-color: var(--nav-underline-dark);
}
.site-header--overlay .main-nav > a.active,
.site-header--overlay .main-nav > .nav-dropdown > a.active {
  color: #fff;
  border-bottom-color: var(--nav-underline-dark);
}
.site-header--overlay .header-cta {
  background: #fff;
  color: var(--navy-900);
  border-color: #fff;
}
.site-header--overlay .header-cta:hover {
  background: var(--slate-100);
  color: var(--navy-950);
}
.site-header--overlay .menu-toggle { color: #fff; }
.site-header--overlay.is-scrolled .menu-toggle { color: var(--slate-700); }

/* Scroll sonrası / solid hale dönüş */
body.is-home .site-header--overlay.is-scrolled,
.site-header--overlay.is-scrolled {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  margin: 0;
  background: #fff;
  border-bottom: 1px solid var(--slate-200);
  box-shadow: 0 4px 20px rgba(15,23,41,.08);
}
.site-header--overlay.is-scrolled .main-nav > a,
.site-header--overlay.is-scrolled .main-nav > .nav-dropdown > a {
  color: var(--slate-700);
}
.site-header--overlay.is-scrolled .main-nav > a:hover,
.site-header--overlay.is-scrolled .main-nav > .nav-dropdown > a:hover {
  color: var(--navy-900);
  border-bottom-color: var(--nav-underline);
}
.site-header--overlay.is-scrolled .main-nav > a.active,
.site-header--overlay.is-scrolled .main-nav > .nav-dropdown > a.active {
  color: var(--navy-900);
  border-bottom-color: var(--nav-underline);
}
.site-header--overlay.is-scrolled .header-cta {
  background: var(--navy-900);
  color: #fff;
  border-color: var(--navy-900);
}
.site-header--overlay.is-scrolled .menu-toggle { color: var(--slate-700); }

/*
  Anasayfa hero: tam viewport, üstte boşluk yok.
  Overlay: şeffaf menü hero üstünde.
  Solid: hep beyaz fixed menü.
*/
body.is-home.header-overlay .site-header,
body.is-home .site-header--overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  margin: 0;
  z-index: 100;
}
.is-home .site-header:not(.site-header--overlay) {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  margin: 0;
  background: #fff;
  z-index: 100;
}
.is-home .hero-full {
  margin: 0;
  padding: 0;
  position: relative;
  display: flex;
  align-items: center;
  background: var(--navy-950);
  min-height: 100vh;
  min-height: 100svh;
  min-height: 100dvh;
}
.is-home .hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.is-home .hero-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  padding-top: calc(var(--header-h) + clamp(1.25rem, 3vw, 2.25rem));
  padding-bottom: clamp(1.75rem, 3.5vw, 2.5rem);
}
@media (min-width: 768px) {
  :root { --header-h: 5.15rem; }
}
@media (min-width: 1100px) {
  :root { --header-h: 5.5rem; }
}
@media (max-width: 640px) {
  :root { --header-h: 4.25rem; }
}

/* ========== Haber slider (hero paneli) ========== */
.hero-panel--news {
  padding: 0;
  border: none;
  border-left: none;
  background: transparent;
  overflow: visible;
}
.news-slider--hero {
  position: relative;
  max-width: none;
  margin: 0;
}
.news-slider-viewport {
  position: relative;
  overflow: hidden;
  border-radius: 6px;
}
.news-slider-slide {
  display: none;
  animation: newsFade 0.35s ease;
}
.news-slider-slide.is-active { display: block; }
@keyframes newsFade {
  from { opacity: 0.4; }
  to { opacity: 1; }
}
.news-slider-card {
  display: grid;
  gap: 0;
  background: #fff;
  color: var(--slate-800);
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(0,0,0,.28);
  border-left: 3px solid var(--accent);
}
.news-slider-media {
  background: var(--navy-800);
  min-height: 10rem;
}
.news-slider-media img {
  width: 100%;
  height: 100%;
  min-height: 10rem;
  max-height: 11.5rem;
  object-fit: cover;
  display: block;
}
.news-slider-body {
  padding: 1.15rem 1.25rem 1.35rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.news-slider-body .eyebrow {
  color: var(--accent);
  margin-bottom: 0.45rem;
}
.hero-panel--news .news-slider-body .eyebrow {
  color: var(--accent);
}
.news-slider-body h2 {
  font-size: clamp(1.1rem, 1.8vw, 1.35rem);
  margin: 0 0 0.55rem;
  letter-spacing: -0.02em;
  color: var(--navy-900);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.hero-panel--news .news-slider-body h2 { color: var(--navy-900); }
.news-slider-body p {
  color: var(--slate-600);
  font-size: 0.875rem;
  line-height: 1.55;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.hero-panel--news .news-slider-body p { color: var(--slate-600); }
.news-slider-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-top: 1rem;
  padding-top: 0.85rem;
  border-top: 1px solid var(--slate-200);
}
.news-slider-meta time {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--slate-500);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.news-slider-meta .btn {
  padding: 0.45rem 0.85rem;
  font-size: 0.8125rem;
}
.news-slider-nav {
  position: absolute;
  top: 5rem;
  z-index: 2;
  width: 2.15rem;
  height: 2.15rem;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.4);
  background: rgba(15,23,41,.7);
  color: #fff;
  font-size: 1.25rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s;
}
.news-slider-nav:hover { background: rgba(15,23,41,.9); }
.news-slider-prev { left: 0.5rem; }
.news-slider-next { right: 0.5rem; }
.news-slider-dots {
  display: flex;
  justify-content: center;
  gap: 0.4rem;
  margin-top: 0.85rem;
}
.news-slider-dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,.4);
  cursor: pointer;
  padding: 0;
}
.news-slider-dot.is-active {
  background: #fff;
  width: 1.2rem;
  border-radius: 999px;
}

/* Wide (yan yana) haber slider */
.home-news-wide {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background: var(--slate-50, #f8fafc);
}
.news-slider--wide {
  position: relative;
  max-width: none;
}
.news-slider-card--wide {
  display: grid;
  grid-template-columns: 1fr;
  min-height: 0;
}
@media (min-width: 800px) {
  .news-slider-card--wide {
    grid-template-columns: 1.15fr 1fr;
    min-height: 20rem;
  }
}
.news-slider-card--wide .news-slider-media {
  min-height: 14rem;
}
.news-slider-card--wide .news-slider-media img {
  min-height: 14rem;
  max-height: none;
  height: 100%;
  object-fit: cover;
}
@media (min-width: 800px) {
  .news-slider-card--wide .news-slider-media,
  .news-slider-card--wide .news-slider-media img {
    min-height: 100%;
    max-height: none;
  }
}
.news-slider-card--wide .news-slider-body {
  padding: 1.75rem 1.75rem 2rem;
}
.news-slider-card--wide .news-slider-body h2 {
  font-size: clamp(1.35rem, 2.4vw, 1.85rem);
  -webkit-line-clamp: 3;
  line-clamp: 3;
}
.news-slider-card--wide .news-slider-body p {
  -webkit-line-clamp: 4;
  line-clamp: 4;
  font-size: 0.95rem;
}
.news-slider--wide .news-slider-nav {
  background: rgba(15, 23, 41, 0.75);
}
.news-slider--wide .news-slider-footer {
  margin-top: 0.85rem;
}
.news-slider--wide .news-slider-dot {
  background: rgba(15, 23, 41, 0.25);
}
.news-slider--wide .news-slider-dot.is-active {
  background: var(--navy-900);
}

/* Hero fill (eski panel stili — panel/wide ile uyumlu kalsın) */
.hero-full--news .hero-inner {
  padding-top: clamp(2.5rem, 5vw, 3.5rem);
}
.news-slider--hero-fill {
  position: relative;
  max-width: none;
  margin-bottom: 1.5rem;
}
.news-slider-card--hero {
  display: grid;
  grid-template-columns: 1fr;
  background: rgba(255, 255, 255, 0.97);
  color: var(--slate-800);
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.32);
  border-left: 3px solid var(--accent);
  min-height: 0;
}
@media (min-width: 860px) {
  .news-slider-card--hero {
    grid-template-columns: 1.2fr 1fr;
    min-height: 22rem;
  }
}
.news-slider-card--hero .news-slider-media {
  min-height: 0;
  background: var(--navy-800);
  aspect-ratio: 4 / 3;
  overflow: hidden;
}
.news-slider-card--hero .news-slider-media img {
  width: 100%;
  height: 100%;
  min-height: 0;
  max-height: none;
  object-fit: cover;
  object-position: center;
  display: block;
}
@media (min-width: 860px) {
  .news-slider-card--hero .news-slider-media {
    aspect-ratio: auto;
    height: 100%;
    min-height: 22rem;
    max-height: 26rem;
  }
  .news-slider-card--hero .news-slider-media img {
    min-height: 100%;
    height: 100%;
  }
}
.news-slider-card--hero .news-slider-body {
  padding: 1.75rem 1.85rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.news-slider-card--hero .news-slider-body .eyebrow {
  color: var(--accent);
}
.news-slider-card--hero .news-slider-body h2 {
  font-size: clamp(1.4rem, 2.6vw, 2rem);
  color: var(--navy-900);
  -webkit-line-clamp: 3;
  line-clamp: 3;
}
.news-slider-card--hero .news-slider-body p {
  color: var(--slate-600);
  font-size: 0.95rem;
  -webkit-line-clamp: 4;
  line-clamp: 4;
}
.news-slider--hero-fill .news-slider-nav {
  background: rgba(15, 23, 41, 0.75);
}
.news-slider--hero-fill .news-slider-dots {
  margin-top: 0.75rem;
}
.news-slider--hero-fill .news-slider-dot {
  background: rgba(255, 255, 255, 0.45);
}
.news-slider--hero-fill .news-slider-dot.is-active {
  background: #fff;
}
.news-slider--hero-fill .news-slider-footer .section-link {
  color: rgba(255, 255, 255, 0.85);
}
.news-slider--hero-fill .news-slider-footer .section-link:hover {
  color: #fff;
}

/* ========== Anasayfa manşet — açık kurumsal dergi düzeni ========== */
.home-masthead {
  background:
    linear-gradient(180deg, #f4f5f7 0%, #eef0f3 48%, #f7f8f9 100%);
  border-bottom: 1px solid var(--slate-200);
  /* Fixed header altına girmesin */
  padding: calc(var(--header-h) + 1.35rem) 0 0;
}
body.home-masthead-page .home-masthead {
  padding-top: calc(var(--header-h) + 1.35rem);
}
.home-masthead-inner {
  padding-bottom: 0;
}
.masthead-trio {
  display: grid;
  gap: 1.25rem;
  align-items: stretch;
}
@media (min-width: 900px) {
  .masthead-trio {
    grid-template-columns: minmax(15rem, 1fr) minmax(14rem, 0.95fr) minmax(15rem, 1fr);
    gap: 1.5rem;
    align-items: center;
  }
}
.masthead-panel {
  background: #fff;
  border: 1px solid var(--slate-200);
  border-top: 3px solid var(--accent);
  border-radius: var(--radius);
  padding: 1.2rem 1.2rem 1.3rem;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  box-shadow: 0 10px 28px rgba(20, 24, 32, 0.05);
  min-height: 0;
  height: 100%;
}
.masthead-panel-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.65rem;
}
.masthead-panel-head .eyebrow {
  margin: 0;
  color: var(--navy-900);
}
.masthead-panel--chairman {
  border-top-color: var(--navy-900);
}
.masthead-chairman-body {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
  flex: 1;
}
.masthead-chairman-photo {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid var(--slate-200);
}
.masthead-chairman-body blockquote {
  margin: 0;
  flex: 1;
  min-width: 0;
}
.masthead-chairman-body blockquote p {
  font-family: var(--font-display);
  font-size: 0.98rem;
  line-height: 1.55;
  color: var(--navy-900);
  font-weight: 500;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.masthead-chairman-meta {
  margin-top: 0.85rem;
  display: grid;
  gap: 0.15rem;
}
.masthead-chairman-meta strong {
  font-size: 0.92rem;
  color: var(--navy-900);
}
.masthead-chairman-meta span {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--slate-500);
  font-weight: 600;
}
.masthead-panel-cta {
  align-self: stretch;
  text-align: center;
  margin-top: auto;
  padding-top: 1rem;
}
.masthead-logo-stage {
  display: flex;
  align-items: center;
  justify-content: center;
  order: -1;
}
@media (min-width: 900px) {
  .masthead-logo-stage { order: 0; }
}
.masthead-logo-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  text-decoration: none;
  color: inherit;
  padding: 0.5rem 0.75rem 0.85rem;
  transition: transform 0.2s ease;
}
.masthead-logo-link:hover {
  color: inherit;
  transform: translateY(-3px);
}
.masthead-logo-img {
  width: clamp(11.5rem, 28vw, 17.5rem);
  height: auto;
  aspect-ratio: 1;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 14px 28px rgba(20, 24, 32, 0.16));
}
.masthead-logo-label {
  margin-top: 0.85rem;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy-900);
  letter-spacing: -0.01em;
  max-width: 16rem;
  line-height: 1.3;
}
.masthead-logo-cta {
  margin-top: 0.35rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--accent);
}
.masthead-logo-link:hover .masthead-logo-cta {
  color: var(--accent-hover);
}
.masthead-news-strip {
  margin-top: 1.75rem;
}
.masthead-news-strip-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.85rem;
}
.masthead-news-strip-head .eyebrow {
  margin: 0;
  color: var(--navy-900);
}
.news-slider--masthead {
  position: relative;
  margin: 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
}
.news-slider--masthead .news-slider-viewport {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--slate-200);
  box-shadow: 0 10px 28px rgba(20, 24, 32, 0.06);
}
.news-slider--masthead .news-slider-slide.is-active {
  height: 100%;
}
.masthead-feature {
  display: grid;
  grid-template-columns: 1fr;
  color: inherit;
  text-decoration: none;
  min-height: 100%;
}
.masthead-feature:hover { color: inherit; }
@media (min-width: 720px) {
  .masthead-feature {
    grid-template-columns: 1.05fr 1fr;
  }
}
.masthead-feature-media {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--slate-200);
  position: relative;
}
@media (min-width: 720px) {
  .masthead-feature-media {
    aspect-ratio: auto;
    min-height: 14rem;
    height: 100%;
  }
}
.masthead-feature-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}
.masthead-feature:hover .masthead-feature-media img {
  transform: scale(1.03);
}
.masthead-feature-body {
  padding: 1.35rem 1.4rem 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-top: 3px solid var(--accent);
}
@media (min-width: 720px) {
  .masthead-feature-body {
    border-top: none;
    border-left: 3px solid var(--accent);
  }
}
.masthead-feature-body .eyebrow {
  color: var(--accent);
  margin-bottom: 0.55rem;
}
.masthead-feature-body h2 {
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  margin: 0 0 0.65rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.masthead-feature:hover .masthead-feature-body h2 {
  color: var(--accent-hover);
}
.masthead-feature-body p {
  color: var(--slate-600);
  font-size: 0.92rem;
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin: 0;
}
.masthead-feature-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-top: 1rem;
}
.masthead-feature-meta time {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--slate-500);
}
.masthead-read {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--navy-900);
}
.masthead-feature:hover .masthead-read {
  color: var(--accent);
}
.news-slider--masthead .news-slider-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  background: rgba(30, 38, 51, 0.78);
  color: #fff;
  border: none;
  width: 2.35rem;
  height: 2.35rem;
  margin: 0;
}
.news-slider--masthead .news-slider-prev { left: 0.65rem; }
.news-slider--masthead .news-slider-next { right: 0.65rem; }
.news-slider--masthead .news-slider-nav:hover {
  background: var(--navy-900);
}
.news-slider--masthead .news-slider-dots {
  position: absolute;
  left: 0.85rem;
  bottom: 0.75rem;
  z-index: 3;
  margin: 0;
  justify-content: flex-start;
  padding: 0.25rem 0.4rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
}
.news-slider--masthead .news-slider-dot {
  background: var(--slate-300);
}
.news-slider--masthead .news-slider-dot.is-active {
  background: var(--accent);
  width: 1.35rem;
}
.masthead-announce {
  display: grid;
  gap: 0.2rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--slate-200);
  color: inherit;
  text-decoration: none;
}
.masthead-announce:last-of-type {
  border-bottom: none;
}
.masthead-announce:hover { color: inherit; }
.masthead-announce.is-priority {
  border-left: 3px solid var(--warning);
  padding-left: 0.75rem;
}
.masthead-announce time {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--slate-500);
}
.masthead-announce strong {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--navy-900);
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.masthead-announce:hover strong {
  color: var(--accent);
}
.masthead-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem 1.5rem;
  margin-top: 1.75rem;
  padding: 1.35rem 0 1.65rem;
  border-top: 1px solid var(--slate-200);
}
@media (min-width: 640px) {
  .masthead-stats {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
.masthead-stats .stat-value {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.5vw, 1.85rem);
  font-weight: 700;
  color: var(--navy-900);
  line-height: 1.1;
}
.masthead-stats .stat-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--slate-500);
  margin-top: 0.35rem;
}
.aside-announcements--gold {
  border-top-color: var(--accent);
  background: #fff;
}
.home-digest .section-header {
  margin-bottom: 1.75rem;
}

/* Ana sayfa: haber arşivi + duyuru panosu — tek kurumsal çerçeve */
.home-digest {
  background: #f3f5f7;
  padding: 56px 0;
}
.home-digest > .container {
  max-width: 1180px;
  padding: 0;
  background: #fff;
  border: 1px solid #d7dde5;
  border-top: 4px solid #17385d;
  border-radius: 3px;
  box-shadow: 0 10px 28px rgba(16, 42, 67, 0.07);
}
.home-digest .split-84 {
  display: grid;
  grid-template-columns: minmax(0, 1.65fr) minmax(0, 0.95fr);
  gap: 0;
  align-items: stretch;
}
.home-digest .split-84 > div,
.home-digest .aside-announcements {
  min-width: 0;
}
.home-digest .split-84 > div {
  padding: 30px 34px 32px;
}
.home-digest .aside-announcements {
  margin: 0;
  padding: 30px 28px 26px;
  background: #f8fafc;
  border: 0;
  border-left: 1px solid #d7dde5;
  border-radius: 0;
  box-shadow: none;
}
.home-digest .aside-announcements--gold {
  border-top-color: transparent;
  background: #f8fafc;
}
.home-digest .announce-row {
  padding: 15px 0;
  background: transparent;
  border: 0;
  border-bottom: 1px solid #e1e6ec;
  border-radius: 0;
  box-shadow: none;
}
.home-digest .announce-row.priority-high {
  border-left: 0;
  padding-left: 0;
}
.home-digest .announce-row-media {
  width: 104px;
  min-width: 104px;
  height: 68px;
  overflow: hidden;
  border-radius: 2px;
}
.home-digest .announce-row-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.home-digest .announce-row-body h3,
.home-digest .announce-row-body p {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
}
.home-digest .announce-row-body h3 {
  -webkit-line-clamp: 2;
}
.home-digest .announce-row-body p {
  -webkit-line-clamp: 2;
}
@media (max-width: 850px) {
  .home-digest {
    padding-left: 16px;
    padding-right: 16px;
  }
  .home-digest > .container {
    margin-left: 0;
    margin-right: 0;
    width: 100%;
    max-width: 100%;
  }
  .home-digest .split-84 {
    grid-template-columns: 1fr;
  }
  .home-digest .split-84 > div,
  .home-digest .aside-announcements {
    padding: 24px 20px;
  }
  .home-digest .aside-announcements {
    border-left: 0;
    border-top: 1px solid #d7dde5;
  }
}

/* Çizgi ticker */
.home-ticker {
  background: #fff;
  border-bottom: 1px solid var(--slate-200, #e2e8f0);
}
.home-ticker-inner {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding-top: 0.65rem;
  padding-bottom: 0.65rem;
}
.home-ticker-viewport {
  flex: 1;
  overflow: hidden;
}
.home-ticker-track {
  display: flex;
  gap: 2rem;
  transition: transform 0.35s ease;
  will-change: transform;
}
.home-ticker-item {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: baseline;
  gap: 0.75rem;
  text-decoration: none;
  color: inherit;
  max-width: min(28rem, 80vw);
  white-space: nowrap;
}
.home-ticker-item:hover .home-ticker-title {
  color: var(--accent);
}
.home-ticker-date {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--navy-900);
  flex-shrink: 0;
}
.home-ticker-title {
  font-size: 0.875rem;
  color: var(--slate-700);
  overflow: hidden;
  text-overflow: ellipsis;
}
.home-ticker-nav {
  flex-shrink: 0;
  width: 2rem;
  height: 2rem;
  border: 1px solid var(--slate-200);
  background: #fff;
  color: var(--slate-600);
  border-radius: 2px;
  cursor: pointer;
  font-size: 1.1rem;
  line-height: 1;
}
.home-ticker-nav:hover {
  background: var(--slate-50);
  color: var(--navy-900);
}

/* Kısayollar */
.home-shortcuts {
  display: grid;
  gap: 0.75rem;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) {
  .home-shortcuts { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 960px) {
  .home-shortcuts { grid-template-columns: repeat(4, 1fr); }
}
.home-shortcut {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 1.1rem 1.15rem;
  background: #fff;
  border: 1px solid var(--slate-200);
  border-radius: 2px;
  text-decoration: none;
  color: var(--navy-900);
  font-weight: 600;
  font-size: 0.95rem;
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.home-shortcut:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
  color: var(--navy-900);
}
.home-shortcut-arrow { color: var(--accent); }

/* Footer sosyal */
.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 0.85rem;
  margin-top: 1rem;
}
.footer-social-link {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.8125rem;
  text-decoration: none;
}
.footer-social-link:hover { color: #fff; }

/* Çerez bandı */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 10030;
  background: rgba(15, 23, 42, 0.96);
  color: #fff;
  padding: 0.9rem 1rem;
  box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.2);
}
.cookie-banner[hidden] { display: none !important; }
.cookie-banner-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem 1.25rem;
}
.cookie-banner-inner p {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.45;
  flex: 1;
  min-width: 16rem;
}
.cookie-banner-inner a {
  color: #93c5fd;
}
.news-slider-footer {
  text-align: center;
  margin-top: 0.65rem;
}
.news-slider--hero .news-slider-footer .section-link {
  color: rgba(255,255,255,.85);
  font-size: 0.8125rem;
}
.news-slider--hero .news-slider-footer .section-link:hover {
  color: #fff;
}

.main-nav { display: none; align-items: center; gap: 0.25rem; }
@media (min-width: 1024px) { .main-nav { display: flex; } }
.main-nav > a,
.main-nav > .nav-dropdown > a {
  display: inline-block;
  padding: 0.5rem 0.75rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--slate-700);
  border-bottom: 2px solid transparent;
  white-space: nowrap;
  line-height: 1.4;
  transition: color 0.15s, border-color 0.15s;
}
.main-nav > a:hover,
.main-nav > .nav-dropdown > a:hover {
  color: var(--navy-900);
  border-bottom-color: var(--nav-underline);
}
.main-nav > a.active,
.main-nav > .nav-dropdown > a.active {
  color: var(--navy-900);
  border-bottom-color: var(--nav-underline);
  font-weight: 600;
}
.footer-kredi-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}
.footer-kredi-link img {
  width: 1.35rem;
  height: 1.35rem;
  object-fit: contain;
  border-radius: 50%;
  flex-shrink: 0;
}
.mobile-sheet-link--kredi {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}
.mobile-sheet-kredi-logo {
  width: 1.75rem;
  height: 1.75rem;
  object-fit: contain;
  border-radius: 50%;
  flex-shrink: 0;
}
.mobile-tab--center .mobile-tab-kredi-logo {
  width: 2.15rem;
  height: 2.15rem;
  object-fit: contain;
  border-radius: 50%;
  display: block;
  background: #fff;
}
.mobile-tab--center:has(.mobile-tab-kredi-logo) {
  background: #fff;
  color: inherit;
  box-shadow: 0 6px 16px rgba(20, 24, 32, 0.18);
  border: 1px solid var(--slate-200);
}
.page-hero--kredi .page-hero-kredi-inner {
  display: flex;
  align-items: center;
  gap: 1.15rem;
}
.page-hero-kredi-logo {
  width: 5.5rem;
  height: 5.5rem;
  object-fit: contain;
  flex-shrink: 0;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
}
@media (max-width: 640px) {
  .page-hero-kredi-logo {
    width: 4.25rem;
    height: 4.25rem;
  }
}
.credit-page-grid {
  display: grid;
  gap: 2rem;
  align-items: start;
}
@media (min-width: 960px) {
  .credit-page-grid {
    grid-template-columns: minmax(0, 1.55fr) minmax(16rem, 0.85fr);
    gap: 2.5rem;
  }
}
.credit-announce-aside {
  background: #fff;
  border: 1px solid var(--slate-200);
  border-top: 3px solid var(--accent);
  border-radius: var(--radius);
  padding: 1.25rem 1.2rem 1.35rem;
  box-shadow: 0 8px 24px rgba(20, 24, 32, 0.05);
}
.credit-announce-aside-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
}
.credit-announce-aside-head .eyebrow {
  margin: 0;
  color: var(--navy-900);
}
.credit-announce-badge {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent-hover);
  background: rgba(184, 149, 60, 0.12);
  padding: 0.25rem 0.5rem;
  border-radius: 2px;
  white-space: nowrap;
}
.credit-announce-note {
  font-size: 0.8rem;
  color: var(--slate-500);
  line-height: 1.5;
  margin: 0 0 0.85rem;
}
.credit-announce-row {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--slate-200);
  color: inherit;
  text-decoration: none;
}
.credit-announce-row:last-of-type { border-bottom: none; }
.credit-announce-row:hover { color: inherit; }
.credit-announce-row.is-priority {
  border-left: 3px solid var(--warning);
  padding-left: 0.7rem;
}
.credit-announce-thumb {
  width: 3rem;
  height: 3rem;
  border-radius: 4px;
  overflow: hidden;
  flex-shrink: 0;
  background: var(--slate-100);
}
.credit-announce-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.credit-announce-copy {
  display: grid;
  gap: 0.2rem;
  min-width: 0;
}
.credit-announce-copy time {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--slate-500);
}
.credit-announce-copy strong {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--navy-900);
  line-height: 1.35;
}
.credit-announce-row:hover strong { color: var(--accent); }
.credit-announce-detail {
  max-width: 48rem;
}
.credit-announce-detail h2 {
  margin: 0.35rem 0 0.65rem;
}
.credit-announce-detail time {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--slate-500);
  margin-bottom: 1.25rem;
}
.credit-announce-detail-media {
  margin: 0 0 1.5rem;
  border-radius: var(--radius);
  overflow: hidden;
}
.credit-announce-detail-media img {
  width: 100%;
  height: auto;
  display: block;
}
/* Overlay menü: dropdown tetikleyiciler de beyaz kalsın */
.site-header--overlay:not(.is-scrolled) .main-nav > a,
.site-header--overlay:not(.is-scrolled) .main-nav > .nav-dropdown > a {
  color: rgba(255,255,255,.92);
}
.site-header--overlay:not(.is-scrolled) .main-nav > a:hover,
.site-header--overlay:not(.is-scrolled) .main-nav > .nav-dropdown > a:hover,
.site-header--overlay:not(.is-scrolled) .main-nav > a.active,
.site-header--overlay:not(.is-scrolled) .main-nav > .nav-dropdown > a.active {
  color: #fff;
  border-bottom-color: var(--nav-underline-dark);
}
.nav-dropdown { position: relative; }
.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 240px;
  background: #fff;
  border: 1px solid var(--slate-200);
  border-top: 2px solid var(--navy-900);
  box-shadow: 0 10px 28px rgba(15,23,41,.12);
  z-index: 50;
  padding: 0.35rem 0;
}
.nav-dropdown-menu--wide { min-width: 280px; max-height: min(70vh, 420px); overflow-y: auto; }
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu { display: block; }
.nav-dropdown-menu a {
  display: block;
  padding: 0.55rem 1rem;
  font-size: 0.875rem;
  border-bottom: none !important;
  color: var(--slate-700);
  white-space: normal;
  line-height: 1.35;
}
.nav-dropdown-menu a:hover { background: var(--slate-50); color: var(--navy-900); }
.nav-dropdown-all {
  font-weight: 600;
  color: var(--navy-900) !important;
  border-bottom: 1px solid var(--slate-200) !important;
  margin-bottom: 0.25rem;
}
.nav-dropdown-parent { font-weight: 600; color: var(--navy-900) !important; }
.nav-dropdown-child {
  padding-left: 1.5rem !important;
  font-size: 0.8125rem !important;
  color: var(--slate-600) !important;
  position: relative;
}
.nav-dropdown-child::before {
  content: '·';
  position: absolute;
  left: 0.85rem;
  color: var(--slate-400);
}
.mobile-nav .sub-2 { padding-left: 1.75rem; font-size: 0.8125rem; }

.header-actions { display: flex; align-items: center; gap: 0.75rem; }
.menu-toggle { display: flex; padding: 0.5rem; background: none; border: none; cursor: pointer; color: var(--slate-700); }
@media (min-width: 1024px) { .menu-toggle { display: none; } }
@media (max-width: 1023px) {
  .header-cta { display: none; }
}

/* Eski inline mobile-nav kaldırıldı — sheet + tabbar */
.mobile-nav { display: none !important; }

/* ========== Mobil bottom sheet ========== */
.mobile-sheet-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(15, 23, 41, 0.55);
  backdrop-filter: blur(2px);
}
.mobile-sheet-backdrop.is-open { display: block; }
.mobile-sheet {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 210;
  max-height: min(88vh, 720px);
  background: #fff;
  border-radius: 1.25rem 1.25rem 0 0;
  box-shadow: 0 -12px 40px rgba(15, 23, 41, 0.2);
  flex-direction: column;
  padding: 0 1rem calc(1rem + env(safe-area-inset-bottom, 0px));
  overflow: hidden;
}
.mobile-sheet.is-open { display: flex; }
.mobile-sheet-handle {
  width: 2.5rem;
  height: 0.28rem;
  border-radius: 999px;
  background: var(--slate-300);
  margin: 0.65rem auto 0.35rem;
  flex-shrink: 0;
}
.mobile-sheet-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.5rem 0 0.85rem;
  border-bottom: 1px solid var(--slate-100);
  flex-shrink: 0;
}
.mobile-sheet-brand img {
  height: 44px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
  display: block;
}
.mobile-sheet-close {
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 50%;
  border: none;
  background: var(--slate-100);
  color: var(--slate-700);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  flex-shrink: 0;
}
.mobile-sheet-body {
  flex: 1;
  overflow-y: auto;
  padding: 0.85rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  -webkit-overflow-scrolling: touch;
}
.mobile-sheet-link,
.mobile-sheet-acc-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0.95rem 1rem;
  border-radius: 0.85rem;
  border: 1px solid var(--slate-200);
  background: #fff;
  color: var(--navy-900);
  font-size: 1rem;
  font-weight: 600;
  font-family: inherit;
  text-decoration: none;
  cursor: pointer;
  text-align: left;
  box-shadow: 0 1px 2px rgba(15, 23, 41, 0.04);
}
.mobile-sheet-link span { color: var(--slate-400); font-weight: 400; }
.mobile-sheet-link.is-active,
.mobile-sheet-acc.is-open > .mobile-sheet-acc-btn {
  background: rgba(37, 99, 235, 0.08);
  border-color: rgba(37, 99, 235, 0.22);
  color: var(--accent);
}
.mobile-sheet-chevron {
  width: 0.55rem;
  height: 0.55rem;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  transition: transform 0.2s;
  opacity: 0.55;
}
.mobile-sheet-acc.is-open .mobile-sheet-chevron {
  transform: rotate(-135deg);
  opacity: 0.8;
}
.mobile-sheet-acc-panel {
  display: none;
  padding: 0.25rem 0 0.35rem 0.35rem;
  flex-direction: column;
  gap: 0.3rem;
}
.mobile-sheet-acc.is-open .mobile-sheet-acc-panel { display: flex; }
.mobile-sheet-acc-panel a {
  display: block;
  padding: 0.7rem 0.95rem;
  border-radius: 0.7rem;
  background: var(--slate-50);
  color: var(--slate-700);
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
}
.mobile-sheet-acc-panel a.is-child {
  margin-left: 0.65rem;
  font-size: 0.85rem;
  color: var(--slate-600);
}
.mobile-sheet-acc-panel a:hover { color: var(--navy-900); background: var(--slate-100); }
.mobile-sheet-cta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.55rem;
  padding-top: 0.75rem;
  border-top: 1px solid var(--slate-100);
  flex-shrink: 0;
}
.mobile-sheet-cta .btn {
  min-height: 2.85rem;
  padding: 0.7rem 0.75rem;
  font-size: 0.875rem;
  border-radius: 0.75rem;
}
/* Beyaz sheet üzerinde outline buton okunur olsun */
.mobile-sheet-cta .btn-outline {
  background: #fff;
  color: var(--navy-900);
  border: 1.5px solid var(--navy-900);
}
.mobile-sheet-cta .btn-outline:hover {
  background: var(--navy-900);
  color: #fff;
  border-color: var(--navy-900);
}
.mobile-sheet-cta .btn-primary {
  background: var(--navy-900);
  color: #fff;
  border-color: var(--navy-900);
}

/* ========== Mobil alt tab bar ========== */
.mobile-tabbar {
  display: none;
  position: fixed;
  left: 0.75rem;
  right: 0.75rem;
  bottom: calc(0.65rem + env(safe-area-inset-bottom, 0px));
  z-index: 150;
  grid-template-columns: repeat(5, 1fr);
  align-items: end;
  gap: 0.15rem;
  padding: 0.45rem 0.4rem 0.5rem;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(15, 23, 41, 0.08);
  border-radius: 1.15rem;
  box-shadow: 0 10px 30px rgba(15, 23, 41, 0.14);
  backdrop-filter: blur(10px);
}
.mobile-tab {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.15rem;
  padding: 0.35rem 0.15rem;
  border: none;
  background: transparent;
  color: var(--slate-500);
  font-size: 0.62rem;
  font-weight: 600;
  text-decoration: none;
  font-family: inherit;
  cursor: pointer;
  border-radius: 0.75rem;
  min-height: 3rem;
}
.mobile-tab.is-active {
  color: var(--navy-900);
  background: rgba(37, 99, 235, 0.1);
}
.mobile-tab--center {
  transform: translateY(-0.55rem);
  background: var(--navy-900);
  color: #fff;
  border-radius: 0.85rem;
  min-height: 3.35rem;
  box-shadow: 0 8px 18px rgba(27, 42, 74, 0.35);
}
.mobile-tab--center.is-active,
.mobile-tab--center:hover {
  background: var(--navy-950);
  color: #fff;
}
.mobile-tab-center-mark {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
}
.mobile-tab--menu.is-active { color: var(--navy-900); background: rgba(184, 149, 60, 0.12); }

@media (max-width: 1023px) {
  .mobile-tabbar { display: grid; }
  body { padding-bottom: calc(5.5rem + env(safe-area-inset-bottom, 0px)); }
  .admin-edit-fab { bottom: calc(5.75rem + env(safe-area-inset-bottom, 0px)) !important; }
}
@media (min-width: 1024px) {
  .mobile-sheet,
  .mobile-sheet-backdrop,
  .mobile-tabbar { display: none !important; }
}

/* ========== Butonlar — resmi ama modern premium ========== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.8rem 1.6rem;
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  border-radius: var(--radius);
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.18s, color 0.18s, border-color 0.18s, box-shadow 0.18s;
  font-family: inherit;
  min-height: 2.75rem;
}
.btn:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }
.btn-primary { background: var(--navy-900); color: #fff; border-color: var(--navy-900); }
.btn-primary:hover { background: var(--navy-950); border-color: var(--navy-950); color: #fff; }
.btn-secondary { background: #fff; color: var(--navy-900); border-color: var(--slate-300); }
.btn-secondary:hover { border-color: var(--navy-900); background: #fff; color: var(--navy-900); }
.btn-ghost { background: transparent; color: var(--navy-900); border-color: var(--slate-300); }
.btn-ghost:hover { border-color: var(--navy-900); color: var(--navy-900); }
/* Koyu zemin üstü */
.btn-outline { background: transparent; color: #fff; border-color: rgba(255,255,255,.45); }
.btn-outline:hover { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.85); color: #fff; }
.btn-sm { padding: 0.45rem 0.9rem; font-size: 0.8125rem; min-height: 0; }

/* ========== HERO — güçlü ama aydınlık ========== */
.hero-full {
  position: relative;
  color: #fff;
  min-height: min(82vh, 700px);
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-media {
  position: absolute;
  inset: 0;
  background-color: var(--navy-900);
  background-image:
    radial-gradient(ellipse 70% 60% at 78% 18%, rgba(184, 149, 60, 0.14), transparent 60%),
    linear-gradient(165deg, var(--navy-800) 0%, var(--navy-900) 55%, var(--navy-950) 100%),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='1400' height='340' viewBox='0 0 1400 340'%3E%3Cg fill='none' stroke='rgba(255,255,255,0.09)' stroke-width='2'%3E%3Cpath d='M0 340 V210 h70 v130'/%3E%3Cpath d='M70 340 V150 h60 v190'/%3E%3Cpath d='M130 340 V240 h80 v100'/%3E%3Cpath d='M210 340 V110 h70 v230'/%3E%3Cpath d='M280 340 V190 h90 v150'/%3E%3Cpath d='M370 340 V70 h80 v270'/%3E%3Cpath d='M450 340 V220 h60 v120'/%3E%3Cpath d='M510 340 V160 h90 v180'/%3E%3Cpath d='M600 340 V255 h70 v85'/%3E%3Cpath d='M670 340 V130 h80 v210'/%3E%3Cpath d='M750 340 V200 h60 v140'/%3E%3Cpath d='M810 340 V90 h90 v250'/%3E%3Cpath d='M900 340 V230 h70 v110'/%3E%3Cpath d='M970 340 V170 h80 v170'/%3E%3Cpath d='M1050 340 V250 h60 v90'/%3E%3Cpath d='M1110 340 V120 h80 v220'/%3E%3Cpath d='M1190 340 V210 h70 v130'/%3E%3Cpath d='M1260 340 V150 h80 v190'/%3E%3C/g%3E%3C/svg%3E");
  background-repeat: no-repeat, no-repeat, repeat-x;
  background-position: center, center, bottom center;
  background-size: auto, cover, auto 300px;
}
.hero-media.has-image {
  background-image: var(--overlay-hero), var(--hero-image);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.hero-media.has-brand {
  background-image:
    radial-gradient(ellipse 70% 60% at 78% 18%, rgba(184, 149, 60, 0.16), transparent 60%),
    linear-gradient(165deg, var(--navy-800) 0%, var(--navy-900) 50%, var(--navy-950) 100%);
  background-repeat: no-repeat;
  background-size: cover;
}
.hero-full--brand .hero-media.has-brand::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(15, 23, 41, 0.55) 0%, rgba(15, 23, 41, 0.15) 55%, transparent 100%);
  pointer-events: none;
}
.hero-inner { position: relative; z-index: 1; width: 100%; padding: clamp(3.5rem, 7vw, 5.5rem) 0 clamp(2.5rem, 5vw, 3.5rem); }
.hero-grid { display: grid; gap: 2.5rem; align-items: center; }
@media (min-width: 1024px) {
  .hero-grid { grid-template-columns: 7fr 5fr; gap: 4rem; }
}
.hero-grid--solo {
  grid-template-columns: 1fr;
  max-width: 40rem;
}
.hero-label, .hero-full .eyebrow { color: rgba(255,255,255,.65); }
.hero-full h1,
.hero-full .hero-title { color: #fff; margin-bottom: 1.25rem; max-width: 18ch; }
.hero-full .hero-title {
    margin: 0 0 1.25rem;
    font-family: inherit;
    font-size: var(--text-display-xl);
    font-weight: 700;
    line-height: 1.15;
}
.hero-desc {
  font-size: clamp(1.0625rem, 1.6vw, 1.25rem);
  color: rgba(255,255,255,.82);
  max-width: 36rem;
  line-height: 1.7;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 2.25rem; }
.hero-actions .btn-primary { background: #fff; color: var(--navy-900); border-color: #fff; }
.hero-actions .btn-primary:hover { background: var(--slate-100); border-color: var(--slate-100); color: var(--navy-950); }

/* Öne çıkan panel — opak, ciddi, cam efekti yok */
.hero-panel {
  background: var(--navy-800);
  border: 1px solid rgba(255,255,255,.1);
  border-left: 3px solid var(--accent);
  border-radius: var(--radius);
  padding: 1.85rem;
  box-shadow: 0 16px 40px rgba(10, 16, 32, .3);
}
.hero-panel .eyebrow { color: rgba(255,255,255,.55); margin-bottom: 1rem; }
.hero-panel h2 { color: #fff; font-size: 1.375rem; margin: 0.75rem 0 0.5rem; letter-spacing: -0.01em; }
.hero-panel p { color: rgba(255,255,255,.75); font-size: 0.9375rem; }
.hero-panel-meta { display: flex; flex-wrap: wrap; align-items: center; gap: 0.5rem; margin-bottom: 0.25rem; }
.hero-panel-link { display: inline-block; margin-top: 1.25rem; font-size: 0.875rem; font-weight: 600; color: #fff; }
.hero-panel-link:hover { color: var(--slate-200); }
.hero-panel .info-row { border-color: rgba(255,255,255,.1); color: rgba(255,255,255,.75); }
.hero-panel .info-row span:last-child { color: #fff; }

/* Hero içine entegre istatistik bandı */
.hero-stats {
  margin-top: clamp(2.5rem, 5vw, 3.5rem);
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,.16);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem 1.25rem;
}
@media (min-width: 768px) { .hero-stats { grid-template-columns: repeat(4, 1fr); gap: 2rem; } }
.stat-value {
  font-family: var(--font-display);
  font-size: clamp(1.875rem, 3.5vw, 2.5rem);
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.02em;
  line-height: 1;
  color: #fff;
}
.stat-label { font-size: 0.75rem; color: rgba(255,255,255,.6); margin-top: 0.45rem; text-transform: uppercase; letter-spacing: 0.08em; font-weight: 600; }

/* Legacy stats-bar (iç sayfalar) */
.stats-bar { background: var(--navy-900); color: #fff; padding: 2.5rem 0; }
.stats-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; text-align: center; }
@media (min-width: 768px) { .stats-grid { grid-template-columns: repeat(4, 1fr); } }

/* Kurumumuz editorial */
.about-sticky h2 { margin-bottom: 0; }
.info-panel { padding: 0; background: transparent; border-top: 3px solid var(--navy-900); }
.info-row { display: flex; justify-content: space-between; gap: 1rem; padding: 1rem 0; border-bottom: 1px solid var(--slate-200); font-size: 0.9375rem; }
.info-row:last-child { border-bottom: none; }
.info-row span:last-child { font-weight: 700; color: var(--navy-900); text-align: right; }
.about-figure { margin-top: 2rem; }
.about-figure img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; border-radius: var(--radius); }

/* ========== Kategoriler — çizgili ızgara, kontrollü 7/5 asimetri ========== */
.grid-lined {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--slate-200);
  border-left: 1px solid var(--slate-200);
}
@media (min-width: 640px) { .grid-lined { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .grid-lined-asym { grid-template-columns: 7fr 5fr; } }
.grid-lined-cell {
  display: block;
  padding: 2.25rem 2rem;
  border-right: 1px solid var(--slate-200);
  border-bottom: 1px solid var(--slate-200);
  color: inherit;
  position: relative;
  transition: background 0.15s;
  min-height: 100%;
}
.grid-lined-cell:hover { background: var(--slate-50); color: inherit; }
.grid-lined-cell::before {
  content: '';
  position: absolute;
  top: -1px; left: 0; right: 0;
  height: 3px;
  background: var(--navy-900);
  opacity: 0;
  transition: opacity 0.15s;
}
.grid-lined-cell:hover::before { opacity: 1; }
.cell-number {
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--slate-300);
  line-height: 1;
  margin-bottom: 1.25rem;
  letter-spacing: -0.03em;
}
.cell-media {
  height: 8.5rem;
  margin: -2.25rem -2rem 1.25rem;
  background-color: var(--navy-900);
  background-image: var(--cover-image);
  background-size: cover;
  background-position: center;
}
.grid-lined-cell h3 { margin-bottom: 0.65rem; font-size: 1.25rem; }
.grid-lined-cell p {
  color: var(--slate-600);
  font-size: 0.9689rem;
  line-height: 1.65;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
/* Geniş hücreler (1. ve 4.): daha büyük başlık, tam açıklama */
@media (min-width: 1024px) {
  .grid-lined-cell--wide h3 { font-size: 1.5rem; }
  .grid-lined-cell--wide p { -webkit-line-clamp: 3; line-clamp: 3; max-width: 46ch; }
}
.grid-lined-cell .category-link {
  display: inline-block;
  margin-top: 1.25rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--accent);
  transition: transform 0.15s;
}
.grid-lined-cell:hover .category-link { transform: translateX(4px); }

/* ========== Projeler vitrini — tam genişlik featured + destek kartları ========== */
.showcase-featured {
  position: relative;
  display: block;
  color: #fff;
  overflow: hidden;
  border-radius: var(--radius);
  margin-bottom: 2rem;
}
.showcase-featured:hover { color: #fff; }
.showcase-featured-bg {
  position: absolute;
  inset: 0;
  background-color: var(--navy-800);
  background-image:
    linear-gradient(180deg, rgba(18,28,52,.1) 30%, rgba(15,23,41,.88) 100%),
    radial-gradient(ellipse 60% 50% at 80% 15%, rgba(184, 149, 60, 0.18), transparent 60%),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='1400' height='340' viewBox='0 0 1400 340'%3E%3Cg fill='none' stroke='rgba(255,255,255,0.1)' stroke-width='2'%3E%3Cpath d='M0 340 V210 h70 v130'/%3E%3Cpath d='M70 340 V150 h60 v190'/%3E%3Cpath d='M130 340 V240 h80 v100'/%3E%3Cpath d='M210 340 V110 h70 v230'/%3E%3Cpath d='M280 340 V190 h90 v150'/%3E%3Cpath d='M370 340 V70 h80 v270'/%3E%3Cpath d='M450 340 V220 h60 v120'/%3E%3Cpath d='M510 340 V160 h90 v180'/%3E%3Cpath d='M600 340 V255 h70 v85'/%3E%3Cpath d='M670 340 V130 h80 v210'/%3E%3Cpath d='M750 340 V200 h60 v140'/%3E%3Cpath d='M810 340 V90 h90 v250'/%3E%3Cpath d='M900 340 V230 h70 v110'/%3E%3Cpath d='M970 340 V170 h80 v170'/%3E%3Cpath d='M1050 340 V250 h60 v90'/%3E%3Cpath d='M1110 340 V120 h80 v220'/%3E%3Cpath d='M1190 340 V210 h70 v130'/%3E%3Cpath d='M1260 340 V150 h80 v190'/%3E%3C/g%3E%3C/svg%3E");
  background-repeat: no-repeat, no-repeat, repeat-x;
  background-position: center, center, bottom center;
  background-size: auto, cover, auto 280px;
  transition: transform 0.4s ease;
}
.showcase-featured.has-cover .showcase-featured-bg {
  background-image: linear-gradient(180deg, rgba(18,28,52,.05) 25%, rgba(15,23,41,.9) 100%), var(--cover-image);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.showcase-featured:hover .showcase-featured-bg { transform: scale(1.02); }
.showcase-featured-body {
  position: relative;
  z-index: 1;
  min-height: clamp(20rem, 45vw, 26rem);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(1.5rem, 4vw, 2.75rem);
}
.showcase-featured h3 { color: #fff; font-size: clamp(1.5rem, 3vw, 2.125rem); margin: 0.85rem 0 0.5rem; max-width: 24ch; }
.showcase-featured p { color: rgba(255,255,255,.8); font-size: 1rem; max-width: 44rem; }
.showcase-loc { font-size: 0.8125rem; color: rgba(255,255,255,.6); margin-top: 0.85rem; letter-spacing: 0.02em; }

.showcase-grid { display: grid; gap: 1.5rem; }
@media (min-width: 768px) { .showcase-grid { grid-template-columns: repeat(3, 1fr); } }
.showcase-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--slate-200);
  border-radius: var(--radius);
  overflow: hidden;
  color: inherit;
  transition: border-color 0.18s, box-shadow 0.18s;
}
.showcase-card:hover { color: inherit; border-color: var(--navy-900); box-shadow: 0 6px 20px rgba(15,23,41,.07); }
.showcase-card-media {
  aspect-ratio: 16 / 10;
  background-color: var(--navy-900);
  background-image:
    linear-gradient(160deg, var(--navy-800), var(--navy-950)),
    none;
  background-size: cover;
  background-position: center;
  position: relative;
}
.showcase-card-media.has-cover { background-image: var(--cover-image); }
.showcase-card-media .status-badge { position: absolute; top: 0.85rem; left: 0.85rem; }
.showcase-card-body { padding: 1.35rem 1.35rem 1.5rem; display: flex; flex-direction: column; flex: 1; }
.showcase-card h3 { font-size: 1.125rem; font-weight: 600; margin: 0.35rem 0 0; }
.showcase-card:hover h3 { color: var(--accent); }
.showcase-card .loc { font-size: 0.8125rem; color: var(--slate-500); margin-top: 0.5rem; }

.project-cover img { width: 100%; max-height: 26rem; object-fit: cover; border-radius: var(--radius); }

/* Eski liste görünümü (yedek) */
.showcase-list { display: flex; flex-direction: column; border-top: 1px solid var(--slate-200); }
.showcase-row { display: block; padding: 1.35rem 0; border-bottom: 1px solid var(--slate-200); color: inherit; }
.showcase-row:hover { color: inherit; }
.showcase-row h3 { font-size: 1.125rem; font-weight: 600; margin: 0; }
.showcase-row:hover h3 { color: var(--accent); }
.showcase-row .loc { font-size: 0.8125rem; color: var(--slate-500); margin-top: 0.35rem; }

/* ========== Başkan — prestijli ama modern sade ========== */
.chairman-feature {
  background: var(--navy-900);
  background-image: radial-gradient(ellipse 60% 70% at 15% 20%, rgba(184, 149, 60, 0.1), transparent 60%);
  color: #fff;
  padding: var(--space-section) 0;
}
.chairman-feature h2, .chairman-feature h3 { color: #fff; }
.chairman-feature .eyebrow { color: rgba(255,255,255,.55); }
.chairman-feature-grid { display: grid; gap: 3rem; align-items: center; }
@media (min-width: 900px) {
  .chairman-feature-grid { grid-template-columns: 5fr 7fr; gap: 4.5rem; }
}
.chairman-portrait-wrap { position: relative; max-width: 24rem; }
.chairman-portrait {
  aspect-ratio: 4 / 5;
  background: var(--navy-800);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
  border-radius: var(--radius);
}
.chairman-portrait img { width: 100%; height: 100%; object-fit: cover; }
/* Ofset çerçeve — sessiz prestij detayı */
.chairman-portrait-wrap::after {
  content: '';
  position: absolute;
  top: 1rem; left: 1rem; right: -1rem; bottom: -1rem;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: var(--radius);
  pointer-events: none;
  z-index: -1;
}
.chairman-monogram {
  font-family: var(--font-display);
  font-size: clamp(5rem, 12vw, 7rem);
  font-weight: 700;
  color: rgba(255,255,255,.12);
  letter-spacing: -0.04em;
  line-height: 1;
}
.chairman-quote { margin: 1.25rem 0 1.5rem; }
.chairman-quote p {
  font-size: clamp(1.375rem, 2.4vw, 1.875rem);
  font-weight: 500;
  color: #fff;
  line-height: 1.4;
  letter-spacing: -0.015em;
  max-width: 30ch;
}
.chairman-continue { color: rgba(255,255,255,.68); font-size: 1rem; max-width: var(--measure); margin-bottom: 2rem; }
.chairman-sign {
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,.15);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1.25rem;
  align-items: flex-end;
}
.chairman-sign-name { color: #fff; font-weight: 600; font-size: 1.0625rem; }
.chairman-sign-title {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,.55);
  margin-top: 0.25rem;
  font-weight: 600;
}
.chairman-sign-links { display: flex; gap: 1.25rem; flex-wrap: wrap; }
.chairman-sign-links a { color: #fff; font-size: 0.875rem; font-weight: 600; }
.chairman-sign-links a:hover { color: rgba(255,255,255,.75); }

/* ========== Haberler — editoryal ========== */
.news-lead {
  display: grid;
  gap: 1.5rem;
  padding-bottom: 2rem;
  margin-bottom: 0.75rem;
  border-bottom: 1px solid var(--slate-200);
  color: inherit;
}
@media (min-width: 768px) { .news-lead.has-image { grid-template-columns: 5fr 7fr; align-items: center; } }
.news-lead:hover { color: inherit; }
.news-lead-media { aspect-ratio: 16 / 10; overflow: hidden; border-radius: var(--radius); }
.news-lead-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.35s ease; }
.news-lead:hover .news-lead-media img { transform: scale(1.03); }
.news-lead time { font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--accent); }
.news-lead h3 { font-size: clamp(1.375rem, 2.2vw, 1.75rem); margin: 0.6rem 0; }
.news-lead:hover h3 { color: var(--accent); }
.news-lead p { color: var(--slate-600); font-size: 1rem; max-width: var(--measure); }
.news-row {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.35rem 1.5rem;
  padding: 1.2rem 0;
  border-bottom: 1px solid var(--slate-200);
  color: inherit;
}
.news-row:hover { color: inherit; }
.news-row time { font-size: 0.8125rem; color: var(--slate-500); font-variant-numeric: tabular-nums; flex-shrink: 0; min-width: 7.5rem; }
.news-row h3 { font-size: 1.0625rem; margin: 0; font-weight: 600; flex: 1; min-width: 14rem; }
.news-row:hover h3 { color: var(--accent); }

/* Duyurular — resmi pano dili */
.aside-announcements {
  background: var(--slate-50);
  border: 1px solid var(--slate-200);
  border-top: 3px solid var(--navy-900);
  border-radius: var(--radius);
  padding: 1.5rem;
}
.aside-announcements .eyebrow { margin-bottom: 0.75rem; color: var(--navy-900); }
.announce-row { padding: 1rem 0; border-bottom: 1px solid var(--slate-200); }
.announce-row:last-of-type { border-bottom: none; }
.announce-row.priority-high { border-left: 3px solid var(--warning); padding-left: 0.85rem; }
.announce-row h3 { font-size: 1rem; margin-bottom: 0.35rem; }
.announce-row p { font-size: 0.875rem; color: var(--slate-600); line-height: 1.6; }
.announce-row time { font-size: 0.75rem; color: var(--slate-400); margin-top: 0.4rem; display: block; font-variant-numeric: tabular-nums; }
.announce-row--link {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    color: inherit;
    text-decoration: none;
    transition: background .15s;
}
.announce-row--link:hover { color: inherit; }
.announce-row--link:hover h3 { color: var(--accent); }
.announce-row-media {
    flex-shrink: 0;
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 4px 1.6rem 1.6rem 4px;
    overflow: hidden;
    background: var(--slate-100);
    display: grid;
    place-items: center;
}
.announce-row-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.announce-row-media.is-placeholder {
    background:
        radial-gradient(ellipse 70% 60% at 30% 20%, rgba(184, 149, 60, 0.28), transparent 60%),
        var(--navy-900);
    color: rgba(255, 255, 255, 0.45);
    font-family: var(--font-display);
    font-size: 1.125rem;
    font-weight: 700;
}
.announce-row-body { min-width: 0; flex: 1; }

/* Status badges */
.status-badge { display: inline-block; padding: 0.2rem 0.55rem; font-size: 0.6875rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; border-radius: 2px; border: 1px solid; }
.status-planning { background: #fffbeb; color: #92400e; border-color: #fde68a; }
.status-active { background: #eff6ff; color: #1e40af; border-color: #bfdbfe; }
.status-done { background: #ecfdf5; color: #065f46; border-color: #a7f3d0; }
.hero-panel .status-badge, .showcase-featured .status-badge, .showcase-card-media .status-badge {
  background: rgba(15,23,41,.55);
  color: #fff;
  border-color: rgba(255,255,255,.35);
}

/* Page hero (iç sayfalar) */
.page-hero { background: var(--navy-900); background-image: radial-gradient(ellipse 60% 80% at 85% 10%, rgba(184, 149, 60, 0.14), transparent 60%); color: #fff; padding: 3rem 0; }
.page-hero h1 { color: #fff; font-size: clamp(1.875rem, 3.5vw, 2.5rem); }
.page-hero-desc { color: rgba(255,255,255,.75); margin-top: 0.65rem; max-width: 40rem; font-size: 1.0625rem; }

/* İç sayfa: sol menü + ana içerik */
.page-with-sidebar {
    display: grid;
    gap: 2rem;
    align-items: start;
}
@media (min-width: 960px) {
    .page-with-sidebar {
        grid-template-columns: 16.5rem minmax(0, 1fr);
        gap: 2.75rem;
    }
}
.page-main { min-width: 0; }
.page-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}
.page-sidebar-widget {
    background: #fff;
    border: 1px solid var(--slate-200);
    border-radius: var(--radius);
    padding: 1.15rem 1.1rem 1.2rem;
}
.page-sidebar-title {
    margin: 0 0 0.85rem;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--navy-900);
    padding-bottom: 0.65rem;
    border-bottom: 2px solid var(--navy-900);
}
.page-sidebar-nav {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}
.page-sidebar-nav a {
    display: block;
    padding: 0.55rem 0.65rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--slate-700);
    border-radius: 3px;
    border-left: 2px solid transparent;
    transition: background .15s, color .15s, border-color .15s;
}
.page-sidebar-nav a:hover {
    background: var(--slate-50);
    color: var(--navy-900);
}
.page-sidebar-nav a.active {
    background: var(--slate-50);
    color: var(--navy-900);
    font-weight: 700;
    border-left-color: var(--navy-900);
}
.page-sidebar-empty {
    margin: 0;
    font-size: 0.8125rem;
    color: var(--slate-500);
}
.page-sidebar-announces {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}
.page-sidebar-announce-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.55rem 0.35rem;
    border-bottom: 1px solid var(--slate-100);
    color: inherit;
    text-decoration: none;
}
.page-sidebar-announces li:last-child .page-sidebar-announce-link { border-bottom: none; }
.page-sidebar-thumb {
    flex-shrink: 0;
    width: 3.25rem;
    height: 3.25rem;
    overflow: hidden;
    background: var(--slate-100);
    border-radius: 4px 1.5rem 1.5rem 4px;
    display: grid;
    place-items: center;
}
.page-sidebar-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.page-sidebar-thumb.is-placeholder {
    background:
        radial-gradient(ellipse 70% 60% at 30% 20%, rgba(184, 149, 60, 0.28), transparent 60%),
        var(--navy-900);
    color: rgba(255, 255, 255, 0.45);
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
}
.page-sidebar-announce-text {
    min-width: 0;
    flex: 1;
}
.page-sidebar-announces a:hover .announce-title { color: var(--navy-900); }
.page-sidebar-announces .announce-title {
    display: block;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--slate-800);
    line-height: 1.35;
}
.page-sidebar-announces time {
    display: block;
    margin-top: 0.25rem;
    font-size: 0.6875rem;
    color: var(--slate-500);
}
.page-sidebar-more {
    display: inline-block;
    margin-top: 0.75rem;
    font-size: 0.8125rem;
    font-weight: 600;
}

.news-card.is-priority {
    border-color: #f59e0b;
}
.news-detail-box.is-priority {
    border-left: 3px solid #f59e0b;
}

/* Başkan profil + mesaj kutusu */
.chairman-profile-card {
    background: #fff;
    border: 1px solid var(--slate-200);
    border-radius: var(--radius);
    padding: 1.75rem 1.5rem 1.5rem;
    text-align: center;
    max-width: 18rem;
    margin: 0 auto 1.75rem;
    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.06);
}
.chairman-profile-card--compact {
    max-width: 15rem;
    padding: 1.35rem 1.15rem 1.2rem;
    margin-bottom: 1.5rem;
}
.chairman-profile-photo {
    width: 100%;
    max-width: 12.5rem;
    margin: 0 auto;
    aspect-ratio: 4 / 5;
    overflow: hidden;
    border-radius: 4px;
    background: var(--slate-100);
}
.chairman-profile-card--compact .chairman-profile-photo {
    max-width: 9.5rem;
}
.chairman-profile-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.chairman-profile-name {
    margin: 1rem 0 0.25rem;
    font-size: 1.125rem;
    color: var(--navy-900);
}
.chairman-profile-title {
    margin: 0;
    font-size: 0.8125rem;
    color: var(--slate-500);
    font-weight: 600;
    letter-spacing: 0.02em;
}
.chairman-message-box {
    background: #fff;
    border: 1px solid var(--slate-200);
    border-radius: var(--radius);
    padding: 1.75rem 1.5rem 1.85rem;
    max-width: 44rem;
    margin: 0 auto;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.04);
}
@media (min-width: 768px) {
    .chairman-message-box {
        padding: 2.25rem 2.5rem 2.35rem;
    }
}
.chairman-message-label {
    margin: 0 0 1.15rem;
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--slate-500);
    text-align: center;
}
.prose--centered {
    max-width: 38rem;
    margin-left: auto;
    margin-right: auto;
}
.prose--centered p:last-child { margin-bottom: 0; }
.chairman-page-links {
    text-align: center;
    margin: 1.5rem 0 0;
}
.chairman-page-links a {
    font-size: 0.875rem;
    font-weight: 600;
}

/* Kartlar (iç sayfalar) */
.content-block { background: #fff; border: 1px solid var(--slate-200); border-radius: var(--radius); }
.card-grid { display: grid; gap: 1.25rem; }
@media (min-width: 640px) { .card-grid-2 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 768px) { .card-grid-3 { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .card-grid-4 { grid-template-columns: repeat(4, 1fr); } }
.category-card { padding: 1.75rem; transition: border-color 0.15s; color: inherit; display: block; }
.category-card:hover { border-color: var(--navy-900); color: inherit; }
.category-card--visual { padding-top: 0; overflow: hidden; }
.category-card-media {
  height: 11rem;
  margin: 0 -1.75rem 1.25rem;
  background-color: var(--navy-900);
  background-image: var(--cover-image);
  background-size: cover;
  background-position: center;
}
.category-sublist {
  list-style: none;
  margin: 0.85rem 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}
.category-sublist li {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--slate-600);
  background: var(--slate-100);
  padding: 0.2rem 0.5rem;
  border-radius: 2px;
}
.category-icon { width: 2.5rem; height: 2.5rem; background: var(--navy-900); color: #fff; display: flex; align-items: center; justify-content: center; margin-bottom: 1rem; font-size: 1.125rem; border-radius: 2px; }
.category-card h3 { margin-bottom: 0.5rem; }
.category-card p { font-size: 0.9375rem; color: var(--slate-600); line-height: 1.6; }
.category-link { display: inline-block; margin-top: 1rem; font-size: 0.875rem; font-weight: 600; color: var(--accent); }

.project-item { padding: 1.25rem; transition: border-color 0.15s; }
.project-item:hover { border-color: var(--navy-800); }
.project-meta { display: flex; flex-wrap: wrap; align-items: center; gap: 0.5rem; margin-bottom: 0.5rem; }
.news-item { padding: 1.25rem 0; border-bottom: 1px solid var(--slate-200); }
.news-item:last-child { border-bottom: none; }
.news-date { font-size: 0.8125rem; color: var(--slate-500); }
.news-item h3 { margin: 0.25rem 0; font-size: 1.125rem; }
.news-item h3 a { color: var(--navy-900); }
.news-item h3 a:hover { color: var(--accent); }
.news-excerpt { font-size: 0.9375rem; color: var(--slate-600); }

/* Haber kart grid */
.news-card-grid {
    display: grid;
    gap: 1.25rem;
    grid-template-columns: 1fr;
}
@media (min-width: 640px) {
    .news-card-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1100px) {
    .news-card-grid { grid-template-columns: repeat(3, 1fr); }
}
.news-card {
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1px solid var(--slate-200);
    border-radius: var(--radius);
    overflow: hidden;
    color: inherit;
    text-decoration: none;
    transition: border-color .18s, box-shadow .18s, transform .18s;
    height: 100%;
}
.news-card:hover {
    border-color: var(--slate-300);
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.08);
    transform: translateY(-2px);
    color: inherit;
}
.news-card-media {
    aspect-ratio: 16 / 10;
    background: var(--navy-900);
    overflow: hidden;
}
.news-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .35s ease;
}
.news-card:hover .news-card-media img {
    transform: scale(1.04);
}
.news-card-media.is-placeholder {
    display: grid;
    place-items: center;
    background:
        radial-gradient(ellipse 70% 60% at 30% 20%, rgba(184, 149, 60, 0.28), transparent 60%),
        var(--navy-900);
}
.news-card-fallback {
    font-family: var(--font-display);
    font-size: 2.75rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.28);
    letter-spacing: -0.04em;
    line-height: 1;
}
.news-card-media.is-placeholder img {
    object-fit: cover;
    opacity: 0.85;
}
.news-card-body {
    padding: 1rem 1.1rem 1.15rem;
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
    flex: 1;
}
.news-card-body h3 {
    margin: 0;
    font-size: 1rem;
    line-height: 1.35;
    color: var(--navy-900);
    letter-spacing: -0.01em;
}
.news-card:hover .news-card-body h3 {
    color: var(--accent);
}
.news-card-body time {
    margin-top: auto;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--slate-500);
    letter-spacing: 0.02em;
}

.news-pagination {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.4rem;
    margin-top: 2rem;
}
.news-page-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 2.25rem;
    height: 2.25rem;
    padding: 0 0.55rem;
    border-radius: 999px;
    border: 1px solid var(--slate-200);
    background: #fff;
    color: var(--slate-700);
    font-size: 0.8125rem;
    font-weight: 700;
    text-decoration: none;
    transition: background .15s, color .15s, border-color .15s;
}
.news-page-btn:hover {
    border-color: var(--navy-900);
    color: var(--navy-900);
}
.news-page-btn.is-current {
    background: var(--navy-900);
    border-color: var(--navy-900);
    color: #fff;
}

.news-detail-cover {
    margin-bottom: 1.5rem;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--slate-200);
    background: var(--navy-900);
    aspect-ratio: 21 / 9;
    max-height: 22rem;
}
.news-detail-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.news-detail-box {
    max-width: none;
}
.news-detail-excerpt {
    text-align: center;
    font-size: 1.0625rem;
    color: var(--slate-600);
    line-height: 1.55;
    max-width: 38rem;
    margin: 0 auto 1.25rem;
    font-weight: 500;
}

.announcement { padding: 1rem; margin-bottom: 0.75rem; }
.announcement.priority-high { border-left: 4px solid var(--warning); }
.announcement h3 { font-size: 1rem; margin-bottom: 0.25rem; }
.announcement p { font-size: 0.875rem; color: var(--slate-600); }
.announcement time { font-size: 0.75rem; color: var(--slate-400); margin-top: 0.5rem; display: block; }

.chairman-block { display: grid; gap: 2rem; padding: 2rem; }
@media (min-width: 768px) { .chairman-block { grid-template-columns: 1fr 2fr; padding: 2.5rem; } }
.chairman-photo { width: 8rem; height: 8rem; background: var(--navy-900); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 1.75rem; font-weight: 700; margin: 0 auto; }
@media (min-width: 768px) { .chairman-photo { margin: 0; } }
.chairman-info { text-align: center; }
@media (min-width: 768px) { .chairman-info { text-align: left; } }

.breadcrumb { font-size: 0.875rem; color: var(--slate-500); margin-bottom: 1.5rem; }
.breadcrumb a { color: var(--slate-500); }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb span { color: var(--slate-700); }

.prose { max-width: 48rem; line-height: 1.75; }
.prose h2 { margin: 1.5rem 0 0.75rem; font-size: 1.375rem; }
.prose p { margin-bottom: 1rem; color: var(--slate-700); }
.prose ul { margin: 0 0 1rem 1.5rem; color: var(--slate-700); }

.filter-tabs { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 2rem; }
.filter-tab { padding: 0.45rem 0.9rem; font-size: 0.875rem; border: 1px solid var(--slate-300); border-radius: var(--radius); color: var(--slate-600); background: #fff; }
.filter-tab:hover { border-color: var(--navy-900); color: var(--navy-900); }
.filter-tab.active { background: var(--navy-900); color: #fff; border-color: var(--navy-900); }

.contact-grid { display: grid; gap: 2rem; align-items: stretch; }
@media (min-width: 1024px) { .contact-grid { grid-template-columns: 2fr 3fr; } }
.contact-map {
    margin-top: 1.25rem;
    border-radius: 3px;
    overflow: hidden;
    border: 1px solid var(--slate-200);
    background: var(--slate-100);
    min-height: 0;
}
.contact-map--info {
    margin-top: 1.5rem;
    flex: 1;
    min-height: 220px;
}
.contact-map iframe {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 220px;
    border: 0;
}
@media (min-width: 1024px) {
    .contact-map--info,
    .contact-map--info iframe {
        min-height: 280px;
    }
}
.form-check {
    display: flex;
    gap: 0.55rem;
    align-items: flex-start;
    margin: 0.85rem 0 1.1rem;
    font-size: 0.875rem;
    color: var(--slate-700);
    line-height: 1.45;
}
.form-check label {
    display: flex;
    gap: 0.55rem;
    align-items: flex-start;
    cursor: pointer;
    font-weight: 500;
}
.form-check input[type="checkbox"] {
    margin-top: 0.2rem;
    flex-shrink: 0;
    width: 1rem;
    height: 1rem;
}
.form-check a { color: var(--accent); text-decoration: underline; text-underline-offset: 2px; }
.form-check--light { color: rgba(255,255,255,.82); margin: 0.55rem 0 0; }
.form-check--light a { color: #fff; }
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    white-space: nowrap;
    border: 0;
}
.newsletter-band {
    background: linear-gradient(135deg, var(--navy-900) 0%, var(--navy-800) 55%, #242c38 100%);
    color: #fff;
    padding: 1.75rem 0;
    border-bottom: 1px solid rgba(255,255,255,.08);
}
.newsletter-band-inner {
    display: grid;
    gap: 1.5rem;
    align-items: start;
}
@media (min-width: 900px) {
    .newsletter-band-inner { grid-template-columns: 1fr 1.15fr; gap: 2.5rem; align-items: center; }
}
.newsletter-band-copy h2 {
    color: #fff;
    font-size: clamp(1.35rem, 2.2vw, 1.7rem);
    letter-spacing: -0.02em;
}
.newsletter-band-copy p {
    color: rgba(255,255,255,.72);
    margin-top: 0.4rem;
    font-size: 0.9689rem;
    max-width: 36rem;
}
.newsletter-form-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
}
.newsletter-form-row .form-control {
    flex: 1 1 220px;
    min-height: 2.75rem;
    border: 1px solid rgba(255,255,255,.18);
    background: rgba(255,255,255,.08);
    color: #fff;
}
.newsletter-form-row .form-control::placeholder { color: rgba(255,255,255,.55); }
.newsletter-form-row .form-control:focus {
    outline: 2px solid rgba(255,255,255,.35);
    outline-offset: 1px;
    border-color: rgba(255,255,255,.4);
}
.newsletter-form-row .btn-primary {
    background: #fff;
    color: var(--navy-900);
    border-color: #fff;
    white-space: nowrap;
}
.newsletter-form-row .btn-primary:hover {
    background: var(--slate-100);
    border-color: var(--slate-100);
    color: var(--navy-950);
}
.newsletter-band .alert { margin-bottom: 0.75rem; }

/* E-bülten başarı popup */
.newsletter-toast {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.25rem;
    background: rgba(15, 23, 42, 0.45);
    opacity: 0;
    visibility: hidden;
    transition: opacity .25s ease, visibility .25s ease;
}
.newsletter-toast.is-open {
    opacity: 1;
    visibility: visible;
}
.newsletter-toast-card {
    width: min(100%, 22rem);
    background: #fff;
    border-radius: 12px;
    padding: 2rem 1.5rem 1.5rem;
    text-align: center;
    box-shadow: 0 24px 48px rgba(15, 23, 42, 0.22);
    transform: translateY(12px) scale(0.96);
    transition: transform .28s ease;
}
.newsletter-toast.is-open .newsletter-toast-card {
    transform: translateY(0) scale(1);
}
.newsletter-toast-check {
    width: 64px;
    height: 64px;
    margin: 0 auto 1rem;
    border-radius: 50%;
    background: #ecfdf5;
    color: #059669;
    display: grid;
    place-items: center;
}
.newsletter-toast-check svg {
    width: 32px;
    height: 32px;
}
.newsletter-toast-card h3 {
    margin: 0 0 0.35rem;
    font-size: 1.125rem;
    color: var(--navy-950, #0f172a);
}
.newsletter-toast-card p {
    margin: 0 0 1.25rem;
    font-size: 0.9375rem;
    color: var(--slate-600, #475569);
}
.newsletter-toast-card .btn {
    min-width: 7rem;
}
.newsletter-form.is-loading .btn-primary {
    opacity: 0.7;
    pointer-events: none;
}
.newsletter-form .newsletter-inline-error {
    margin-top: 0.65rem;
    font-size: 0.8125rem;
    color: #fecaca;
}

.contact-info {
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
    border-top: 3px solid var(--navy-900);
}
.contact-info-title {
    margin: 0 0 1.25rem;
    font-size: 1.25rem;
}
.contact-info-list {
    list-style: none;
    margin: 0;
    padding: 0;
}
.contact-info-list li {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    padding: 0.9rem 0;
    border-bottom: 1px solid var(--slate-200);
    font-size: 0.9375rem;
    color: var(--slate-700);
}
.contact-info-list li:first-child { padding-top: 0; }
.contact-info-list li:last-child { border-bottom: none; padding-bottom: 0; }
.contact-info-label {
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--slate-500);
}
.contact-info-value {
    color: var(--navy-900);
    font-weight: 500;
    line-height: 1.55;
    word-break: break-word;
}
a.contact-info-value {
    color: var(--navy-900);
    text-decoration: none;
}
a.contact-info-value:hover { color: var(--accent); }
.contact-form-wrap {
    padding: 1.75rem;
    border-top: 3px solid var(--accent);
}
@media (min-width: 768px) { .contact-form-wrap { padding: 2.25rem; } }

.form-group { margin-bottom: 1rem; }
.form-group label { display: block; font-size: 0.875rem; font-weight: 600; color: var(--slate-700); margin-bottom: 0.3rem; }
.form-control { width: 100%; padding: 0.6rem 0.8rem; font-size: 0.9375rem; font-family: inherit; border: 1px solid var(--slate-300); border-radius: var(--radius); }
.form-control:focus { outline: none; border-color: var(--navy-900); box-shadow: 0 0 0 1px var(--navy-900); }
textarea.form-control { resize: vertical; min-height: 120px; }
.form-row { display: grid; gap: 1rem; }
@media (min-width: 640px) { .form-row-2 { grid-template-columns: 1fr 1fr; } }
.alert { padding: 0.75rem 1rem; font-size: 0.875rem; border-radius: var(--radius); margin-bottom: 1rem; }
.alert-success { background: #ecfdf5; color: #065f46; border: 1px solid #a7f3d0; }
.alert-error { background: #fef2f2; color: #991b1b; border: 1px solid #fecaca; }

/* ========== Pre-footer CTA + Footer ========== */
.pre-footer { background: var(--navy-800); color: #fff; padding: 2rem 0; border-bottom: 1px solid rgba(255,255,255,.08); }
.pre-footer-inner { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1.5rem; }
.pre-footer h2 { color: #fff; font-size: clamp(1.375rem, 2.4vw, 1.75rem); letter-spacing: -0.015em; }
.pre-footer p { color: rgba(255,255,255,.7); margin-top: 0.4rem; font-size: 0.9689rem; }
.pre-footer-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 1.25rem; }
.pre-footer-phone { color: #fff; font-family: var(--font-display); font-weight: 700; font-size: 1.125rem; white-space: nowrap; }
.pre-footer-phone:hover { color: rgba(255,255,255,.85); }
.pre-footer .btn-primary { background: #fff; color: var(--navy-900); border-color: #fff; }
.pre-footer .btn-primary:hover { background: var(--slate-100); border-color: var(--slate-100); color: var(--navy-950); }

.site-footer { background: var(--navy-900); color: rgba(255,255,255,.72); overflow-x: clip; }
.footer-main { padding: clamp(3rem, 6vw, 4.5rem) 0; }
.footer-grid { display: grid; gap: 2.5rem; }
@media (min-width: 768px) { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1.2fr; gap: 3rem; } }
.footer-col {
  min-width: 0;
  overflow-wrap: anywhere;
  word-break: break-word;
}
.footer-col h4 {
  color: #fff;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1.15rem;
  padding-top: 0.85rem;
  position: relative;
}
.footer-col h4::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 1.75rem;
  height: 2px;
  background: var(--accent);
}
.footer-col ul { list-style: none; margin: 0; padding: 0; }
.footer-col li { margin-bottom: 0.6rem; font-size: 0.9375rem; }
.footer-col a { color: rgba(255,255,255,.72); font-size: 0.9375rem; display: inline; }
.footer-col a:hover { color: #fff; }
.footer-about p { font-size: 0.9375rem; line-height: 1.7; max-width: 30rem; margin-top: 1rem; }
.footer-bottom { background: var(--navy-950); padding: 1.35rem 0; font-size: 0.8125rem; color: rgba(255,255,255,.5); }
.footer-bottom-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 0.5rem 1rem;
  min-width: 0;
}
.footer-bottom-inner > span { min-width: 0; flex: 0 1 auto; max-width: 100%; }
.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1rem;
  min-width: 0;
}
.footer-legal a { color: rgba(255,255,255,.5); white-space: nowrap; }
.footer-legal a:hover { color: #fff; }
@media (max-width: 640px) {
  .footer-main .container,
  .footer-bottom .container { padding-left: 1.15rem; padding-right: 1.15rem; }
  .footer-grid { gap: 1.75rem; }
  .footer-col h4 { letter-spacing: 0.06em; }
  .footer-bottom-inner {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 0.45rem;
  }
  .footer-bottom-inner > span { flex: none; width: 100%; }
  .footer-legal { gap: 0.55rem 0.9rem; }
}

.two-col { display: grid; gap: 2rem; align-items: center; }
@media (min-width: 1024px) { .two-col { grid-template-columns: 1fr 1fr; } }

.board-chairman-wrap {
  margin-bottom: 2.25rem;
  display: flex;
  justify-content: center;
}
.board-chairman {
  display: block;
  text-align: center;
  text-decoration: none;
  color: inherit;
  padding: 2rem 1.75rem 1.75rem;
  max-width: 22rem;
  width: 100%;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.board-chairman:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.12);
  color: inherit;
}
.board-chairman-name {
  font-size: 1.35rem;
  margin: 0 0 0.35rem;
  color: var(--navy-900);
}
.board-chairman-cta {
  display: inline-block;
  margin-top: 0.85rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--accent);
}
.board-team-heading {
  font-size: 1.05rem;
  margin: 0 0 1.15rem;
  color: var(--navy-900);
  font-weight: 600;
}
.board-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) {
  .board-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 900px) {
  .board-grid,
  .page-with-sidebar .board-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.board-card { padding: 1.75rem; text-align: center; }
.board-card-name {
  font-size: 1.125rem;
  margin: 0 0 0.35rem;
  color: var(--navy-900);
}
.board-avatar {
  width: 5rem;
  height: 5rem;
  background: var(--navy-900);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  margin: 0 auto 1rem;
  border-radius: 2px;
  overflow: hidden;
}
.board-avatar--lg {
  width: 8.5rem;
  height: 8.5rem;
  font-size: 1.5rem;
}
.board-avatar.has-photo {
  background: transparent;
}
.board-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.board-title { font-size: 0.875rem; color: var(--accent); font-weight: 500; margin: 0; }

.gallery-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .gallery-grid { grid-template-columns: repeat(3, 1fr); } }
.gallery-item {
  margin: 0;
  background: #fff;
  border: 1px solid var(--slate-200);
  border-radius: var(--radius);
  overflow: hidden;
}
.gallery-item img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}
.gallery-item figcaption {
  padding: 0.85rem 1rem;
  font-size: 0.875rem;
  color: var(--slate-600);
  border-top: 1px solid var(--slate-200);
}

.error-page { text-align: center; padding: 4rem 0; }
.error-page h1 { font-size: 4rem; color: var(--navy-900); }

.text-muted { color: var(--slate-600); }
.text-sm { font-size: 0.875rem; }
.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-4 { margin-top: 1rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-8 { margin-bottom: 2rem; }
.space-y-4 > * + * { margin-top: 1rem; }
.meta-cat { font-size: 0.8125rem; color: var(--slate-500); font-weight: 600; letter-spacing: 0.02em; }
.meta-cat--dark { color: rgba(255,255,255,.6); }
.inline-link { display: inline-block; margin-top: 1.5rem; font-size: 0.875rem; font-weight: 600; }
.header-cta { display: none; padding: 0.55rem 1.2rem; font-size: 0.875rem; min-height: 0; }
@media (min-width: 640px) {
  .header-cta { display: inline-flex; }
}

/* Preview banner */
.preview-banner {
  background: #fff7ed;
  color: #9a3412;
  border: 1px solid #fdba74;
  padding: 0.65rem 1rem;
  margin-bottom: 1.25rem;
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: 2px;
}

/* Content gallery */
.content-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  margin: 1.5rem 0;
}
@media (min-width: 768px) {
  .content-gallery { grid-template-columns: repeat(3, 1fr); }
}
.content-gallery-item {
  display: block;
  overflow: hidden;
  border-radius: 2px;
  background: #0f172a;
  aspect-ratio: 4 / 3;
}
.content-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}
.content-gallery-item:hover img { transform: scale(1.04); }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 10050;
  background: rgba(15, 23, 42, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}
.lightbox[hidden] { display: none !important; }
.lightbox-img {
  max-width: min(92vw, 1100px);
  max-height: 85vh;
  object-fit: contain;
  border-radius: 2px;
}
.lightbox-close,
.lightbox-nav {
  position: absolute;
  background: rgba(255,255,255,0.12);
  color: #fff;
  border: 0;
  width: 2.75rem;
  height: 2.75rem;
  font-size: 1.75rem;
  line-height: 1;
  cursor: pointer;
  border-radius: 2px;
}
.lightbox-close { top: 1rem; right: 1rem; }
.lightbox-prev { left: 1rem; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 1rem; top: 50%; transform: translateY(-50%); }
.lightbox-close:hover,
.lightbox-nav:hover { background: rgba(255,255,255,0.22); }

/* Site campaign popup */
.site-popup {
  position: fixed;
  inset: 0;
  z-index: 10040;
  background: rgba(15, 23, 42, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}
.site-popup.is-open {
  opacity: 1;
  pointer-events: auto;
}
.site-popup[hidden] { display: none !important; }
.site-popup-card {
  position: relative;
  width: min(520px, 100%);
  max-height: min(90vh, 720px);
  overflow: auto;
  background: #fff;
  border-radius: 4px;
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.28);
}
.site-popup-close {
  position: absolute;
  top: 0.55rem;
  right: 0.55rem;
  z-index: 2;
  width: 2.25rem;
  height: 2.25rem;
  border: 0;
  background: rgba(15, 23, 42, 0.55);
  color: #fff;
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
  border-radius: 2px;
}
.site-popup-media img {
  width: 100%;
  max-height: 220px;
  object-fit: cover;
  display: block;
}
.site-popup-body { padding: 1.25rem 1.35rem 1.5rem; }
.site-popup-body h2 {
  margin: 0 0 0.65rem;
  font-size: 1.35rem;
  color: var(--navy-900);
}
.site-popup-html { margin-bottom: 1rem; font-size: 0.95rem; }
.site-popup-actions { margin-top: 1rem; display: flex; gap: 0.5rem; flex-wrap: wrap; }
.site-popup-newsletter { margin: 0.75rem 0 0; }
.site-popup-newsletter .newsletter-form-row {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 0.65rem;
}
.site-popup-newsletter .form-check { margin-top: 0.35rem; font-size: 0.8rem; }
