/* Sultan Şeyhmus — statik tema (önceki Next/Tailwind düzenine yakın) */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body.site-body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  background: #f8fafc;
  color: #0f172a;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

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

main.site-main {
  flex: 1;
  background: #f8fafc;
}

.container {
  width: 100%;
  max-width: 80rem;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

@media (min-width: 640px) {
  .container {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

/* Top bar */
.topbar {
  background: #0f172a;
  color: #fff;
  padding: 0.5rem 0;
  font-size: 0.875rem;
}

.topbar__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

@media (min-width: 640px) {
  .topbar__inner {
    flex-direction: row;
    justify-content: space-between;
  }
}

.topbar__contacts {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.topbar__contacts a:hover,
.topbar__social a:hover {
  color: #34d399;
}

.topbar__aside {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.625rem 1rem;
  width: 100%;
}

@media (min-width: 640px) {
  .topbar__aside {
    width: auto;
    justify-content: flex-end;
    flex-wrap: nowrap;
  }
}

.topbar-donate {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.375rem;
  padding: 0.35rem 0.85rem;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1.2;
  color: #fff !important;
  background: linear-gradient(160deg, #10b981 0%, #059669 55%, #047857 100%);
  border-radius: 9999px;
  border: 1px solid rgba(167, 243, 208, 0.35);
  box-shadow: 0 1px 3px rgba(5, 150, 105, 0.45);
  transition: background 0.2s, box-shadow 0.2s, transform 0.15s;
  white-space: nowrap;
}

.topbar-donate:hover {
  color: #fff !important;
  background: linear-gradient(160deg, #059669 0%, #047857 100%);
  box-shadow: 0 3px 12px rgba(5, 150, 105, 0.45);
  transform: translateY(-1px);
}

.topbar-donate:active {
  transform: translateY(0);
}

.topbar-donate svg {
  flex-shrink: 0;
}

@media (min-width: 480px) {
  .topbar-donate {
    padding: 0.4rem 1rem;
    font-size: 0.875rem;
  }
}

@media (max-width: 379px) {
  .topbar-donate span {
    font-size: 0.75rem;
  }

  .topbar-donate {
    padding-left: 0.65rem;
    padding-right: 0.65rem;
  }
}

.topbar__social {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.topbar__loc {
  display: none;
}

@media (min-width: 768px) {
  .topbar__loc {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    color: #cbd5e1;
  }
}

/* Navbar */
.nav-toggle-input {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-nav {
  background: #fff;
  box-shadow: 0 4px 6px -1px rgba(15, 23, 42, 0.08), 0 2px 4px -2px rgba(15, 23, 42, 0.06);
  position: sticky;
  top: 0;
  z-index: 100;
}

.site-nav__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 6rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.brand__logo {
  width: 45px;
  height: auto;
  object-fit: contain;
}

.brand__title {
  font-size: 1.125rem;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.2;
}

.brand__sub {
  font-size: 0.6875rem;
  color: #475569;
  line-height: 1.2;
}

.nav-desktop {
  display: none;
  align-items: center;
  gap: 0.25rem;
}

@media (min-width: 1024px) {
  .nav-desktop {
    display: flex;
  }
}

.nav-link {
  display: inline-block;
  padding: 0.5rem 1rem;
  border-radius: 0.375rem;
  font-weight: 500;
  color: #334155;
  transition: background 0.15s, color 0.15s;
}

.nav-link:hover {
  color: #059669;
  background: #ecfdf5;
}

.nav-link.is-active {
  color: #059669;
  background: #ecfdf5;
}

/* Dropdown (hover, JS yok) */
.nav-item--dropdown {
  position: relative;
}

.nav-item--dropdown > .nav-link {
  cursor: default;
}

.nav-submenu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  /* margin ile boşluk = hover kopması; üst boşluk padding ile (tıklanabilir alan) */
  margin-top: 0;
  min-width: 14rem;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 0.5rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  padding: 0.75rem 0 0.5rem;
  z-index: 50;
}

.nav-item--dropdown:hover .nav-submenu {
  display: block;
}

.nav-submenu a {
  display: block;
  padding: 0.5rem 1rem;
  font-size: 0.9375rem;
  color: #334155;
}

.nav-submenu a:hover,
.nav-submenu a.is-active {
  color: #059669;
  background: #ecfdf5;
}

.btn-donate {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.25rem;
  background: #059669;
  color: #fff !important;
  border-radius: 9999px;
  font-weight: 500;
  transition: background 0.15s;
}

.btn-donate:hover {
  background: #047857;
}

.nav-mobile-btn {
  display: flex;
  padding: 0.625rem;
  color: #334155;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 0.75rem;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  cursor: pointer;
}

@media (min-width: 1024px) {
  .nav-mobile-btn {
    display: none;
  }
}

/* Mobile drawer */
.mobile-layer {
  display: block;
}

@media (min-width: 1024px) {
  .mobile-layer {
    display: none !important;
  }
}

.mobile-scrim {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.55);
  z-index: 200;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.nav-toggle-input:checked ~ .mobile-scrim {
  opacity: 1;
  pointer-events: auto;
}

.mobile-drawer {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 210;
  height: 100%;
  width: min(85vw, 20rem);
  max-width: 340px;
  background: #fff;
  box-shadow: 4px 0 24px rgba(0, 0, 0, 0.12);
  transform: translateX(-100%);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.nav-toggle-input:checked ~ .mobile-drawer {
  transform: translateX(0);
}

body:has(.nav-toggle-input:checked) {
  overflow: hidden;
}

.mobile-drawer__head {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem;
  border-bottom: 1px solid #e2e8f0;
}

.mobile-drawer__close {
  margin-left: auto;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  box-sizing: border-box;
  border: 1px solid #e2e8f0;
  border-radius: 50%;
  background: #fff;
  cursor: pointer;
}

.mobile-drawer__nav {
  flex: 1;
  overflow-y: auto;
  padding-bottom: 1rem;
}

.mobile-link {
  display: block;
  padding: 0.875rem 1rem;
  font-size: 0.9375rem;
  font-weight: 500;
  border-bottom: 1px solid #f1f5f9;
  color: #1e293b;
}

.mobile-link:hover,
.mobile-link.is-active {
  background: #f8fafc;
  color: #059669;
}

.mobile-subtitle {
  padding: 0.75rem 1rem 0.25rem;
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #64748b;
}

.mobile-drawer__donate {
  padding: 1rem;
}

.mobile-drawer__donate .btn-donate {
  width: 100%;
  justify-content: center;
  border-radius: 0.75rem;
  padding: 0.875rem;
}

/* Page hero strip */
.page-hero {
  background: #0f172a;
  color: #fff;
  padding: 4rem 0;
}

.page-hero h1 {
  margin: 0;
  font-size: 2.25rem;
  font-weight: 700;
}

.page-hero p {
  margin: 0.5rem 0 0;
  color: #cbd5e1;
}

.section {
  padding: 4rem 0;
}

.section--muted {
  background: #f8fafc;
}

/* Next.js SectionTitle ile uyumlu: kicker + başlık + çizgi */
.section-title {
  text-align: center;
  margin-bottom: 2.5rem;
}

.section-title--left {
  text-align: left;
}

.section-title--left .section-title__bar {
  margin-left: 0;
  margin-right: auto;
}

.section-title__kicker {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: #059669;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}

.section-title__h {
  margin: 0;
  font-size: 1.875rem;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.2;
}

@media (min-width: 768px) {
  .section-title__h {
    font-size: 2.25rem;
  }
}

.section-title__h--solo {
  font-size: 1.875rem;
}

@media (min-width: 768px) {
  .section-title__h--solo {
    font-size: 1.875rem;
  }
}

.section-title__bar {
  width: 5rem;
  height: 0.25rem;
  margin-top: 1rem;
  margin-left: auto;
  margin-right: auto;
  border-radius: 0.125rem;
  background: #059669;
}

.section-title__p,
.section-title__sub {
  margin: 0.5rem 0 0;
  color: #64748b;
  font-size: 1rem;
}

.section-title--plain .section-title__bar {
  display: none;
}

/* Cards — Next Card: rounded-xl shadow-md */
.card {
  background: #fff;
  border-radius: 0.75rem;
  box-shadow: 0 4px 6px -1px rgba(15, 23, 42, 0.08), 0 2px 4px -2px rgba(15, 23, 42, 0.06);
  overflow: hidden;
  transition: box-shadow 0.3s, transform 0.2s;
}

.card:hover {
  box-shadow: 0 10px 15px -3px rgba(15, 23, 42, 0.12), 0 4px 6px -4px rgba(15, 23, 42, 0.08);
}

.card__media {
  position: relative;
  height: 12rem;
  overflow: hidden;
  background: #e2e8f0;
}

.card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.card:hover .card__media img {
  transform: scale(1.1);
}

.card__body {
  padding: 1.5rem;
}

/* Card layout helper: keep CTA link at bottom (home/news cards) */
.card > a {
  display: flex;
  flex-direction: column;
  height: 100%;
  text-decoration: none;
  color: inherit;
}
.card__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-height: 0;
}
.card__text {
  flex: 1;
}
.card .link-arrow {
  margin-top: auto;
}

.card__meta {
  font-size: 0.875rem;
  color: #64748b;
  margin-bottom: 0.75rem;
}

.card__meta--users {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.card__h {
  margin: 0 0 0.5rem;
  font-size: 1.125rem;
  font-weight: 600;
  color: #0f172a;
}

.card:hover .card__h {
  color: #059669;
}

/* ─────────────────────────────────────────────────────────────
   Tüzük (Next.js TuzukPage uyumu)
   ───────────────────────────────────────────────────────────── */
.tuzuk-wrap {
  max-width: 64rem;
  margin: 0 auto;
}

.tuzuk-info-card {
  background: #ecfdf5;
  border: 1px solid #a7f3d0;
  border-radius: 0.75rem;
  padding: 1rem;
  margin-bottom: 2rem;
}

@media (min-width: 640px) {
  .tuzuk-info-card {
    padding: 1.5rem;
  }
}

.tuzuk-info-row {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  flex-wrap: wrap;
}

@media (min-width: 640px) {
  .tuzuk-info-row {
    align-items: center;
  }
}

.tuzuk-info-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 9999px;
  background: #059669;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.tuzuk-info-text {
  flex: 1;
  min-width: 220px;
}

.tuzuk-info-text h2 {
  margin: 0;
  font-size: 1rem;
  font-weight: 700;
  color: #064e3b;
}

@media (min-width: 640px) {
  .tuzuk-info-text h2 {
    font-size: 1.125rem;
  }
}

.tuzuk-info-text p {
  margin: 0.25rem 0 0;
  font-size: 0.875rem;
  color: #047857;
}

.tuzuk-download-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  border-radius: 0.5rem;
  background: #059669;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  width: 100%;
}

@media (min-width: 640px) {
  .tuzuk-download-btn {
    width: auto;
    padding: 0.75rem 1.5rem;
  }
}

.tuzuk-download-btn:hover {
  background: #047857;
}

.tuzuk-download-btn__desktop {
  display: none;
}

.tuzuk-download-btn__mobile {
  display: inline;
}

@media (min-width: 640px) {
  .tuzuk-download-btn__desktop {
    display: inline;
  }
  .tuzuk-download-btn__mobile {
    display: none;
  }
}

.tuzuk-viewer-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 0.75rem;
  box-shadow: 0 4px 6px -1px rgba(15, 23, 42, 0.08), 0 2px 4px -2px rgba(15, 23, 42, 0.06);
  overflow: hidden;
}

.tuzuk-viewer-head {
  padding: 1rem;
  border-bottom: 1px solid #e2e8f0;
  background: #f8fafc;
  color: #475569;
  font-size: 0.875rem;
}

.tuzuk-viewer-body {
  height: 800px;
}

.tuzuk-iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.tuzuk-alt-download {
  margin-top: 1.5rem;
  text-align: center;
}

.tuzuk-alt-download p {
  margin: 0 0 0.75rem;
  color: #64748b;
  font-size: 0.875rem;
}

.tuzuk-alt-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  background: #1e293b;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
}

.tuzuk-alt-btn:hover {
  background: #0f172a;
}

/* ─────────────────────────────────────────────────────────────
   Yönetim Kurulu (Next.js YonetimKuruluPage uyumu)
   ───────────────────────────────────────────────────────────── */
.board-grid {
  margin: 0 auto;
}

.board-grid--one {
  display: flex;
  justify-content: center;
}

.board-grid--two {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 56rem;
  justify-items: center;
}

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

.board-grid--three {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 72rem;
  justify-items: center;
}

@media (min-width: 768px) {
  .board-grid--three {
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
  }
}

.board-grid--four {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 72rem;
  justify-items: center;
}

@media (min-width: 640px) {
  .board-grid--four {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .board-grid--four {
    grid-template-columns: repeat(4, 1fr);
  }
}

.board-grid--many {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 72rem;
  justify-items: center;
}

@media (min-width: 640px) {
  .board-grid--many {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .board-grid--many {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1280px) {
  .board-grid--many {
    grid-template-columns: repeat(4, 1fr);
  }
}

.board-card {
  width: 100%;
  max-width: 360px;
  border-radius: 1rem;
  border: 1px solid #e2e8f0;
  background: #fff;
  box-shadow: 0 4px 6px -1px rgba(15, 23, 42, 0.08), 0 2px 4px -2px rgba(15, 23, 42, 0.06);
  overflow: hidden;
  transition: box-shadow 0.25s;
  display: flex;
  flex-direction: column;
}

.board-card:hover {
  box-shadow: 0 10px 15px -3px rgba(15, 23, 42, 0.12), 0 4px 6px -4px rgba(15, 23, 42, 0.08);
}

.board-card__media {
  position: relative;
  aspect-ratio: 3 / 4;
  width: 100%;
  overflow: hidden;
  background: #e2e8f0;
}

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

.board-card__noimg {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  text-align: center;
  color: #64748b;
  font-size: 0.875rem;
}

.board-card__body {
  border-top: 1px solid #f1f5f9;
  padding: 1rem 1rem 1.25rem;
  text-align: center;
}

@media (min-width: 640px) {
  .board-card__body {
    padding: 1rem 1.25rem 1.25rem;
  }
}

.board-card__body h3 {
  margin: 0;
  color: #0f172a;
  font-weight: 800;
  font-size: 1rem;
  line-height: 1.35;
}

@media (min-width: 640px) {
  .board-card__body h3 {
    font-size: 1.125rem;
  }
}

.board-card__pos {
  margin: 0.375rem 0 0;
  font-size: 0.875rem;
  font-weight: 700;
  color: #059669;
}

.board-card__bio {
  margin: 1rem 0 0;
  padding-top: 1rem;
  border-top: 1px solid #f1f5f9;
  text-align: left;
  font-size: 0.875rem;
  line-height: 1.7;
  color: #475569;
}

.board-duty {
  margin-top: 3rem;
  border-radius: 1rem;
  border: 1px solid #e2e8f0;
  background: #f8fafc;
  padding: 1.5rem;
}

@media (min-width: 768px) {
  .board-duty {
    margin-top: 3.5rem;
    padding: 2rem;
  }
}

.board-duty h3 {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 700;
  color: #0f172a;
}

.board-duty__grid {
  margin-top: 1.5rem;
  display: grid;
  gap: 2rem;
}

@media (min-width: 768px) {
  .board-duty__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
  }
}

.board-duty__grid h4 {
  margin: 0 0 0.75rem;
  font-size: 0.875rem;
  font-weight: 700;
  color: #1e293b;
}

.board-duty__grid ul {
  margin: 0;
  padding-left: 1.1rem;
  color: #475569;
  font-size: 0.875rem;
  line-height: 1.7;
}

.board-duty__grid li {
  margin: 0.25rem 0;
}

/* ─────────────────────────────────────────────────────────────
   Dernek Kayıt (Next.js DernekKayitPage uyumu)
   ───────────────────────────────────────────────────────────── */
.dk-hero-title {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.dk-hero-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.dk-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}

@media (min-width: 1024px) {
  .dk-layout {
    grid-template-columns: 2fr 1fr;
    gap: 2.5rem;
    align-items: start;
  }
}

.dk-card {
  padding: 1.5rem;
}

@media (min-width: 640px) {
  .dk-card {
    padding: 2rem;
  }
}

.dk-card__head {
  margin-bottom: 0.5rem;
}

.dk-success {
  background: #ecfdf5;
  border: 1px solid #a7f3d0;
  border-radius: 0.75rem;
  padding: 2rem;
  text-align: center;
}

.dk-success__icon {
  width: 4rem;
  height: 4rem;
  border-radius: 9999px;
  background: #d1fae5;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.dk-success h3 {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 800;
  color: #064e3b;
}

.dk-success p {
  margin: 0.5rem 0 1.25rem;
  color: #065f46;
  font-size: 0.875rem;
}

.dk-success__link {
  color: #047857;
  font-weight: 700;
  text-decoration: underline;
}

.dk-error {
  background: #fef2f2;
  border: 1px solid #fecaca;
  border-radius: 0.75rem;
  padding: 0.75rem 1rem;
  color: #b91c1c;
  font-size: 0.875rem;
  margin-bottom: 1rem;
}

.dk-photo {
  border: 1px solid #e2e8f0;
  background: rgba(248, 250, 252, 0.8);
  border-radius: 0.75rem;
  padding: 1.25rem;
  margin-bottom: 1.25rem;
}

.dk-photo__label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0 0 0.5rem;
  font-size: 0.875rem;
  font-weight: 700;
  color: #1f2937;
}

.dk-photo__hint {
  margin: 0 0 1rem;
  color: #475569;
  font-size: 0.75rem;
}

.dk-photo__row {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 640px) {
  .dk-photo__row {
    flex-direction: row;
    align-items: center;
    gap: 1.5rem;
  }
}

.dk-photo__preview {
  width: 8.5rem;
  height: 10rem;
  border-radius: 0.75rem;
  border: 2px dashed #cbd5e1;
  background: #fff;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #94a3b8;
  font-size: 0.75rem;
  text-align: center;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.08);
  flex-shrink: 0;
  margin: 0 auto;
}

@media (min-width: 640px) {
  .dk-photo__preview {
    margin: 0;
  }
}

.dk-photo__preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.dk-photo__pick {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.dk-photo__pick input[type="file"] {
  width: 100%;
  font-size: 0.875rem;
  color: #475569;
}

.dk-photo__clear {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  background: transparent;
  border: none;
  padding: 0;
  color: #dc2626;
  font-weight: 600;
  cursor: pointer;
}

.dk-photo__clear:hover {
  text-decoration: underline;
}

.dk-fields {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

@media (min-width: 768px) {
  .dk-fields {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }
}

.dk-field--full {
  grid-column: 1 / -1;
}

.dk-field label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: #334155;
  margin-bottom: 0.25rem;
}

.dk-req {
  color: #ef4444;
}

.dk-field input,
.dk-field textarea {
  width: 100%;
  padding: 0.625rem 0.875rem;
  border: 1px solid #cbd5e1;
  border-radius: 0.5rem;
  font: inherit;
  color: #0f172a;
  background: #fff;
  outline: none;
}

.dk-field textarea {
  resize: none;
}

.dk-field input:focus,
.dk-field textarea:focus {
  border-color: #059669;
  box-shadow: 0 0 0 3px rgba(5, 150, 105, 0.12);
}

.dk-field input.dk-input--error,
.dk-field textarea.dk-input--error {
  border-color: #ef4444;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.12);
}

.dk-field-msg {
  margin: 0.35rem 0 0;
  font-size: 0.8125rem;
  line-height: 1.35;
}

.dk-field-msg--error {
  color: #b91c1c;
  font-weight: 500;
}

.dk-photo .dk-field-msg--error {
  margin-top: 0.5rem;
}

.dk-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  background: #059669;
  color: #fff;
  border: none;
  cursor: pointer;
  font-weight: 700;
  transition: background 0.15s;
}

.dk-submit:hover {
  background: #047857;
}

.dk-info {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 0.75rem;
  padding: 1.5rem;
}

.dk-info h3 {
  margin: 0 0 0.75rem;
  font-size: 1rem;
  font-weight: 800;
  color: #0f172a;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.dk-info ul {
  margin: 0;
  padding-left: 1.1rem;
  color: #475569;
  font-size: 0.875rem;
  line-height: 1.7;
}

.dk-info a {
  color: #047857;
  font-weight: 700;
  text-decoration: underline;
}

.card__text {
  margin: 0 0 1rem;
  font-size: 0.875rem;
  color: #64748b;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: #059669;
}

.link-arrow__chev {
  transition: transform 0.2s ease;
}

.card:hover .link-arrow__chev {
  transform: translateX(4px);
}

.card__media-fallback {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom right, #cbd5e1, #94a3b8);
}

.card__meta--users::before {
  content: "";
  display: inline-block;
  width: 14px;
  height: 14px;
  margin-right: 0.25rem;
  vertical-align: -0.125rem;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' fill='none' stroke='%2364748b' stroke-width='2'%3E%3Cpath d='M17 21v-2a4 4 0 0 0-4-4H5a4 4 0 0 0-4 4v2'/%3E%3Ccircle cx='9' cy='7' r='4'/%3E%3Cpath d='M23 21v-2a4 4 0 0 0-3-3.87M16 3.13a4 4 0 0 1 0 7.75'/%3E%3C/svg%3E")
    center / contain no-repeat;
}

.grid-2 {
  display: grid;
  gap: 2rem;
}

@media (min-width: 768px) {
  .grid-2 {
    grid-template-columns: repeat(2, 1fr);
  }
}

.grid-3 {
  display: grid;
  gap: 2rem;
}

/* Grid children stretch so card heights match */
.grid-3 > * { height: 100%; }

@media (min-width: 768px) {
  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

.grid-4 {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .grid-4 {
    grid-template-columns: repeat(4, 1fr);
  }
}

.text-center {
  text-align: center;
}

.mt-8 {
  margin-top: 2rem;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 0.5rem;
  font-weight: 500;
  color: #334155;
  transition: background 0.15s;
}

.btn-outline:hover {
  background: #f1f5f9;
}

.btn-outline__icon {
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.btn-outline:hover .btn-outline__icon {
  transform: translateX(3px);
}

/* Haber listesi — Next “Tüm Haberler” düğmesi (bg-slate-100) */
.btn-outline--muted {
  background: #f1f5f9;
  border-color: transparent;
}

.btn-outline--muted:hover {
  background: #e2e8f0;
}

.news-card__date {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.875rem;
  color: #64748b;
  margin-bottom: 0.75rem;
}

.news-card__date svg {
  flex-shrink: 0;
}

/* Hero slider (radyo + CSS) */
.hero {
  position: relative;
  height: 500px;
  background: #0f172a;
  overflow: hidden;
}

@media (min-width: 768px) {
  .hero {
    height: 600px;
  }
}

.hero__state {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.hero__slides {
  position: relative;
  height: 100%;
}

.hero__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  z-index: 0;
  transition: opacity 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.hero__slide-inner {
  position: relative;
  height: 100%;
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1rem;
  display: flex;
  align-items: center;
  z-index: 2;
}

@media (min-width: 640px) {
  .hero__slide-inner {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .hero__slide-inner {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(15, 23, 42, 0.9), rgba(15, 23, 42, 0.7), transparent);
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 42rem;
}

.hero__badge {
  display: inline-block;
  padding: 0.25rem 1rem;
  background: #059669;
  color: #fff;
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: 9999px;
  margin-bottom: 1rem;
}

.hero__title {
  margin: 0 0 1rem;
  font-size: 2.25rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.15;
}

@media (min-width: 768px) {
  .hero__title {
    font-size: 3rem;
  }
}

@media (min-width: 1024px) {
  .hero__title {
    font-size: 3.75rem;
  }
}

.hero__desc {
  margin: 0 0 2rem;
  font-size: 1.125rem;
  color: #e2e8f0;
  max-width: 42rem;
}

@media (min-width: 768px) {
  .hero__desc {
    font-size: 1.25rem;
  }
}

.btn-lg {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 2rem;
  background: #059669;
  color: #fff !important;
  font-weight: 500;
  font-size: 1.125rem;
  line-height: 1.25;
  border-radius: 0.5rem;
  transition: background 0.2s, box-shadow 0.2s;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.btn-lg:hover {
  background: #047857;
}

.btn-lg:focus-visible {
  outline: 2px solid #10b981;
  outline-offset: 2px;
}

.hero__dots {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 0.5rem;
}

.hero__dots label {
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: background 0.2s;
}

.hero--empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #94a3b8;
  text-align: center;
  padding: 1rem;
  font-size: 0.875rem;
  line-height: 1.6;
}

.hero--empty code {
  font-size: 0.8em;
  color: #cbd5e1;
  background: rgba(15, 23, 42, 0.5);
  padding: 0.1em 0.35em;
  border-radius: 0.25rem;
}

/* Quick donation icons */
.qd-icon {
  width: 4rem;
  height: 4rem;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.qd-icon--emerald {
  background: #d1fae5;
  color: #059669;
}

.qd-icon--cyan {
  background: #cffafe;
  color: #0891b2;
}

.qd-icon--blue {
  background: #dbeafe;
  color: #2563eb;
}

.qd-icon--amber {
  background: #fef3c7;
  color: #d97706;
}

.qd-card {
  text-align: center;
  padding: 1.5rem;
  transition: transform 0.2s ease;
}

.qd-card:hover {
  transform: translateY(-0.25rem);
}

.qd-card a {
  display: block;
  color: inherit;
}

.qd-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.125rem;
  font-weight: 600;
  color: #0f172a;
}

.qd-card p {
  margin: 0 0 1rem;
  font-size: 0.875rem;
  color: #64748b;
}

/* Activities */
.activity-card {
  background: #fff;
  border-radius: 0.75rem;
  padding: 1.5rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.2s, transform 0.2s;
}

.activity-card:hover {
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
  transform: translateY(-4px);
}

.activity-icon {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.activity-icon--blue {
  background: #dbeafe;
  color: #2563eb;
}

.activity-icon--red {
  background: #fee2e2;
  color: #dc2626;
}

.activity-icon--orange {
  background: #ffedd5;
  color: #ea580c;
}

.activity-icon--cyan {
  background: #cffafe;
  color: #0891b2;
}

.activity-icon--emerald {
  background: #d1fae5;
  color: #059669;
}

.activity-icon--purple {
  background: #f3e8ff;
  color: #9333ea;
}

.activity-icon--slate {
  background: #f1f5f9;
  color: #475569;
}

.activity-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.25rem;
  font-weight: 600;
}

.activity-card p {
  margin: 0;
  color: #64748b;
}

/* Footer */
.site-footer {
  background: #0f172a;
  color: #fff;
  padding: 3rem 0;
  margin-top: auto;
}

.site-footer h3 {
  color: #34d399;
  font-size: 1.125rem;
  margin: 0 0 1rem;
}

.site-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-footer li {
  margin-bottom: 0.5rem;
}

.site-footer a {
  color: #cbd5e1;
  font-size: 0.875rem;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}

.site-footer a:hover {
  color: #34d399;
}

.footer-lead {
  color: #cbd5e1;
  font-size: 0.875rem;
  line-height: 1.625;
  margin: 0;
}

.footer-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}

.footer-social a {
  display: inline-flex;
  width: 2rem;
  height: 2rem;
  align-items: center;
  justify-content: center;
  background: #1e293b;
  border-radius: 9999px;
}

.footer-social a:hover {
  background: #059669;
}

.footer-contact {
  list-style: none;
  margin: 0;
  padding: 0;
  line-height: 1.6;
}

.footer-contact > li {
  margin-bottom: 0;
}

.footer-contact__row {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}

.footer-contact__row + .footer-contact__row {
  margin-top: 0.75rem;
}

.footer-contact__icon {
  flex-shrink: 0;
  width: 1.125rem;
  height: 1.125rem;
  color: #34d399;
  margin-top: 0.125rem;
}

.footer-contact__body {
  color: #cbd5e1;
  font-size: 0.875rem;
}

.footer-copy {
  border-top: 1px solid #1e293b;
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  text-align: center;
  color: #94a3b8;
  font-size: 0.875rem;
}

/* Forms */
.form-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .form-grid--2 {
    grid-template-columns: repeat(2, 1fr);
  }
}

.form-field label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 0.25rem;
  color: #334155;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 0.625rem 0.75rem;
  border: 1px solid #e2e8f0;
  border-radius: 0.5rem;
  font: inherit;
}

.form-field textarea {
  min-height: 140px;
  resize: vertical;
}

.form-error {
  color: #b91c1c;
  font-size: 0.875rem;
  margin: 0.25rem 0 0;
}

.alert {
  padding: 1rem;
  border-radius: 0.5rem;
  margin-bottom: 1rem;
}

.alert--ok {
  background: #ecfdf5;
  color: #065f46;
  border: 1px solid #a7f3d0;
}

.alert--err {
  background: #fef2f2;
  color: #991b1b;
  border: 1px solid #fecaca;
}

/* Prose */
.prose {
  max-width: 65ch;
}

.prose p {
  color: #475569;
  margin: 0 0 1rem;
}

.prose img {
  max-width: 100%;
  height: auto;
  border-radius: 0.5rem;
}

/* Bank panel */
.bank-panel {
  background: #ecfdf5;
  border: 1px solid #a7f3d0;
  border-radius: 0.75rem;
  padding: 1.5rem;
}

.bank-panel h3 {
  margin: 0 0 1rem;
  color: #065f46;
  font-size: 1.125rem;
}

.bank-group {
  margin-bottom: 1rem;
}

.bank-group:last-child {
  margin-bottom: 0;
}

.bank-name {
  font-weight: 600;
  color: #047857;
  margin-bottom: 0.5rem;
  font-size: 0.875rem;
}

.iban-line {
  font-family: ui-monospace, monospace;
  font-size: 0.75rem;
  color: #334155;
  word-break: break-all;
  background: rgba(255, 255, 255, 0.6);
  padding: 0.5rem;
  border-radius: 0.375rem;
}

/* Tables */
.table-wrap {
  overflow-x: auto;
  border-radius: 0.75rem;
  border: 1px solid #e2e8f0;
}

.data-table {
  width: 100%;
  min-width: 640px;
  border-collapse: collapse;
}

.data-table th,
.data-table td {
  padding: 1rem;
  text-align: left;
  border-bottom: 1px solid #e2e8f0;
}

.data-table th {
  background: #f1f5f9;
  font-size: 0.875rem;
  font-weight: 600;
}

.data-table tr:hover td {
  background: #f8fafc;
}

.pill {
  display: inline-flex;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 500;
  background: #d1fae5;
  color: #065f46;
}

.badge-overlay {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 2;
  padding: 0.25rem 0.75rem;
  background: #059669;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 500;
  border-radius: 9999px;
}

.loc-pill {
  position: absolute;
  bottom: 0.75rem;
  left: 0.75rem;
  z-index: 2;
  padding: 0.25rem 0.5rem;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(6px);
  color: #fff;
  font-size: 0.75rem;
  border-radius: 9999px;
}

.loc-pill--icon {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}

.loc-pill--icon::before {
  content: "";
  width: 12px;
  height: 12px;
  flex-shrink: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='white' stroke-width='2'%3E%3Cpath d='M21 10c0 7-9 13-9 13s-9-6-9-13a9 9 0 0 1 18 0z'/%3E%3Ccircle cx='12' cy='10' r='3'/%3E%3C/svg%3E")
    center / contain no-repeat;
}

/* —— Next.js ile uyumlu: iletişim, haberler, haber detay, projeler, proje detay —— */
.page-shell {
  min-height: 60vh;
  background: #f8fafc;
}

.page-hero--center .container {
  max-width: 48rem;
  margin: 0 auto;
  text-align: center;
}

.page-hero--center h1 {
  font-size: clamp(1.75rem, 4vw, 3rem);
  line-height: 1.15;
}

.page-hero--center p {
  font-size: 1.125rem;
  color: #94a3b8;
}

.breadcrumb-bar {
  background: #fff;
  border-bottom: 1px solid #e2e8f0;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 0;
  margin: 0;
  list-style: none;
  font-size: 0.875rem;
  color: #475569;
}

.breadcrumb a {
  color: #475569;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  text-decoration: none;
}

.breadcrumb a:hover {
  color: #059669;
}

.breadcrumb__sep {
  color: #cbd5e1;
  flex-shrink: 0;
}

.breadcrumb__current {
  color: #0f172a;
  font-weight: 500;
  max-width: 200px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

@media (max-width: 639px) {
  .breadcrumb .hide-sm {
    display: none;
  }
}

@media (min-width: 640px) {
  .breadcrumb__current {
    max-width: 20rem;
  }
}

.contact-layout {
  display: grid;
  gap: 3rem;
  align-items: start;
}

@media (min-width: 1024px) {
  .contact-layout {
    grid-template-columns: 1fr 2fr;
  }
}

.contact-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-card {
  background: #f8fafc;
  border-radius: 0.75rem;
  padding: 1.5rem;
}

.contact-card h3 {
  margin: 0 0 1rem;
  font-size: 1.125rem;
  font-weight: 600;
  color: #0f172a;
}

.contact-card__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.contact-card__list li {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}

.contact-card__list li + li {
  margin-top: 1rem;
}

.contact-card__icon {
  width: 1.25rem;
  height: 1.25rem;
  color: #059669;
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.contact-card__label {
  font-weight: 500;
  color: #0f172a;
  margin: 0 0 0.25rem;
  font-size: 0.875rem;
}

.contact-card__text {
  margin: 0;
  font-size: 0.875rem;
  color: #475569;
  line-height: 1.5;
}

.contact-card__text a {
  color: #475569;
  text-decoration: none;
}

.contact-card__text a:hover {
  color: #059669;
}

.contact-emergency {
  background: #ecfdf5;
  border-radius: 0.75rem;
  padding: 1.5rem;
  border: 1px solid #a7f3d0;
}

.contact-emergency h3 {
  margin: 0 0 0.5rem;
  font-size: 1.125rem;
  font-weight: 600;
  color: #064e3b;
}

.contact-emergency p {
  margin: 0 0 0.75rem;
  font-size: 0.875rem;
  color: #047857;
}

.contact-emergency a {
  font-weight: 700;
  color: #065f46;
  text-decoration: none;
}

.contact-emergency a:hover {
  text-decoration: underline;
}

.contact-form-card {
  background: #fff;
  border-radius: 0.75rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.07), 0 2px 4px -2px rgba(0, 0, 0, 0.05);
  padding: 2rem;
}

.contact-form-card .section-title {
  text-align: left;
  margin-bottom: 1.5rem;
}

.form-success-card {
  background: #ecfdf5;
  border-radius: 0.75rem;
  padding: 2rem;
  text-align: center;
}

.form-success-card svg {
  width: 4rem;
  height: 4rem;
  color: #059669;
  margin: 0 auto 1rem;
  display: block;
}

.form-success-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.25rem;
  font-weight: 600;
  color: #064e3b;
}

.form-success-card p {
  margin: 0 0 1rem;
  color: #047857;
}

.form-success-card a {
  color: #059669;
  font-weight: 500;
  text-decoration: none;
}

.form-success-card a:hover {
  text-decoration: underline;
}

.map-block {
  margin-top: 4rem;
}

.map-embed {
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.08);
  height: 24rem;
  background: #e2e8f0;
}

.map-embed iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.bank-panel--compact {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  color: #0f172a;
}

.bank-panel--compact h3 {
  color: #0f172a;
}

.bank-panel--compact .bank-name {
  color: #047857;
}

.cat-badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 9999px;
}

.cat-badge--emerald {
  background: #d1fae5;
  color: #047857;
}

.cat-badge--cyan {
  background: #cffafe;
  color: #0e7490;
}

.cat-badge--blue {
  background: #dbeafe;
  color: #1d4ed8;
}

.cat-badge--amber {
  background: #fef3c7;
  color: #b45309;
}

.cat-badge--slate {
  background: #f1f5f9;
  color: #475569;
}

.cat-badge--red {
  background: #fee2e2;
  color: #b91c1c;
}

.cat-badge--orange {
  background: #ffedd5;
  color: #c2410c;
}

.status-badge {
  display: inline-block;
  padding: 0.25rem 0.5rem;
  font-size: 0.75rem;
  font-weight: 500;
  border-radius: 9999px;
  color: #fff;
}

.status-badge--active {
  background: #059669;
}

.status-badge--done {
  background: #475569;
}

.news-card-next {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 0.75rem;
  border: 1px solid #e2e8f0;
  overflow: hidden;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s, transform 0.3s;
  height: 100%;
}

.news-card-next:hover {
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.08);
  transform: translateY(-4px);
}

.news-card-next a {
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.news-card-next__media {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #e2e8f0;
}

.news-card-next__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.news-card-next:hover .news-card-next__media img {
  transform: scale(1.08);
}

.news-card-next__badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 2;
}

.news-card-next__body {
  padding: 1.25rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.news-card-next__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: #64748b;
  margin-bottom: 0.75rem;
}

.news-card-next__meta span {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}

.news-card-next__title {
  margin: 0 0 0.75rem;
  font-size: 1.125rem;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-card-next:hover .news-card-next__title {
  color: #059669;
}

.news-card-next__summary {
  margin: 0 0 1rem;
  font-size: 0.875rem;
  color: #475569;
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex: 1;
}

.news-card-next__more {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: #059669;
  margin-top: auto;
}

.news-card-next__more svg {
  transition: transform 0.2s;
}

.news-card-next:hover .news-card-next__more svg {
  transform: translateX(4px);
}

.pagination-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-top: 3rem;
}

.pagination-row a,
.pagination-row span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.5rem;
  height: 2.5rem;
  padding: 0 0.5rem;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
}

.pagination-row a {
  border: 1px solid #e2e8f0;
  color: #475569;
  background: #fff;
}

.pagination-row a:hover:not(.pagination-row__nav--disabled) {
  background: #f1f5f9;
}

.pagination-row__current {
  background: #059669 !important;
  color: #fff !important;
  border-color: #059669 !important;
}

.pagination-row__nav--disabled {
  pointer-events: none;
  opacity: 0.45;
}

.pagination-meta {
  text-align: center;
  margin-top: 1.5rem;
  font-size: 0.875rem;
  color: #64748b;
}

.filter-chips {
  padding: 1.5rem 0;
  background: #fff;
  border-bottom: 1px solid #e2e8f0;
}

.filter-chips__inner {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 0.5rem;
  row-gap: 0.75rem;
  justify-content: center;
  align-items: center;
}

/* Mobil: kategoriler yatay kaydırılır (çok chip sığmaz) */
@media (max-width: 767px) {
  .filter-chips {
    padding: 1rem 0 1.25rem;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: contain;
    touch-action: pan-x;
    scrollbar-width: thin;
  }

  .filter-chips::-webkit-scrollbar {
    height: 5px;
  }

  .filter-chips::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 4px;
  }

  .filter-chips__inner {
    flex-wrap: nowrap;
    justify-content: flex-start;
    gap: 0.5rem;
    row-gap: 0;
    width: max-content;
    max-width: none;
    margin-left: 0;
    margin-right: 0;
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

@media (min-width: 768px) {
  .filter-chips {
    overflow-x: visible;
  }
}

.filter-chips a {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
  background: #f1f5f9;
  color: #475569;
  transition: background 0.2s, color 0.2s;
  flex-shrink: 0;
}

.filter-chips a:hover {
  background: #e2e8f0;
}

.filter-chips a.is-active {
  background: #059669;
  color: #fff;
  box-shadow: 0 4px 6px -1px rgba(5, 150, 105, 0.35);
}

.project-card-next {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 0.75rem;
  border: 1px solid #e2e8f0;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s, transform 0.3s;
}

.project-card-next:hover {
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.08);
  transform: translateY(-4px);
}

.project-card-next__media {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #e2e8f0;
}

.project-card-next__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.project-card-next:hover .project-card-next__media img {
  transform: scale(1.08);
}

.project-card-next__badge-l {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 2;
}

.project-card-next__badge-r {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 2;
}

.project-card-next__body {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.project-card-next__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: #64748b;
  margin-bottom: 0.5rem;
}

.project-card-next__row span {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}

.project-card-next__title {
  margin: 0 0 0.5rem;
  font-size: 1.125rem;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.project-card-next:hover .project-card-next__title {
  color: #059669;
}

.project-card-next__summary {
  margin: 0 0 1rem;
  font-size: 0.875rem;
  color: #475569;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex: 1;
}

.progress-track {
  width: 100%;
  height: 0.5rem;
  background: #e2e8f0;
  border-radius: 9999px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  background: #059669;
  border-radius: 9999px;
  transition: width 0.5s;
}

.project-card-next__footer {
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid #f1f5f9;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.875rem;
  font-weight: 500;
  color: #059669;
}

.article-layout {
  display: grid;
  gap: 2rem;
}

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

.article-card {
  background: #fff;
  border-radius: 1rem;
  border: 1px solid #e2e8f0;
  padding: 1.5rem;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

@media (min-width: 768px) {
  .article-card {
    padding: 2.5rem;
  }
}

.prose-lg {
  max-width: none;
}

.prose-lg h1,
.prose-lg h2,
.prose-lg h3 {
  color: #0f172a;
  font-weight: 700;
}

.prose-lg p {
  color: #334155;
  line-height: 1.75;
}

.prose-lg img {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 1.5rem 0;
  border-radius: 0.75rem;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.08);
}

.prose-lg figure {
  margin: 1.5rem 0;
}

.prose-lg figure img {
  margin: 0;
}

.prose-lg a {
  color: #059669;
  text-decoration: none;
}

.prose-lg a:hover {
  text-decoration: underline;
}

.prose-lg blockquote {
  border-left: 4px solid #059669;
  background: #f8fafc;
  padding: 0.5rem 1rem;
  border-radius: 0 0.5rem 0.5rem 0;
  margin: 1rem 0;
}

.prose-lg ul {
  list-style: disc;
  padding-left: 1.25rem;
  color: #334155;
}

.prose-lg ol {
  list-style: decimal;
  padding-left: 1.25rem;
}

.hero-meta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.hero-meta-row .hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.375rem 1rem;
  background: #059669;
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: 9999px;
}

.hero-meta-row .hero-meta-row__cat-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.375rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
}

.hero-meta-row .hero-meta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: #94a3b8;
}

.video-embed {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 1rem;
  margin-bottom: 2rem;
  background: #0f172a;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.08);
}

.video-embed iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.project-gallery {
  margin-bottom: 2rem;
}

.project-gallery h2 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 0.25rem;
}

.project-gallery__hint {
  font-size: 0.875rem;
  color: #64748b;
  margin: 0 0 1rem;
}

.project-gallery__box {
  border-radius: 1rem;
  border: 1px solid #e2e8f0;
  background: #fff;
  overflow: hidden;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.project-gallery__main {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  background: #f1f5f9;
  overflow: hidden;
}

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

.project-gallery__counter {
  text-align: center;
  font-size: 0.875rem;
  font-weight: 500;
  color: #475569;
  padding: 0.75rem;
  border-top: 1px solid #f1f5f9;
  background: rgba(248, 250, 252, 0.9);
}

.project-gallery__thumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding: 0.75rem 1rem 1rem;
}

.project-gallery__thumbs button {
  position: relative;
  width: 4rem;
  height: 4rem;
  border-radius: 0.5rem;
  overflow: hidden;
  border: 2px solid #e2e8f0;
  padding: 0;
  cursor: pointer;
  background: #f8fafc;
  flex-shrink: 0;
}

.project-gallery__thumbs button.is-active {
  border-color: #059669;
  box-shadow: 0 0 0 3px rgba(5, 150, 105, 0.2);
}

.project-gallery__thumbs button img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.share-row {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid #e2e8f0;
}

@media (min-width: 640px) {
  .share-row {
    flex-direction: row;
    align-items: center;
  }
}

.share-row__label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 500;
  color: #334155;
}

.share-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}

.share-icons a,
.share-icons button {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 9999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  cursor: pointer;
  transition: opacity 0.2s, background 0.2s;
}

.share-icons a:hover,
.share-icons button:hover {
  opacity: 0.9;
}

.share-tw {
  background: #0f172a;
  color: #fff;
}

.share-fb {
  background: #2563eb;
  color: #fff;
}

.share-wa {
  background: #22c55e;
  color: #fff;
}

.share-copy {
  background: #f1f5f9;
  color: #334155;
  font-size: 0.75rem;
  font-weight: 600;
  width: auto !important;
  padding: 0 0.75rem;
}

.sidebar-card {
  background: #fff;
  border-radius: 1rem;
  border: 1px solid #e2e8f0;
  padding: 1.5rem;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.sidebar-card h3 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.125rem;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 1.5rem;
}

.sidebar-card h3::before {
  content: "";
  width: 4px;
  height: 1.5rem;
  background: #059669;
  border-radius: 2px;
}

.sidebar-card--share h3::before {
  display: none;
}

.sidebar-card--share h3 {
  font-size: 0.875rem;
  margin-bottom: 1rem;
}

.sidebar-related__item a {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  text-decoration: none;
  color: inherit;
}

.sidebar-related__item + .sidebar-related__item {
  margin-top: 1rem;
}

.sidebar-related__thumb {
  width: 5rem;
  height: 5rem;
  border-radius: 0.5rem;
  overflow: hidden;
  flex-shrink: 0;
  background: #e2e8f0;
}

.sidebar-related__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sidebar-related__title {
  font-size: 0.875rem;
  font-weight: 600;
  color: #0f172a;
  margin: 0 0 0.25rem;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.sidebar-related__item a:hover .sidebar-related__title {
  color: #059669;
}

.sidebar-related__date {
  font-size: 0.75rem;
  color: #64748b;
}

.sidebar-card .btn-outline {
  margin-top: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #e2e8f0;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: #475569;
  text-decoration: none;
}

.sidebar-card .btn-outline:hover {
  border-color: #059669;
  color: #059669;
}

.sidebar-sticky {
  position: sticky;
  top: 7rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.donation-card {
  background: #ecfdf5;
  border: 1px solid #a7f3d0;
  border-radius: 1rem;
  padding: 1.5rem;
}

.donation-card h3 {
  margin-bottom: 1rem;
}

.donation-card h3::before {
  display: none;
}

.donation-card .progress-track {
  height: 0.75rem;
  background: #a7f3d0;
}

.donation-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin: 1rem 0;
}

.donation-grid dt {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #64748b;
  margin: 0;
}

.donation-grid dd {
  margin: 0.25rem 0 0;
  font-size: 1.125rem;
  font-weight: 700;
  color: #0f172a;
}

.donation-grid dd.em {
  color: #059669;
}

.btn-donate-full {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  padding: 0.75rem;
  background: #059669;
  color: #fff;
  font-weight: 600;
  border-radius: 0.75rem;
  text-decoration: none;
  border: 0;
  cursor: pointer;
  transition: background 0.2s;
}

.btn-donate-full:hover {
  background: #047857;
  color: #fff;
}

.info-dl dt {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #64748b;
  margin: 0;
}

.info-dl dd {
  margin: 0.25rem 0 0;
  font-size: 0.875rem;
  font-weight: 500;
  color: #0f172a;
}

.info-dl > div + div {
  margin-top: 0.75rem;
}

.link-back {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 2rem;
  font-weight: 500;
  color: #475569;
  text-decoration: none;
}

.link-back:hover {
  color: #059669;
}

.empty-hint {
  text-align: center;
  padding: 4rem 1rem;
  color: #64748b;
  font-size: 1.125rem;
}

/* Donation page */
.donation-hero {
  position: relative;
  overflow: hidden;
  background: radial-gradient(1200px 600px at 20% 10%, rgba(5, 150, 105, 0.22), transparent 60%),
    linear-gradient(135deg, #020617 0%, #022c22 45%, #0f172a 100%);
  color: #fff;
  padding: 4rem 0;
}

.donation-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.12;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.donation-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(2, 6, 23, 0.75), transparent 55%);
}

.donation-hero .container {
  position: relative;
  z-index: 1;
}

.donation-hero__kicker {
  color: rgba(110, 231, 183, 0.95);
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 0 0 0.75rem;
}

.donation-hero__title {
  margin: 0;
  font-size: clamp(1.75rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.donation-hero__lead {
  margin: 1rem 0 0;
  max-width: 42rem;
  font-size: 1.125rem;
  color: rgba(203, 213, 225, 0.95);
  line-height: 1.7;
}

.trust-grid {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

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

.trust-card {
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(6px);
  padding: 1.25rem;
}

.trust-card__icon {
  width: 44px;
  height: 44px;
  border-radius: 0.75rem;
  background: rgba(16, 185, 129, 0.2);
  color: rgba(167, 243, 208, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
}

.trust-card h3 {
  margin: 1rem 0 0.5rem;
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
}

.trust-card p {
  margin: 0;
  font-size: 0.875rem;
  color: rgba(148, 163, 184, 0.95);
  line-height: 1.6;
}

.donation-layout {
  display: grid;
  gap: 2.5rem;
  align-items: start;
  padding: 3rem 0 4rem;
}

@media (min-width: 1024px) {
  .donation-layout {
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
  }
}

.donation-form-card {
  background: #fff;
  border-radius: 1rem;
  border: 1px solid rgba(226, 232, 240, 0.8);
  box-shadow: 0 20px 25px -5px rgba(226, 232, 240, 0.45);
  padding: 2rem;
}

@media (min-width: 768px) {
  .donation-form-card {
    padding: 2.5rem;
  }
}

.donation-form-card .section-title {
  text-align: left;
  margin-bottom: 1.25rem;
}

.donation-form-card__hint {
  margin: 0 0 1.5rem;
  color: #475569;
  font-size: 0.9375rem;
  max-width: 42rem;
}

.how-card {
  border-radius: 1rem;
  border: 1px solid #e2e8f0;
  background: rgba(248, 250, 252, 0.8);
  padding: 1.5rem;
}

.how-card__head {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
  color: #065f46;
}

.how-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

@media (min-width: 768px) {
  .how-steps {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
  }
}

.how-step__num {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 9999px;
  background: #059669;
  color: #fff;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
}

.how-step h3 {
  margin: 0.75rem 0 0.5rem;
  font-size: 1rem;
  font-weight: 700;
  color: #0f172a;
}

.how-step p {
  margin: 0;
  font-size: 0.875rem;
  color: #475569;
  line-height: 1.6;
}

.donation-cta {
  border-radius: 1rem;
  background: #064e3b;
  color: #ecfdf5;
  padding: 1.25rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 640px) {
  .donation-cta {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
  }
}

.donation-cta p {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.6;
  color: rgba(209, 250, 229, 0.92);
}

.donation-cta a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 0.75rem;
  background: #fff;
  color: #064e3b;
  font-weight: 700;
  padding: 0.6rem 1.1rem;
  font-size: 0.875rem;
  text-decoration: none;
}

.donation-cta a:hover {
  background: #ecfdf5;
}

.donation-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

@media (min-width: 1024px) {
  .donation-sidebar {
    position: sticky;
    top: 7rem;
  }
}

.donation-areas {
  background: #fff;
  border-radius: 1rem;
  border: 1px solid #e2e8f0;
  padding: 1.5rem;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.donation-areas__lead {
  margin: 0.25rem 0 1rem;
  font-size: 0.875rem;
  color: #64748b;
}

.donation-area-link {
  display: flex;
  gap: 1rem;
  align-items: center;
  border-radius: 0.75rem;
  border: 1px solid #e2e8f0;
  background: rgba(248, 250, 252, 0.55);
  padding: 1rem;
  text-decoration: none;
  color: inherit;
  transition: background 0.2s, border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}

.donation-area-link:hover {
  border-color: #6ee7b7;
  background: rgba(236, 253, 245, 0.8);
  box-shadow: 0 10px 15px -3px rgba(5, 150, 105, 0.12);
  transform: translateY(-1px);
}

.donation-area-link__icon {
  width: 48px;
  height: 48px;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.donation-area-link__txt {
  min-width: 0;
  flex: 1;
}

.donation-area-link__title {
  display: block;
  font-weight: 700;
  color: #0f172a;
}

.donation-area-link:hover .donation-area-link__title {
  color: #065f46;
}

.donation-area-link__blurb {
  margin: 0.25rem 0 0;
  font-size: 0.75rem;
  color: #64748b;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.donation-thanks {
  border-radius: 1rem;
  border: 1px dashed #e2e8f0;
  background: #f8fafc;
  padding: 1.25rem;
  text-align: center;
}

.donation-thanks p {
  margin: 0;
  font-size: 0.875rem;
  color: #475569;
  line-height: 1.6;
}

.donation-thanks a {
  color: #047857;
  font-weight: 600;
  text-decoration: none;
}

.donation-thanks a:hover {
  text-decoration: underline;
}

/* ── Donation form inner ── */
.dform-block {
  padding-bottom: 2.5rem;
  margin-bottom: 2.5rem;
  border-bottom: 1px solid #e2e8f0;
}

.dform-block:last-child {
  border-bottom: 0;
  padding-bottom: 0;
  margin-bottom: 0;
}

.dform-step-head {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid #e2e8f0;
  margin-bottom: 1.5rem;
}

.dform-step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 0.5rem;
  background: #d1fae5;
  color: #047857;
  font-size: 0.875rem;
  font-weight: 800;
  flex-shrink: 0;
}

.dform-step-head h2 {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 700;
  color: #0f172a;
}

.dform-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .dform-row--2 {
    grid-template-columns: repeat(2, 1fr);
  }
}

.dform-field {
  display: flex;
  flex-direction: column;
}

.dform-field label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: #334155;
  margin-bottom: 0.375rem;
}

.dform-field input,
.dform-field textarea {
  width: 100%;
  padding: 0.625rem 1rem;
  border: 1px solid #e2e8f0;
  border-radius: 0.75rem;
  font: inherit;
  color: #0f172a;
  outline: none;
  transition: border-color 0.15s, box-shadow 0.15s;
}

.dform-field input:focus,
.dform-field textarea:focus {
  border-color: #10b981;
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.18);
}

.dform-field input.is-err,
.dform-field textarea.is-err {
  border-color: #f87171;
}

.dform-field textarea {
  resize: vertical;
  min-height: 88px;
}

.dform-err {
  margin: 0.25rem 0 0;
  font-size: 0.875rem;
  color: #ef4444;
}

/* Category cards */
.dform-cat-label {
  font-size: 0.875rem;
  font-weight: 500;
  color: #334155;
  margin-bottom: 0.75rem;
}

.dform-cat-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
}

@media (min-width: 480px) {
  .dform-cat-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.dform-cat-btn {
  display: block;
  width: 100%;
  border: 2px solid #e2e8f0;
  border-radius: 0.75rem;
  padding: 1rem;
  background: #fff;
  cursor: pointer;
  text-align: left;
  transition: border-color 0.15s, background 0.15s;
  font: inherit;
}

.dform-cat-btn__inner {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}

.dform-cat-btn__icon {
  background: rgba(255,255,255,0.85);
  border-radius: 0.5rem;
  padding: 0.5rem;
  box-shadow: 0 1px 2px rgba(0,0,0,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.dform-cat-btn h4 {
  margin: 0 0 0.25rem;
  font-size: 0.9375rem;
  font-weight: 600;
  color: #0f172a;
}

.dform-cat-btn p {
  margin: 0;
  font-size: 0.8125rem;
  color: #64748b;
}

.dform-cat-btn:hover {
  border-color: #6ee7b7;
  background: rgba(236, 253, 245, 0.6);
}

.dform-cat-btn.is-active--emerald { border-color: #10b981; background: #ecfdf5; box-shadow: 0 0 0 1px #a7f3d0; }
.dform-cat-btn.is-active--amber  { border-color: #f59e0b; background: #fffbeb; box-shadow: 0 0 0 1px #fde68a; }
.dform-cat-btn.is-active--cyan   { border-color: #06b6d4; background: #ecfeff; box-shadow: 0 0 0 1px #a5f3fc; }
.dform-cat-btn.is-active--blue   { border-color: #3b82f6; background: #eff6ff; box-shadow: 0 0 0 1px #bfdbfe; }

/* Amount buttons */
.dform-amount-label {
  font-size: 0.875rem;
  font-weight: 500;
  color: #334155;
  margin-bottom: 0.75rem;
}

.dform-amount-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
  margin-bottom: 1rem;
}

@media (min-width: 480px) {
  .dform-amount-grid {
    grid-template-columns: repeat(6, 1fr);
  }
}

.dform-amount-btn {
  padding: 0.75rem 0.25rem;
  border-radius: 0.75rem;
  font-size: 0.875rem;
  font-weight: 700;
  border: 0;
  cursor: pointer;
  transition: background 0.15s, color 0.15s, box-shadow 0.15s;
  background: #f1f5f9;
  color: #334155;
  font: inherit;
}

.dform-amount-btn:hover {
  background: #e2e8f0;
}

.dform-amount-btn.is-active {
  background: #059669;
  color: #fff;
  box-shadow: 0 4px 6px -1px rgba(5, 150, 105, 0.3);
}

.dform-custom-row {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

@media (min-width: 480px) {
  .dform-custom-row {
    flex-direction: row;
    align-items: center;
  }
}

.dform-custom-row span {
  font-size: 0.875rem;
  color: #64748b;
  white-space: nowrap;
}

.dform-custom-wrap {
  position: relative;
  flex: 1;
  max-width: 16rem;
}

.dform-custom-wrap input {
  width: 100%;
  padding: 0.625rem 2.25rem 0.625rem 1rem;
  border: 1px solid #e2e8f0;
  border-radius: 0.75rem;
  font: inherit;
  color: #0f172a;
  outline: none;
  transition: border-color 0.15s, box-shadow 0.15s;
}

.dform-custom-wrap input:focus {
  border-color: #10b981;
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.18);
}

.dform-custom-wrap__suffix {
  position: absolute;
  right: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  color: #94a3b8;
  font-size: 0.875rem;
  pointer-events: none;
}

/* Payment method radio cards */
.dform-pay-label {
  font-size: 0.875rem;
  font-weight: 500;
  color: #334155;
  margin-bottom: 0.75rem;
}

.dform-pay-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  border: 2px solid #e2e8f0;
  border-radius: 0.75rem;
  padding: 1rem;
  cursor: pointer;
  margin-bottom: 0.75rem;
  transition: border-color 0.15s, background 0.15s;
}

.dform-pay-card:last-of-type {
  margin-bottom: 0;
}

.dform-pay-card:hover {
  border-color: #6ee7b7;
}

.dform-pay-card input[type="radio"] {
  accent-color: #059669;
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
}

.dform-pay-card.is-checked {
  border-color: #10b981;
  background: rgba(236, 253, 245, 0.7);
  box-shadow: 0 0 0 1px #a7f3d0;
}

.dform-pay-card__icon {
  color: #64748b;
  flex-shrink: 0;
}

.dform-pay-card span {
  font-size: 0.9375rem;
  font-weight: 500;
  color: #1e293b;
}

/* KVKK / info note */
.dform-info-note {
  background: linear-gradient(135deg, rgba(236,253,245,0.9), #fff);
  border: 1px solid #d1fae5;
  border-radius: 0.75rem;
  padding: 1rem;
  font-size: 0.875rem;
  color: #064e3b;
  line-height: 1.6;
  margin-top: 1rem;
}

/* Submit */
.dform-submit {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  background: #059669;
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 0.75rem;
  border: 0;
  cursor: pointer;
  font: inherit;
  transition: background 0.2s;
  box-shadow: 0 10px 15px -3px rgba(5, 150, 105, 0.28);
}

.dform-submit:hover {
  background: #047857;
}

.dform-submit:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* Success state */
.dform-success {
  text-align: center;
  padding: 2.5rem 1rem;
}

.dform-success__icon {
  margin: 0 auto 1.5rem;
  width: 80px;
  height: 80px;
  border-radius: 9999px;
  background: #d1fae5;
  box-shadow: 0 0 0 12px rgba(209, 250, 229, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #059669;
}

.dform-success h2 {
  margin: 0 0 0.75rem;
  font-size: 1.5rem;
  font-weight: 700;
  color: #0f172a;
}

.dform-success p {
  margin: 0 auto 1rem;
  max-width: 32rem;
  color: #475569;
  line-height: 1.6;
}

.dform-success__id {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #f1f5f9;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  color: #334155;
}

.dform-success__id span {
  font-family: ui-monospace, monospace;
  font-weight: 700;
}

.dform-success__reset {
  margin-top: 2rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid #e2e8f0;
  border-radius: 0.75rem;
  padding: 0.6rem 1.5rem;
  font-size: 0.9375rem;
  font-weight: 500;
  color: #334155;
  background: #fff;
  cursor: pointer;
  text-decoration: none;
  font: inherit;
  transition: border-color 0.15s, color 0.15s;
}

.dform-success__reset:hover {
  border-color: #059669;
  color: #059669;
}

/* ═══════════════════════════════════════════════════════════════════════════
   Ödeme Sayfası (bagis-odeme.php)
   ═══════════════════════════════════════════════════════════════════════════ */

.checkout-page {
  padding: 3rem 1rem 4rem;
  max-width: 36rem;
  margin: 0 auto;
}

/* ── Header ── */
.checkout-header {
  text-align: center;
  margin-bottom: 2rem;
}

.checkout-header__lock {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  background: linear-gradient(135deg, #ecfdf5, #d1fae5);
  margin-bottom: 1rem;
}

.checkout-header__lock svg {
  width: 1.5rem;
  height: 1.5rem;
  stroke: #059669;
}

.checkout-header__title {
  font-size: 1.375rem;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 0.375rem;
}

.checkout-header__subtitle {
  font-size: 0.875rem;
  color: #64748b;
  margin: 0;
  line-height: 1.5;
}

/* ── Amount badge ── */
.checkout-amount {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(135deg, #f0fdf4, #ecfdf5);
  border: 1px solid #bbf7d0;
  border-radius: 1rem;
  padding: 1.25rem 1.5rem;
  margin-bottom: 2rem;
}

.checkout-amount__label {
  font-size: 0.8125rem;
  color: #64748b;
  margin: 0;
}

.checkout-amount__name {
  font-size: 0.875rem;
  font-weight: 600;
  color: #0f172a;
  margin: 0.125rem 0 0;
}

.checkout-amount__value {
  font-size: 1.5rem;
  font-weight: 800;
  color: #059669;
  letter-spacing: -0.025em;
}

/* ── Card ── */
.checkout-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 1.25rem;
  padding: 2.25rem 2rem 2rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04), 0 6px 20px rgba(0, 0, 0, 0.05);
}

.checkout-card__section-title {
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #94a3b8;
  margin: 0 0 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid #f1f5f9;
}

/* ── Fields ── */
.checkout-field {
  margin-bottom: 1.25rem;
}

.checkout-field label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #334155;
  margin-bottom: 0.375rem;
}

.checkout-input {
  width: 100%;
  padding: 0.85rem 1rem;
  font-size: 1rem;
  font-family: inherit;
  color: #0f172a;
  background: #f8fafc;
  border: 1.5px solid #e2e8f0;
  border-radius: 0.625rem;
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
  outline: none;
}

.checkout-input:hover {
  border-color: #cbd5e1;
}

.checkout-input:focus {
  border-color: #059669;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(5, 150, 105, 0.1);
}

.checkout-input::placeholder {
  color: #94a3b8;
}

.checkout-input--pan {
  font-family: ui-monospace, "Cascadia Code", "Fira Code", monospace;
  font-size: 1.1875rem;
  letter-spacing: 0.1em;
  padding: 1rem 1rem;
}

.checkout-input--cvv {
  max-width: 7.5rem;
}

select.checkout-input {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2394a3b8' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  padding-right: 2.25rem;
}

/* ── Row (2-col) ── */
.checkout-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

/* ── Hint text ── */
.checkout-hint {
  margin: 0.25rem 0 0;
  font-size: 0.75rem;
  color: #94a3b8;
  line-height: 1.45;
}

/* ── Submit ── */
.checkout-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  padding: 1.1rem 1.5rem;
  margin-top: 1.25rem;
  font-size: 1.125rem;
  font-weight: 700;
  font-family: inherit;
  color: #fff;
  background: linear-gradient(135deg, #059669, #047857);
  border: none;
  border-radius: 0.75rem;
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.15s, opacity 0.15s;
  box-shadow: 0 2px 8px rgba(5, 150, 105, 0.3);
}

.checkout-submit:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(5, 150, 105, 0.35);
}

.checkout-submit:active {
  transform: translateY(0);
  box-shadow: 0 1px 4px rgba(5, 150, 105, 0.25);
}

.checkout-submit svg {
  width: 1.125rem;
  height: 1.125rem;
  flex-shrink: 0;
}

/* ── Cancel link ── */
.checkout-cancel {
  display: block;
  text-align: center;
  margin-top: 1rem;
  font-size: 0.8125rem;
  color: #94a3b8;
}

.checkout-cancel a {
  color: #64748b;
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 0.15s;
}

.checkout-cancel a:hover {
  color: #059669;
}

/* ── Trust badges ── */
.checkout-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  margin-top: 1.75rem;
  padding-top: 1.25rem;
  border-top: 1px solid #f1f5f9;
}

.checkout-trust__item {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.6875rem;
  font-weight: 500;
  color: #94a3b8;
}

.checkout-trust__item svg {
  width: 0.875rem;
  height: 0.875rem;
  stroke: #cbd5e1;
}

/* ── Responsive ── */
@media (max-width: 480px) {
  .checkout-page {
    padding: 1.5rem 0.75rem 3rem;
  }

  .checkout-card {
    padding: 1.5rem 1.125rem 1.5rem;
    border-radius: 1rem;
  }

  .checkout-amount__value {
    font-size: 1.25rem;
  }

  .checkout-row-2 {
    grid-template-columns: 1fr 1fr;
    gap: 0.625rem;
  }
}
