:root {
  --red: #e30917;
  --turquoise: #26b9cd;
  --white: #ffffff;
  --text: #1f2430;
  --hero-h: 420px;
  --safe-top: env(safe-area-inset-top, 0px);
  --safe-bottom: env(safe-area-inset-bottom, 0px);
}

::selection {
  background: var(--turquoise);
  color: var(--white);
}

::-moz-selection {
  background: var(--turquoise);
  color: var(--white);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 17px;
  line-height: 1.65;
  font-weight: 500;
  color: var(--text);
  background: #f2f4f7;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -webkit-tap-highlight-color: transparent;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.hero {
  position: relative;
  z-index: 1;
  overflow: visible;
  box-shadow: 0 2px 14px rgba(0, 0, 0, 0.08);
}

.top-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
  padding: calc(0.75rem + var(--safe-top)) clamp(1rem, 4vw, 2rem) 0.875rem;
  background: #ffffff;
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
  position: relative;
  z-index: 10;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.12);
}

.site-brand {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.55rem;
  flex-shrink: 0;
}

.site-brand-text {
  font-family: "Segoe UI", Tahoma, Arial, sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 1.125rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #0f172a;
  text-decoration: none;
  line-height: 1;
}

.site-brand-logo {
  width: 34px;
  height: 34px;
  object-fit: contain;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.15);
}

.site-brand-text:hover {
  color: var(--red);
}

.top-panel-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-shrink: 0;
}

.slide-menu-toggle {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.9rem;
  height: 2.9rem;
  padding: 0;
  border: 1px solid rgba(15, 23, 42, 0.12);
  border-radius: 0.55rem;
  background: #fff;
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease;
}

.slide-menu-toggle:hover {
  background: #f4f6f9;
  border-color: rgba(15, 23, 42, 0.2);
}

.slide-menu-toggle[aria-expanded="true"] {
  background: #eef1f6;
}

.hamburger {
  position: relative;
  width: 1.25rem;
  height: 2px;
  background: #0f172a;
  border-radius: 1px;
}

.hamburger::before,
.hamburger::after {
  content: "";
  position: absolute;
  left: 0;
  width: 1.25rem;
  height: 2px;
  background: #0f172a;
  border-radius: 1px;
}

.hamburger::before {
  top: -7px;
}

.hamburger::after {
  top: 7px;
}

.slide-menu-backdrop {
  position: fixed;
  inset: 0;
  z-index: 150;
  background: rgba(15, 23, 42, 0.45);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.28s ease, visibility 0.28s ease;
}

.slide-menu-backdrop.is-open {
  opacity: 1;
  visibility: visible;
}

.slide-menu-panel {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 160;
  width: min(88vw, 360px);
  max-width: 100vw;
  height: 100vh;
  height: 100dvh;
  background: #ffffff;
  box-shadow: -12px 0 40px rgba(0, 0, 0, 0.15);
  transform: translateX(100%);
  transition: transform 0.32s ease;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding-bottom: var(--safe-bottom);
}

.slide-menu-panel.is-open {
  transform: translateX(0);
}

.slide-menu-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 1rem 1rem 0.75rem;
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
  flex-shrink: 0;
}

.slide-menu-heading {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 700;
  color: #0f172a;
}

.slide-menu-close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  padding: 0;
  border: 0;
  border-radius: 0.5rem;
  background: transparent;
  font-size: 1.75rem;
  line-height: 1;
  color: #475569;
  cursor: pointer;
}

.slide-menu-close:hover {
  background: #f1f5f9;
  color: #0f172a;
}

.slide-menu-body {
  padding: 1rem 0 calc(1.5rem + var(--safe-bottom));
  overflow-y: auto;
  flex: 1;
  -webkit-overflow-scrolling: touch;
}

.slide-menu-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.slide-menu-list--sub {
  margin-top: 0.25rem;
}

.slide-menu-section-label {
  margin: 1.25rem 1rem 0.5rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #64748b;
}

.slide-menu-link {
  display: block;
  padding: 0.95rem 1.25rem;
  font-weight: 700;
  font-size: 1.06rem;
  color: #0f172a;
  text-decoration: none;
  border-left: 3px solid transparent;
  transition: background 0.15s ease, border-color 0.15s ease;
}

.slide-menu-link:hover {
  background: #f8fafc;
  border-left-color: #19a8bc;
}

.slide-menu-link.is-active {
  background: #f3f4f6;
  border-left-color: var(--red);
  color: #111827;
}

.slide-menu-accordion-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0.95rem 1.25rem;
  border: 0;
  border-left: 3px solid transparent;
  background: transparent;
  font: inherit;
  font-weight: 700;
  font-size: 1.06rem;
  color: #0f172a;
  text-align: left;
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease;
}

.slide-menu-accordion-trigger:hover {
  background: #f8fafc;
  border-left-color: var(--red);
}

.slide-menu-accordion.is-open .slide-menu-accordion-trigger {
  background: #f1f5f9;
  border-left-color: #19a8bc;
}

.accordion-chevron {
  display: inline-block;
  width: 0.45rem;
  height: 0.45rem;
  margin-left: 0.5rem;
  border-right: 2px solid #64748b;
  border-bottom: 2px solid #64748b;
  transform: rotate(45deg);
  transition: transform 0.25s ease;
}

.slide-menu-accordion.is-open .accordion-chevron {
  transform: rotate(-135deg);
  margin-top: 0.2rem;
}

.slide-menu-sublist {
  padding: 0.15rem 0 0.35rem;
  background: #f8fafc;
  border-top: 1px solid rgba(15, 23, 42, 0.06);
}

.slide-menu-link--sub {
  padding-left: 1.75rem;
  font-weight: 600;
  font-size: 1rem;
}

body.slide-menu-open {
  overflow: hidden;
}

.hero-section {
  width: 100%;
  height: var(--hero-h);
  box-sizing: border-box;
  background-color: #e8ecf0;
  background-image: url("Hero/Hero.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  z-index: 0;
  overflow: hidden;
}

.koklerden-banner-wrap {
  width: 100%;
  padding: 0.95rem 1rem 0.35rem;
  margin-top: 0.7rem;
  background: transparent;
}

.koklerden-banner-text {
  margin: 0 auto;
  width: min(760px, 100%);
  max-width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  padding: 0.1rem 0.2rem;
  font-weight: 800;
  font-size: clamp(1.05rem, 2.4vw, 1.35rem);
  letter-spacing: 0.03em;
  color: #0f172a;
  text-align: center;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.koklerden-banner-text::before,
.koklerden-banner-text::after {
  content: "";
  flex: 1 1 auto;
  min-width: 42px;
  height: 1px;
  background: linear-gradient(90deg, rgba(15, 23, 42, 0.08), rgba(15, 23, 42, 0.25), rgba(15, 23, 42, 0.08));
}

@media (max-width: 700px) {
  .koklerden-banner-wrap {
    margin-top: 0.55rem;
    padding: 0.75rem 0.8rem 0.2rem;
  }

  .koklerden-banner-text {
    gap: 0.5rem;
    font-size: clamp(0.95rem, 4.8vw, 1.12rem);
    letter-spacing: 0.02em;
  }
}

.agenda-section {
  width: 100%;
  min-height: 300px;
  background-color: #fdfdfd;
  padding: 34px 20px;
}

main {
  flex: 1;
}

.agenda-inner {
  max-width: 1050px;
  margin: 0 auto;
}

.agenda-text {
  position: relative;
  font-weight: bold;
}

.agenda-text h2 {
  margin: 0 0 0.8rem;
  font-weight: bold;
}

.agenda-gundem {
  margin: 1.25rem 0 1.5rem;
  font-weight: normal;
}

.agenda-text .agenda-gundem > h2.gundem-section-heading,
p.gundem-page-kicker {
  margin: 0 0 0.85rem;
  font-size: clamp(1.4rem, 3.5vw, 1.95rem);
  font-weight: 800;
  color: #030712;
  letter-spacing: 0.02em;
}

.contact-card > p.gundem-page-kicker {
  margin-top: 0;
}

.press-article {
  background: #fff;
  border: 1px solid #dbe3ec;
  border-radius: 12px;
  padding: 1.15rem 1.2rem 1.25rem;
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.06);
  font-weight: normal;
}

.press-article__photo {
  margin: 0 0 1rem;
}

.press-article__photo img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
  object-fit: cover;
  max-height: min(56vh, 420px);
}

.press-article__title {
  margin: 0 0 0.85rem;
  font-size: clamp(1rem, 2.5vw, 1.22rem);
  line-height: 1.35;
  font-weight: 800;
  color: #0f172a;
  letter-spacing: 0.01em;
}

.press-article__lead {
  margin: 0 0 1rem;
  line-height: 1.58;
  color: #1e293b;
  font-weight: normal;
}

.press-article p {
  margin: 0 0 1rem;
  font-weight: normal;
  color: #334155;
  line-height: 1.58;
}

.press-article p:last-child {
  margin-bottom: 0;
}

.press-article__subhead {
  margin: 1.15rem 0 0.5rem;
  font-size: 1.03rem;
  font-weight: 700;
  color: #0f172a;
}

.press-article__quote {
  margin: 0 0 1rem;
  padding: 0.85rem 1rem;
  border-left: 4px solid #19a8bc;
  background: #f8fafc;
  border-radius: 0 8px 8px 0;
}

.press-article__quote p {
  margin: 0;
  font-style: italic;
  color: #1e293b;
}

.press-article__list {
  margin: 0.35rem 0 1rem;
  padding-left: 1.25rem;
  font-weight: normal;
}

.press-article__list li {
  margin-bottom: 0.5rem;
}

.press-article__byline {
  margin-top: 1rem !important;
  padding-top: 0.85rem;
  border-top: 1px solid #e2e8f0;
  font-size: 0.94rem;
  color: #475569;
}

.press-article--page .press-article__subhead {
  font-size: 1.06rem;
  margin-top: 1.25rem;
}

.gundem-empty {
  background: #fff;
  border: 1px dashed #c9d1dd;
  border-radius: 0.8rem;
  min-height: 130px;
  display: grid;
  place-items: center;
  color: #6b7280;
  font-weight: normal;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
}

.news-grid--horizontal {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  padding-bottom: 0.25rem;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.news-grid--horizontal::-webkit-scrollbar {
  display: none;
}

.news-card {
  background: #fff;
  border: 1px solid #dbe3ec;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.08);
}

.news-grid--horizontal .news-card {
  min-width: min(86vw, 320px);
  flex: 0 0 auto;
  scroll-snap-align: start;
}

/* Öne Çıkanlar: tek kart, tam sütun genişliği, belirgin çerçeve */
.featured-slider-wrap {
  width: 100%;
  max-width: 1050px;
  margin: 0 auto 0.25rem;
  padding: 0.85rem;
  border: 1px solid #dbe3ec;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 6px 24px rgba(15, 23, 42, 0.07);
}

.news-grid--horizontal.news-grid--featured {
  gap: 0;
  padding-bottom: 0;
}

.news-grid--horizontal.news-grid--featured .news-card {
  min-width: 100%;
  max-width: 100%;
  flex: 0 0 100%;
  scroll-snap-align: center;
  box-sizing: border-box;
}

.news-grid--horizontal.news-grid--featured .news-card img {
  height: clamp(200px, 32vw, 280px);
  object-fit: cover;
}

.news-grid--search {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.9rem;
}

.news-grid--search .news-card {
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(15, 23, 42, 0.06);
}

.news-grid--search .news-card-link {
  display: grid;
  grid-template-columns: 180px 1fr;
  align-items: stretch;
}

.news-grid--search .news-card img {
  height: 100%;
  min-height: 130px;
}

.news-grid--search .news-card-body {
  padding: 0.95rem 1rem;
}

.news-grid--search .news-card h3 {
  font-size: 1.02rem;
  margin-bottom: 0.4rem;
}

.news-grid--search .news-card p {
  margin: 0;
}

.news-card-link {
  display: block;
  color: inherit;
  text-decoration: none;
}

.news-card-link:hover .news-card h3 {
  color: var(--red);
}

.news-card img {
  width: 100%;
  height: 170px;
  object-fit: cover;
  display: block;
}

.news-card-body {
  padding: 0.9rem 1rem 1rem;
}

.news-card h3 {
  margin: 0 0 0.45rem;
  font-size: 1.1rem;
  color: #0f172a;
}

.news-card p {
  margin: 0 0 0.7rem;
  color: #334155;
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 0.45rem;
  margin: 0.8rem 0 0.9rem;
}

.slider-dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  border: 0;
  background: #cbd5e1;
  padding: 0;
  cursor: pointer;
}

.slider-dot.is-active {
  background: #0f172a;
}

.agenda-mitingler-link {
  display: block;
  width: 100%;
  padding: 0.95rem 1.25rem;
  font-weight: 700;
  font-size: 1.06rem;
  color: #0f172a;
  text-decoration: none;
  border-left: 3px solid transparent;
  border-radius: 8px;
  background: #f8fafc;
  transition: background 0.15s ease, border-color 0.15s ease;
}

.agenda-mitingler-link:hover {
  border-left-color: #19a8bc;
  background: #f1f5f9;
}


.contact-banner {
  background: #0f172a;
  color: #e2e8f0;
  padding: 0.65rem 0.9rem calc(0.65rem + var(--safe-bottom));
  font-size: 0.82rem;
  margin-top: auto;
}

.contact-banner-inner {
  max-width: 1050px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.65rem 1.1rem;
}

.contact-banner p {
  margin: 0;
  line-height: 1.3;
}

.contact-banner a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.contact-banner a:hover {
  color: #ffffff;
}

.contact-main {
  max-width: 1050px;
  margin: 0 auto;
  padding: 2rem 1.25rem 3rem;
}

.contact-main--promises {
  max-width: min(1180px, 100%);
  padding: 2.25rem clamp(1rem, 4vw, 2rem) 3.25rem;
}

.contact-card.contact-card--promises {
  padding: clamp(2rem, 5vw, 3rem) clamp(1.5rem, 4vw, 2.75rem);
}

.contact-card.contact-card--promises h1 {
  font-size: clamp(2rem, 4.5vw, 2.85rem);
  margin: 0 0 1.15rem;
  letter-spacing: 0.03em;
  line-height: 1.15;
}

.contact-card.contact-card--promises ul {
  margin: 0;
  padding-left: clamp(1.25rem, 3vw, 1.65rem);
}

.contact-card.contact-card--promises li {
  font-size: clamp(1.14rem, 2.4vw, 1.35rem);
  line-height: 1.82;
  font-weight: 560;
  margin-bottom: 0.55rem;
}

.contact-card.contact-card--promises li:last-child {
  margin-bottom: 0;
}

.contact-card {
  background: #ffffff;
  border: 1px solid #d9dee7;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.05);
  padding: 1.5rem;
}

.contact-card h1 {
  margin: 0 0 0.55rem;
  font-size: 2rem;
  color: #0f172a;
}

.contact-card-photo {
  margin: 0 0 1.25rem;
  text-align: center;
}

.contact-card-photo img {
  display: inline-block;
  max-width: min(340px, 100%);
  height: auto;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.08);
}

.contact-card p {
  line-height: 1.72;
  font-size: 1.08rem;
  font-weight: 550;
}

.party-logo-line,
.party-colors-line {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.party-logo-mini {
  width: 24px;
  height: 24px;
  object-fit: contain;
  border-radius: 5px;
}

.party-color-box {
  width: 18px;
  height: 18px;
  border-radius: 4px;
  border: 1px solid rgba(15, 23, 42, 0.25);
  display: inline-block;
}

.party-color-box--red {
  background: var(--red);
}

.party-color-box--turquoise {
  background: var(--turquoise);
}

.party-color-box--white {
  background: #ffffff;
}

.contact-card li {
  line-height: 1.72;
  font-size: 1.08rem;
  font-weight: 550;
}

.contact-intro {
  margin: 0 0 1rem;
  color: #4b5563;
}

.contact-lines {
  display: grid;
  gap: 0.6rem;
}

.contact-lines p {
  margin: 0;
}

.contact-lines a {
  color: #1f2937;
  text-decoration: none;
  font-weight: 600;
}

.contact-lines a:hover {
  color: #111827;
  text-decoration: underline;
}

.member-form {
  display: grid;
  gap: 0.55rem;
  margin-top: 0.7rem;
}

.member-form-label {
  font-weight: 700;
  color: #1f2937;
}

.member-form-input {
  width: 100%;
  border: 1px solid #cbd5e1;
  border-radius: 10px;
  padding: 0.7rem 0.8rem;
  font: inherit;
  color: #0f172a;
  background: #fff;
}

.member-form-input:focus {
  outline: 2px solid rgba(38, 185, 205, 0.3);
  border-color: #26b9cd;
}

.modern-dp {
  position: relative;
}

.modern-dp-combo {
  display: flex;
  align-items: stretch;
  width: 100%;
  min-height: 48px;
  border: 1px solid #cbd5e1;
  border-radius: 10px;
  background: #fff;
  overflow: hidden;
  transition: border-color 0.15s ease;
}

.modern-dp-combo:focus-within {
  outline: 2px solid rgba(38, 185, 205, 0.3);
  outline-offset: 0;
  border-color: #26b9cd;
}

.modern-dp-combo-input {
  flex: 1 1 auto;
  min-width: 0;
  border: 0;
  border-radius: 0;
  margin: 0;
  padding: 0.7rem 0.65rem 0.7rem 0.85rem;
  font: inherit;
  color: #0f172a;
  background: transparent;
  box-shadow: none;
}

.modern-dp-combo-input::placeholder {
  color: #94a3b8;
}

.modern-dp-combo-input:focus {
  outline: none;
}

.modern-dp-cal-btn {
  flex: 0 0 2.75rem;
  display: grid;
  place-items: center;
  margin: 0;
  padding: 0;
  border: 0;
  border-left: 1px solid #e2e8f0;
  border-radius: 0;
  background: transparent;
  color: #64748b;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease;
}

.modern-dp-cal-btn:hover {
  background: #f6fcff;
  color: #0e7490;
}

.modern-dp-cal-btn:focus-visible {
  outline: none;
}

.modern-dp-cal-btn:focus-visible .modern-dp-cal-icon {
  color: #0e7490;
}

.modern-dp-cal-icon {
  display: block;
}

.modern-dp-backdrop {
  position: fixed;
  inset: 0;
  z-index: 250;
  background: rgba(15, 23, 42, 0.2);
}

.modern-dp-panel {
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: min(360px, calc(100vw - 1.2rem));
  max-width: calc(100vw - 20px);
  z-index: 260;
  background: #fff;
  border-radius: 14px;
  border: 1px solid #cdebf1;
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.2);
  padding: 0.85rem;
}

.modern-dp-toolbar {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  margin-bottom: 0.65rem;
}

.modern-dp-nav {
  flex-shrink: 0;
  width: 2rem;
  height: 2rem;
  padding: 0;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  background: #fff;
  color: #0f172a;
  font-size: 1rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease;
}

.modern-dp-nav:hover {
  background: #edf9fc;
  border-color: #8fdbe5;
}

.modern-dp-select {
  flex: 1;
  min-width: 0;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 0.45rem 0.45rem;
  font: inherit;
  font-weight: 600;
  color: #0f172a;
  background: #f6fcff;
  cursor: pointer;
}

.modern-dp-select:focus {
  outline: 2px solid rgba(38, 185, 205, 0.3);
  border-color: var(--turquoise);
}

.modern-dp-select--year {
  flex: 0 0 5.2rem;
}

.modern-dp-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0.2rem;
  margin-bottom: 0.35rem;
  font-size: 0.72rem;
  font-weight: 700;
  color: #64748b;
  text-align: center;
}

.modern-dp-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0.25rem;
}

.modern-dp-day {
  aspect-ratio: 1;
  max-height: 2.45rem;
  border: 1px solid transparent;
  border-radius: 9px;
  background: #fff;
  font: inherit;
  font-weight: 600;
  font-size: 0.9rem;
  color: #0f172a;
  cursor: pointer;
  transition: background 0.12s ease, border-color 0.12s ease, color 0.12s ease;
}

.modern-dp-day:hover:not(:disabled) {
  background: #dff6fb;
  border-color: rgba(14, 116, 144, 0.35);
}

.modern-dp-day--muted {
  color: #94a3b8;
  font-weight: 500;
}

.modern-dp-day--today:not(.modern-dp-day--selected) {
  border-color: var(--turquoise);
}

.modern-dp-day--selected {
  background: #0e7490;
  color: #fff;
  border-color: #0c5f75;
}

.modern-dp-day--disabled,
.modern-dp-day:disabled {
  opacity: 0.35;
  cursor: not-allowed;
  background: #f1f5f9;
}

@media (max-width: 500px) {
  .modern-dp-panel {
    width: 100%;
  }
}

.member-form-submit {
  margin-top: 0.35rem;
  border: 0;
  border-radius: 999px;
  background: #0f172a;
  color: #fff;
  padding: 0.7rem 1.1rem;
  font-weight: 700;
  font-size: 0.96rem;
  cursor: pointer;
}

.member-form-submit:hover {
  background: #1e293b;
}

.member-popup {
  position: fixed;
  inset: 0;
  z-index: 320;
  background: rgba(15, 23, 42, 0.45);
  display: grid;
  place-items: center;
  padding: 1rem;
}

.member-popup[hidden] {
  display: none;
}

.member-popup-card {
  width: min(460px, 100%);
  background: #fff;
  border: 1px solid #dbe3ec;
  border-radius: 14px;
  box-shadow: 0 20px 40px rgba(2, 6, 23, 0.2);
  padding: 1.2rem;
}

.member-popup-card h2 {
  margin: 0;
  font-size: 1.2rem;
  color: #0f172a;
}

.member-popup-card p {
  margin: 0.6rem 0 1rem;
  color: #334155;
}

.member-popup-btn {
  border: 0;
  border-radius: 999px;
  background: #0f172a;
  color: #fff;
  font-weight: 700;
  padding: 0.62rem 1rem;
  cursor: pointer;
}

.member-popup-btn:hover {
  background: #1e293b;
}

.construction-wrap {
  max-width: 900px;
  margin: 0 auto;
  padding: 3.2rem 1.2rem 4rem;
}

.construction-card {
  background: #ffffff;
  border: 1px solid #dbe3ec;
  border-radius: 14px;
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.06);
  padding: 2rem 1.4rem;
  text-align: center;
}

.construction-icon {
  font-size: clamp(2.3rem, 6vw, 3.4rem);
  line-height: 1;
  margin-bottom: 0.7rem;
}

.construction-card h1 {
  margin: 0;
  font-size: clamp(1.35rem, 4.5vw, 2.1rem);
  color: #0f172a;
}

.construction-card p {
  margin: 0.85rem auto 0;
  max-width: 580px;
  color: #1f2937;
  font-size: clamp(1.02rem, 2.8vw, 1.18rem);
  line-height: 1.6;
  font-weight: 600;
}

.brand-main {
  max-width: 1050px;
  margin: 0 auto;
  padding: 2rem 1.2rem 3rem;
}

.brand-card {
  background: #ffffff;
  border: 1px solid #dce3ed;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
  padding: 1.4rem;
  text-align: center;
}

.brand-card h1 {
  margin: 0 0 0.55rem;
}

.brand-card h2 {
  margin: 1rem 0 0.6rem;
  font-size: 1.05rem;
  color: #0f172a;
  font-weight: 800;
}

.brand-card p {
  margin: 0 0 1.1rem;
  color: #475569;
  font-size: 1.08rem;
  font-weight: 550;
}

.brand-logo-wrap {
  display: grid;
  place-items: center;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 1rem;
  margin-bottom: 1rem;
}

.brand-logo-wrap img {
  display: block;
  width: min(100%, 520px);
  height: auto;
}

.brand-logo-wrap--meaning img {
  width: min(100%, 220px);
}

.brand-logo-wrap--dark {
  background:
    linear-gradient(135deg, #1f2937 0%, #334155 100%),
    repeating-linear-gradient(
      45deg,
      rgba(255, 255, 255, 0.05) 0,
      rgba(255, 255, 255, 0.05) 10px,
      rgba(0, 0, 0, 0.04) 10px,
      rgba(0, 0, 0, 0.04) 20px
    );
  border-color: #475569;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.brand-download-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #0f172a;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  padding: 0.68rem 1.2rem;
}

.brand-download-btn:hover {
  background: #1e293b;
}

.brand-download-btn--all {
  background: #1f2937;
}

.brand-download-btn--all:hover {
  background: #334155;
}

.brand-download-all-wrap {
  margin-top: 0.7rem;
  padding-top: 0;
  border-top: 0;
}

.brand-meaning {
  text-align: left;
  background: transparent;
  border: 0;
  border-radius: 0;
  padding: 0;
  margin-bottom: 1.1rem;
}

.brand-meaning h3 {
  margin: 1rem 0 0.45rem;
  color: #0f172a;
  font-size: 1.04rem;
  font-weight: 800;
}

.brand-meaning h4 {
  margin: 1rem 0 0.4rem;
  color: #0f172a;
  font-size: 1rem;
  font-weight: 800;
}

.brand-meaning p {
  margin: 0;
  padding: 0.35rem 0;
  border-bottom: 0;
  color: #334155;
}

.brand-meaning p:last-child {
  border-bottom: 0;
}

.legal-popup {
  position: fixed;
  inset: 0;
  z-index: 300;
  background: radial-gradient(circle at 20% 10%, rgba(38, 185, 205, 0.24), transparent 45%),
    radial-gradient(circle at 80% 0%, rgba(227, 9, 23, 0.22), transparent 40%),
    rgba(15, 23, 42, 0.62);
  display: grid;
  place-items: center;
  padding: 1.1rem;
}

.legal-popup[hidden] {
  display: none;
}

.legal-popup-card {
  width: min(700px, 100%);
  max-height: min(86vh, 760px);
  background: #ffffff;
  border-radius: 18px;
  border: 1px solid #e4e9f1;
  box-shadow: 0 26px 60px rgba(2, 6, 23, 0.28);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.legal-popup-head {
  padding: 1.15rem 1.35rem 1rem;
  border-bottom: 1px solid #edf1f7;
  background: linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
  text-align: center;
}

.legal-popup-head h2 {
  margin: 0;
  font-size: clamp(1.02rem, 2.8vw, 1.34rem);
  letter-spacing: 0.01em;
  color: #0f172a;
}

.legal-popup-body {
  padding: 1rem 1.35rem 0.95rem;
  overflow: auto;
  color: #0f172a;
  line-height: 1.62;
  font-size: 1rem;
  font-weight: 600;
  text-align: left;
}

.legal-popup-body p {
  margin: 0 0 0.7rem;
}

.legal-popup-body ul {
  margin: 0.1rem 0 0.9rem;
  padding-left: 1.2rem;
  list-style: disc;
  display: grid;
  gap: 0.45rem;
}

.legal-popup-body li {
  padding: 0;
  color: #0f172a;
  font-weight: 700;
}

.legal-popup-note {
  font-weight: 600;
  color: #0f172a;
  padding-top: 0.15rem;
}

.legal-popup-footer {
  padding: 0.95rem 1.35rem 1.15rem;
  border-top: 1px solid #edf1f7;
  background: #ffffff;
  display: flex;
  justify-content: center;
}

.legal-popup-btn {
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, #0f172a, #1e293b);
  color: #fff;
  padding: 0.68rem 1.18rem;
  font-weight: 600;
  font-size: 0.94rem;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.24);
}

.legal-popup-btn[disabled] {
  opacity: 0.45;
  cursor: not-allowed;
}

@media (max-width: 700px) {
  :root {
    --hero-h: 300px;
  }

  .top-panel {
    flex-direction: row;
    align-items: center;
  }

  .site-brand {
    font-size: 1.05rem;
  }

  .slide-menu-head {
    padding: 0.9rem 0.9rem 0.7rem;
  }

  .slide-menu-link,
  .slide-menu-accordion-trigger {
    font-size: 1rem;
  }

  .agenda-section {
    padding: 26px 14px;
  }

  .hero-section {
    height: clamp(95px, 24vw, 140px);
    min-height: 0;
    aspect-ratio: auto;
    background-size: 100% auto;
    background-position: center top;
    background-color: #e8ecf0;
  }

  .koklerden-banner-wrap {
    padding: 0.9rem 0.8rem 0.35rem;
  }

  .news-grid--search .news-card-link {
    grid-template-columns: 1fr;
  }

  .news-grid--search .news-card img {
    height: 170px;
  }

  /* Öne Çıkanlar kaydırıcı: telefonda daha kompakt */
  .featured-slider-wrap {
    padding: 0.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(15, 23, 42, 0.06);
  }

  .news-grid--horizontal.news-grid--featured .news-card img {
    height: clamp(110px, 34vw, 175px);
  }

  .news-grid--horizontal.news-grid--featured .news-card-body {
    padding: 0.6rem 0.7rem 0.72rem;
  }

  /* Mobilde yalnızca başlık; özet masaüstünde kalır */
  .news-grid--horizontal.news-grid--featured .news-card-body > p {
    display: none;
  }

  .news-grid--horizontal.news-grid--featured .news-card h3 {
    font-size: 0.95rem;
    line-height: 1.28;
    margin-bottom: 0;
  }

  .agenda-text .slider-dots {
    margin: 0.45rem 0 0.55rem;
    gap: 0.35rem;
  }

  .agenda-text .slider-dot {
    width: 7px;
    height: 7px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .slide-menu-backdrop,
  .slide-menu-panel,
  .accordion-chevron,
  .slide-menu-toggle {
    transition: none !important;
  }
}
