
/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   TOP BAR
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.zd-topbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 36px;
  background: #0e1628;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  z-index: 201;
  transition: transform 0.35s ease;
}
.zd-topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}
.zd-topbar-left,
.zd-topbar-right {
  display: flex;
  align-items: center;
  gap: 4px;
}
.zd-topbar-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  padding: 4px 8px;
  border-radius: 4px;
  transition: color 0.2s;
  white-space: nowrap;
}
.zd-topbar-item:hover { color: rgba(255,255,255,0.9); }
.zd-topbar-item svg { opacity: 0.6; flex-shrink: 0; }
.zd-topbar-divider {
  display: inline-block;
  width: 1px;
  height: 14px;
  background: rgba(255,255,255,0.12);
  margin: 0 6px;
  flex-shrink: 0;
}
.zd-topbar-social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 4px;
  color: rgba(255,255,255,0.45);
  font-size: 11px;
  text-decoration: none;
  transition: color 0.2s, background 0.2s;
}
.zd-topbar-social:hover { color: #fff; background: rgba(255,255,255,0.1); }
.zd-topbar-uye {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: #c00d0d;
  color: #fff !important;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 4px;
  text-decoration: none;
  transition: background 0.2s;
  margin-left: 4px;
}
.zd-topbar-uye:hover { background: #a30b0b; color: #fff !important; }

/* Header: topbar yuksekligi kadar asagi kaydir */


/* Topbar: scroll edilince gizle */
.zd-topbar.hidden { transform: translateY(-100%); }
.zd-header.topbar-hidden { top: 0; }

@media (max-width: 768px) {
  .zd-topbar { display: none; }
  .zd-header { top: 0; }
}
/* Blog Mag / Magazine theme */
:root {
  --mag-red: #FF6B35;
  --mag-dark: #1a1a1a;
  --mag-secondary: #1e3a5f;
}

html {
  font-size: 14px;
  scroll-behavior: smooth;
  overflow-y: scroll; /* Scrollbar her zaman gÃ¶rÃ¼nÃ¼r â€” CLS Ã¶nler */
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

body {
  margin: 0;
  min-height: 100vh;
  line-height: 1.625;
  display: flex;
  flex-direction: column;
}

/* BaÅŸlÄ±k fontu - VisualSettings'ten gelir (varsayÄ±lan: Playfair Display) */

/* Section title - magazine style with red line */
.section-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--mag-dark);
  border-bottom: 2px solid var(--mag-red);
  padding-bottom: 0.5rem;
  display: inline-block;
  margin-bottom: 1.5rem;
}

/* Card hover lift */
.card-hover {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.card-hover:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 50px -12px rgb(0 0 0 / 0.3), 0 16px 30px -12px rgb(0 0 0 / 0.22);
}

/* Line clamp utilities */
.line-clamp-1 {
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.line-clamp-2 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.line-clamp-3 {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Image overlay on hover */
.img-zoom {
  overflow: hidden;
}
.img-zoom img {
  transition: transform 0.4s ease;
}
.img-zoom:hover img {
  transform: scale(1.05);
}

/* Sidebar widget - 20px kenarlar */
.sidebar-widget {
  background: #fff;
  border: 1px solid #e5e7eb;
  padding: 1.25rem;
  border-radius: 20px;
  box-shadow: 0 20px 45px -12px rgba(0, 0, 0, 0.25), 0 12px 24px -10px rgba(0, 0, 0, 0.18);
}

.sidebar-widget-title {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--mag-red);
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid #f3f4f6;
}

/* ===== Zoe-Association Magazine Theme ===== */
.zoe-association-breaking-news {
  position: relative;
}
.zoe-association-ticker-inner {
  display: inline-flex;
  animation: zoe-association-ticker 30s linear infinite;
}
.zoe-association-ticker-inner:hover {
  animation-play-state: paused;
}
@keyframes zoe-association-ticker {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.zoe-association-ticker-wrap {
  align-items: center;
}
.zoe-association-ticker-label {
  border-right: 1px solid rgba(255,255,255,0.3);
}

/* Zoe-Association section titles - font-size ve color VisualSettings'ten gelir */
.zoe-association-section-title {
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--mag-red);
  display: inline-block;
}

/* Zoe-Association card - gÃ¶rsel derinlik, yumuÅŸak gÃ¶lge */
.zoe-association-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.08), 0 10px 20px -5px rgba(0, 0, 0, 0.12);
  border-radius: 20px;
}
.zoe-association-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.2), 0 30px 60px -15px rgba(0, 0, 0, 0.15);
}

/* Slider wrapper - gÃ¶lgenin gÃ¶rÃ¼nmesi iÃ§in alt boÅŸluk */
.zoe-association-slider-wrapper {
  padding-bottom: 40px;
  margin-bottom: -24px;
}

/* Zoe-Association hero slider - 40px kenarlar (slide dÄ±ÅŸÄ±), ÅŸÄ±k alt gÃ¶lge */
.zoe-association-slider-shadow {
  border-radius: 40px;
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.06),
    0 10px 25px -5px rgba(0, 0, 0, 0.15),
    0 25px 50px -12px rgba(0, 0, 0, 0.3),
    0 50px 100px -20px rgba(0, 0, 0, 0.45);
}

/* Detail sayfasÄ± article kartlarÄ± */
.detail-article-shadow {
  box-shadow: 0 24px 48px -12px rgba(0, 0, 0, 0.28), 0 16px 32px -12px rgba(0, 0, 0, 0.2);
  border-radius: 20px;
}

/* Genel kullanÄ±m - belirgin gÃ¶lge, 20px kenarlar */
.shadow-strong {
  box-shadow: 0 20px 45px -12px rgba(0, 0, 0, 0.25), 0 12px 24px -10px rgba(0, 0, 0, 0.18);
  border-radius: 20px;
}

/* Detail sayfasÄ± hero - tam geniÅŸlik, dÃ¼zgÃ¼n oran (21:9) */
.detail-hero-image {
  position: relative;
  width: 100%;
  aspect-ratio: 21 / 9;
  overflow: hidden;
  background: #1e293b;
}
.detail-hero-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.6s ease;
}
.detail-hero-image:hover img {
  transform: scale(1.03);
}
.detail-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.3) 40%, transparent 70%);
  pointer-events: none;
}
.detail-meta-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(0,0,0,0.04);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 20px;
  font-size: 0.875rem;
  color: #374151;
}
.detail-meta-badge i {
  color: var(--mag-red);
}
.detail-sidebar-link {
  display: block;
  padding: 0.75rem 1rem;
  border-radius: 12px;
  transition: all 0.2s ease;
  border-left: 3px solid transparent;
}
.detail-sidebar-link:hover {
  background: rgba(255, 107, 53, 0.08);
  border-left-color: var(--mag-red);
  color: var(--mag-red);
}
.prose-detail h2 { font-size: 1.5rem; font-weight: 700; margin-top: 2rem; margin-bottom: 0.75rem; color: var(--mag-dark); font-family: "Playfair Display", Georgia, serif; line-height: 1.3; }
.prose-detail h3 { font-size: 1.25rem; font-weight: 600; margin-top: 1.5rem; margin-bottom: 0.5rem; color: var(--mag-dark); font-family: "Playfair Display", Georgia, serif; line-height: 1.4; }
.prose-detail p { margin-bottom: 1rem; line-height: 1.75; }
.prose-detail ul, .prose-detail ol { margin: 1rem 0; padding-left: 1.5rem; }
.prose-detail blockquote { border-left: 4px solid var(--mag-red); padding-left: 1rem; margin: 1.5rem 0; font-style: italic; color: #4b5563; background: rgba(255, 107, 53, 0.05); padding: 1rem 1rem 1rem 1.25rem; border-radius: 0 8px 8px 0; }
.prose-detail img { max-width: 100%; height: auto; border-radius: 12px; margin: 1.5rem 0; box-shadow: 0 4px 12px rgba(0,0,0,0.1); }
.prose-detail figure { margin: 1.5rem 0; }
.prose-detail figure img { margin: 0; }
.prose-detail figcaption { font-size: 0.875rem; color: #6b7280; margin-top: 0.5rem; text-align: center; font-style: italic; }
.prose-detail a { color: var(--mag-red); text-decoration: underline; text-underline-offset: 2px; }
.prose-detail a:hover { color: #e55a2b; }

/* Zoe-Association Footer section title override */
.zoe-association-footer .zoe-association-section-title {
  color: rgba(255,255,255,0.9);
  border-bottom-color: var(--mag-red);
}

/* ===== Zoe-Association Detail Page ===== */
.zoe-association-detail-breadcrumb nav a:hover {
  color: var(--mag-red);
}
.zoe-association-detail-hero {
  aspect-ratio: 21 / 9;
  max-height: 480px;
  min-height: 280px;
}
.zoe-association-detail-hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.5s ease;
}
.zoe-association-detail-hero:hover .zoe-association-detail-hero-img {
  transform: scale(1.02);
}
.zoe-association-detail-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.92) 0%, rgba(0,0,0,0.4) 50%, transparent 80%);
  pointer-events: none;
}
.zoe-association-detail-hero-content {
  position: relative;
  z-index: 2;
}
.zoe-association-detail-hero-title {
  text-shadow: 0 2px 12px rgba(0,0,0,0.5);
  line-height: 1.2;
}
.zoe-association-detail-hero-meta {
  text-shadow: 0 1px 4px rgba(0,0,0,0.4);
}
.zoe-association-detail-article {
  background: white;
  border-radius: 20px;
  box-shadow: 0 24px 48px -12px rgba(0, 0, 0, 0.28), 0 16px 32px -12px rgba(0, 0, 0, 0.2);
  padding: 2rem 2.5rem;
}
@media (min-width: 768px) {
  .zoe-association-detail-article {
    padding: 2.5rem 3rem;
  }
}
.zoe-association-detail-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--mag-dark);
  line-height: 1.3;
  letter-spacing: -0.02em;
}
@media (min-width: 768px) {
  .zoe-association-detail-title {
    font-size: 2.25rem;
  }
}
.zoe-association-detail-meta {
  margin-top: 0.75rem;
}
.zoe-association-detail-lead {
  font-size: 1.125rem;
  line-height: 1.7;
}
.zoe-association-sidebar-post {
  display: flex;
  align-items: flex-start;
  padding: 0.5rem 0;
  border-radius: 12px;
  transition: all 0.2s ease;
}
.zoe-association-sidebar-post:hover {
  background: rgba(255, 107, 53, 0.06);
}
.zoe-association-detail-related-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.zoe-association-detail-related-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 56px -14px rgba(0,0,0,0.32);
}

/* Mikro-etkileÅŸimler - buton active */
.btn-press:active {
  transform: scale(0.98);
}

/* EriÅŸilebilirlik - focus ring */
a:focus-visible, button:focus-visible {
  outline: 2px solid var(--mag-red);
  outline-offset: 2px;
}

/* Zoe-Association Sidebar - editor's pick, latest video, newsletter */
.zoe-association-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.zoe-association-sidebar .sidebar-widget {
  margin-bottom: 0;
}
.zoe-association-sidebar .sidebar-widget-title {
  text-transform: lowercase;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
}
.zoe-association-editor-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.zoe-association-editor-list li {
  margin-bottom: 1.25rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid #f3f4f6;
}
.zoe-association-editor-list li:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}
.zoe-association-editor-thumb {
  aspect-ratio: 16 / 9;
  min-height: 120px;
  position: relative;
}
.zoe-association-editor-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.zoe-association-editor-item {
  text-decoration: none;
  color: inherit;
  display: block;
}
.zoe-association-editor-item:hover .zoe-association-editor-title {
  color: var(--mag-red);
}
.zoe-association-editor-title {
  margin-top: 0.5rem;
  margin-bottom: 0.25rem;
}
.zoe-association-editor-subtitle {
  margin: 0;
}
.zoe-association-editor-tags {
  font-weight: 500;
  margin-top: 0.25rem;
}
.zoe-association-video-thumb {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  background: #111827;
}
.zoe-association-video-thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.zoe-association-video-item:hover .zoe-association-video-title {
  color: var(--mag-red);
}
.zoe-association-play-btn {
  transition: transform 0.2s ease;
}
.zoe-association-video-item:hover .zoe-association-play-btn {
  transform: scale(1.1);
}
.zoe-association-sidebar-newsletter {
  background: linear-gradient(135deg, var(--mag-dark) 0%, #2d3748 100%);
  border-radius: 20px;
  padding: 1.5rem;
  box-shadow: 0 20px 45px -12px rgba(0, 0, 0, 0.25);
}
.zoe-association-sidebar-newsletter input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}
.zoe-association-sidebar-newsletter input {
  color: #fff;
}


/* =====================================================
   MODERN HEADER â€” transparent â†’ frosted glass on scroll
   ===================================================== */

/* Container */
.zd-container {
  width: min(1240px, calc(100% - 40px));
  margin-inline: auto;
}

/* Header wrapper â€” sits above hero */
.zd-header {
  position: fixed;
  top: 36px;
  left: 0;
  right: 0;
  z-index: 200;
  transition: background 0.35s ease, backdrop-filter 0.35s ease,
              box-shadow 0.35s ease, border-color 0.35s ease;
  background: transparent;
  border-bottom: 1px solid transparent;
}

/* Scrolled state: frosted glass */
.zd-header.scrolled {
  background: rgba(14, 22, 45, 0.82);
  backdrop-filter: blur(24px) saturate(1.6);
  -webkit-backdrop-filter: blur(24px) saturate(1.6);
  border-bottom-color: rgba(255,255,255,0.07);
  box-shadow: 0 8px 40px rgba(0,0,0,0.35);
}

/* Nav bar row */
.zd-nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 4px;
  height: 74px;
  transition: height 0.35s ease;
}
.zd-header.scrolled .zd-nav-bar { height: 62px; }

/* ---- BRAND ---- */
.zd-brand {
  display: flex;
  align-items: center;
  gap: 13px;
  text-decoration: none;
  flex-shrink: 0;
}

.zd-brand-hex {
  width: 40px;
  height: 46px;
  flex-shrink: 0;
  filter: drop-shadow(0 4px 14px rgba(192,13,13,0.5));
  transition: transform 0.25s ease, filter 0.25s ease;
}
.zd-brand:hover .zd-brand-hex {
  transform: translateY(-2px);
  filter: drop-shadow(0 8px 20px rgba(192,13,13,0.7));
}

.zd-brand-words {
  display: flex;
  flex-direction: column;
  gap: 2px;
  line-height: 1;
}
.zd-brand-name {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: #fff;
  letter-spacing: 0.5px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.4);
}
.zd-brand-sub {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-size: 8px;
  font-weight: 500;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

/* ---- NAV LINKS ---- */
.zd-nav {
  display: flex;
  align-items: center;
  gap: 2px;
  flex: 0 1 auto;
  margin-left: auto;
  justify-content: flex-end;
}

.zd-nav-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  padding: 7px 10px;
  border-radius: 8px;
  transition: color 0.2s, background 0.2s;
  white-space: nowrap;
}
.zd-nav-link:hover { color: #fff; background: rgba(255,255,255,0.09); }

/* Chevron icon */
.zd-nav-chevron {
  width: 13px;
  height: 13px;
  opacity: 0.5;
  transition: transform 0.25s, opacity 0.2s;
  flex-shrink: 0;
}
.zd-has-dd:hover .zd-nav-chevron { transform: rotate(180deg); opacity: 1; }

/* ---- DROPDOWN ---- */
.zd-nav-item { position: relative; }
.zd-has-dd { display: flex; align-items: center; }

.zd-dd {
  position: absolute;
  top: 100%;           /* boşluk yok, padding-top ile köprülenir */
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  min-width: 220px;
  background: rgba(10, 18, 40, 0.97);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 14px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.45), 0 0 0 1px rgba(192,13,13,0.2);
  padding: 12px 8px 8px;  /* üstte 12px padding — hem görsel boşluk hem köprü */
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0s linear 0.2s;
  z-index: 300;
}
.zd-has-dd:hover .zd-dd,
.zd-has-dd.dd-open .zd-dd {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0s linear 0s;
}
.zd-dd a {
  display: flex !important;
  align-items: center;
  gap: 10px;
  padding: 11px 14px !important;
  border-radius: 8px;
  font-size: 13px;
  color: rgba(255,255,255,0.75) !important;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.15s, color 0.15s;
  white-space: nowrap;
}
.zd-dd a:hover { background: rgba(255,255,255,0.08); color: #fff !important; }
.zd-dd a i { color: #c00d0d; font-size: 12px; width: 16px; flex-shrink: 0; }
.zd-dd a::after { display: none !important; }

/* ---- Separator + CTA ---- */
.zd-nav-sep {
  display: block;
  width: 1px;
  height: 22px;
  background: rgba(255,255,255,0.12);
  margin: 0 8px;
  flex-shrink: 0;
}

.zd-nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 20px;
  background: linear-gradient(135deg, #c00d0d 0%, #9b0a0a 100%);
  color: #fff !important;
  font-size: 13px;
  font-weight: 700;
  border-radius: 50px;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s, filter 0.2s;
  box-shadow: 0 4px 20px rgba(192,13,13,0.4);
  white-space: nowrap;
  letter-spacing: 0.01em;
  flex-shrink: 0;
}
.zd-nav-cta svg { width: 13px; height: 13px; transition: transform 0.2s; }
.zd-nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(192,13,13,0.55);
  filter: brightness(1.1);
}
.zd-nav-cta:hover svg { transform: translateX(3px); }

/* ---- TOP BAR CTA (Uye Ol) ---- */
.zd-topbar-cta {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 20px;
  background: linear-gradient(135deg, #c00d0d 0%, #9b0a0a 100%);
  color: #fff !important;
  font-size: 13px;
  font-weight: 700;
  border-radius: 50px;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s, filter 0.2s;
  box-shadow: 0 4px 20px rgba(192,13,13,0.4);
  white-space: nowrap;
  letter-spacing: 0.01em;
  flex-shrink: 0;
  margin-left: 12px;
}
.zd-topbar-cta svg { width: 14px; height: 14px; flex-shrink: 0; }
.zd-topbar-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(192,13,13,0.55); filter: brightness(1.1); color: #fff !important; }

/* ---- HAMBURGER ---- */
.zd-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 10px;
  cursor: pointer;
  padding: 10px;
  transition: background 0.2s;
  flex-shrink: 0;
}
.zd-hamburger:hover { background: rgba(255,255,255,0.14); }
.zd-hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
  transform-origin: center;
}
.zd-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.zd-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.zd-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---- OVERLAY ---- */
.zd-nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(6px);
  z-index: 149;
}
.zd-nav-overlay.active { display: block; }

/* ---- NAV CLOSE (mobile) ---- */
.zd-nav-close {
  display: none;
  position: absolute;
  top: 20px;
  right: 20px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  color: #fff;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.zd-nav-close:hover { background: rgba(255,255,255,0.16); }

/* ---- MOBILE ---- */
@media (max-width: 960px) {
  .zd-hamburger { display: flex; }
  .zd-nav-close { display: flex; }

  .zd-nav {
    position: fixed;
    top: 0;
    right: -100%;
    bottom: 0;
    width: min(340px, 88vw);
    background: rgba(8, 14, 32, 0.97);
    backdrop-filter: blur(32px);
    -webkit-backdrop-filter: blur(32px);
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 4px;
    padding: 80px 28px 40px;
    z-index: 150;
    transition: right 0.38s cubic-bezier(0.22, 1, 0.36, 1);
    border-left: 1px solid rgba(255,255,255,0.06);
    box-shadow: -20px 0 60px rgba(0,0,0,0.5);
  }
  .zd-nav.open { right: 0; }

  .zd-nav-link {
    font-size: 16px;
    font-weight: 600;
    padding: 13px 0;
    width: 100%;
    border-radius: 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    color: rgba(255,255,255,0.85);
  }
  .zd-nav-link:hover { background: none; color: #fff; }

  .zd-nav-sep { width: 100%; height: 1px; margin: 8px 0; }

  .zd-has-dd { flex-direction: column; align-items: flex-start; width: 100%; }
  .zd-dd {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    background: rgba(255,255,255,0.04);
    border: none;
    box-shadow: none;
    border-radius: 10px;
    margin-top: 4px;
    padding: 4px;
    display: none;
  }
  .zd-has-dd:hover .zd-dd { display: block; }
  .zd-dd a { font-size: 14px; }

  .zd-nav-cta {
    width: 100%;
    justify-content: center;
    margin-top: 12px;
    padding: 13px 20px;
    font-size: 15px;
  }

  /* Topbar CTA: mobilde metin gizle, sadece ikon goster */
  .zd-topbar-cta { padding: 9px 14px; margin-left: 8px; }
  .zd-topbar-cta span { display: none; }
}

/* Hero padding â€” Ã§Ã¼nkÃ¼ header artÄ±k fixed */
.zd-main { padding-top: 0; }





.zd-footer-strip {
  height: 4px;
  background: linear-gradient(to right, #1e3a5f 0%, #1e3a5f 60%, #e0004d 60%, #e0004d 100%);
}

.zd-footer-main {
  background: #1a1a1a;
  padding: 48px 0 40px;
}

.zd-footer-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr 1fr;
  gap: 32px 40px;
}

.zd-footer-logo-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 0.75rem;
}

.zd-footer-logo {
  width: 48px;
  height: 52px;
  flex-shrink: 0;
  background: linear-gradient(135deg, #8f1239 0%, #8f1239 50%, #1a1a1a 50%, #1a1a1a 100%);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  border-radius: 2px;
}

.zd-footer-brand-name {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
}

.zd-footer-address,
.zd-footer-contact {
  margin: 0 0 0.75rem;
  line-height: 1.65;
  font-size: 13px;
}

.zd-footer-contact a {
  color: #b8b8c8;
  text-decoration: none;
}

.zd-footer-contact a:hover {
  color: #fff;
}

.zd-footer-accent-line {
  display: block;
  width: 48px;
  height: 3px;
  background: #e0004d;
  margin-top: 1rem;
}

.zd-footer-heading {
  margin: 0 0 0.75rem;
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid #e0004d;
}

.zd-footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
}

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

.zd-footer-links a {
  color: #9b9baf;
  text-decoration: none;
  font-size: 13px;
}

.zd-footer-links a:hover {
  color: #fff;
}

.zd-footer-bottom {
  background: #141414;
  padding: 16px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.zd-footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.zd-footer-copy {
  margin: 0;
  font-size: 12px;
  color: #888;
}

.zd-footer-social {
  display: flex;
  align-items: center;
  gap: 10px;
}

.zd-social-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #e0004d;
  color: #fff !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 14px;
  transition: transform 0.2s ease, background 0.2s ease;
}

.zd-social-btn:hover {
  background: #c40042;
  transform: translateY(-2px);
}

@media (max-width: 992px) {
  .zd-footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 576px) {
  .zd-footer-grid {
    grid-template-columns: 1fr;
  }

  .zd-footer-bottom-inner {
    flex-direction: column;
    text-align: center;
  }
}

/* =====================================================
   FEATURE TRIO â€” modern reveal cards
   ===================================================== */
.zd-feature-trio {
  position: relative;
  z-index: 10;
  margin-top: -120px;
  padding: 0 0 0;
  background: transparent;
}

.zd-feature-trio-wrap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: min(1320px, calc(100% - 48px));
  margin: 0 auto;
  gap: 0;
  position: relative;
  z-index: 2;
}

/* === Single card === */
.zd-fc {
  position: relative;
  height: 480px;
  overflow: hidden;
  cursor: pointer;
  display: block;
}

/* Separator between cards */
.zd-fc:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  right: 0;
  width: 1px;
  background: rgba(255,255,255,0.15);
  z-index: 5;
}

/* Background image */
.zd-fc-img {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.zd-fc-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  filter: brightness(0.75);
}
.zd-fc:hover .zd-fc-img img,
.zd-fc:focus-within .zd-fc-img img {
  transform: scale(1.07);
  filter: brightness(0.6);
}

/* Gradient overlay â€” bottom heavy */
.zd-fc-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(
    to top,
    rgba(6, 10, 22, 0.96) 0%,
    rgba(6, 10, 22, 0.7) 35%,
    rgba(6, 10, 22, 0.15) 65%,
    rgba(6, 10, 22, 0) 100%
  );
  transition: background 0.4s ease;
}
.zd-fc:hover .zd-fc-overlay,
.zd-fc:focus-within .zd-fc-overlay {
  background: linear-gradient(
    to top,
    rgba(6, 10, 22, 0.98) 0%,
    rgba(6, 10, 22, 0.82) 45%,
    rgba(6, 10, 22, 0.3) 75%,
    rgba(6, 10, 22, 0.05) 100%
  );
}

/* Content block â€” sits at the bottom */
.zd-fc-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 3;
  padding: 32px 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transform: translateY(0);
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

/* Tag / pill */
.zd-fc-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(192, 13, 13, 0.85);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 12px 5px 10px;
  border-radius: 50px;
  width: fit-content;
  backdrop-filter: blur(8px);
  transition: background 0.2s;
}
.zd-fc:hover .zd-fc-tag { background: #c00d0d; }
.zd-fc-tag svg { flex-shrink: 0; }

/* Title */
.zd-fc-title {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  letter-spacing: -0.01em;
  text-shadow: 0 2px 16px rgba(0,0,0,0.5);
}

/* Description â€” hidden by default, revealed on hover */
.zd-fc-desc {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.65;
  color: rgba(255,255,255,0.8);
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.4s ease, opacity 0.35s ease;
}
.zd-fc:hover .zd-fc-desc,
.zd-fc:focus-within .zd-fc-desc {
  max-height: 100px;
  opacity: 1;
}

/* CTA link */
.zd-fc-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #fff;
  font-size: 12.5px;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.3s ease 0.05s, transform 0.35s ease 0.05s, gap 0.2s;
  padding-bottom: 2px;
  border-bottom: 1.5px solid rgba(255,255,255,0.35);
  width: fit-content;
}
.zd-fc:hover .zd-fc-link,
.zd-fc:focus-within .zd-fc-link {
  opacity: 1;
  transform: translateY(0);
}
.zd-fc-link:hover { gap: 11px; border-bottom-color: #c00d0d; color: #ff6b6b; }
.zd-fc-link svg { flex-shrink: 0; transition: transform 0.2s; }
.zd-fc-link:hover svg { transform: translateX(3px); }

/* Red accent bar at bottom */
.zd-fc-accent {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #c00d0d, #ff3b3b);
  z-index: 4;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.zd-fc:hover .zd-fc-accent,
.zd-fc:focus-within .zd-fc-accent {
  transform: scaleX(1);
}

/* === Responsive === */
@media (max-width: 960px) {
  .zd-feature-trio { margin-top: -60px; }
  .zd-feature-trio-wrap {
    grid-template-columns: 1fr;
    width: min(540px, calc(100% - 32px));
  }
  .zd-fc { height: 320px; }
  .zd-fc-desc { max-height: 100px !important; opacity: 1 !important; }
  .zd-fc-link { opacity: 1 !important; transform: none !important; }
  .zd-fc:not(:last-child)::after { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  .zd-fc-img img,
  .zd-fc-overlay,
  .zd-fc-content,
  .zd-fc-desc,
  .zd-fc-link,
  .zd-fc-accent { transition: none !important; }
}


/* ===== Ana sayfa â€” Video tur + haberler (1/3 + 2/3) ===== */
.zd-home-split {
  background: #fff;
  padding: 2.5rem 0 4rem;
  position: relative;
  z-index: 1;
}

.zd-home-split-inner {
  width: min(1360px, calc(100% - 48px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 2.5rem 3rem;
  align-items: start;
}

/* Grid altÄ±nda Swiper geniÅŸliÄŸi 0 kalmasÄ±n */
.zd-video-tour {
  min-width: 0;
  width: 100%;
}

.zd-news-updates {
  min-width: 0;
}

.zd-home-split-heading {
  margin: 0 0 0.65rem;
  font-family: Roboto, system-ui, sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #18163a;
  letter-spacing: -0.02em;
  line-height: 1.25;
}

.zd-home-split-rule {
  height: 2px;
  width: 100%;
  background: #7e0817;
  margin-bottom: 1.35rem;
}

.zd-home-split-heading--video {
  font-size: clamp(1rem, 2.4vw, 1.2rem);
  line-height: 1.3;
}

.zd-video-tour-slider-wrap {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.5rem;
  width: 100%;
  min-width: 0;
  padding: 0 0 2.25rem;
  box-sizing: border-box;
}

.zd-video-tour-arrow-prev {
  grid-column: 1;
  justify-self: start;
}

.zd-video-tour-swiper {
  grid-column: 2;
  position: relative;
  min-width: 0;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  padding-bottom: 1.75rem;
  --swiper-navigation-size: 32px;
  /* Dikey yÄ±ÄŸÄ±lmayÄ± engelle: Swiper kÃ¶kÃ¼ blok kalmalÄ± */
  display: block;
  list-style: none;
}

/* Tek sÄ±ra yatay ÅŸerit (JS gelmeden Ã¶nce de yatay kalsÄ±n) */
.zd-video-tour-swiper > .swiper-wrapper {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: nowrap !important;
  align-items: stretch;
  width: 100%;
  box-sizing: border-box;
}

.zd-video-tour-swiper:not(.swiper-initialized) > .swiper-wrapper {
  overflow: hidden;
}

.zd-video-tour-arrow-next {
  grid-column: 3;
  justify-self: end;
}

.zd-video-tour-swiper > .swiper-wrapper > .swiper-slide {
  height: auto;
  box-sizing: border-box;
  flex: 0 0 100% !important;
  width: 100% !important;
  max-width: 100%;
  margin: 0 !important;
}

.zd-home-split-empty {
  margin: 0;
  padding: 0.35rem 0 1.25rem;
  font-family: Roboto, system-ui, sans-serif;
  font-size: 0.9rem;
  line-height: 1.65;
  color: #666;
}

.zd-photo-slide-block {
  width: 100%;
}

.zd-photo-slide-name {
  margin: 0.85rem 0 0.35rem;
  font-family: Roboto, system-ui, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #18163a;
}

.zd-video-tour-pagination {
  position: absolute !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  margin: 0 !important;
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 0.35rem;
}

.zd-video-tour-pagination .swiper-pagination-bullet {
  width: 7px;
  height: 7px;
  background: #b50d23;
  opacity: 0.35;
  margin: 0 3px !important;
}

.zd-video-tour-pagination .swiper-pagination-bullet-active {
  opacity: 1;
}

.zd-video-tour-arrow {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  margin: 0;
  padding: 0;
  border: 1px solid rgba(24, 22, 58, 0.12);
  border-radius: 50%;
  background: #fff;
  color: #18163a;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition:
    background 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease;
}

.zd-video-tour-arrow:hover {
  background: #b50d23;
  color: #fff;
  border-color: #b50d23;
}

.zd-video-tour-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.zd-video-tour-link:focus-visible {
  outline: 2px solid #b50d23;
  outline-offset: 4px;
}

.zd-video-tour-frame {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #ddd;
}

/* FotoÄŸraf slaytÄ± (video oynatÄ±cÄ± gÃ¶rÃ¼nÃ¼mÃ¼ yok) */
.zd-photo-slide-frame {
  border-radius: 10px;
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.12);
}

.zd-photo-slide-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.06);
  pointer-events: none;
}

.zd-video-tour-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}

.zd-video-tour-link:hover .zd-video-tour-frame img {
  transform: scale(1.03);
}

/* Eski video ÅŸablonu: oynat dÃ¼ÄŸmesi kullanÄ±lmÄ±yorsa bu sÄ±nÄ±flar markupâ€™ta olmaz */
.zd-video-tour-overlay {
  position: absolute;
  inset: 0;
  background: rgba(184, 20, 45, 0.42);
  pointer-events: none;
}

.zd-video-tour-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #fff;
  color: #b50d23;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  padding-left: 4px;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.35);
  pointer-events: none;
}

.zd-video-tour-desc {
  margin: 1.15rem 0 0;
  font-family: Roboto, system-ui, sans-serif;
  font-size: 0.875rem;
  line-height: 1.65;
  color: #6b6b7b;
}

.zd-news-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.35rem 1.75rem;
}

.zd-news-item {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 0.9rem;
  min-width: 0;
}

.zd-news-thumb {
  flex-shrink: 0;
  width: 88px;
  height: 88px;
  overflow: hidden;
  background: #e8e8e8;
  display: block;
}

.zd-news-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}

.zd-news-thumb:hover img {
  transform: scale(1.05);
}

.zd-news-item-body {
  min-width: 0;
  flex: 1;
}

.zd-news-meta {
  margin: 0 0 0.4rem;
  font-family: Roboto, system-ui, sans-serif;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #9a9aa8;
  line-height: 1.4;
}

.zd-news-meta-sep {
  margin: 0 0.25rem;
  opacity: 0.85;
}

.zd-news-title {
  margin: 0;
  font-family: Roboto, system-ui, sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.4;
}

.zd-news-title a {
  color: #18163a;
  text-decoration: none;
  transition: color 0.2s ease;
}

.zd-news-title a:hover {
  color: #b50d23;
}

.zd-news-blog-cta-wrap {
  margin: 1.75rem 0 0;
}

.zd-news-blog-link {
  font-family: Roboto, system-ui, sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  color: #b50d23;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  transition: color 0.2s ease, gap 0.2s ease;
}

.zd-news-blog-link:hover {
  color: #7e0817;
  gap: 0.5rem;
}

@media (max-width: 992px) {
  .zd-home-split-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .zd-news-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
}

@media (max-width: 480px) {
  /* OklarÄ± gizle ama swiper hÃ¼cresini yatay ÅŸeritte tut (tek sÃ¼tun slaytÄ± dikey yÄ±ÄŸma) */
  .zd-video-tour-slider-wrap {
    grid-template-columns: minmax(0, 1fr);
    padding-bottom: 2.25rem;
  }

  .zd-video-tour-arrow {
    display: none;
  }

  .zd-video-tour-swiper {
    grid-column: 1;
  }
}

@media (max-width: 576px) {
  .zd-news-item {
    flex-direction: column;
    align-items: stretch;
  }

  .zd-news-thumb {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    max-height: 200px;
  }
}

/* ===== Ana sayfa â€” Apply for Admission (split: foto sol, panel saÄŸ) ===== */
.zd-admission-cta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 100%;
  min-height: min(45vh, 420px);
  box-shadow: 0 12px 32px -4px rgba(0, 0, 0, 0.35);
}

.zd-admission-cta-photo {
  position: relative;
  overflow: hidden;
  background: #222;
}

.zd-admission-cta-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
}

.zd-admission-cta-panel {
  background: #1a1b3c;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: clamp(2rem, 5vw, 3.5rem) clamp(2rem, 6vw, 4rem);
  font-family: Roboto, system-ui, sans-serif;
}

.zd-admission-cta-title {
  margin: 0 0 0.5rem;
  font-size: clamp(1.5rem, 2.8vw, 2rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.zd-admission-cta-sub {
  margin: 0 0 1.25rem;
  font-size: 0.95rem;
  font-weight: 400;
  line-height: 1.5;
  opacity: 0.92;
}

.zd-admission-cta-text {
  margin: 0 0 1.75rem;
  font-size: 0.875rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.88);
  max-width: 34rem;
}

.zd-admission-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.75rem;
  background: #c41230;
  color: #fff;
  font-size: 0.875rem;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: background 0.2s ease, transform 0.15s ease;
}

.zd-admission-cta-btn:hover {
  background: #a30f28;
  color: #fff;
}

.zd-admission-cta-btn:active {
  transform: scale(0.98);
}

.zd-admission-cta-btn:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 3px;
}

@media (max-width: 768px) {
  .zd-admission-cta {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .zd-admission-cta-photo {
    height: 220px;
    position: relative;
  }

  .zd-admission-cta-panel {
    padding: 2rem 1.5rem;
  }
}

/* ===== Ana sayfa â€” Etkinlikler (Kingster Events referansÄ±) ===== */
.zd-events {
  --zd-ev-navy: #1e3a5f;
  --zd-ev-navy-soft: #5c6a7e;
  --zd-ev-maroon: #a50e24;
  --zd-ev-maroon-dark: #8a0c1e;
  --zd-ev-meta-text: #6f7785;
  --zd-ev-meta-icon-grey: #8b939e;
  background: #fff;
  padding: 3rem 0 3.5rem;
}

.zd-events-inner {
  display: block;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  box-sizing: border-box;
}

.zd-events-header {
  margin-bottom: 1.85rem;
}

.zd-events-heading {
  margin: 0 0 0.85rem;
  font-family: Montserrat, Poppins, Roboto, system-ui, sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--zd-ev-navy);
  letter-spacing: -0.02em;
  line-height: 1.2;
}

/* BaÅŸlÄ±ÄŸÄ±n altÄ±nda tam geniÅŸlik ince kÄ±rmÄ±zÄ± Ã§izgi (Kingster) */
.zd-events-rule {
  height: 2px;
  width: 100%;
  background: var(--zd-ev-maroon);
  border: none;
}

.zd-events-slider-wrap {
  position: relative;
  width: 100%;
  /* Oklar iÃ§in alan; Ã§ok geniÅŸ padding slayt alanÄ±nÄ± daraltÄ±p 3 kartÄ± engelliyordu */
  padding: 0 40px 0;
  box-sizing: border-box;
}

.zd-events-swiper {
  display: block;
  overflow: hidden;
  padding-bottom: 2.5rem;
  width: 100%;
  list-style: none;
}

/* Tek sÄ±ra yatay ÅŸerit â€” width Swiperâ€™Ä±n hesapladÄ±ÄŸÄ± toplam geniÅŸlik olmalÄ± (%100 sarmalayÄ±cÄ±yÄ± kÄ±rpÄ±yordu) */
.zd-events-swiper > .swiper-wrapper {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: nowrap !important;
  align-items: stretch;
  box-sizing: border-box;
}

.zd-events-swiper:not(.swiper-initialized) > .swiper-wrapper {
  overflow: hidden;
}

.zd-events-swiper > .swiper-wrapper > .swiper-slide {
  height: auto;
  flex-shrink: 0;
  box-sizing: border-box;
  margin: 0 !important;
}

.zd-events-swiper .swiper-slide .zd-event-card {
  height: 100%;
}

.zd-events-arrow {
  position: absolute;
  top: 42%;
  transform: translateY(-50%);
  z-index: 2;
  width: 42px;
  height: 42px;
  margin: 0;
  padding: 0;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 50%;
  background: #fff;
  color: var(--zd-ev-navy-soft);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.88rem;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
  transition:
    background 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.zd-events-arrow:hover {
  background: var(--zd-ev-maroon);
  color: #fff;
  border-color: var(--zd-ev-maroon);
}

.zd-events-arrow-prev {
  left: 0;
}

.zd-events-arrow-next {
  right: 0;
}

.zd-events-pagination {
  position: absolute !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  margin: 0 !important;
  text-align: center;
}

.zd-events-pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background: var(--zd-ev-maroon);
  opacity: 0.35;
}

.zd-events-pagination .swiper-pagination-bullet-active {
  opacity: 1;
}

.zd-event-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.zd-event-card-img {
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #ececee;
  margin-bottom: 1.35rem;
  border-radius: 16px;
}

.zd-event-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.zd-event-card:hover .zd-event-card-img img {
  transform: scale(1.04);
}

.zd-event-card-body {
  display: flex;
  flex-direction: row;
  gap: 1.65rem;
  align-items: flex-start;
  padding-right: 0.15rem;
}

.zd-event-date {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1;
  min-width: 3.25rem;
}

.zd-event-date-day {
  display: inline-block;
  font-family: Montserrat, Poppins, Roboto, system-ui, sans-serif;
  font-size: 2.35rem;
  font-weight: 700;
  color: var(--zd-ev-maroon);
  line-height: 0.95;
}

.zd-event-date-month {
  font-family: Montserrat, Poppins, Roboto, system-ui, sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--zd-ev-maroon);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-top: 0.3rem;
}

.zd-event-card-rule {
  display: none;
}

.zd-event-card-info {
  flex: 1;
  min-width: 0;
}

.zd-event-title {
  margin: 0 0 0.65rem;
  font-family: Montserrat, Poppins, Roboto, system-ui, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.4;
}

.zd-event-title a {
  color: var(--zd-ev-navy);
  text-decoration: none;
  transition: color 0.2s ease;
}

.zd-event-title a:hover {
  color: var(--zd-ev-maroon);
}

.zd-event-meta {
  margin: 0 0 0.35rem;
  font-family: Montserrat, Poppins, Roboto, system-ui, sans-serif;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--zd-ev-meta-text);
  display: flex;
  align-items: center;
  gap: 0.45rem;
  line-height: 1.45;
}

/* Saat: gri ikon; konum: kÄ±rmÄ±zÄ± iÄŸne (referans) */
.zd-event-card-info > p.zd-event-meta:first-of-type i {
  color: var(--zd-ev-meta-icon-grey);
  font-size: 0.78rem;
  flex-shrink: 0;
  width: 1.1em;
  text-align: center;
}

.zd-event-card-info > p.zd-event-meta:last-of-type i {
  color: var(--zd-ev-maroon);
  font-size: 0.78rem;
  flex-shrink: 0;
  width: 1.1em;
  text-align: center;
}

.zd-events-cta-wrap {
  margin: 2rem 0 0;
}

.zd-events-cta-link {
  font-family: Montserrat, Poppins, Roboto, system-ui, sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--zd-ev-maroon);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: color 0.2s ease, gap 0.2s ease;
}

.zd-events-cta-link:hover {
  color: var(--zd-ev-maroon-dark);
  gap: 0.55rem;
}

@media (max-width: 576px) {
  .zd-events-slider-wrap {
    padding: 0 0 0;
  }

  .zd-events-arrow {
    display: none;
  }

  .zd-events-swiper {
    padding-bottom: 2.75rem;
  }
}

/* ===== Ana sayfa â€” Quick links / newsletter / donation ===== */
.zd-support-strip {
  background: #fff;
  padding: 2rem 0 3rem;
}

.zd-support-strip-grid {
  width: min(1360px, calc(100% - 48px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.15fr 1fr 1fr;
  gap: 2rem;
  align-items: stretch;
}

.zd-quick-links-panel {
  position: relative;
  overflow: hidden;
  min-height: 420px;
  color: #fff;
}

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

.zd-quick-links-overlay {
  position: absolute;
  inset: 0;
  background: rgba(187, 15, 50, 0.78);
}

.zd-quick-links-content {
  position: relative;
  z-index: 1;
  padding: 2.25rem 2rem;
}

.zd-quick-links-title {
  margin: 0 0 1.35rem;
  font-family: Roboto, system-ui, sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.zd-quick-links-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.zd-quick-links-list li a {
  display: block;
  color: #fff;
  text-decoration: none;
  font-family: Roboto, system-ui, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  transition: padding-left 0.2s ease, opacity 0.2s ease;
}

.zd-quick-links-list li a:hover {
  padding-left: 0.35rem;
  opacity: 0.92;
}

.zd-newsletter-card,
.zd-donation-card {
  padding: 0.5rem 0.25rem;
}

.zd-newsletter-icon {
  width: 70px;
  height: 52px;
  border: 2px solid #c41230;
  color: #c41230;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.9rem;
  margin-bottom: 1.25rem;
}

.zd-support-title {
  margin: 0 0 0.75rem;
  font-family: Roboto, system-ui, sans-serif;
  font-size: 1.85rem;
  font-weight: 700;
  color: #15153a;
  line-height: 1.2;
}

.zd-support-text {
  margin: 0 0 1.3rem;
  font-family: Roboto, system-ui, sans-serif;
  font-size: 1rem;
  color: #63637a;
  line-height: 1.65;
}

.zd-newsletter-form input {
  width: 100%;
  height: 52px;
  border: none;
  background: #f5f5f7;
  padding: 0 1rem;
  font-family: Roboto, system-ui, sans-serif;
  font-size: 0.95rem;
  margin-bottom: 0.6rem;
}

.zd-newsletter-form button {
  width: 100%;
  height: 52px;
  border: none;
  background: #c41230;
  color: #fff;
  font-family: Roboto, system-ui, sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
}

.zd-donation-img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 8.5;
  object-fit: cover;
  display: block;
  margin-bottom: 1.25rem;
}

.zd-donate-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.8rem 1.2rem;
  background: #c41230;
  color: #fff;
  text-decoration: none;
  font-family: Roboto, system-ui, sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
}

.zd-donate-btn:hover {
  background: #a80f28;
  color: #fff;
}

@media (max-width: 1100px) {
  .zd-support-strip-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .zd-quick-links-panel {
    min-height: 320px;
  }
}

/* ===== About page (Kingster style) ===== */
.zd-about-hero {
  position: relative;
  min-height: 320px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #1a1b3c;
}

.zd-about-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.zd-about-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(14, 14, 42, 0.88), rgba(14, 14, 42, 0.55));
}

.zd-about-hero-inner {
  position: relative;
  z-index: 1;
  width: min(1360px, calc(100% - 48px));
  margin: 0 auto;
  color: #fff;
  font-family: Roboto, system-ui, sans-serif;
}

.zd-about-hero-sub {
  margin: 0 0 0.25rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
  opacity: 0.88;
}

.zd-about-hero-inner h1 {
  margin: 0;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
}

.zd-about-breadcrumb {
  margin: 0.8rem 0 0;
  font-size: 0.9rem;
}

.zd-about-breadcrumb a {
  color: #fff;
  text-decoration: none;
}

.zd-about-breadcrumb span {
  margin: 0 0.4rem;
  opacity: 0.7;
}

.zd-about-content {
  background: #fff;
  padding: 2.3rem 0 2.6rem;
}

.zd-about-content-inner {
  width: min(1360px, calc(100% - 48px));
  margin: 0 auto;
}

.zd-about-history-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2.2rem;
  align-items: start;
}

.zd-about-history-title h2 {
  margin: 0;
  display: inline-block;
  padding-bottom: 0.55rem;
  border-bottom: 2px solid #c41230;
  font-family: Roboto, system-ui, sans-serif;
  font-size: clamp(1.65rem, 2.6vw, 2rem);
  color: #17173a;
  line-height: 1.2;
}

.zd-about-history-text p {
  margin: 0;
  color: #575770;
  line-height: 1.85;
  font-family: Roboto, system-ui, sans-serif;
  font-size: 1.02rem;
}

/* Red info band */
.zd-about-redband {
  position: relative;
  background:
    linear-gradient(rgba(179, 12, 49, 0.9), rgba(179, 12, 49, 0.9)),
    url("https://images.unsplash.com/photo-1498243691581-b145c3f54a5a?auto=format&fit=crop&w=2000&q=80") center/cover no-repeat;
  padding: 2.6rem 0 3rem;
}

.zd-about-redband-inner {
  width: min(1360px, calc(100% - 48px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2rem;
}

.zd-about-redband-col h3 {
  margin: 0 0 0.8rem;
  color: #fff;
  font-size: 1.55rem;
  font-weight: 700;
  font-family: Roboto, system-ui, sans-serif;
  line-height: 1.2;
}

.zd-about-redband-col p {
  margin: 0;
  color: rgba(255, 255, 255, 0.94);
  font-size: 1rem;
  line-height: 1.8;
  font-family: Roboto, system-ui, sans-serif;
}

@media (max-width: 900px) {
  .zd-about-history-grid,
  .zd-about-redband-inner {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* ===== Blog page (left sidebar with frame) ===== */

/* Page header banner */
.zd-page-header {
  background: #f7f7fb;
  border-top: 1px solid #e2e2ec;
  border-bottom: 1px solid #e2e2ec;
}

.zd-page-header-inner {
  width: min(1360px, calc(100% - 48px));
  margin: 0 auto;
  padding: 1.1rem 0 1.3rem;
  font-family: Roboto, system-ui, sans-serif;
}

.zd-page-header-caption {
  margin: 0 0 0.25rem;
  font-size: 0.72rem;
  color: #9494ad;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.zd-page-header-inner h1 {
  margin: 0;
  font-size: clamp(1.35rem, 2.2vw, 1.85rem);
  font-weight: 700;
  color: #15153a;
  line-height: 1.25;
}

/* Layout wrapper */
.zd-blog-page {
  background: #f2f2f7;
  padding: 2rem 0 3rem;
}

.zd-blog-layout {
  width: min(1360px, calc(100% - 48px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 290px minmax(0, 1fr);
  gap: 28px;
  align-items: start;
}

/* ---- Sidebar ---- */
.zd-blog-sidebar {
  min-width: 0;
}

.zd-blog-widget {
  background: #fff;
  border: 1px solid #e4e4ef;
  margin-bottom: 18px;
  font-family: Roboto, system-ui, sans-serif;
  overflow: hidden;
}

.zd-blog-widget-title {
  margin: 0;
  font-size: 0.92rem;
  font-weight: 700;
  color: #17173a;
  letter-spacing: 0.02em;
  font-family: Roboto, system-ui, sans-serif;
  background: #f5f5f8;
  padding: 0.7rem 1rem 0.65rem;
  border-bottom: 3px solid #c41230;
}

.zd-blog-widget-body {
  padding: 0.95rem 1rem 1rem;
}

.zd-blog-widget p {
  margin: 0;
  color: #686882;
  line-height: 1.7;
  font-size: 0.83rem;
}

/* Recent News â€” thumbnail + title + meta rows */
.zd-blog-recent-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.zd-blog-recent-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 0.75rem 0;
  border-bottom: 1px solid #efeff5;
}

.zd-blog-recent-list li:first-child {
  padding-top: 0;
}

.zd-blog-recent-list li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.zd-recent-thumb {
  flex-shrink: 0;
  width: 70px;
  height: 70px;
  overflow: hidden;
}

.zd-recent-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.zd-recent-info {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

/* title first, meta second */
.zd-blog-recent-list a {
  color: #15153a;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.86rem;
  line-height: 1.4;
  display: block;
}

.zd-blog-recent-list a:hover {
  color: #c41230;
}

.zd-recent-meta {
  font-size: 0.68rem;
  color: #9494ad;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  line-height: 1.3;
  display: block;
}

/* Tag Cloud â€” always filled red */
.zd-blog-tags {
  margin-top: 0;
}

.zd-blog-tags a {
  display: inline-block;
  padding: 0.3rem 0.65rem;
  margin: 0 0.3rem 0.3rem 0;
  text-decoration: none;
  font-size: 0.68rem;
  font-weight: 700;
  color: #fff;
  background: #c41230;
  border: none;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  font-family: Roboto, system-ui, sans-serif;
  transition: background 0.2s;
}

.zd-blog-tags a:hover {
  background: #a00f27;
  color: #fff;
}

/* Gallery grid */
.zd-blog-works-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
  margin-top: 0.25rem;
}

.zd-blog-works-grid a {
  display: block;
  aspect-ratio: 1;
  overflow: hidden;
}

.zd-blog-works-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.zd-blog-works-grid a:hover img {
  transform: scale(1.08);
}

/* ---- Main Content: News Grid ---- */
.zd-blog-content {
  min-width: 0;
}

/* Section header â€” title + red underline */
.zd-news-section-header {
  margin-bottom: 1.25rem;
  padding-bottom: 0.65rem;
  border-bottom: 3px solid #c41230;
  font-family: Roboto, system-ui, sans-serif;
}

.zd-news-section-header h2 {
  margin: 0;
  font-size: 1.15rem;
  font-weight: 700;
  color: #15153a;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* 2-column news card grid */
.zd-news-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: #fff;
  border: 1px solid #e4e4ef;
}

.zd-news-card {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 1rem 1.1rem;
  text-decoration: none;
  border-bottom: 1px solid #ececf5;
  border-right: 1px solid #ececf5;
  background: #fff;
  transition: background 0.18s;
  font-family: Roboto, system-ui, sans-serif;
}

/* Remove right border from every 2nd card */
.zd-news-card:nth-child(2n) {
  border-right: none;
}

/* Remove bottom border from last two cards */
.zd-news-card:nth-last-child(-n+2) {
  border-bottom: none;
}

.zd-news-card:hover {
  background: #fafafa;
}

.zd-news-card-thumb {
  flex-shrink: 0;
  width: 82px;
  height: 82px;
  overflow: hidden;
  position: relative;
}

.zd-news-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.zd-news-card:hover .zd-news-card-thumb img {
  transform: scale(1.06);
}

.zd-news-sticky-label {
  position: absolute;
  top: 0;
  left: 0;
  background: #15153a;
  color: #fff;
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 2px 5px;
}

.zd-news-card-info {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.zd-news-meta {
  font-size: 0.67rem;
  color: #9494ad;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1.3;
}

.zd-news-card h3 {
  margin: 0;
  font-size: 0.88rem;
  font-weight: 700;
  color: #15153a;
  line-height: 1.4;
  font-family: Roboto, system-ui, sans-serif;
  transition: color 0.18s;
}

.zd-news-card:hover h3 {
  color: #c41230;
}

/* Pagination */
.zd-blog-pagination {
  display: flex;
  gap: 5px;
  margin-top: 1.25rem;
}

.zd-blog-pagination a {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #dcdcea;
  text-decoration: none;
  color: #494964;
  font-weight: 700;
  font-size: 0.85rem;
  font-family: Roboto, system-ui, sans-serif;
  background: #fff;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.zd-blog-pagination a.active,
.zd-blog-pagination a:hover {
  background: #c41230;
  border-color: #c41230;
  color: #fff;
}

/* Responsive */
@media (max-width: 1024px) {
  .zd-blog-layout {
    grid-template-columns: 250px minmax(0, 1fr);
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .zd-blog-layout {
    grid-template-columns: 1fr;
  }

  .zd-blog-sidebar {
    order: 2;
  }

  .zd-blog-content {
    order: 1;
  }

  .zd-news-grid {
    grid-template-columns: 1fr;
  }

  .zd-news-card:nth-child(2n) {
    border-right: none;
  }

  .zd-news-card:nth-last-child(-n+2) {
    border-bottom: 1px solid #ececf5;
  }

  .zd-news-card:last-child {
    border-bottom: none;
  }
}

/* ===== Alt sayfalar: Ä°letiÅŸim, Arama, Yasal (Kingster / ZoeDernek uyumu) ===== */
.kng-subpage-hero {
  position: relative;
  background-color: #192f59;
  background-image: url("https://images.unsplash.com/photo-1521737604893-d14cc237f11d?auto=format&fit=crop&w=1400&q=80");
  background-size: cover;
  background-position: center;
  padding: calc(74px + 60px) 0 60px; /* 74px fixed header */
  color: #fff;
}

.kng-subpage-hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(12, 28, 64, 0.82);
}

.kng-subpage-hero__inner {
  position: relative;
  z-index: 2;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
}

.kng-subpage-hero__caption {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.72);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin: 0 0 12px;
}

.kng-subpage-hero__title {
  font-size: clamp(28px, 4vw, 38px);
  font-weight: 800;
  color: #fff;
  margin: 0;
  line-height: 1.2;
}

.kng-subpage-hero__lead {
  margin: 14px 0 0;
  max-width: 560px;
  font-size: 15px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.88);
}

.kng-subpage-search {
  margin-top: 24px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  max-width: 640px;
}

.kng-subpage-search input[type="search"] {
  flex: 1;
  min-width: 200px;
  padding: 12px 16px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 15px;
  font-family: inherit;
}

.kng-subpage-search input[type="search"]::placeholder {
  color: rgba(255, 255, 255, 0.55);
}

.kng-subpage-search input[type="search"]:focus {
  outline: none;
  border-color: rgba(255, 255, 255, 0.85);
  background: rgba(255, 255, 255, 0.18);
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.15);
}

.kng-subpage-search button {
  background: #e0004d;
  color: #fff;
  font-weight: 700;
  border: 0;
  padding: 12px 26px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 15px;
  font-family: inherit;
  transition: background 0.2s ease, transform 0.15s ease;
}

.kng-subpage-search button:hover {
  background: #c40042;
}

.kng-subpage-search button:active {
  transform: translateY(1px);
}

.kng-subpage-body {
  background: #f5f5f5;
  padding: 56px 0 88px;
}

.kng-subpage-wrap {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 20px;
}

.kng-subpage-wrap--wide {
  max-width: 900px;
}

.kng-subpage-card {
  background: #fff;
  border-radius: 12px;
  padding: 32px 36px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

@media (max-width: 576px) {
  .kng-subpage-card {
    padding: 24px 20px;
  }
}

.kng-subpage-form .kng-form-group {
  margin-bottom: 20px;
}

.kng-subpage-form .kng-form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 8px;
  color: #1a1a1a;
  font-size: 14px;
}

.kng-subpage-form .kng-form-group input,
.kng-subpage-form .kng-form-group textarea {
  width: 100%;
  box-sizing: border-box;
  padding: 12px 14px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-family: inherit;
  font-size: 15px;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.kng-subpage-form .kng-form-group textarea {
  min-height: 150px;
  resize: vertical;
}

.kng-subpage-form .kng-form-group input:focus,
.kng-subpage-form .kng-form-group textarea:focus {
  outline: none;
  border-color: #192f59;
  box-shadow: 0 0 0 3px rgba(25, 47, 89, 0.15);
}

.kng-subpage-btn {
  display: inline-block;
  background: #e0004d;
  color: #fff !important;
  border: 0;
  padding: 14px 32px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 15px;
  font-family: inherit;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.15s ease;
}

.kng-subpage-btn:hover {
  background: #c40042;
}

.kng-subpage-btn:active {
  transform: translateY(1px);
}

.kng-subpage-alert {
  padding: 14px 18px;
  border-radius: 10px;
  margin-bottom: 22px;
  border-left: 4px solid #2e7d32;
  background: #e8f5e9;
  color: #1b5e20;
  font-size: 14px;
  line-height: 1.5;
}

.kng-subpage-field-error {
  color: #c62828;
  font-size: 13px;
  display: block;
  margin-top: 6px;
}

.kng-subpage-validation-summary {
  color: #c62828;
  font-size: 14px;
  margin-bottom: 16px;
}

.kng-subpage-hit {
  background: #fff;
  border-radius: 12px;
  padding: 20px 22px;
  margin-bottom: 14px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-left: 4px solid #e0004d;
  transition: box-shadow 0.2s ease;
}

.kng-subpage-hit:hover {
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.kng-subpage-hit__kind {
  font-size: 11px;
  font-weight: 700;
  color: #e0004d;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}

.kng-subpage-hit__title {
  color: #192f59;
  font-weight: 700;
  font-size: 1.08rem;
  text-decoration: none;
}

.kng-subpage-hit__title:hover {
  color: #0d1f3d;
  text-decoration: underline;
}

.kng-subpage-hit__snippet {
  color: #555;
  font-size: 14px;
  margin: 10px 0 0;
  line-height: 1.55;
}

.kng-subpage-muted {
  color: #666;
  font-size: 15px;
  line-height: 1.65;
  margin: 0;
}

.kng-subpage-count {
  color: #192f59;
  font-weight: 700;
  margin: 0 0 20px;
  font-size: 15px;
}

.kng-subpage-legal {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
  color: #333;
  line-height: 1.75;
  font-size: 15px;
}

.kng-subpage-legal h2 {
  font-size: 1.15rem;
  margin: 32px 0 12px;
  color: #192f59;
  font-weight: 700;
  font-family: var(--kingster-font-heading, "Poppins", sans-serif);
}

.kng-subpage-legal p {
  margin: 0 0 14px;
}

.kng-subpage-legal a {
  color: #192f59;
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid rgba(25, 47, 89, 0.35);
}

.kng-subpage-legal a:hover {
  border-bottom-color: #192f59;
}

.zd-footer-copy .zd-footer-legal {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px 12px;
}

.zd-footer-copy .zd-footer-legal a {
  color: #9b9baf;
  text-decoration: none;
  transition: color 0.2s ease;
}

.zd-footer-copy .zd-footer-legal a:hover {
  color: #fff;
}

.zd-footer-copy .zd-footer-sep {
  opacity: 0.45;
  user-select: none;
}

body.zd-with-cookie-bar {
  padding-bottom: 100px;
}

@media (min-width: 768px) {
  body.zd-with-cookie-bar {
    padding-bottom: 84px;
  }
}

.zd-cookie-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 10000;
  background: linear-gradient(180deg, rgba(26, 26, 26, 0.98) 0%, #141414 100%);
  color: #fff;
  padding: 18px 20px;
  box-shadow: 0 -6px 28px rgba(0, 0, 0, 0.25);
  border-top: 3px solid #e0004d;
}

.zd-cookie-inner {
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.zd-cookie-text {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
  flex: 1;
  min-width: 220px;
  color: #c8c8d4;
}

.zd-cookie-text a {
  color: #ff6b8a;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.zd-cookie-text a:hover {
  color: #fff;
}

.zd-cookie-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}

.zd-cookie-btn {
  border: 0;
  border-radius: 8px;
  padding: 11px 22px;
  font-weight: 700;
  cursor: pointer;
  font-size: 14px;
  font-family: inherit;
  transition: background 0.2s ease, transform 0.15s ease;
}

.zd-cookie-btn--primary {
  background: #e0004d;
  color: #fff;
}

.zd-cookie-btn--primary:hover {
  background: #c40042;
}

.zd-cookie-link {
  color: #9b9baf;
  font-size: 14px;
  text-decoration: none;
}

.zd-cookie-link:hover {
  color: #fff;
}

/* ===== Events Grid â€” Kingster Style ===== */
.zd-events-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 56px 24px 40px;
}
.zd-events-header { margin-bottom: 24px; }
.zd-events-heading {
  font-size: 22px;
  font-weight: 800;
  color: #192f59;
  margin: 0 0 10px;
  font-family: 'Poppins', sans-serif;
}
.zd-events-rule {
  height: 1px;
  background: linear-gradient(to right, #c00d0d 100px, #e0e0e0 100px);
  margin-bottom: 28px;
}
.zd-events-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 24px;
}
.zd-event-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
}
.zd-event-card-img {
  width: 100%;
  aspect-ratio: 16/10;
  overflow: hidden;
  border-radius: 2px;
  margin-bottom: 14px;
  background: #1a1a2e;
}
.zd-event-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
  display: block;
}
.zd-event-card:hover .zd-event-card-img img { transform: scale(1.04); }
.zd-event-card-bottom {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.zd-event-date {
  text-align: center;
  flex-shrink: 0;
  min-width: 44px;
}
.zd-event-date-day {
  display: block;
  font-size: 30px;
  font-weight: 800;
  color: #c00d0d;
  line-height: 1;
  font-family: 'Poppins', sans-serif;
}
.zd-event-date-month {
  display: block;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #999;
  margin-bottom: 6px;
}
.zd-event-date-line {
  display: block;
  width: 24px;
  height: 2px;
  background: #c00d0d;
  margin: 0 auto;
}
.zd-event-card-info { flex: 1; min-width: 0; }
.zd-event-title {
  font-size: 14px;
  font-weight: 700;
  color: #192f59;
  margin: 0 0 7px;
  line-height: 1.45;
}
.zd-event-title a { color: inherit; text-decoration: none; }
.zd-event-title a:hover { color: #c00d0d; }
.zd-event-meta {
  font-size: 12px;
  color: #888;
  margin: 0 0 3px;
  display: flex;
  align-items: center;
  gap: 5px;
}
.zd-event-meta i { color: #c00d0d; font-size: 11px; }
.zd-events-cta-wrap { margin: 0; }
.zd-events-cta-link {
  font-size: 13px;
  font-weight: 700;
  color: #c00d0d;
  text-decoration: none;
  letter-spacing: 0.03em;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: color 0.2s, gap 0.2s;
}
.zd-events-cta-link:hover { color: #192f59; gap: 8px; }
@media (max-width: 900px) { .zd-events-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 576px) { .zd-events-grid { grid-template-columns: 1fr; } }

/* ===== Home Split ===== */
.zd-home-split { background: #f8f9fb; padding: 60px 0; }
.zd-home-split-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.zd-home-split-heading {
  font-size: 24px;
  font-weight: 800;
  color: #192f59;
  margin: 0 0 12px;
}
.zd-home-split-rule {
  width: 48px;
  height: 3px;
  background: #c00d0d;
  margin-bottom: 16px;
}
.zd-home-split-desc { color: #555; line-height: 1.7; margin-bottom: 20px; }
.zd-home-split-cta {
  font-size: 13px;
  font-weight: 700;
  color: #c00d0d;
  text-decoration: none;
}
.zd-home-split-cta:hover { color: #192f59; }
.zd-home-split-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.zd-stat-card {
  background: #fff;
  border-radius: 12px;
  padding: 24px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  border-top: 3px solid #c00d0d;
}
.zd-stat-num {
  display: block;
  font-size: 32px;
  font-weight: 800;
  color: #192f59;
  line-height: 1;
  margin-bottom: 6px;
}
.zd-stat-label { font-size: 12px; color: #888; font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; }
@media (max-width: 768px) {
  .zd-home-split-inner { grid-template-columns: 1fr; }
}

/* ===== News Section ===== */
.zd-news-section { padding: 56px 0; background: #fff; }
.zd-section-head { margin-bottom: 24px; }
.zd-section-heading {
  font-size: 22px;
  font-weight: 800;
  color: #192f59;
  margin: 0 0 10px;
  font-family: 'Poppins', sans-serif;
}
.zd-section-rule {
  height: 1px;
  background: linear-gradient(to right, #c00d0d 100px, #e0e0e0 100px);
  margin-bottom: 0;
}
.zd-news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 24px;
}
.zd-news-card { border-radius: 8px; overflow: hidden; box-shadow: 0 4px 20px rgba(0,0,0,0.07); }
.zd-news-card-img { aspect-ratio: 16/9; overflow: hidden; }
.zd-news-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; display: block; }
.zd-news-card:hover .zd-news-card-img img { transform: scale(1.04); }
.zd-news-card-body { padding: 16px; }
.zd-news-cat {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #c00d0d;
  background: rgba(192,13,13,0.08);
  padding: 2px 8px;
  border-radius: 4px;
  display: inline-block;
  margin-bottom: 8px;
}
.zd-news-title { font-size: 15px; font-weight: 700; color: #192f59; margin: 0 0 8px; line-height: 1.4; }
.zd-news-title a { color: inherit; text-decoration: none; }
.zd-news-title a:hover { color: #c00d0d; }
.zd-news-date { font-size: 12px; color: #aaa; display: flex; align-items: center; gap: 5px; margin: 0; }
.zd-news-date i { color: #c00d0d; }
.zd-section-cta-wrap { margin-top: 8px; }
.zd-section-cta-link {
  font-size: 13px;
  font-weight: 700;
  color: #c00d0d;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: color 0.2s, gap 0.2s;
}
.zd-section-cta-link:hover { color: #192f59; gap: 8px; }
@media (max-width: 768px) { .zd-news-grid { grid-template-columns: 1fr; } }
@media (min-width: 576px) and (max-width: 768px) { .zd-news-grid { grid-template-columns: repeat(2,1fr); } }

/* ===== Committees Section ===== */
.zd-committees-section { padding: 56px 0; background: #f8f9fb; }
.zd-committee-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 24px;
}
@media (max-width: 900px) { .zd-committee-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 480px) { .zd-committee-grid { grid-template-columns: 1fr; } }

/* ===== FIX: Komisyon KartlarÄ± (kng-course-card override) ===== */
.zd-committees-section .kng-course-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  transition: box-shadow 0.25s, transform 0.25s;
}
.zd-committees-section .kng-course-card:hover {
  box-shadow: 0 8px 28px rgba(0,0,0,0.14);
  transform: translateY(-3px);
}
.zd-committees-section .kng-course-thumb {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: #ddd;
}
.zd-committees-section .kng-course-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s;
}
.zd-committees-section .kng-course-card:hover .kng-course-thumb img {
  transform: scale(1.05);
}
.zd-committees-section .kng-course-body {
  padding: 14px 16px;
}
.zd-committees-section .kng-course-title {
  font-size: 14px;
  font-weight: 700;
  color: #192f59;
  margin: 0 0 6px;
  line-height: 1.4;
  text-decoration: none;
}
.zd-committees-section .kng-course-desc {
  font-size: 12px;
  color: #777;
  margin: 0;
  line-height: 1.5;
  text-decoration: none;
}

/* ===== FIX: Global overflow-x prevention ===== */
html, body {
  overflow-x: hidden;
  max-width: 100%;
}

/* ===== FIX: Home Split â€” stat cards max-width ===== */
.zd-home-split-stats {
  overflow: hidden;
}

/* ===== FIX: Support Strip layout ===== */
.zd-support-strip-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr 1fr;
  min-height: 340px;
}
.zd-quick-links-panel {
  position: relative;
  overflow: hidden;
}
.zd-quick-links-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.zd-quick-links-overlay {
  position: absolute;
  inset: 0;
  background: rgba(192,13,13,0.82);
  z-index: 1;
}
.zd-quick-links-content {
  position: relative;
  z-index: 2;
  padding: 40px 32px;
}
.zd-newsletter-card {
  background: #fff;
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.zd-donation-card {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  min-height: 280px;
}
.zd-donation-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  z-index: 0;
}
.zd-donation-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.75) 40%, rgba(0,0,0,0.1));
  z-index: 1;
}
.zd-donation-card .zd-support-title,
.zd-donation-card .zd-support-text,
.zd-donation-card .zd-donate-btn {
  position: relative;
  z-index: 2;
  color: #fff;
}
.zd-donation-card .zd-support-text { color: rgba(255,255,255,0.85); }

@media (max-width: 900px) {
  .zd-support-strip-grid {
    grid-template-columns: 1fr;
  }
  .zd-quick-links-panel { min-height: 280px; }
  .zd-donation-card { min-height: 220px; }
}

/* ===== FIX: zd-container max-width guard ===== */
.zd-container {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
  box-sizing: border-box;
}

/* ===== FIX: Hero iÃ§indeki zd-container tam geniÅŸlik almalÄ± ===== */
.zd-hero-slide-inner.zd-container {
  max-width: 1360px;
  width: 100%;
  padding-left: 48px;
  padding-right: 48px;
}

/* ===== FIX: Support strip eÅŸit yÃ¼kseklik ===== */
.zd-support-strip-grid {
  align-items: stretch;
}
.zd-quick-links-panel,
.zd-newsletter-card,
.zd-donation-card {
  min-height: 340px;
}
.zd-newsletter-card {
  justify-content: center;
  background: #fff;
  padding: 48px 36px;
}

/* =========================================
   PREMIUM NEW SECTIONS â€” KÃ–PED
   ========================================= */

/* --- Shared section head --- */
.kp-section-head { margin-bottom: 32px; }
.kp-section-head--center { text-align: center; }
.kp-eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #c00d0d;
  margin-bottom: 10px;
  position: relative;
  padding: 0 14px;
}
.kp-eyebrow::before, .kp-eyebrow::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 28px;
  height: 1px;
  background: #c00d0d;
  opacity: 0.5;
}
.kp-eyebrow::before { right: 100%; }
.kp-eyebrow::after  { left: 100%; }
.kp-section-heading {
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  font-weight: 800;
  color: #192f59;
  margin: 0 0 12px;
  font-family: 'Poppins', sans-serif;
}
.kp-section-sub {
  max-width: 560px;
  margin: 0 auto;
  color: #666;
  font-size: 15px;
  line-height: 1.7;
}

/* --- Neden KÃ¶ped --- */
.kp-why { padding: 72px 0; background: #fff; }
.kp-why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.kp-why-card {
  background: #f8f9fb;
  border-radius: 16px;
  padding: 36px 28px;
  text-align: center;
  border: 1px solid #eee;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}
.kp-why-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(25,47,89,0.1);
  border-color: #c00d0d;
}
.kp-why-icon {
  width: 68px;
  height: 68px;
  background: linear-gradient(135deg, #c00d0d, #a80b0b);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: #fff;
  font-size: 26px;
  box-shadow: 0 8px 24px rgba(192,13,13,0.3);
}
.kp-why-title {
  font-size: 15px;
  font-weight: 700;
  color: #192f59;
  margin: 0 0 10px;
}
.kp-why-text { font-size: 13px; color: #777; line-height: 1.7; margin: 0; }
@media (max-width: 900px) { .kp-why-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 480px) { .kp-why-grid { grid-template-columns: 1fr; } }

/* --- Dark Stats Banner --- */
.kp-stats-banner {
  position: relative;
  overflow: hidden;
  padding: 0;
}
.kp-stats-banner-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.04);
  filter: brightness(0.35) saturate(0.6);
}
.kp-stats-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(25,47,89,0.92) 0%, rgba(192,13,13,0.75) 100%);
}
.kp-stats-banner-inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding: 64px 24px;
  gap: 0;
}
.kp-stat-item {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.kp-stat-num {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  color: #fff;
  line-height: 1;
  font-family: 'Poppins', sans-serif;
}
.kp-stat-sep {
  width: 32px;
  height: 2px;
  background: rgba(192,13,13,0.8);
}
.kp-stat-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.7);
}
.kp-stat-divider {
  width: 1px;
  height: 80px;
  background: rgba(255,255,255,0.15);
}
@media (max-width: 768px) {
  .kp-stats-banner-inner { flex-wrap: wrap; gap: 36px; }
  .kp-stat-divider { display: none; }
}

/* --- Testimonials --- */
.kp-testimonials { padding: 72px 0; background: #f8f9fb; }
.kp-testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.kp-testi-card {
  background: #fff;
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
  border-top: 3px solid #c00d0d;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform 0.3s, box-shadow 0.3s;
}
.kp-testi-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(0,0,0,0.1);
}
.kp-testi-quote { color: #c00d0d; font-size: 28px; line-height: 1; }
.kp-testi-text {
  font-size: 14px;
  color: #555;
  line-height: 1.75;
  flex: 1;
  font-style: italic;
  margin: 0;
}
.kp-testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid #f0f0f0;
  padding-top: 16px;
}
.kp-testi-author img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid #c00d0d;
}
.kp-testi-name {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: #192f59;
}
.kp-testi-role {
  display: block;
  font-size: 11px;
  color: #999;
}
@media (max-width: 900px) { .kp-testi-grid { grid-template-columns: 1fr; } }
@media (min-width: 600px) and (max-width: 900px) { .kp-testi-grid { grid-template-columns: repeat(2,1fr); } }

/* --- Photo Gallery --- */
.kp-gallery { background: #fff; padding-bottom: 0; }
.kp-gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-template-rows: 240px 240px;
  gap: 4px;
}
.kp-gallery-item {
  position: relative;
  overflow: hidden;
  background: #111;
  cursor: pointer;
}
.kp-gallery-item--tall { grid-row: span 2; }
.kp-gallery-item--wide { grid-column: span 2; }
.kp-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease, filter 0.4s;
  filter: brightness(0.88);
}
.kp-gallery-item:hover img {
  transform: scale(1.07);
  filter: brightness(0.6);
}
.kp-gallery-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  padding: 20px;
  background: linear-gradient(to top, rgba(0,0,0,0.65) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.3s;
}
.kp-gallery-item:hover .kp-gallery-overlay { opacity: 1; }
.kp-gallery-overlay span {
  color: #fff;
  font-size: 13px;
  font-weight: 600;
}
@media (max-width: 768px) {
  .kp-gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .kp-gallery-item--tall, .kp-gallery-item--wide {
    grid-row: unset;
    grid-column: unset;
  }
}

/* --- Partners --- */
.kp-partners {
  padding: 40px 0;
  background: #f8f9fb;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
}
.kp-partners-label {
  text-align: center;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #aaa;
  margin: 0 0 24px;
}
.kp-partners-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.kp-partner-logo {
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 10px;
  padding: 14px 28px;
  transition: border-color 0.2s, box-shadow 0.2s;
  cursor: pointer;
}
.kp-partner-logo:hover {
  border-color: #c00d0d;
  box-shadow: 0 4px 16px rgba(192,13,13,0.12);
}
.kp-partner-logo span {
  font-size: 13px;
  font-weight: 700;
  color: #555;
  white-space: nowrap;
}

/* --- Global section backgrounds alternating --- */
.kp-why        { background: #fff; }
.kp-testimonials { background: #f4f6fa; }
.kp-gallery    { background: #fff; }
.kp-partners   { background: #f4f6fa; }

/* =========================================
   PREMIUM HERO SLIDER â€” kp-hero
   ========================================= */
@keyframes kpHeroKenBurns {
  from { transform: scale(1.08); }
  to   { transform: scale(1.0);  }
}
@keyframes kpHeroFadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes kpBadgePulse {
  0%,100% { opacity:1; transform:scale(1);    }
  50%     { opacity:.55; transform:scale(.8); }
}
@keyframes kpScrollBounce {
  0%,100% { transform:translateY(0);  opacity:.7; }
  50%     { transform:translateY(6px);opacity:1;  }
}

.kp-hero-wrap { width: 100%; position: relative; overflow: hidden; background: #0d1b3e; }
.kp-hero-swiper {
  width: 100%;
  height: min(90vh, 800px);
  min-height: 560px;
  background: #0d1b3e; /* Resim yÃ¼klenene kadar koyu fallback */
}
.kp-hero-swiper .swiper-wrapper { height: 100%; }

/* Give slides an explicit height so they don't rely on percentage inheritance */
.kp-hero-swiper .swiper-slide,
.kp-hero-slide {
  width: 100%;
  height: min(90vh, 800px) !important;
  min-height: 560px;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.swiper-slide-active.kp-hero-slide { animation: kpHeroKenBurns 8s ease-out forwards; }

/* Background image lives here â€” not on the slide â€” so Swiper's position:absolute doesn't interfere */
.kp-hero-bg {
  position: absolute;
  inset: 0;
  background-color: #0d1b3e; /* Fallback: resim yÃ¼klenene kadar gÃ¶rÃ¼nÃ¼r */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
}


.kp-hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(105deg, rgba(10,15,40,.85) 0%, rgba(10,15,40,.50) 55%, rgba(10,15,40,.30) 100%),
    linear-gradient(to top, rgba(0,0,0,.55) 0%, transparent 45%);
}
.kp-hero-overlay::after {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 70% at 5% 50%, rgba(192,13,13,.18) 0%, transparent 65%);
}


.kp-hero-inner {
  position:relative; z-index:3;
  width:100%; max-width:1200px; margin:0 auto; padding:0 48px;
  display:flex; align-items:center; justify-content:space-between; gap:40px;
}

.kp-hero-content { flex:1; max-width:620px; }

.kp-hero-badge {
  display:inline-flex; align-items:center; gap:10px;
  background:rgba(255,255,255,.1); border:1px solid rgba(255,255,255,.18);
  backdrop-filter:blur(8px); -webkit-backdrop-filter:blur(8px);
  border-radius:100px; padding:7px 18px 7px 12px;
  font-size:12px; font-weight:600; color:rgba(255,255,255,.9);
  letter-spacing:.04em; margin-bottom:22px;
}
.kp-hero-badge-dot {
  width:8px; height:8px; border-radius:50%; background:#c00d0d; flex-shrink:0;
  animation:kpBadgePulse 2s ease-in-out infinite;
}
.kp-hero-title {
  font-size:clamp(2.4rem,5.5vw,4.2rem); font-weight:800;
  line-height:1.07; color:#fff; margin:0 0 20px;
  letter-spacing:-.025em; font-family:'Poppins',sans-serif;
}
.kp-hero-title em { font-style:normal; color:#c00d0d; }

.kp-hero-desc {
  font-size:15px; color:rgba(255,255,255,.78);
  line-height:1.75; margin:0 0 32px; max-width:500px;
}

.kp-hero-actions { display:flex; gap:14px; flex-wrap:wrap; }

.kp-hero-btn {
  display:inline-flex; align-items:center; gap:9px;
  padding:14px 28px; border-radius:6px;
  font-size:13px; font-weight:700; letter-spacing:.05em;
  text-transform:uppercase; text-decoration:none;
  transition:transform .25s, box-shadow .25s, background .25s;
}
.kp-hero-btn--primary {
  background:#c00d0d; color:#fff !important;
  box-shadow:0 8px 24px rgba(192,13,13,.45);
}
.kp-hero-btn--primary:hover {
  background:#a80b0b; transform:translateY(-3px);
  box-shadow:0 14px 32px rgba(192,13,13,.55);
}
.kp-hero-btn--ghost {
  background:rgba(255,255,255,.1); color:#fff !important;
  border:1px solid rgba(255,255,255,.3); backdrop-filter:blur(8px);
}
.kp-hero-btn--ghost:hover {
  background:rgba(255,255,255,.2); transform:translateY(-3px);
  border-color:rgba(255,255,255,.5);
}

/* Fade animations */
.kp-hero-swiper.swiper-initialized .swiper-slide:not(.swiper-slide-active) .kp-hero-badge,
.kp-hero-swiper.swiper-initialized .swiper-slide:not(.swiper-slide-active) .kp-hero-title,
.kp-hero-swiper.swiper-initialized .swiper-slide:not(.swiper-slide-active) .kp-hero-desc,
.kp-hero-swiper.swiper-initialized .swiper-slide:not(.swiper-slide-active) .kp-hero-actions,
.kp-hero-swiper.swiper-initialized .swiper-slide:not(.swiper-slide-active) .kp-hero-card { opacity:0; }

.swiper-slide-active .kp-hero-badge   { animation:kpHeroFadeUp .7s  cubic-bezier(.22,1,.36,1) .05s both; }
.swiper-slide-active .kp-hero-title   { animation:kpHeroFadeUp .75s cubic-bezier(.22,1,.36,1) .18s both; }
.swiper-slide-active .kp-hero-desc    { animation:kpHeroFadeUp .7s  cubic-bezier(.22,1,.36,1) .30s both; }
.swiper-slide-active .kp-hero-actions { animation:kpHeroFadeUp .7s  cubic-bezier(.22,1,.36,1) .42s both; }
.swiper-slide-active .kp-hero-card    { animation:kpHeroFadeUp .7s  cubic-bezier(.22,1,.36,1) .28s both; }

/* Glassmorphism stat card */
.kp-hero-card {
  flex-shrink:0; width:220px;
  background:rgba(255,255,255,.1); border:1px solid rgba(255,255,255,.18);
  backdrop-filter:blur(14px); -webkit-backdrop-filter:blur(14px);
  border-radius:20px; padding:28px 24px;
  display:flex; flex-direction:column; gap:0;
}
.kp-hero-card-stat { display:flex; flex-direction:column; align-items:center; text-align:center; padding:18px 0; }
.kp-hero-card-num  { font-size:2rem; font-weight:800; color:#fff; line-height:1; font-family:'Poppins',sans-serif; }
.kp-hero-card-lbl  { font-size:11px; color:rgba(255,255,255,.65); font-weight:600; text-transform:uppercase; letter-spacing:.08em; margin-top:5px; }
.kp-hero-card-divider { width:100%; height:1px; background:rgba(255,255,255,.15); }

/* Arrows */
.kp-hero-arrow {
  position:absolute; top:50%; transform:translateY(-50%); z-index:10;
  width:48px; height:48px; border-radius:50%;
  background:rgba(255,255,255,.12); border:1px solid rgba(255,255,255,.25);
  backdrop-filter:blur(8px); color:#fff; font-size:15px;
  display:flex; align-items:center; justify-content:center;
  cursor:pointer; transition:background .2s, transform .2s;
}
.kp-hero-arrow:hover { background:rgba(192,13,13,.7); transform:translateY(-50%) scale(1.1); }
.kp-hero-arrow-prev { left:28px; }
.kp-hero-arrow-next { right:28px; }

/* Counter */
.kp-hero-counter { position:absolute; bottom:36px; left:48px; z-index:10; display:flex; align-items:center; gap:10px; }
.kp-hero-counter-cur { font-size:28px; font-weight:800; color:#fff; line-height:1; font-family:'Poppins',sans-serif; }
.kp-hero-counter-sep { width:36px; height:1px; background:rgba(255,255,255,.4); }
.kp-hero-counter-tot { font-size:14px; color:rgba(255,255,255,.5); font-weight:600; font-family:'Poppins',sans-serif; }

/* Progress bar */
.kp-hero-progress-bar { position:absolute; bottom:0; left:0; right:0; height:3px; background:rgba(255,255,255,.15); z-index:10; overflow:hidden; }
.kp-hero-progress-fill { display:block; height:100%; width:0%; background:#c00d0d; }

/* Scroll indicator */
.kp-hero-scroll { position:absolute; bottom:24px; right:48px; z-index:10; display:flex; flex-direction:column; align-items:center; gap:8px; }
.kp-hero-scroll-line { display:block; width:1px; height:40px; background:linear-gradient(to bottom,rgba(255,255,255,.6),transparent); animation:kpScrollBounce 2s ease-in-out infinite; }
.kp-hero-scroll-text { font-size:9px; font-weight:700; letter-spacing:.2em; text-transform:uppercase; color:rgba(255,255,255,.5); writing-mode:vertical-rl; }

@media (max-width:900px) {
  .kp-hero-card   { display:none; }
  .kp-hero-inner  { padding:0 24px; }
  .kp-hero-swiper { height:min(85vh,620px); }
  .kp-hero-counter{ left:24px; }
  .kp-hero-scroll { right:24px; }
}
@media (max-width:576px) {
  .kp-hero-swiper { height:min(100svh,640px); }
  .kp-hero-btn    { padding:12px 20px; font-size:12px; }
  .kp-hero-arrow-prev { left:12px; }
  .kp-hero-arrow-next { right:12px; }
  .kp-hero-scroll { display:none; }
}

/* =========================================
   KINGSTER-STYLE NEWS SECTION â€” kp-news
   ========================================= */
.kp-news-section {
  padding: 64px 0;
  background: #fff;
}

/* Header row: title + "all posts" link */
.kp-news-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 32px;
  gap: 16px;
}
.kp-news-title {
  font-size: 1.35rem;
  font-weight: 800;
  color: #192f59;
  margin: 0 0 10px;
  font-family: 'Poppins', sans-serif;
}
.kp-news-rule {
  width: 100%;
  height: 2px;
  background: linear-gradient(to right, #c00d0d 60px, #e8e8e8 60px);
}
.kp-news-read-all {
  flex-shrink: 0;
  font-size: 13px;
  font-weight: 700;
  color: #c00d0d;
  text-decoration: none;
  letter-spacing: 0.02em;
  white-space: nowrap;
  transition: color 0.2s;
  padding-bottom: 2px;
}
.kp-news-read-all:hover { color: #192f59; }

/* 2-column grid */
.kp-news-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 48px;
}
.kp-news-col {
  display: flex;
  flex-direction: column;
}

/* Each row: thumb + info */
.kp-news-row {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 18px 0;
  border-bottom: 1px solid #f0f0f0;
}
.kp-news-row:last-child { border-bottom: none; }

/* Thumbnail */
.kp-news-thumb {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  border-radius: 4px;
  overflow: hidden;
  display: block;
}
.kp-news-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.kp-news-row:hover .kp-news-thumb img { transform: scale(1.06); }

/* Info block */
.kp-news-info { flex: 1; min-width: 0; }

.kp-news-meta {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 6px;
}
.kp-news-cat {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #c00d0d;
}
.kp-news-sep {
  font-size: 11px;
  color: #bbb;
}
.kp-news-date {
  font-size: 11px;
  color: #999;
  font-weight: 500;
}
.kp-news-item-title {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.45;
  margin: 0;
  color: #192f59;
}
.kp-news-item-title a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}
.kp-news-item-title a:hover { color: #c00d0d; }

@media (max-width: 768px) {
  .kp-news-grid { grid-template-columns: 1fr; gap: 0; }
  .kp-news-header { flex-direction: column; align-items: flex-start; }
}






/* =====================================================
   TRAINER SLIDER â€” kp-news-section 3-column layout
   ===================================================== */

/* 3-col wrapper: trainer (1fr) + news (2fr) */
.kp-news-3col {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 0 48px;
  align-items: start;
}

/* News 2-col inner */
.kp-news-cols-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 40px;
}

/* Başlık: 2 kolonu da kapsar */
.kp-news-col-header {
  grid-column: 1 / -1;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 20px;
}

/* ---- Trainer column header ---- */
.kp-trainer-col {
  position: relative;
}
.kp-trainer-col-head {
  margin-bottom: 18px;
}
.kp-trainer-col-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(192,13,13,0.09);
  color: #c00d0d;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 50px;
  margin-bottom: 8px;
}
.kp-trainer-col-title {
  font-size: 16px;
  font-weight: 800;
  color: #192f59;
  margin: 0;
  line-height: 1.3;
}

/* ---- Trainer Swiper container ---- */
.kp-trainer-swiper {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  width: 100%;
  height: 340px;
}

/* ---- Trainer card ---- */
.kp-trainer-card {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
}
.kp-trainer-card-img {
  position: relative;
  aspect-ratio: 1/1;
  background: #fff;
  overflow: hidden;
}
.kp-trainer-card-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.6s ease;
}
.kp-trainer-card:hover .kp-trainer-card-img img {
  transform: scale(1.04);
}
.kp-trainer-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,18,50,0.85) 0%, rgba(10,18,50,0.2) 55%, transparent 100%);
  pointer-events: none;
}
.kp-trainer-card-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px 20px 16px;
  z-index: 2;
}
.kp-trainer-card-name {
  margin: 0 0 4px;
  font-size: 17px;
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
  text-shadow: 0 1px 8px rgba(0,0,0,0.4);
}
.kp-trainer-card-caption {
  margin: 0;
  font-size: 11.5px;
  color: rgba(255,255,255,0.78);
  font-weight: 500;
  letter-spacing: 0.03em;
}

/* ---- Swiper pagination dots ---- */
.kp-trainer-pagination {
  position: absolute;
  bottom: 56px !important;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 6px;
  z-index: 10;
}
.kp-trainer-pagination .swiper-pagination-bullet {
  width: 6px;
  height: 6px;
  background: rgba(255,255,255,0.5);
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}
.kp-trainer-pagination .swiper-pagination-bullet-active {
  background: #fff;
  transform: scale(1.3);
}

/* ---- Nav arrows ---- */
.kp-trainer-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #fff;
  transition: background 0.2s, transform 0.2s;
}
.kp-trainer-arrow:hover {
  background: rgba(192,13,13,0.7);
  border-color: transparent;
  transform: translateY(-50%) scale(1.1);
}
.kp-trainer-prev { left: 12px; }
.kp-trainer-next { right: 12px; }

/* ---- "All trainers" link ---- */
.kp-trainer-all-link {
  display: inline-block;
  margin-top: 12px;
  font-size: 12px;
  font-weight: 700;
  color: #c00d0d;
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: gap 0.2s, color 0.2s;
}
.kp-trainer-all-link:hover { color: #920a21; }

/* ---- Empty state ---- */
.kp-trainer-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 48px 20px;
  text-align: center;
  color: #bbb;
  border: 2px dashed #e8e8e8;
  border-radius: 10px;
  font-size: 14px;
}

/* ---- Responsive ---- */
@media (max-width: 1100px) {
  .kp-news-3col { grid-template-columns: 1fr 1.5fr; gap: 0 32px; }
}
@media (max-width: 860px) {
  .kp-news-3col { grid-template-columns: 1fr; gap: 40px 0; }
  .kp-news-cols-wrap { grid-template-columns: 1fr; gap: 0; }
}


/* kp-news-cols-wrap alignment fix */
.kp-news-cols-wrap {
  min-width: 0;
  align-self: start;
}
.kp-news-cols-wrap .kp-news-col:first-child {
  border-right: 1px solid #f0f0f0;
  padding-right: 20px;
}
.kp-news-cols-wrap .kp-news-col:last-child {
  padding-left: 20px;
}

/* kp-trainer-col: Swiper overflow-hidden sorununu izole et */
.kp-trainer-col {
  min-width: 0;
  contain: layout;
}

/* Hero sections: topbar (36px) + header (74px) + padding */
.kp-ks-hero { padding-top: calc(36px + 74px + 60px) !important; }
@media (max-width: 768px) { .kp-ks-hero { padding-top: calc(74px + 60px) !important; } }

/* DARK MODE OVERRIDES */
body.dark-mode {
    background-color: #121212 !important;
    color: #e0e0e0 !important;
}
body.dark-mode .zd-main {
    background-color: #121212 !important;
}
body.dark-mode .kp-cms-article,
body.dark-mode .zd-contact-box,
body.dark-mode .kp-project-card,
body.dark-mode .zd-dd {
    background-color: #1e1e1e !important;
    color: #e0e0e0 !important;
    box-shadow: 0 4px 24px rgba(0,0,0,0.5) !important;
}
body.dark-mode h1, 
body.dark-mode h2, 
body.dark-mode h3, 
body.dark-mode h4, 
body.dark-mode h5, 
body.dark-mode h6,
body.dark-mode .kp-project-title,
body.dark-mode .zd-footer-heading,
body.dark-mode .zd-nav-link {
    color: #f5f5f5 !important;
}
body.dark-mode .zd-topbar {
    background-color: #0d0d0d !important;
    border-bottom: 1px solid #222 !important;
}
body.dark-mode .zd-header {
    background-color: rgba(18,18,18,0.95) !important;
}
body.dark-mode .zd-footer {
    background-color: #080808 !important;
}
body.dark-mode .zd-footer-strip {
    opacity: 0.1;
}
body.dark-mode input, body.dark-mode textarea, body.dark-mode select {
    background-color: #2a2a2a !important;
    color: #fff !important;
    border-color: #444 !important;
}
body.dark-mode label {
    color: #ccc !important;
}

