:root {
  --bg: #f4f7fb;
  --surface: #ffffff;
  --primary: #0f4c81;
  --secondary: #1f8c6d;
  --text: #1c2430;
  --muted: #5d6a7a;
  --border: #d8e0ea;
  --radius: 16px;
  --shadow: 0 12px 35px rgba(15, 76, 129, 0.1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--text);
  background: radial-gradient(circle at top right, #d7edf9, var(--bg) 40%);
  line-height: 1.7;
  overflow-x: hidden;
}

a {
  color: var(--primary);
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

.site-title a,
.site-title a:hover,
.site-title a:focus {
  text-decoration: none;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.section-shell {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.section-shell-fluid {
  width: min(1380px, calc(100% - 28px));
  margin: 0 auto;
}

.narrow {
  width: min(820px, 92%);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 120;
  background: transparent;
  border-bottom: 0;
  backdrop-filter: none;
  transition: background 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.header-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 24px;
  min-height: 84px;
  width: min(1380px, calc(100% - 28px));
  margin: 14px auto;
  padding: 0 28px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 12px 30px rgba(16, 36, 74, 0.14);
  transition: width 0.35s ease, margin 0.35s ease, border-radius 0.35s ease, box-shadow 0.35s ease, padding 0.35s ease, min-height 0.35s ease, background 0.35s ease;
  border: 1px solid rgba(235, 243, 252, 0.52);
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(7px);
}

.site-header.is-scrolled .header-inner {
  width: 100%;
  margin: 0;
  min-height: 72px;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  padding: 0 28px;
  border: 0;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

/* Keep announcement archive header/footer identical with other pages. */
.post-type-archive-duyuru .site-header {
  background: transparent;
  border-bottom: 0;
  backdrop-filter: none;
}

.post-type-archive-duyuru .site-header .header-inner {
  width: min(1380px, calc(100% - 28px));
  margin: 14px auto;
  min-height: 84px;
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(16, 36, 74, 0.14);
  padding: 0 28px;
  border: 1px solid rgba(235, 243, 252, 0.52);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.post-type-archive-duyuru .site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(7px);
}

.post-type-archive-duyuru .site-header.is-scrolled .header-inner {
  width: 100%;
  margin: 0;
  min-height: 72px;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  padding: 0 28px;
  border: 0;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.post-type-archive-duyuru .site-footer {
  margin-top: 30px;
  padding-top: 38px;
  background: #0d1834;
}

.branding {
  flex-shrink: 0;
}

.primary-nav {
  margin-left: auto;
  min-width: 0;
}

.custom-logo {
  width: auto;
  max-height: 64px;
}

.site-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text);
  white-space: nowrap;
}

.primary-nav .menu {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 4px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.primary-nav .menu li a {
  display: block;
  white-space: nowrap;
  padding: 10px 12px;
  border-radius: 10px;
  color: var(--text);
  font-weight: 600;
  font-size: 0.92rem;
}

.primary-nav .menu li {
  position: relative;
}

.primary-nav .menu .sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 200px;
  background: rgba(255, 255, 255, 0.96);
  border-radius: 14px;
  box-shadow: 0 12px 30px rgba(16, 36, 74, 0.14);
  border: 1px solid rgba(235, 243, 252, 0.8);
  padding: 8px;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease;
  z-index: 200;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.primary-nav .menu li:hover > .sub-menu,
.primary-nav .menu li:focus-within > .sub-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.primary-nav .menu .sub-menu li {
  list-style: none;
  padding: 0;
  margin: 0;
}

.primary-nav .menu .sub-menu li a {
  display: block;
  padding: 10px 14px;
  color: var(--text);
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 8px;
  white-space: nowrap;
  transition: background 0.18s ease, color 0.18s ease;
}

.primary-nav .menu .sub-menu li a:hover {
  background: #e9f1f8;
  color: var(--primary);
}
.primary-nav .menu li a:hover,
.primary-nav .menu li.current-menu-item a {
  color: var(--primary);
  background: #e9f1f8;
  text-decoration: none;
}

.menu-toggle {
  display: none;
  background: none;
  border: 0;
  padding: 8px;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  margin: 5px 0;
}

.hero-modern {
  position: relative;
  overflow: hidden;
  padding: 0;
  background: linear-gradient(180deg, #b9d8f0 0%, #c8e0f4 100%);
}

body {
  padding-top: 0;
}

.home .hero-modern {
  padding-top: 0;
}

.hero-modern-inner {
  width: min(1380px, calc(100% - 36px));
  margin: 0 auto;
  min-height: 700px;
}

.home .site-header {
  background: transparent;
  border-bottom: 0;
  backdrop-filter: none;
}

.home .header-inner {
  background:
    linear-gradient(180deg, rgba(24, 31, 44, 0.56) 0%, rgba(17, 23, 34, 0.42) 100%);
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow:
    0 18px 40px rgba(6, 10, 18, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
}

.home .site-header.is-scrolled {
  background: transparent;
  border-bottom: 0;
  backdrop-filter: none;
}

.home .site-header.is-scrolled .header-inner {
  background:
    linear-gradient(180deg, rgba(24, 31, 44, 0.62) 0%, rgba(17, 23, 34, 0.48) 100%);
  border: 1px solid rgba(255, 255, 255, 0.24);
  box-shadow:
    0 18px 40px rgba(6, 10, 18, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(20px) saturate(145%);
  -webkit-backdrop-filter: blur(20px) saturate(145%);
}

.home .site-title,
.home .primary-nav .menu li a {
  color: rgba(244, 247, 252, 0.94);
}

.home .primary-nav .menu li a:hover,
.home .primary-nav .menu li.current-menu-item a {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
  text-decoration: none;
}

.home .menu-toggle span {
  background: #ffffff;
}

.home .hero-modern-inner {
  width: 100%;
  min-height: 100vh;
}

.home .hero-slider {
  padding-bottom: 0;
}

.home .hero-scene {
  min-height: 100vh;
  border-radius: 0;
  border-left: 0;
  border-right: 0;
  border-top: 0;
  box-shadow: none;
}

.home .hero-copy {
  padding-top: 270px;
}

.home .hero-side-meta {
  right: 46px;
  bottom: 118px;
}

.home-visual-modern .header-inner {
  min-height: 84px;
  width: 100%;
  margin: 0;
  padding: 0 28px;
  border-radius: 0;
  background: #ffffff;
  border: 0;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.home.home-visual-modern {
  background: #ffffff;
}

.home-visual-modern .site-title,
.home-visual-modern .primary-nav .menu li a {
  color: #1f2540;
}

.home-visual-modern .menu-toggle span {
  background: #1f2540;
}

.home-visual-modern .site-header,
.home-visual-modern .site-header.is-scrolled {
  position: relative;
  background: #ffffff;
  border-bottom: 0;
  box-shadow: none;
  backdrop-filter: none;
}

.home-visual-modern .site-header.is-scrolled .header-inner {
  background: #ffffff;
  border: 0;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.home-visual-modern .primary-nav .menu {
  gap: 10px;
}

.home-visual-modern .primary-nav .menu li a {
  font-weight: 500;
  padding: 8px 10px;
  border-radius: 0;
}

.home-visual-modern .primary-nav .menu li a:hover,
.home-visual-modern .primary-nav .menu li.current-menu-item a {
  color: #0f1322;
  background: transparent;
}

.home.home-visual-modern .hero-scene {
  height: calc(100vh - 140px);
  min-height: 680px;
  margin: 0 16px 0;
  border-radius: 34px;
  border: 0;
  background: #ffffff;
  box-shadow: none;
}

.home.home-visual-modern .hero-slider {
  padding-bottom: 0;
  background: #ffffff;
}

.home.home-visual-modern .hero-scene-overlay {
  background:
    linear-gradient(90deg, rgba(8, 14, 24, 0.24) 0%, rgba(8, 14, 24, 0.06) 48%, rgba(8, 14, 24, 0.2) 100%),
    linear-gradient(180deg, rgba(12, 18, 28, 0.04) 0%, rgba(12, 18, 28, 0.18) 100%);
}

.home.home-visual-modern .hero-modern {
  padding-top: 0;
  background: #ffffff;
}

.home.home-visual-modern .hero-modern-inner {
  height: calc(100vh - 84px);
  min-height: 698px;
  width: 100%;
  margin: 0;
}

.home.home-visual-modern .hero-copy {
  position: relative;
  z-index: 3;
  min-height: inherit;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  text-align: left;
  max-width: min(1080px, calc(100% - 240px));
  margin: 0;
  padding: 0 0 0 54px;
  padding-top: 20vh;
}

.home.home-visual-modern .hero-kicker,
.home.home-visual-modern .hero-title,
.home.home-visual-modern .hero-text {
  color: #ffffff;
}

.home.home-visual-modern .hero-kicker {
  margin: 0 0 18px;
}

.home.home-visual-modern .hero-actions {
  justify-content: flex-start;
  margin-top: 34px;
}

.home.home-visual-modern .hero-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  justify-content: flex-start;
  border-radius: 0;
  background: transparent;
  color: #ffffff;
  font-weight: 500;
  padding: 0;
  min-width: 0;
  letter-spacing: 0;
  text-transform: none;
  box-shadow: none;
  font-size: 1.1rem;
  text-decoration: none;
}

.home.home-visual-modern .hero-btn-primary::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.34);
}

.home.home-visual-modern .hero-btn-primary:hover {
  color: rgba(255, 255, 255, 0.84);
  text-decoration: none;
}

.home.home-visual-modern .hero-copy h1,
.home.home-visual-modern .hero-title {
  max-width: 100%;
  font-size: clamp(2.8rem, 3vw, 5.2rem);
  line-height: 0.92;
  letter-spacing: -0.05em;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: calc(0.92em * 2);
  margin: 0;
  width: 100%;
  word-break: break-word;
  text-overflow: ellipsis;
}

.home.home-visual-modern .hero-text {
  margin: 24px 0 0;
  max-width: 520px;
  font-size: 0.98rem;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.8;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: calc(1.8em * 3);
}

.home.home-visual-modern .hero-side-meta {
  bottom: 46px;
  left: 50%;
  right: auto;
  transform: translateX(-50%);
}

.home.home-visual-modern .hero-side-count {
  grid-template-columns: auto minmax(140px, 1fr) auto;
}

.home.home-visual-modern .hero-side-current,
.home.home-visual-modern .hero-side-total {
  color: #ffffff;
}

.home.home-visual-modern .hero-side-line {
  background: rgba(255, 255, 255, 0.24);
}

.home.home-visual-modern .hero-slider-nav {
  color: #ffffff;
  z-index: 9;
  top: auto;
  bottom: 12%;
  transform: none;
}

.home.home-visual-modern .hero-slider-nav:hover {
  opacity: 0.7;
  transform: translateY(-2px);
}

.hero-slider {
  padding-bottom: 22px;
}

.hero-slider-track {
  display: grid;
}

.hero-slider .slide {
  grid-area: 1 / 1;
  min-height: 700px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translate3d(64px, 0, 0) scale(0.985);
  transition: opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1), transform 0.9s cubic-bezier(0.22, 1, 0.36, 1), visibility 0.9s ease;
}

.hero-slider .slide.is-before {
  transform: translate3d(-64px, 0, 0) scale(0.985);
}

.hero-slider .slide.is-after {
  transform: translate3d(64px, 0, 0) scale(0.985);
}

.hero-slider .slide.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate3d(0, 0, 0) scale(1);
}

.hero-slider .slide.is-active .hero-copy {
  animation: heroSlideCopyIn 0.85s ease both;
}

.hero-slider .slide.is-active .hero-scene-media img {
  animation: heroSlideVisualIn 1.05s ease both;
}

.hero-slider-nav {
  position: absolute;
  bottom: 58px;
  top: auto;
  transform: none;
  width: auto;
  height: auto;
  border-radius: 0;
  border: 0;
  background: transparent;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 8;
  padding: 10px;
  transition: transform 180ms ease, opacity 180ms ease;
}

.hero-slider-prev {
  left: 52px;
}

.hero-slider-next {
  right: 52px;
}

.hero-slider-nav:hover {
  opacity: 0.84;
  transform: translateY(-2px);
}

.hero-slider-nav span {
  font-size: 4.25rem;
  font-weight: 300;
  line-height: 1;
}

.hero-slider-dots {
  display: none;
}

.hero-slider-dot {
  display: none;
}

.hero-slider-dot.is-active {
  display: none;
}

@keyframes heroSlideCopyIn {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroSlideVisualIn {
  from {
    opacity: 0;
    transform: scale(1.1);
  }
  to {
    opacity: 1;
    transform: scale(1.04);
  }
}

.hero-scene {
  position: relative;
  min-height: 700px;
  border-radius: 28px;
  overflow: hidden;
  background: #0a1017;
  border: 2px solid rgba(12, 18, 27, 0.9);
  box-shadow: 0 28px 60px rgba(8, 14, 24, 0.22);
}

.hero-scene-media {
  position: absolute;
  inset: 0;
}

.hero-scene-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transform: translate3d(0, 0, 0) scale(1.04);
  will-change: transform;
  transition: transform 0.22s ease-out;
}

.hero-scene-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 12, 18, 0.86) 0%, rgba(8, 12, 18, 0.42) 42%, rgba(8, 12, 18, 0.22) 100%),
    linear-gradient(180deg, rgba(8, 12, 18, 0.08) 0%, rgba(8, 12, 18, 0.48) 100%);
}

.hero-copy {
  position: relative;
  z-index: 3;
  max-width: min(1080px, calc(100% - 240px));
  padding: 0 0 0 54px;
  min-height: inherit;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding-top: 31vh;
}

.hero-kicker {
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.98rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero-copy h1,
.hero-title {
  margin: 0;
  max-width: 100%;
  font-size: clamp(2.8rem, 3vw, 5.2rem);
  line-height: 0.92;
  letter-spacing: -0.05em;
  color: #ffffff;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  word-break: break-word;
  width: 100%;
}

.hero-text {
  margin: 24px 0 0;
  max-width: 520px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.98rem;
  line-height: 1.8;
}

.hero-actions {
  margin-top: 34px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.hero-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  justify-content: flex-start;
  border-radius: 0;
  background: transparent;
  color: #ffffff;
  font-weight: 500;
  padding: 0;
  min-width: 0;
  letter-spacing: 0;
  text-transform: none;
  box-shadow: none;
  font-size: 1.1rem;
  text-decoration: none;
}

.hero-btn-primary::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.34);
}

.hero-btn-primary:hover {
  color: rgba(255, 255, 255, 0.84);
  text-decoration: none;
}

.hero-side-meta {
  position: absolute;
  left: 50%;
  right: auto;
  bottom: 56px;
  transform: translateX(-50%);
  z-index: 3;
  width: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.hero-side-count {
  margin: 0;
  display: grid;
  grid-template-columns: auto minmax(180px, 22vw) auto;
  align-items: center;
  gap: 18px;
  color: rgba(255, 255, 255, 0.84);
  font-weight: 700;
}

.hero-side-current {
  font-size: 1.5rem;
  line-height: 1;
  color: #ffffff;
  text-shadow: 0 0 18px rgba(255, 255, 255, 0.18);
}

.hero-side-line {
  display: block;
  position: relative;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.22);
}

.hero-side-line::after {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: var(--slider-progress, 33%);
  border-radius: inherit;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.72) 0%, rgba(255, 255, 255, 0.98) 100%);
  box-shadow: 0 0 14px rgba(255, 255, 255, 0.16);
  transition: width 0.75s cubic-bezier(0.22, 1, 0.36, 1);
}

.hero-side-total {
  position: static;
  font-size: 1.15rem;
  line-height: 1.1;
  color: rgba(255, 255, 255, 0.48);
}

.hero-side-total::before {
  display: none;
}

.section {
  padding: 84px 0;
}

body:not(.home) .site-main > .section:first-child {
  padding-top: 44px;
}

body:not(.home) .site-main {
  position: relative;
  overflow: hidden;
  padding-top: 0px;
}

body.single-yonetim_uyesi .site-main {
  overflow: visible;
}

body.single-yonetim_uyesi {
  background: radial-gradient(circle at top right, #d7edf9, var(--bg) 40%);
}

body:not(.home) .site-main::before {
  display: none;
}

.section h2 {
  margin-top: 0;
  font-size: clamp(1.6rem, 2.2vw, 2rem);
}

.section-title {
  margin-top: 0;
  margin-bottom: 34px;
  font-size: clamp(2.1rem, 3vw, 3rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
  color: #111321;
}

.home .section-title-modern {
  position: relative;
  display: inline-block;
  padding-top: clamp(1rem, 2vw, 1.5rem);
  isolation: isolate;
}

.home .section-title-modern::before {
  content: attr(data-title);
  position: absolute;
  left: 0;
  top: calc(-1 * clamp(0.9rem, 1.8vw, 1.25rem));
  z-index: -1;
  font-size: clamp(2.9rem, 8vw, 6.8rem);
  line-height: 0.9;
  letter-spacing: -0.08em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(173, 184, 204, 0.62);
  opacity: 0.95;
  pointer-events: none;
  text-transform: uppercase;
  white-space: nowrap;
}

.home .section-title-modern.section-title-modern-only {
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.home .section-title-modern + * {
  position: relative;
  z-index: 1;
}

.js-enabled .reveal-on-scroll {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}

.js-enabled .reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.about-section {
  padding-bottom: 50px;
  background: linear-gradient(180deg, color-mix(in srgb, var(--section-bg, #dceaf7) 88%, #ffffff 12%) 0%, var(--section-bg, #dceaf7) 100%);
}

.about-story {
  display: grid;
  gap: 24px;
}

.about-story-no-media {
  grid-template-columns: 1fr;
}

.about-top {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.2fr);
  gap: 28px;
  align-items: stretch;
}

.about-media {
  min-height: 100%;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 24px 54px rgba(17, 40, 82, 0.12);
}

.about-media img {
  width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
  display: block;
}

.about-copy {
  display: block;
}

.about-content {
  padding: 28px 30px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.4);
  border: 0;
  box-shadow: none;
}

.about-tone {
  background: transparent;
}

.about-content p {
  margin: 0 0 16px;
  color: var(--section-text, #284467);
  font-size: 1.08rem;
  line-height: 1.82;
}

.about-content p:last-child {
  margin-bottom: 0;
}

.stats-showcase-section {
  padding-top: var(--stats-section-space-top, 18px);
  padding-bottom: var(--stats-section-space-bottom, 20px);
  background: var(--stats-section-bg, #f7f5ef);
}

.stats-showcase {
  display: grid;
  grid-template-columns: minmax(280px, 0.92fr) minmax(0, 1.08fr);
  gap: 48px;
  align-items: center;
}

.stats-showcase-copy {
  display: grid;
  gap: 18px;
  max-width: 520px;
}

.stats-showcase-text {
  margin: 0;
  color: #51555f;
  font-size: 1.02rem;
  line-height: 1.7;
  max-width: 50ch;
}

.stats-showcase-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(150px, 1fr));
  gap: 22px 24px;
  align-items: start;
}

.stats-showcase-card {
  position: relative;
  min-height: 178px;
  padding: 24px 22px;
  border-radius: 24px;
  background: #151246;
  color: var(--home-stats-text, #ffffff);
  box-shadow: 22px 24px 34px rgba(16, 28, 56, 0.22);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  transition: transform 220ms ease, box-shadow 220ms ease, filter 220ms ease;
  will-change: transform;
}

.stats-showcase-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.12) 0%, transparent 34%, transparent 100%);
  opacity: 0;
  transition: opacity 220ms ease;
  pointer-events: none;
}

.stats-showcase-card::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 12px;
  height: 100%;
  background: color-mix(in srgb, var(--home-stats-bg, #4178f0) 88%, #ffffff 12%);
}

.stats-showcase-card:nth-child(1),
.stats-showcase-card:nth-child(3) {
  transform: translateY(54px);
}

.stats-showcase-card:nth-child(2),
.stats-showcase-card:nth-child(4) {
  transform: translateY(-54px);
}

.stats-showcase-card:nth-child(1):hover,
.stats-showcase-card:nth-child(3):hover {
  transform: translateY(46px) scale(1.02) rotateX(3deg) rotateY(-3deg);
  box-shadow: 28px 34px 42px rgba(16, 28, 56, 0.28);
  filter: saturate(1.08);
}

.stats-showcase-card:nth-child(2):hover,
.stats-showcase-card:nth-child(4):hover {
  transform: translateY(-62px) scale(1.02) rotateX(3deg) rotateY(-3deg);
  box-shadow: 28px 34px 42px rgba(16, 28, 56, 0.28);
  filter: saturate(1.08);
}

.stats-showcase-card:hover::before {
  opacity: 1;
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.section-link {
  font-weight: 600;
}

.card-grid {
  display: grid;
  gap: 28px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.announcements {
  background: var(--section-bg, #eef2f7);
  padding-top: calc(72px + var(--announcements-space-top, 0px));
  padding-bottom: calc(72px + var(--announcements-space-bottom, 0px));
}

.announcements-title {
  margin-top: 0;
  font-size: clamp(2rem, 3.2vw, 2.6rem);
  letter-spacing: -0.01em;
  margin-bottom: 0;
  color: var(--section-text, #111321);
}

.announcement-grid {
  display: grid;
  gap: 28px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.announcement-grid-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.duyurular-archive {
  padding-top: 44px;
}

.page-hero,
.duyurular-hero {
  position: relative;
  margin: 0 auto 44px;
  max-width: min(1120px, 100%);
  padding: 0;
  border-radius: 34px;
  background: transparent;
  border: 0 !important;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  text-align: center;
}

.page-hero-kicker,
.duyurular-kicker {
  margin: 0 0 14px;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #2f70de;
  text-align: center;
}

.page-hero-title,
.duyurular-title {
  margin: 0 auto;
  display: inline-block;
  position: relative;
  padding-bottom: 26px;
  font-size: clamp(3rem, 5vw, 5rem);
  line-height: 0.96;
  letter-spacing: -0.05em;
  color: #111321;
}

.page-hero-title::after,
.duyurular-title::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: min(180px, 48vw);
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(47, 112, 222, 0.08) 0%, rgba(47, 112, 222, 0.82) 50%, rgba(47, 112, 222, 0.08) 100%);
  box-shadow: 0 0 18px rgba(47, 112, 222, 0.18);
}

.page-hero-intro,
.duyurular-intro {
  margin: 0 auto;
  max-width: 760px;
  color: #35557f;
  display: none;
}

.duyurular-pagination .navigation.pagination {
  margin-top: 22px;
}

.duyurular-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  margin-right: 8px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid #cfdbea;
  background: #fff;
  color: #16305c;
  font-weight: 600;
  text-decoration: none;
}

.duyurular-pagination .page-numbers.current,
.duyurular-pagination .page-numbers:hover {
  background: #2f70de;
  border-color: #2f70de;
  color: #fff;
}

.announcements-cta {
  margin-top: var(--announcements-button-margin-top, 22px);
  display: flex;
  justify-content: flex-end;
}

.announcements-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 150px;
  height: var(--announcements-button-height, 48px);
  padding: 0 26px;
  border-radius: 999px;
  background: var(--announcements-button-color, #111321);
  border: 1px solid var(--announcements-button-color, #111321);
  color: var(--announcements-button-text-color, #ffffff);
  font-weight: 700;
  box-shadow: 0 14px 28px rgba(17, 19, 33, 0.14);
  text-decoration: none;
}

.announcements-btn:hover {
  background: color-mix(in srgb, var(--announcements-button-color, #111321) 82%, #ffffff 18%);
  border-color: color-mix(in srgb, var(--announcements-button-color, #111321) 82%, #ffffff 18%);
  text-decoration: none;
}

.announcement-card {
  background: #ffffff;
  border-radius: 36px;
  border: 1px solid var(--border);
  box-shadow: 0 16px 34px rgba(16, 36, 74, 0.06);
  overflow: hidden;
}

.announcement-grid-4 {
  gap: 22px;
}

.announcement-grid-4 .announcement-thumb {
  height: 220px;
}

.announcement-grid-4 .announcement-body {
  padding: 22px 22px 24px;
  min-height: 132px;
}

.announcement-grid-4 .announcement-body h3 {
  font-size: clamp(1.1rem, 1.2vw, 1.35rem);
  line-height: 1.08;
}

.announcement-grid-4 .meta {
  margin-bottom: 10px;
  font-size: 0.74rem;
}

.announcement-thumb-link {
  display: block;
  text-decoration: none;
}

.announcement-thumb {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
}

.announcement-thumb-empty {
  background: linear-gradient(160deg, #d8e7f5, #e8f6f1);
}

.announcement-body {
  padding: 30px 34px 36px;
  min-height: 180px;
}

.announcement-body h3 {
  margin: 0;
  font-size: clamp(1.42rem, 1.8vw, 2rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.announcement-body h3 a {
  color: #111321;
  text-decoration: none;
}

.announcement-body h3 a:hover {
  text-decoration: none;
  color: #2f70de;
}

.announcement-body > p:not(.meta) {
  display: none;
}

.announcement-next {
  padding-top: 54px;
}

.announcement-next-title {
  margin: 0 0 28px;
  text-align: center;
  font-size: clamp(2.4rem, 4.2vw, 4.2rem);
  line-height: 0.98;
  letter-spacing: -0.05em;
  color: #111321;
}

.announcement-grid-next {
  margin-top: 0;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.announcement-grid-next .announcement-thumb {
  height: 190px;
}

.announcement-grid-next .announcement-body {
  padding: 20px 22px 22px;
  min-height: 118px;
}

.announcement-grid-next .announcement-body h3 {
  font-size: clamp(1.12rem, 1.25vw, 1.45rem);
  line-height: 1.08;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.card {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 28px;
  border: 1px solid rgba(222, 229, 239, 0.9);
  padding: 30px 32px;
  box-shadow: 0 18px 36px rgba(16, 36, 74, 0.08);
}

.card h3,
.card h2 {
  margin-top: 0;
  margin-bottom: 12px;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: #111321;
}

.meta {
  margin: 0 0 16px;
  color: #656d7a;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.01em;
}

.sponsor-grid {
  display: grid;
  gap: 22px 34px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: center;
}

.sponsor-item {
  min-height: 90px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 0;
}

.sponsor-item img {
  max-width: 100%;
  max-height: 48px;
  width: auto;
  height: auto;
  display: block;
  filter: saturate(0) contrast(1.05) brightness(0.15);
  opacity: 0.98;
}

.sponsor-item a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.sponsor-item-clean {
  min-height: 84px;
}

.sponsor-grid-clean {
  margin-top: 28px;
}

.stats-section {
  padding-top: 36px;
}

.stats-value {
  font-size: clamp(2.8rem, 5vw, 4.6rem);
  line-height: 0.95;
  font-weight: 800;
  letter-spacing: -0.05em;
}

.stats-label {
  margin-top: 12px;
  font-size: 1.24rem;
  line-height: 1.2;
  color: var(--home-stats-text, rgba(255, 255, 255, 0.92));
  font-style: normal;
  max-width: 9ch;
}

.timeline-section {
  position: relative;
  padding: 38px 0 12px;
  background:
    repeating-linear-gradient(160deg, rgba(255, 255, 255, 0.3) 0 2px, transparent 2px 26px),
    linear-gradient(270deg, color-mix(in srgb, var(--section-bg, #eef2f7) 88%, #dfe8f2 12%) 0%, var(--section-bg, #eef2f7) 38%, color-mix(in srgb, var(--section-bg, #eef2f7) 72%, #ffffff 28%) 100%);
}

.timeline-section .container {
  position: relative;
  z-index: 1;
}

.timeline-head {
  display: grid;
  gap: 12px;
  justify-items: start;
  text-align: left;
  margin-top: 8px;
  margin-bottom: 30px;
}

.timeline-section .section-title {
  color: var(--section-text, #101215);
}

.home .timeline-section .section-title-modern::before {
  -webkit-text-stroke: 1px rgba(130, 154, 187, 0.42);
}

.timeline-intro {
  max-width: 520px;
  margin: 0;
  color: color-mix(in srgb, var(--section-text, #101215) 68%, #ffffff 32%);
  font-size: 0.98rem;
  line-height: 1.7;
}

.timeline-scroll {
  overflow-x: auto;
  overflow-y: hidden;
  padding: 6px 0 18px;
  overscroll-behavior-x: contain;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: rgba(46, 68, 102, 0.35) rgba(0, 0, 0, 0);
}

.timeline-scroll::-webkit-scrollbar {
  height: 10px;
}

.timeline-scroll::-webkit-scrollbar-track {
  background: transparent;
}

.timeline-scroll::-webkit-scrollbar-thumb {
  background: rgba(46, 68, 102, 0.3);
  border-radius: 999px;
}

.timeline-list {
  position: relative;
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(230px, 280px);
  gap: 40px;
  min-width: max-content;
  padding: 0 23px 0;
}

.timeline-list::before {
  content: "";
  position: absolute;
  left: 32px;
  right: 32px;
  top: 50%;
  height: 1px;
  transform: translateY(-50%);
  background: rgba(126, 110, 92, 0.34);
}

.timeline-item {
  position: relative;
  min-height: 540px;
  padding-left: 50px;
}

.timeline-item-top {
  padding-bottom: 276px;
}

.timeline-item-bottom {
  padding-top: 276px;
}

.timeline-marker {
  position: absolute;
  left: 0;
  top: 50%;
  width: 18px;
  height: 18px;
  transform: translateY(-50%);
  border-radius: 999px;
  background: #fff8f0;
  border: 2px solid var(--timeline-year-color, #234f86);
  box-shadow: 0 0 0 8px rgba(247, 240, 231, 0.96);
  z-index: 2;
}

.timeline-stem {
  position: absolute;
  left: 8px;
  width: 1px;
  background: rgba(126, 110, 92, 0.42);
}

.timeline-item-top .timeline-stem {
  top: calc(50% - 154px);
  height: 142px;
}

.timeline-item-bottom .timeline-stem {
  top: 50%;
  height: 142px;
}

.timeline-entry-year {
  position: absolute;
  left: -25px;
  transform: rotate(-90deg);
  transform-origin: left top;
  white-space: nowrap;
  font-size: 2rem;
  line-height: 1;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--timeline-year-color, #234f86);
}

.timeline-item-top .timeline-entry-year {
  top: calc(56% - 170px);
}

.timeline-item-bottom .timeline-entry-year {
  top: calc(50% + 186px);
}

.timeline-card {
  position: absolute;
  left: 42px;
  right: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
}

.timeline-item-top .timeline-card {
  bottom: calc(50% + 42px);
}

.timeline-item-bottom .timeline-card {
  top: calc(50% + 42px);
}

.timeline-media {
  margin-bottom: 12px;
  overflow: hidden;
  border-radius: 0;
}

.timeline-media img {
  display: block;
  width: 100%;
  height: 156px;
  object-fit: cover;
}

.timeline-card-body {
  display: grid;
  gap: 8px;
}

.timeline-place {
  margin: 0;
  color: #8a745f;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.timeline-title {
  margin: 0;
  font-size: 1.08rem;
  line-height: 1.22;
  color: #24201b;
}

.timeline-text {
  margin: 0;
  color: #5b5046;
  font-size: 0.92rem;
  line-height: 1.62;
}

.page-content {
  background: transparent;
  border: 0;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
}

.page-content > *:not(.page-hero):not(.page-image) {
  max-width: none;
  margin-left: auto;
  margin-right: auto;
}

.page-content > p,
.page-content > ul,
.page-content > ol,
.page-content > blockquote,
.page-content > h2,
.page-content > h3,
.page-content > h4 {
  color: #374155;
}

.page-content > h2,
.page-content > h3,
.page-content > h4 {
  color: #111321;
  letter-spacing: -0.03em;
  line-height: 1.04;
}

.page-content > h2 {
  font-size: clamp(2rem, 3vw, 3rem);
  margin-top: 48px;
}

.page-content > h3 {
  font-size: clamp(1.5rem, 2.2vw, 2.1rem);
  margin-top: 36px;
}

.page-content > p,
.page-content li,
.page-content blockquote {
  font-size: 1.08rem;
  line-height: 1.82;
}

.page-title {
  margin: 0 0 30px;
  font-size: clamp(1.9rem, 3.2vw, 3rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: #162547;
}

.gallery-intro {
  margin: 0 0 20px;
  color: #35557f;
  max-width: 760px;
}

.gallery-album-grid {
  display: grid;
  gap: 28px 32px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: start;
}

.gallery-album-link {
  display: grid;
  grid-template-rows: minmax(280px, 320px) auto;
  color: inherit;
  text-decoration: none;
  position: relative;
  min-height: 0;
  padding: 14px;
  border-radius: 32px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 24px 48px rgba(16, 36, 74, 0.1);
  transform-style: preserve-3d;
  will-change: transform;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.gallery-album-media {
  position: relative;
  background: linear-gradient(160deg, #d8e7f5, #e8f6f1);
  border-radius: 26px;
  overflow: hidden;
}

.gallery-album-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(14, 19, 29, 0.06) 0%, rgba(14, 19, 29, 0.18) 46%, rgba(14, 19, 29, 0.76) 100%);
}

.gallery-album-media img,
.gallery-card-placeholder {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.gallery-album-body {
  position: relative;
  z-index: 2;
  padding: 18px 10px 6px;
  color: #1a2234;
  transform: translate3d(0, 0, 34px);
}

.gallery-album-hero-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 18px 18px 16px;
}

.gallery-album-hero-caption h2 {
  margin: 0 0 4px;
  color: #ffffff;
  font-size: clamp(1.7rem, 2.2vw, 2.55rem);
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: -0.04em;
  text-shadow: 0 10px 24px rgba(0, 0, 0, 0.24);
  max-width: 12ch;
}

.gallery-album-hero-caption p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.35;
  text-shadow: 0 10px 24px rgba(0, 0, 0, 0.22);
}

.gallery-album-link:hover {
  text-decoration: none;
}

.gallery-album-link:hover .gallery-album-media img,
.gallery-album-link:hover .gallery-card-placeholder {
  transform: scale(1.04);
}

.gallery-album-link:hover {
  box-shadow: 0 32px 68px rgba(16, 36, 74, 0.18);
}

.gallery-album-meta-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px 10px;
  padding-top: 12px;
  border-top: 1px solid rgba(212, 222, 236, 0.82);
}

.gallery-album-meta-item {
  min-width: 0;
}

.gallery-album-meta-item-wide {
  grid-column: span 2;
}

.gallery-album-meta-label {
  display: block;
  margin-bottom: 4px;
  color: #75809a;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.gallery-album-meta-item strong {
  display: block;
  color: #1a2234;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.45;
}

.gallery-album-single {
  padding-top: 20px;
}

.gallery-album-shell {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.gallery-album-header {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(260px, 0.6fr);
  gap: 24px;
  align-items: end;
}

.gallery-album-header-main {
  min-width: 0;
}

.gallery-album-chip {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  margin: 0 0 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.76);
  color: #44506b;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.gallery-album-header h1 {
  margin: 0;
  color: #111321;
  font-size: clamp(2.6rem, 5vw, 4.6rem);
  line-height: 0.96;
  letter-spacing: -0.06em;
}

.gallery-album-header-side {
  max-width: 320px;
  justify-self: end;
}

.gallery-album-header-text {
  margin: 0 0 14px;
  color: #5a667f;
  font-size: 0.98rem;
  line-height: 1.65;
}

.gallery-album-header-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 12px;
  color: #57637d;
  font-size: 0.9rem;
  font-weight: 600;
}

.gallery-album-header-meta span {
  display: inline-flex;
  align-items: center;
}

.gallery-album-intro {
  max-width: 760px;
  color: #42506c;
  font-size: 0.98rem;
}

.gallery-captures-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.gallery-capture-card {
  grid-column: span 1;
  border-radius: 18px;
  overflow: hidden;
  min-height: 220px;
  background: linear-gradient(160deg, #d8e7f5, #e8f6f1);
  box-shadow: 0 14px 28px rgba(16, 36, 74, 0.07);
}

.gallery-capture-card-1 {
  grid-column: span 2;
  min-height: 280px;
}

.gallery-capture-card-2 {
  min-height: 280px;
}

.gallery-capture-card-3,
.gallery-capture-card-4,
.gallery-capture-card-5 {
  min-height: 220px;
}

.gallery-capture-trigger {
  width: 100%;
  height: 100%;
  border: 0;
  padding: 0;
  margin: 0;
  display: block;
  cursor: pointer;
  background: transparent;
}

.gallery-card-placeholder {
  background: linear-gradient(160deg, #d8e7f5, #e8f6f1);
}

.gallery-capture-trigger img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.32s ease;
}

.gallery-capture-trigger:hover img {
  transform: scale(1.08);
}

.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(7, 14, 27, 0.88);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 28px;
}

.gallery-lightbox[hidden] {
  display: none;
}

.gallery-lightbox img {
  max-width: min(1100px, 92vw);
  max-height: 78vh;
  border-radius: 14px;
  object-fit: contain;
}

.gallery-lightbox-title {
  margin: 0;
  color: #e5efff;
  font-weight: 600;
}

.gallery-lightbox-close {
  position: absolute;
  top: 12px;
  right: 16px;
  border: 0;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  font-size: 1.8rem;
  cursor: pointer;
}

.gallery-lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 0;
  background: rgba(255, 255, 255, 0.24);
  color: #fff;
  font-size: 1.3rem;
  cursor: pointer;
}

.gallery-lightbox-prev {
  left: 18px;
}

.gallery-lightbox-next {
  right: 18px;
}

.page-image {
  margin: 18px 0 24px;
}

.page-image img {
  width: 100%;
  height: auto;
  border-radius: 12px;
}

.contact-page-shell {
  display: grid;
  gap: 0;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.76fr);
  align-items: start;
}

.contact-overview {
  padding-right: 34px;
}

.contact-overview-stage {
  overflow: hidden;
  border-radius: 18px 0 0 18px;
  box-shadow: 0 26px 54px rgba(17, 29, 51, 0.08);
}

.contact-overview-top {
  display: grid;
  gap: 16px;
  min-height: 278px;
  align-content: end;
  padding: 32px 38px 28px;
  background: linear-gradient(180deg, #232528 0%, #2c2f33 100%);
  color: #eef1ff;
}

.contact-overview-bottom {
  display: grid;
  gap: 28px;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.72fr);
  padding: 30px 38px 34px;
  background: linear-gradient(180deg, #eef1ff 0%, #e8edfb 100%);
}

.contact-eyebrow {
  margin: 0;
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-overview-title {
  margin: 0;
  max-width: 560px;
  color: #eef1ff;
  font-size: clamp(2.5rem, 4.8vw, 4.65rem);
  line-height: 0.92;
  letter-spacing: -0.05em;
}

.contact-overview-text {
  margin: 0;
  max-width: 540px;
  color: #3f4a68;
  font-size: 1.05rem;
  line-height: 1.72;
}

.contact-overview-primary {
  display: grid;
  gap: 28px;
}

.contact-callout-list {
  display: grid;
  gap: 18px;
}

.contact-callout-item {
  display: grid;
  gap: 6px;
}

.contact-callout-label {
  margin: 0;
  color: #1c2440;
  font-size: clamp(1.05rem, 1.4vw, 1.3rem);
  font-weight: 700;
}

.contact-callout-value {
  margin: 0;
  color: #1d2350;
  font-size: clamp(1.4rem, 2vw, 2rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.contact-callout-value a {
  color: inherit;
  text-decoration: none;
}

.contact-benefits {
  display: grid;
  gap: 16px;
}

.contact-benefits h3,
.contact-steps h3 {
  margin: 0;
  color: #1a2240;
  font-size: clamp(1.45rem, 2vw, 1.95rem);
  letter-spacing: -0.04em;
}

.contact-benefits-grid {
  display: grid;
  gap: 14px 26px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.contact-benefit-item {
  position: relative;
  margin: 0;
  padding-left: 28px;
  color: #38476a;
  font-size: 1rem;
  line-height: 1.65;
}

.contact-benefit-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 14px;
  height: 14px;
  border-radius: 999px;
  background: #2230d7;
  box-shadow: inset 0 0 0 4px #eef1ff;
}

.contact-overview-side {
  display: grid;
  align-self: start;
}

.contact-map-card {
  display: grid;
  gap: 16px;
  padding: 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(214, 223, 237, 0.88);
  box-shadow: 0 16px 36px rgba(17, 33, 63, 0.05);
}

.contact-map-copy {
  display: grid;
  gap: 10px;
}

.contact-map-label {
  margin: 0;
  color: #61708c;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-map-copy h3 {
  margin: 0;
  color: #10192f;
  font-size: clamp(1.5rem, 2vw, 2rem);
  letter-spacing: -0.04em;
}

.contact-map-copy p {
  margin: 0;
  color: #4b5b76;
  font-size: 1rem;
  line-height: 1.72;
}

.contact-map-visual {
  overflow: hidden;
  border-radius: 18px;
}

.contact-map-visual a,
.contact-map-visual img {
  display: block;
}

.contact-map-visual img {
  width: 100%;
  min-height: 220px;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.contact-map-visual a:hover img {
  transform: scale(1.03);
}

.contact-form-panel {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 22px;
  margin-top: 68px;
  padding: 0;
  border-radius: 0 18px 18px 18px;
  background: #ffffff;
  border: 1px solid rgba(214, 223, 237, 0.98);
  box-shadow: 0 28px 56px rgba(13, 24, 44, 0.12);
  overflow: hidden;
}

.contact-form-panel-head {
  display: grid;
  gap: 8px;
  justify-items: center;
  text-align: center;
  padding: 28px 28px 18px;
  border-bottom: 1px solid rgba(221, 227, 238, 0.96);
}

.contact-form-panel-head h3 {
  margin: 0;
  color: #111a2f;
  font-size: clamp(1.55rem, 2vw, 2rem);
  letter-spacing: -0.04em;
}

.contact-form-panel-head p {
  margin: 0;
  color: #5a6780;
  font-size: 0.98rem;
  line-height: 1.7;
}

.contact-editor-content {
  color: #354158;
}

.contact-editor-content > *:first-child {
  margin-top: 0;
}

.contact-editor-content > *:last-child {
  margin-bottom: 0;
}

.contact-editor-content .wp-block-columns {
  gap: 28px;
  align-items: start;
}

.contact-editor-content h2,
.contact-editor-content h3,
.contact-editor-content h4 {
  color: #10192f;
  letter-spacing: -0.03em;
}

.contact-editor-content h2 {
  font-size: clamp(1.9rem, 3vw, 2.8rem);
}

.contact-editor-content h3 {
  font-size: clamp(1.4rem, 2.1vw, 2rem);
}

.contact-editor-content p,
.contact-editor-content li,
.contact-editor-content label {
  color: #46536d;
  font-size: 1.04rem;
  line-height: 1.82;
}

.contact-editor-content .wp-block-group,
.contact-editor-content .wp-block-cover,
.contact-editor-content .wp-block-media-text,
.contact-editor-content .wp-block-column > .wp-block-group {
  border-radius: 28px;
}

.contact-editor-content form,
.contact-editor-content .wpcf7,
.contact-editor-content .wpforms-container,
.contact-editor-content .wp-block-shortcode {
  border-radius: 34px;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.contact-editor-content form,
.contact-editor-content .wpcf7-form,
.contact-editor-content .wpforms-form,
.contact-editor-content .wp-block-shortcode {
  padding: 8px 28px 28px;
}

.contact-editor-content input[type="text"],
.contact-editor-content input[type="email"],
.contact-editor-content input[type="tel"],
.contact-editor-content input[type="url"],
.contact-editor-content input[type="number"],
.contact-editor-content input[type="search"],
.contact-editor-content input[type="date"],
.contact-editor-content textarea,
.contact-editor-content select {
  width: 100%;
  min-height: 58px;
  border: 1px solid rgba(190, 206, 228, 0.92);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.92);
  color: #12203c;
  padding: 14px 18px;
  font-size: 1rem;
  line-height: 1.4;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.64);
}

.contact-editor-content textarea {
  min-height: 170px;
  resize: vertical;
}

.contact-editor-content input:focus,
.contact-editor-content textarea:focus,
.contact-editor-content select:focus {
  outline: none;
  border-color: rgba(47, 112, 222, 0.8);
  box-shadow: 0 0 0 4px rgba(47, 112, 222, 0.12);
}

.contact-editor-content input[type="submit"],
.contact-editor-content button[type="submit"],
.contact-editor-content .wp-element-button,
.contact-editor-content .wpforms-submit,
.contact-editor-content .wpcf7-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 0 28px;
  border: 0;
  border-radius: 18px;
  background: linear-gradient(135deg, #29c7ef 0%, #2f70de 100%);
  color: #081323;
  font-weight: 800;
  letter-spacing: 0.02em;
  box-shadow: 0 18px 36px rgba(38, 173, 233, 0.22);
  cursor: pointer;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.contact-meta-stack {
  display: grid;
  gap: 14px;
}

.contact-meta-item {
  display: grid;
  gap: 8px;
}

.contact-info-label {
  margin: 0;
  color: #7c879d;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-info-value {
  margin: 0;
  color: #111a2e;
  font-size: 1rem;
  line-height: 1.7;
}

.contact-steps {
  display: grid;
  gap: 16px;
}

.contact-steps-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.contact-step-item {
  position: relative;
  display: grid;
  gap: 10px;
  grid-template-columns: auto 1fr;
  align-items: start;
}

.contact-step-item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -9px;
  top: 16px;
  width: 18px;
  height: 18px;
  border-top: 1px solid rgba(116, 129, 165, 0.42);
  border-right: 1px solid rgba(116, 129, 165, 0.42);
  transform: rotate(45deg);
}

.contact-step-number {
  color: #1a2240;
  font-size: 1.95rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.05em;
}

.contact-step-item p {
  margin: 0;
  color: #4b597a;
  font-size: 0.96rem;
  line-height: 1.65;
}

.contact-page .page-content.contact-page-content {
  background: transparent;
  border: 0;
  padding: 0;
}

.contact-page-shell {
  gap: 28px;
  grid-template-columns: minmax(320px, 0.78fr) minmax(0, 1.22fr);
  padding: 28px;
  border: 5px solid #1c2031;
  border-radius: 38px;
  background: #ffffff;
  box-shadow: 0 24px 54px rgba(18, 27, 44, 0.08);
}

.contact-overview {
  display: grid;
  padding-right: 0;
}

.contact-overview-stage {
  display: grid;
  gap: 28px;
  height: 100%;
  padding: 6px 8px 6px 2px;
  overflow: visible;
  border-radius: 0;
  box-shadow: none;
}

.contact-overview-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #171d2f;
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.contact-brand-mark {
  width: 22px;
  height: 22px;
  border-radius: 6px;
  background:
    linear-gradient(135deg, #111828 0%, #111828 42%, transparent 42%),
    repeating-linear-gradient(135deg, rgba(17, 24, 40, 0.9) 0 2px, transparent 2px 5px);
  transform: rotate(45deg);
}

.contact-detail-list {
  display: grid;
  gap: 28px;
}

.contact-detail-item {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
}

.contact-detail-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  border: 1px solid rgba(215, 220, 230, 0.96);
  background: #ffffff;
  color: #182033;
  font-size: 1.1rem;
  font-weight: 700;
  text-decoration: none;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease, color 180ms ease;
}

.contact-detail-icon i,
.contact-social-row i,
.footer-follow i {
  line-height: 1;
}

.contact-detail-icon[href]:hover {
  transform: translateY(-2px);
  border-color: rgba(47, 112, 222, 0.4);
  box-shadow: 0 12px 24px rgba(47, 112, 222, 0.12);
}

.contact-detail-copy {
  display: grid;
  gap: 6px;
}

.contact-detail-copy h3 {
  margin: 0;
  color: #131a2c;
  font-size: 1.9rem;
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.contact-detail-copy p {
  margin: 0;
  color: #5f6b82;
  font-size: 1rem;
  line-height: 1.6;
}

.contact-detail-copy a,
.contact-detail-meta {
  color: #121a2d;
  font-size: 1.18rem;
  font-weight: 700;
  line-height: 1.55;
  text-decoration: none;
}

.contact-side-map {
  overflow: hidden;
  border-radius: 24px;
  margin-top: auto;
}

.contact-side-map a,
.contact-side-map img {
  display: block;
}

.contact-side-map img {
  width: 100%;
  min-height: 220px;
  object-fit: cover;
}

.contact-social-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.contact-social-row a {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  border: 1px solid rgba(219, 224, 234, 0.94);
  background: #ffffff;
  color: #1b2133;
  font-size: 1rem;
  font-weight: 700;
  text-transform: lowercase;
}

.contact-form-panel {
  gap: 18px;
  min-height: 100%;
  margin-top: 0;
  padding: 54px 42px 38px;
  border-radius: 28px;
  background: var(--contact-form-panel-bg, #caff68);
  color: var(--contact-form-panel-text, #171d2f);
  border: 0;
  box-shadow: none;
}

.contact-form-eyebrow {
  display: none;
}

.contact-form-panel-head {
  justify-items: start;
  text-align: left;
  padding: 0;
  border-bottom: 0;
}

.contact-form-panel-head h3 {
  max-width: 620px;
  color: var(--contact-form-panel-text, #171d2f);
  font-size: clamp(2rem, 2.2vw, 3.9rem);
  line-height: 0.96;
  letter-spacing: -0.06em;
}

.contact-form-panel-head p {
  max-width: 560px;
  color: color-mix(in srgb, var(--contact-form-panel-text, #171d2f) 82%, #ffffff 18%);
  font-size: 1.06rem;
}

.contact-editor-content form,
.contact-editor-content .wpcf7-form,
.contact-editor-content .wpforms-form,
.contact-editor-content .wp-block-shortcode {
  padding: 4px 0 0;
}

.contact-editor-content input[type="text"],
.contact-editor-content input[type="email"],
.contact-editor-content input[type="tel"],
.contact-editor-content input[type="url"],
.contact-editor-content input[type="number"],
.contact-editor-content input[type="search"],
.contact-editor-content input[type="date"],
.contact-editor-content textarea,
.contact-editor-content select {
  min-height: 52px;
  border: 0;
  border-bottom: 2px solid color-mix(in srgb, var(--contact-form-panel-text, #171d2f) 42%, transparent 58%);
  border-radius: 0;
  background: transparent;
  color: var(--contact-form-panel-text, #171d2f);
  padding: 10px 0 12px;
  box-shadow: none;
}

.contact-editor-content textarea {
  min-height: 16px;
  height: 16px;
  overflow: hidden;
}

.contact-editor-content input:focus,
.contact-editor-content textarea:focus,
.contact-editor-content select:focus {
  border-color: var(--contact-form-panel-text, #171d2f);
  box-shadow: none;
}

.contact-editor-content,
.contact-editor-content label,
.contact-editor-content .wpcf7-list-item-label,
.contact-editor-content ::placeholder {
  color: var(--contact-form-panel-text, #171d2f);
}

.contact-editor-content input[type="submit"],
.contact-editor-content button[type="submit"],
.contact-editor-content .wp-element-button,
.contact-editor-content .wpforms-submit,
.contact-editor-content .wpcf7-submit {
  width: 100%;
  min-height: 56px;
  border-radius: 10px;
  background: #171d2f;
  color: #ffffff;
  box-shadow: none;
  transition: opacity 0.22s ease, transform 0.22s ease;
}

.contact-editor-content input[type="submit"]:hover,
.contact-editor-content button[type="submit"]:hover,
.contact-editor-content .wp-element-button:hover,
.contact-editor-content .wpforms-submit:hover,
.contact-editor-content .wpcf7-submit:hover {
  box-shadow: none;
  opacity: 0.92;
}

.contact-bottom-map {
  margin-top: 24px;
  display: grid;
  gap: 18px;
  padding: 24px;
  border-radius: 28px;
  background: #ffffff;
  border: 1px solid rgba(219, 224, 234, 0.94);
  box-shadow: 0 18px 42px rgba(18, 27, 44, 0.06);
}

.contact-bottom-map-copy {
  display: grid;
  gap: 10px;
}

.contact-bottom-map-copy h3 {
  margin: 0;
  color: #171d2f;
  font-size: clamp(1.6rem, 2.3vw, 2.4rem);
  letter-spacing: -0.04em;
}

.contact-bottom-map-copy p {
  margin: 0;
  color: #5b6780;
  font-size: 1rem;
  line-height: 1.72;
}

.contact-bottom-map-visual {
  overflow: hidden;
  border-radius: 22px;
}

.contact-bottom-map-visual a,
.contact-bottom-map-visual img {
  display: block;
}

.contact-bottom-map-visual img {
  width: 100%;
  min-height: 320px;
  object-fit: cover;
}

.contact-map-embed,
.contact-map-embed iframe {
  display: block;
  width: 100%;
}

.contact-map-embed iframe {
  min-height: 360px;
  border: 0;
}

.contact-editor-content input[type="submit"]:hover,
.contact-editor-content button[type="submit"]:hover,
.contact-editor-content .wp-element-button:hover,
.contact-editor-content .wpforms-submit:hover,
.contact-editor-content .wpcf7-submit:hover {
  transform: translateY(-1px);
  box-shadow: 0 22px 42px rgba(38, 173, 233, 0.28);
}

.contact-editor-content .wpcf7-spinner {
  margin: 14px 0 0;
}

.contact-editor-content .wp-block-media-text {
  overflow: hidden;
}

.contact-editor-content .wp-block-media-text__media img,
.contact-editor-content .wp-block-media-text__media video,
.contact-editor-content .wp-block-image img {
  border-radius: 28px;
}

.contact-editor-content .wp-block-group.has-background {
  padding: 28px;
}

.announcement-back {
  margin-top: 24px;
  font-weight: 600;
}

.profile-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  align-items: start;
  gap: 54px;
}

.profile-top {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}

.profile-content {
  min-width: 0;
}

.profile-media {
  position: sticky;
  top: 128px;
  align-self: start;
}

.profile-media .profile-photo-wrap {
  position: relative;
  top: auto;
}

.profile-photo-wrap {
  background: #ffffff;
  border-radius: 36px;
  overflow: hidden;
  aspect-ratio: 0.96 / 1.08;
  box-shadow: 0 24px 54px rgba(16, 36, 74, 0.14);
}

.profile-photo {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

.profile-name {
  margin: 0 0 6px;
  font-size: clamp(1.95rem, 3.15vw, 3.2rem);
  line-height: 0.98;
  letter-spacing: -0.02em;
  color: #111321;
  max-width: 18ch;
}

.profile-role {
  margin: 0 0 12px;
  color: #1d2235;
  font-size: 0.86rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
}

.profile-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 4px 0 24px;
  justify-content: flex-end;
  width: 100%;
}

.profile-socials a {
  width: 48px;
  height: 48px;
  border: 2px solid rgba(24, 38, 73, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  color: #111321;
  font-size: 1rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-transform: lowercase;
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease, color 180ms ease;
}

.profile-socials i,
.speaker-socials i {
  line-height: 1;
}

.profile-socials a:first-child {
  background: #2f70de;
  border-color: #2f70de;
  color: #ffffff;
}

.profile-socials a:hover {
  color: #2f70de;
  text-decoration: none;
  border-color: #2f70de;
  transform: translateY(-2px);
}

.profile-socials a:first-child:hover {
  color: #ffffff;
}

.profile-bio {
  width: 100%;
  padding: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  color: #44495e;
  font-size: 1.12rem;
  line-height: 1.75;
}

.profile-bio p {
  margin: 0 0 22px;
}

.profile-bio h2,
.profile-bio h3,
.profile-bio h4 {
  margin: 42px 0 16px;
  color: #111321;
  line-height: 1.06;
  letter-spacing: -0.03em;
}

.profile-bio h2 {
  font-size: clamp(2.2rem, 3.8vw, 4.1rem);
}

.profile-bio h3 {
  font-size: clamp(1.4rem, 2vw, 2rem);
}

.profile-bio > * + hr {
  margin-top: 24px;
}

.profile-facts {
  display: grid;
  gap: 20px;
  margin-top: 14px;
}

.profile-fact-card {
  padding: 28px 34px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.74);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.55);
}

.profile-fact-title {
  margin: 0 0 10px;
  color: #111321;
  font-size: 0.86rem !important;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.profile-fact-card p {
  margin: 0;
  color: #44495e;
  font-size: 1.05rem;
  line-height: 1.65;
}

.member-list {
  margin-top: 26px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.member-card {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(222, 229, 239, 0.9);
  border-radius: 28px;
  box-shadow: 0 18px 36px rgba(16, 36, 74, 0.08);
  overflow: hidden;
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  min-height: 240px;
}

.member-avatar {
  background: linear-gradient(160deg, #d8e7f5, #e8f6f1);
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.member-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.member-avatar-placeholder {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  font-weight: 700;
}

.member-card-body {
  padding: 28px 30px;
}

.member-card-body h2 {
  margin: 0 0 10px;
  font-size: clamp(1.4rem, 1.8vw, 2rem);
  line-height: 1.06;
  letter-spacing: -0.03em;
}

.member-role {
  margin: 0 0 10px;
  color: var(--secondary);
  font-weight: 700;
  font-size: 0.92rem;
}

.member-bio p {
  margin: 0;
}

.speaker-grid {
  margin-top: 26px;
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.speaker-card {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(222, 229, 239, 0.9);
  border-radius: 22px;
  box-shadow: 0 14px 28px rgba(16, 36, 74, 0.06);
  overflow: hidden;
  padding: 16px 16px 18px;
}

.speaker-avatar {
  background: linear-gradient(160deg, #eef3fa, #ffffff);
  border-radius: 18px;
  aspect-ratio: 4 / 4.2;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

.speaker-photo {
  position: absolute;
  inset: 0;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover;
  object-position: center;
  display: block;
}

.speaker-avatar-placeholder {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  font-weight: 700;
}

.speaker-card-body {
  padding: 12px 4px 0;
  text-align: center;
}

.speaker-card-body h2 {
  margin: 8px 0 5px;
  font-size: clamp(1.04rem, 1.15vw, 1.3rem);
  line-height: 1.04;
  letter-spacing: -0.03em;
}

.speaker-card-body h2 a {
  color: #1a2234;
  text-decoration: none;
}

.speaker-card-body h2 a:hover {
  text-decoration: underline;
}

.speaker-role {
  margin: 0;
  color: #35557f;
  font-weight: 500;
  font-size: 0.84rem;
}

.speaker-socials {
  display: flex;
  justify-content: center;
  gap: 8px;
}

.speaker-socials a {
  width: 34px;
  height: 34px;
  border: 1px solid #c7d0dd;
  border-radius: 50%;
  background: #fff;
  color: #1f2f4a;
  font-size: 0.76rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  text-transform: lowercase;
}

.team-section-block + .team-section-block {
  margin-top: 42px;
}

.team-section-title {
  margin: 0 0 18px;
  color: #111321;
  font-size: clamp(1.5rem, 2vw, 2rem);
  line-height: 1.04;
  letter-spacing: -0.03em;
}

.speaker-socials a:hover {
  background: #2f70de;
  border-color: #2f70de;
  color: #fff;
}

.site-footer {
  background: var(--footer-bg, #0d1834);
  color: var(--footer-text, #d8e2f1);
  margin-top: 30px;
  padding-top: 38px;
  border-top-left-radius: 48px;
  border-top-right-radius: 48px;
  overflow: hidden;
}

.footer-top {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding-bottom: 16px;
}

.footer-follow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--footer-text, #f5f8ff);
  font-size: 0.96rem;
  font-weight: 600;
}

.footer-follow a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: var(--footer-text, #fff);
  font-size: 0.78rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  text-transform: lowercase;
}

.footer-follow a:hover {
  background: #2f70de;
}

.about-section .section-title,
.sponsors .section-title {
  color: var(--section-text, #111321);
}

.home .announcements .section-title-modern,
.home .stats-showcase-section .section-title-modern,
.home .about-section .section-title-modern,
.home .sponsors .section-title-modern,
.home .timeline-section .section-title-modern {
  color: var(--section-text, #111321);
}

.sponsors {
  background: var(--section-bg, #ffffff);
}

.sponsors .sponsor-item img {
  filter: saturate(0) contrast(1.05) brightness(0.15);
}

.stats-showcase-card .stats-value,
.stats-showcase-card .stats-label {
  color: var(--home-stats-text, #ffffff);
}

.footer-divider {
  border-top: 1px solid color-mix(in srgb, var(--footer-text, #d8e2f1) 24%, transparent 76%);
  margin-bottom: 28px;
}

.footer-grid {
  display: grid;
  gap: 34px;
  padding-bottom: 26px;
}

.footer-grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.footer-grid-menu {
  grid-template-columns: minmax(0, 1.4fr) minmax(280px, 0.9fr);
  align-items: start;
}

.footer-menu-block {
  min-width: 0;
}

.footer-title {
  color: var(--footer-text, #ffffff);
  font-size: 1.55rem;
  line-height: 1.1;
  margin: 0 0 18px;
  letter-spacing: -0.02em;
}

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

.footer-links-columns {
  columns: 2;
  column-gap: 44px;
}

.footer-links li {
  margin-bottom: 12px;
  break-inside: avoid;
}

.footer-links a {
  color: color-mix(in srgb, var(--footer-text, #d8e2f1) 92%, #ffffff 8%);
  font-size: 0.98rem;
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--footer-text, #ffffff);
}

.footer-text {
  margin: 0 0 14px;
  font-size: 0.98rem;
  line-height: 1.8;
  color: color-mix(in srgb, var(--footer-text, #d8e2f1) 92%, #ffffff 8%);
}

.footer-mail {
  color: var(--footer-text, #f7fbff);
  font-weight: 700;
  text-decoration: none;
}

.footer-mail:hover {
  text-decoration: underline;
}

.footer-bottom {
  border-top: 1px solid color-mix(in srgb, var(--footer-text, #d8e2f1) 22%, transparent 78%);
  padding: 14px 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

.footer-bottom p {
  margin: 0;
  color: #d2def0;
  font-size: 0.92rem;
}

.footer-copy {
  text-align: left;
}

.footer-credit {
  text-align: right;
  margin-left: auto;
}

.footer-credit a,
.footer-credit span {
  color: #ffffff;
  font-weight: 700;
  text-decoration: none;
}

.footer-credit a:hover {
  text-decoration: underline;
}

.back-to-top {
  position: fixed;
  right: 34px;
  bottom: 34px;
  width: 58px;
  height: 58px;
  border: 0;
  border-radius: 50%;
  background: rgba(234, 240, 247, 0.95);
  color: #2f70de;
  font-size: 32px;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 10px 20px rgba(16, 36, 74, 0.16);
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  transition: opacity 0.25s ease, transform 0.25s ease;
  z-index: 140;
}

.back-to-top::before {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: conic-gradient(from -90deg, #2f70de calc(var(--scroll-progress, 0) * 1%), #dce5f2 0);
  -webkit-mask: radial-gradient(farthest-side, transparent calc(100% - 3px), #000 calc(100% - 3px));
  mask: radial-gradient(farthest-side, transparent calc(100% - 3px), #000 calc(100% - 3px));
}

.back-to-top span {
  position: relative;
  top: -2px;
}

.js-enabled .back-to-top {
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
}

.back-to-top.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.back-to-top:hover {
  background: #f1f6ff;
}

@media (max-width: 980px) {
  .home .hero-modern {
    padding-top: 0;
  }

  .site-header {
    background: transparent;
    border-bottom: 0;
    backdrop-filter: none;
  }

  .site-header.is-scrolled {
    background: transparent;
    border-bottom: 0;
    backdrop-filter: none;
  }

  .post-type-archive-duyuru .site-header,
  .post-type-archive-duyuru .site-header.is-scrolled {
    background: transparent;
    border-bottom: 0;
    backdrop-filter: none;
  }

  .header-inner {
    width: min(1120px, 92%);
    min-height: 70px;
    margin: 10px auto;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.16);
    backdrop-filter: blur(18px) saturate(140%);
    -webkit-backdrop-filter: blur(18px) saturate(140%);
    border: 1px solid rgba(255, 255, 255, 0.22);
    box-shadow: 0 12px 32px rgba(16, 36, 74, 0.16);
  }

  .site-header.is-scrolled .header-inner {
    width: min(1120px, 92%);
    margin: 10px auto;
    min-height: 70px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.16);
    backdrop-filter: blur(18px) saturate(140%);
    -webkit-backdrop-filter: blur(18px) saturate(140%);
    border: 1px solid rgba(255, 255, 255, 0.22);
    box-shadow: 0 12px 32px rgba(16, 36, 74, 0.16);
  }

  .timeline-list {
    grid-auto-columns: minmax(210px, 236px);
    gap: 28px;
    padding: 36px 24px 32px;
  }

  .timeline-list::before {
    left: 24px;
    right: 24px;
  }

  .timeline-item {
    min-height: 490px;
    padding-left: 38px;
  }

  .timeline-item-top {
    padding-bottom: 246px;
  }

  .timeline-item-bottom {
    padding-top: 246px;
  }

  .timeline-entry-year {
    font-size: 1.7rem;
  }

  .home-visual-modern .site-header,
  .home-visual-modern .site-header.is-scrolled {
    position: relative;
    background: #ffffff;
    border-bottom: 0;
    box-shadow: none;
  }

  .home-visual-modern .header-inner,
  .home-visual-modern .site-header.is-scrolled .header-inner {
    width: 100%;
    min-height: 68px;
    margin: 0;
    border-radius: 0;
    background: #ffffff;
    border: 0;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .home-visual-modern .site-title {
    color: #202644;
  }

  .home-visual-modern .menu-toggle span {
    background: #202644;
  }

  .home-visual-modern .primary-nav {
    top: calc(100% + 12px);
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(223, 231, 243, 0.96);
    box-shadow: 0 24px 48px rgba(16, 36, 74, 0.14);
  }

  .home-visual-modern .primary-nav .menu li a,
  .home-visual-modern .primary-nav .menu li.current-menu-item a,
  .home-visual-modern .primary-nav .menu li a:hover {
    color: #1a2234;
    background: transparent;
  }

  .home.home-visual-modern .hero-modern {
    padding-top: 0;
  }

  .home.home-visual-modern .hero-modern-inner {
    width: 100%;
    height: calc(100vh - 68px);
    min-height: 632px;
  }

  .home.home-visual-modern .hero-scene {
    height: calc(100vh - 108px);
    min-height: 620px;
    margin: 0 12px 0;
    border-radius: 28px;
  }

  .home.home-visual-modern .hero-copy {
    max-width: min(760px, calc(100% - 180px));
    padding: 0 26px 0 34px;
    padding-top: 24vh;
  }

  .home.home-visual-modern .hero-copy h1,
  .home.home-visual-modern .hero-title {
    max-width: 100%;
    font-size: clamp(2.8rem, 7.2vw, 4.8rem);
    -webkit-line-clamp: 2;
    min-height: calc(0.92em * 2);
  }

  .home.home-visual-modern .hero-text {
    max-width: 360px;
  }

  .home.home-visual-modern .hero-side-meta {
    bottom: 28px;
  }

  .home.home-visual-modern .hero-slider-nav {
    top: auto;
    bottom: 40px;
    transform: none;
  }

  .timeline-media img {
    height: 140px;
  }

  .post-type-archive-duyuru .site-header .header-inner,
  .post-type-archive-duyuru .site-header.is-scrolled .header-inner {
    width: min(1120px, 92%);
    min-height: 70px;
    margin: 10px auto;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.16);
    backdrop-filter: blur(18px) saturate(140%);
    -webkit-backdrop-filter: blur(18px) saturate(140%);
    border: 1px solid rgba(255, 255, 255, 0.22);
    box-shadow: 0 12px 32px rgba(16, 36, 74, 0.16);
  }

  .site-title {
    font-size: 1.1rem;
    color: #ffffff;
  }

  .branding {
    min-width: 0;
  }

  .menu-toggle {
    display: block;
    margin-left: auto;
    flex-shrink: 0;
    width: 42px;
    height: 42px;
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
  }

  .menu-toggle span {
    position: absolute;
    width: 22px;
    height: 2px;
    margin: 0;
    background: #ffffff;
    transition: transform 0.22s ease, opacity 0.22s ease;
    transform-origin: center;
  }

  .menu-toggle span:nth-child(1) {
    transform: translateY(-6px);
  }

  .menu-toggle span:nth-child(2) {
    transform: translateY(0);
  }

  .menu-toggle span:nth-child(3) {
    transform: translateY(6px);
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: rotate(-45deg);
  }

  .primary-nav {
    position: absolute;
    top: calc(100% + 10px);
    left: 50%;
    right: auto;
    width: min(1120px, 92%);
    max-height: calc(100vh - 110px);
    overflow-y: auto;
    background: #ffffff;
    backdrop-filter: blur(18px) saturate(135%);
    -webkit-backdrop-filter: blur(18px) saturate(135%);
    border: 1px solid rgba(223, 231, 243, 0.95);
    border-radius: 28px;
    padding: 16px 0;
    box-shadow: 0 24px 48px rgba(16, 36, 74, 0.16);
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
    transform: translateX(-50%) translateY(-14px) scale(0.98);
    transition: opacity 0.24s ease, transform 0.24s ease, visibility 0.24s ease;
  }

  .primary-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
    transform: translateX(-50%) translateY(0) scale(1);
  }

  .primary-nav .menu {
    flex-direction: column;
    align-items: center;
    gap: 0;
  }

  .primary-nav .menu li {
    width: 100%;
  }

  .primary-nav .menu li a {
    display: block;
    width: 100%;
    text-align: center;
    color: #1a2234;
    font-size: 1rem;
    font-weight: 600;
    padding: 16px 22px;
    border-radius: 0;
    background: transparent;
  }

  .home .primary-nav .menu li a,
  .home .primary-nav .menu li.current-menu-item a,
  .home .primary-nav .menu li a:hover {
    color: #1a2234;
    background: transparent;
  }

  .primary-nav .menu li a:hover,
  .primary-nav .menu li.current-menu-item a {
    color: #0f4c81;
    background: rgba(47, 112, 222, 0.06);
    text-decoration: none;
  }

  .primary-nav .menu li + li a {
    border-top: 1px solid rgba(223, 231, 243, 0.72);
  }
.primary-nav .menu .sub-menu {
  position: static;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: none;
  box-shadow: none;
  border: 0;
  border-radius: 0;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  background: transparent;
  padding: 0;
  min-width: 0;
}

.primary-nav .menu .sub-menu li a {
  padding: 12px 22px 12px 36px;
  font-size: 0.9rem;
  font-weight: 500;
  color: #44506b;
  border-radius: 0;
  border-top: 1px solid rgba(223, 231, 243, 0.72);
  background: rgba(47, 112, 222, 0.03);
}

.primary-nav .menu .sub-menu li a:hover {
  color: var(--primary);
  background: rgba(47, 112, 222, 0.06);
}
	
  .card-grid {
    grid-template-columns: 1fr;
  }

  .page-hero,
  .duyurular-hero {
    padding: 22px;
    border-radius: 18px;
  }

  .duyurular-pagination .navigation.pagination {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
  }

  .duyurular-pagination .page-numbers {
    margin-right: 0;
  }

  .member-card {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .member-avatar {
    min-height: 230px;
  }

  .speaker-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .announcement-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .announcement-thumb {
    height: 240px;
  }

  .announcement-body {
    padding: 24px 26px 28px;
    min-height: 156px;
  }

  .announcement-next {
    padding-top: 42px;
  }

  .announcement-next-title {
    margin-bottom: 22px;
  }

  .announcement-grid-next .announcement-thumb {
    height: 180px;
  }

  .announcement-grid-next .announcement-body {
    padding: 18px 20px 20px;
    min-height: 108px;
  }

  .gallery-album-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gallery-album-card:nth-child(3n + 2),
  .gallery-album-card:nth-child(3n) {
    margin-top: 0;
  }

  .gallery-captures-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }

  .gallery-capture-card {
    grid-column: span 1;
    min-height: 220px;
  }

  .gallery-capture-card-1 {
    grid-column: span 2;
    min-height: 260px;
  }

  .gallery-capture-card-2 {
    grid-column: span 1;
    min-height: 260px;
  }

  .gallery-album-header {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .gallery-album-header-side {
    max-width: none;
    justify-self: start;
  }

  .contact-editor-content .wp-block-columns {
    flex-direction: column;
  }

  .profile-layout {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .profile-top {
    gap: 14px;
    align-items: center;
    text-align: center;
  }

  .profile-media {
    position: static;
  }

  .profile-media .profile-photo-wrap {
    position: static;
  }

  .profile-media {
    order: -1;
  }

  .profile-name {
    order: 2;
    margin-bottom: 0;
    max-width: 14ch;
    font-size: clamp(1.7rem, 6.2vw, 2.35rem);
    line-height: 0.98;
  }

  .profile-role {
    order: 3;
    margin-bottom: 0;
  }

  .profile-socials {
    order: 1;
    justify-content: flex-end;
    width: 100%;
    gap: 16px;
    margin: 0 0 8px;
  }

  .profile-socials a {
    width: 46px;
    height: 46px;
    font-size: 0.96rem;
  }

  .profile-facts {
    gap: 16px;
  }

  .profile-fact-card {
    padding: 22px 24px;
    border-radius: 24px;
  }

  .profile-fact-title {
    font-size: 0.8rem !important;
    margin-bottom: 8px;
  }

  .sponsor-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px 24px;
  }

  .stats-surface {
    padding: 30px 28px;
  }

  .about-story {
    gap: 18px;
  }

  .about-top {
    grid-template-columns: 1fr;
  }

  .about-media {
    min-height: 320px;
  }

  .about-copy {
    gap: 0;
  }

  .stats-showcase {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .stats-showcase-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
  }

  .stats-showcase-card:nth-child(1),
  .stats-showcase-card:nth-child(2),
  .stats-showcase-card:nth-child(3),
  .stats-showcase-card:nth-child(4) {
    transform: none;
  }

  .footer-grid-3,
  .footer-grid-menu {
    grid-template-columns: 1fr;
  }

  .footer-links-columns {
    columns: 1;
  }

  .footer-top {
    justify-content: flex-start;
  }

  .hero-modern-inner {
    width: min(1320px, 96%);
    min-height: 580px;
  }

  .hero-slider {
    padding-bottom: 34px;
    touch-action: pan-y;
  }

  .hero-copy {
    max-width: min(760px, calc(100% - 180px));
    padding: 0 26px 0 34px;
    padding-top: 24vh;
  }

  .hero-actions {
    justify-content: flex-start;
  }

  .hero-scene {
    min-height: 580px;
  }

  .hero-side-meta {
    left: 50%;
    right: auto;
    bottom: 32px;
    width: auto;
    transform: translateX(-50%);
  }

  .hero-slider-nav {
    width: auto;
    height: auto;
    top: auto;
    bottom: 26px;
    transform: none;
    padding: 8px;
  }

  .hero-slider-prev {
    left: 20px;
  }

  .hero-slider-next {
    right: 20px;
  }

  .hero-slider-dots {
    bottom: 30px;
  }

  .announcements-cta {
    justify-content: center;
  }

  .announcements-btn {
    min-width: 180px;
  }

  .footer-title {
    font-size: 1.25rem;
  }
}

@media (max-width: 640px) {
  .hero-scene {
  min-height: 0 !important;
  height: 100vw !important;
  border-radius: 16px;
}

.hero-scene-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-modern-inner {
  min-height: 0 !important;
  height: 100vw !important;
}

.hero-slider .slide {
  min-height: 0 !important;
}
	.section {
    padding: 52px 0;
  }

  .sponsor-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px 18px;
  }

  .stats-showcase-section {
    padding: 48px 0;
  }

  .stats-showcase-copy {
    gap: 18px;
  }

  .about-media {
    min-height: 240px;
    border-radius: 24px;
  }

  .about-top {
    gap: 18px;
  }

  .about-content {
    padding: 22px 20px;
  }

  .stats-showcase-grid {
    grid-template-columns: 1fr;
  }

  .stats-showcase-card {
    min-height: 190px;
    padding: 24px 22px;
    border-radius: 24px;
  }

  .stats-value {
    font-size: clamp(2.4rem, 10vw, 3.5rem);
  }

  .stats-label {
    font-size: clamp(1rem, 5vw, 1.4rem);
  }

  .header-inner {
    border-radius: 50px;
    background: linear-gradient(rgba(24, 31, 44, 0.56) 0%, rgba(17, 23, 34, 0.42) 100%);
  }

  .site-header.is-scrolled .header-inner {
    border-radius: 50px;
  }

  .hero-slider-nav span {
    font-size: 3.1rem;
  }

  .hero-copy h1,
  .hero-title {
    font-size: clamp(2rem, 4.8vw, 3.4rem);
    -webkit-line-clamp: 2;
  }

  .hero-slider-nav {
    display: none;
  }

  .hero-text {
    font-size: 0.96rem;
    margin-top: 18px;
    max-width: min(320px, 100%);
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .hero-slider {
    padding-bottom: 0;
  }

  .hero-copy {
    max-width: 100%;
    min-height: auto;
    padding: 132px 22px 108px;
    justify-content: flex-start;
    padding-top: 132px;
  }

  .hero-actions {
    margin-top: 22px;
  }

  .hero-btn-primary {
    font-size: 0.98rem;
  }

  .hero-scene {
    min-height: 560px;
    border-radius: 22px;
  }

  .home-visual-modern .header-inner,
  .home-visual-modern .site-header.is-scrolled .header-inner {
    width: 100%;
    min-height: 64px;
    border-radius: 0;
    background: #ffffff;
  }

  .home.home-visual-modern .hero-modern {
    padding-top: 0;
  }

  .home.home-visual-modern .hero-copy {
    max-width: 100%;
    min-height: auto;
    padding: 132px 22px 108px;
    justify-content: flex-start;
    padding-top: 132px;
  }

  .home.home-visual-modern .hero-copy h1,
  .home.home-visual-modern .hero-title {
    max-width: min(92%, 460px);
    font-size: clamp(2rem, 4.8vw, 3.4rem);
    -webkit-line-clamp: 2;
    min-height: calc(0.92em * 2);
  }

  .home.home-visual-modern .hero-text {
    max-width: 300px;
    -webkit-line-clamp: 3;
  }

  .home.home-visual-modern .hero-scene {
    height: calc(100vh - 94px);
    min-height: 540px;
    margin: 0 10px 0;
    border-radius: 24px;
  }

  .home.home-visual-modern .hero-modern-inner {
    width: 100%;
    height: calc(100vh - 64px);
    min-height: 550px;
  }

  .home.home-visual-modern .hero-side-meta {
    width: min(220px, calc(100% - 56px));
    bottom: 22px;
  }

  .home.home-visual-modern .hero-slider-nav {
    top: auto;
    bottom: 30px;
    transform: none;
  }

  .hero-side-meta {
    position: absolute;
    left: 50%;
    right: auto;
    bottom: 18px;
    width: min(220px, calc(100% - 80px));
    margin: 0;
    padding: 0;
    align-items: center;
    transform: translateX(-50%);
    z-index: 6;
  }

  .hero-side-count {
    grid-template-columns: auto minmax(96px, 1fr) auto;
    gap: 10px;
  }

  .hero-side-current {
    font-size: 1.4rem;
  }

  .hero-side-total {
    font-size: 0.95rem;
  }

  .hero-slider-nav {
    top: 50%;
    bottom: auto;
    width: 46px;
    height: 46px;
    padding: 0;
    border-radius: 999px;
    background: rgba(18, 24, 36, 0.38);
    border: 1px solid rgba(255, 255, 255, 0.24);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transform: translateY(-50%);
  }

  .hero-slider-prev {
    left: 12px;
  }

  .hero-slider-next {
    right: 12px;
  }

  .hero-slider-nav span {
    font-size: 2rem;
  }

  .speaker-grid {
    grid-template-columns: 1fr;
  }

  .announcement-grid {
    grid-template-columns: 1fr;
  }

  .announcement-thumb {
    height: 220px;
  }

  .announcement-body {
    padding: 22px 22px 26px;
    min-height: 0;
  }

  .announcement-next-title {
    font-size: clamp(2rem, 8vw, 2.8rem);
  }

  .announcement-body h3 {
    font-size: clamp(1.34rem, 6vw, 1.8rem);
  }

  .announcement-grid-next .announcement-thumb {
    height: 170px;
  }

  .announcement-grid-next .announcement-body {
    padding: 18px 18px 20px;
    min-height: 0;
  }

  .announcement-grid-next .announcement-body h3 {
    font-size: clamp(1.1rem, 5.4vw, 1.36rem);
    -webkit-line-clamp: 2;
  }

  .duyurular-archive {
    padding-top: 18px;
  }

  .page-hero,
  .duyurular-hero {
    margin-bottom: 20px;
    padding: 0;
  }

  .page-hero-kicker,
  .duyurular-kicker {
    font-size: 0.72rem;
    letter-spacing: 0.16em;
  }

  .page-hero-title,
  .duyurular-title {
    margin-bottom: 8px;
  }

  .page-hero-title,
  .duyurular-title {
    padding-bottom: 18px;
  }

  .page-hero-title::after,
  .duyurular-title::after {
    width: min(116px, 42vw);
    height: 2px;
  }

  .page-hero-intro,
  .duyurular-intro {
    font-size: 0.95rem;
  }

  .timeline-head {
    margin-bottom: 28px;
  }

  .timeline-head {
    gap: 10px;
  }

  .timeline-list {
    grid-auto-columns: minmax(196px, 226px);
    gap: 22px;
    padding: 30px 18px 28px;
  }

  .timeline-list::before {
    left: 18px;
    right: 18px;
  }

  .timeline-item {
    min-height: 470px;
    padding-left: 34px;
  }

  .timeline-item-top {
    padding-bottom: 236px;
  }

  .timeline-item-bottom {
    padding-top: 236px;
  }

  .timeline-marker {
    width: 14px;
    height: 14px;
    box-shadow: 0 0 0 6px rgba(247, 240, 231, 0.96);
  }

  .timeline-stem {
    left: 6px;
  }

  .timeline-item-top .timeline-stem,
  .timeline-item-bottom .timeline-stem {
    height: 124px;
  }

  .timeline-card {
    left: 34px;
  }

  .timeline-entry-year {
    left: -20px;
    font-size: 1.45rem;
  }

  .timeline-item-top .timeline-entry-year {
    top: calc(50% - 172px);
  }

  .timeline-item-bottom .timeline-entry-year {
    top: calc(50% + 168px);
  }

  .timeline-media {
    margin-bottom: 10px;
  }

  .timeline-media img {
    height: 116px;
  }

  .timeline-title {
    font-size: 1rem;
  }

  .timeline-text {
    font-size: 0.84rem;
    line-height: 1.55;
  }

  .gallery-album-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .gallery-album-link {
    grid-template-rows: minmax(230px, 260px) auto;
    min-height: 0;
    border-radius: 24px;
    padding: 12px;
  }

  .gallery-album-body {
    padding: 16px 8px 4px;
  }

  .gallery-album-hero-caption {
    padding: 16px 16px 14px;
  }

  .gallery-album-hero-caption h2 {
    font-size: clamp(1.45rem, 7vw, 2rem);
  }

  .gallery-album-meta-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .gallery-album-meta-item-wide {
    grid-column: 1 / -1;
  }

  .gallery-album-header h1 {
    font-size: clamp(2.15rem, 9vw, 3.2rem);
  }

  .gallery-captures-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .gallery-capture-card,
  .gallery-capture-card-1,
  .gallery-capture-card-2,
  .gallery-capture-card-3,
  .gallery-capture-card-4,
  .gallery-capture-card-5 {
    grid-column: auto;
    min-height: 170px;
    border-radius: 18px;
  }

  .contact-page-shell {
    gap: 24px;
    grid-template-columns: 1fr;
    padding: 18px;
    border-radius: 28px;
  }

  .contact-overview {
    padding-right: 0;
  }

  .contact-form-panel {
    margin-top: 0;
    padding: 32px 24px 24px;
  }

  .contact-editor-content form,
  .contact-editor-content .wpcf7-form,
  .contact-editor-content .wpforms-form,
  .contact-editor-content .wp-block-shortcode,
  .contact-editor-content .wp-block-group.has-background {
    padding: 22px;
  }

  .contact-editor-content input[type="submit"],
  .contact-editor-content button[type="submit"],
  .contact-editor-content .wp-element-button,
  .contact-editor-content .wpforms-submit,
  .contact-editor-content .wpcf7-submit {
    width: 100%;
  }

  .contact-form-panel-head h3 {
    font-size: clamp(2.2rem, 8vw, 3.3rem);
  }

  .speaker-card {
    padding: 14px 14px 18px;
  }

  .speaker-card-body h2 {
    font-size: 1.5rem;
  }

  .footer-links a,
  .footer-text,
  .footer-bottom p {
    font-size: 0.92rem;
  }

  .sponsor-ticker {
    margin-bottom: 14px;
  }

  .back-to-top {
    right: 16px;
    bottom: 22px;
  }
}

@media (max-width: 420px) {
  .container {
    width: min(1120px, 94%);
  }

  .site-title {
    font-size: 1rem;
  }

  .hero-actions {
    gap: 14px;
  }

  .hero-btn-primary {
    width: 100%;
    min-width: 0;
  }

  .timeline-head {
    margin-bottom: 28px;
  }

  .timeline-list {
    grid-auto-columns: minmax(170px, 190px);
    gap: 18px;
    padding: 18px 14px 18px;
  }

  .timeline-list::before {
    left: 14px;
    right: 14px;
  }

  .timeline-item {
    min-height: 394px;
    padding-left: 24px;
  }

  .timeline-item-top {
    padding-bottom: 196px;
  }

  .timeline-item-bottom {
    padding-top: 196px;
  }

  .timeline-card {
    left: 24px;
  }

  .timeline-entry-year {
    left: -18px;
    font-size: 1.18rem;
  }

  .timeline-item-top .timeline-entry-year {
    top: calc(50% - 132px);
  }

  .timeline-item-bottom .timeline-entry-year {
    top: calc(50% + 124px);
  }

  .timeline-item-top .timeline-stem,
  .timeline-item-bottom .timeline-stem {
    height: 98px;
  }

  .timeline-media img {
    height: 92px;
  }

  .timeline-title {
    font-size: 0.9rem;
  }

  .timeline-text {
    font-size: 0.76rem;
    line-height: 1.45;
  }

  .back-to-top {
    width: 52px;
    height: 52px;
    font-size: 28px;
    right: 12px;
    bottom: 16px;
  }
}