/* =========================================================
   CSS CUSTOM PROPERTIES
   ========================================================= */
:root {
  --color-black: #0a0a0a;
  --color-white: #ffffff;
  --color-gold: #f5c518;
  --color-gray: #888888;
  --color-light: #f9fafb;
  --red-600: #E7000B;
  --color-gray-100: #F3F4F6;
  --color-gray-600: #4A5565;
  --color-soft-gray: #e5e7eb;
  --color-dark-bg: #111111;
  --color-blue: #1a73e8;
  --font-display: "Urbanist", sans-serif;
  --font-body: "Urbanist", sans-serif;
  --radius-card: 12px;
  --radius-pill: 100px;
  --transition: 0.2s ease;
  --container-max: 1260px;
  --container-pad: 1.25rem;
  --header-h: 76px;

  /* Gutenberg spacing scale — used by block padding/margin/gap presets */
  --wp--preset--spacing--20: 0.44rem;
  --wp--preset--spacing--30: 0.67rem;
  --wp--preset--spacing--40: 1rem;
  --wp--preset--spacing--50: 1.5rem;
  --wp--preset--spacing--60: 2.25rem;
  --wp--preset--spacing--70: 3.38rem;
  --wp--preset--spacing--80: 5.06rem;
}

/* =========================================================
   RESET & BASE
   ========================================================= */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/*
 * Do NOT zero out margin/padding globally — Gutenberg writes
 * padding/margin as inline styles on Group blocks and a blanket
 * reset will fight those declarations.
 * Instead, reset only the elements that need it.
 */
body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
figure,
blockquote,
dl,
dd,
ul,
ol,
fieldset,
legend {
  margin: 0;
  padding: 0;
}
h1 {
  font-size: 3.75rem;
  font-weight: 600;
  margin-bottom: 1rem;
}
h2 {
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

h3 {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

@media (max-width: 520px) {
  h1 {
    font-size: 2.75rem;
  }
}

html {
  scroll-behavior: smooth;
}
@media (max-width: 520px) {
  html {
    font-size: 12px;
  }
}
body {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--color-black);
  background: var(--color-white);
  -webkit-font-smoothing: antialiased;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}
ul {
  list-style: none;
}
button {
  cursor: pointer;
  border: none;
  background: none;
  font: inherit;
}

/* <WP CLASSES> */
.wp-block-description {
  font-size: 1rem;
}
/* </WP CLASSES> */

.rounded img {
  border-radius: 12px;
}
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-pad);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  letter-spacing: 0.02em;
  margin-bottom: 2rem;
  color: var(--color-black);
}
.section-title-light {
  color: var(--color-white);
}
.section-subtitle {
  color: var(--color-gray);
  font-size: 1.05rem;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-inline: auto;
  text-align: center;
}
.no-content {
  color: var(--color-gray);
  padding: 2rem 0;
}

/* =========================================================
   BUTTONS
   ========================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 1.75rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1.25rem;
  letter-spacing: 0.03em;
  text-align: center;
  transition:
    opacity var(--transition),
    transform var(--transition);
  white-space: nowrap;
  line-height: 1;
}
.btn:hover {
  opacity: 0.85;
  transform: translateY(-1px);
}
.btn:active {
  transform: translateY(0);
}
.btn-pill {
  border-radius: var(--radius-pill);
}
.btn-lg {
  padding: 1rem 2.5rem;
  font-size: 1rem;
}
.btn-sm {
  padding: 0.45rem 1.1rem;
  font-size: 1rem;
}

.btn-white-filled {
  background: var(--color-white);
  color: var(--color-black);
}
.btn-white-outlined {
  background: transparent;
  color: var(--color-white);
  border: 2px solid var(--color-white);
}
.btn-gold {
  background: var(--color-gold);
  color: var(--color-black);
}
.btn-dark {
  background: var(--color-black);
  color: var(--color-white);
}
.btn-outline {
  background: transparent;
  color: var(--color-black);
  border: 1px solid var(--color-soft-gray);
}
.btn-outline-dark {
  background: transparent;
  color: var(--color-black);
  border: 2px solid var(--color-black);
}

/* =========================================================
   HEADER
   ========================================================= */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding-top: 24px;
  padding-left: 0;
  padding-right: 0;
  padding-bottom: 0;
  transition: padding var(--transition);
}
.header-pill {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  width: min(83.33vw, 1200px);
  background: #ffffff;
  border-radius: 444px;
  padding-top: 4px;
  padding-right: 6px;
  padding-bottom: 4px;
  padding-left: 24px;
  margin-inline: auto;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
  transition:
    padding var(--transition),
    box-shadow var(--transition);
  backdrop-filter: blur(5px);
  opacity: 1;
  box-sizing: border-box;
}
.site-header.scrolled .header-pill {
  padding-block: 0.35rem;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.14);
}
.header-logo a,
.header-logo .site-name {
  font-family: var(--font-display);
  font-size: 1.4rem;
  letter-spacing: 0.05em;
  color: var(--color-black);
}
.header-logo a {
  display: inline-flex;
  align-items: center;
  width: auto;
  height: 100%;
}
.header-logo img {
  width: auto;
  max-height: 40px;
  opacity: 1;
}

/* Primary nav — hidden on mobile */
.header-nav {
  display: none;
}

.nav-list {
  display: flex;
  height: 100%;
  gap: 0.1rem;
}
.nav-list > li {
  height: 100%;
  position: relative;
}
.nav-list > li > a {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.45rem 0.5rem;
  font-size: 16px;
  font-weight: 500;
  line-height: 18px;
  letter-spacing: 0;
  color: #6a7282;
  border-radius: var(--radius-pill);
  transition: background var(--transition);
}
.nav-list li:hover a {
  color: #BB6D02;
}
.nav-list .current-menu-item > a {
  color: #000000;
}

/* Dropdown (simple, depth > 0) */
.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 180px;
  background: var(--color-white);
  border-radius: 0.75rem;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
  padding: 0.4rem;
  padding-top: calc(0.4rem + 0.5rem);
  z-index: 200;
}
.nav-list li:hover > .dropdown-menu,
.nav-list li.is-open > .dropdown-menu {
  display: block;
}
.dropdown-menu a {
  border-radius: 0.5rem;
  font-size: 0.84rem;
}
.dropdown-caret {
  font-size: 0.65em;
  opacity: 0.6;
}

/* =========================================================
   MEGA MENU
   ========================================================= */
.nav-list > li {
  position: static; /* mega menu positions relative to header-pill */
}

/* The mega panel */
.mega-menu {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  top: 100%;
  z-index: 999;
  padding-top: 0.5rem; /* bridge hover gap */
}
.mega-menu:before {
  content: '';
  display: block;
  position: absolute;
  width: 100%;
  height: 4px;
  top: -4px;
  left: 0;
}

.nav-list > li:hover > .mega-menu,
.nav-list > li.is-open > .mega-menu {
  display: block;
}

.mega-menu-inner {
  display: flex;
  gap: 0;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.14);
  overflow: hidden;
  width: min(83.33vw, 1200px);
  margin: 0 auto;
}

/* Left: 2-column link grid */
.mega-menu-links {
  flex: 1;
  padding: 1.5rem;
}

.mega-menu-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.25rem 1.5rem;
}

.mega-menu-list li {
  position: static;
}

.mega-menu-item-link {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1rem;
  border-radius: 0.6rem;
  text-decoration: none;
  transition: background 0.15s;
}

.mega-menu-item-link:hover {
  background: var(--color-light, #f4f4f5);
}

.mega-menu-item-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #111;
}

.mega-menu-item-desc {
  font-size: 1rem;
  color: #666;
}

/* Right: image pane */
.mega-menu-image {
  width: 280px;
  height: 280px;
  margin: 1.5rem;
  border-radius: 12px;
  flex-shrink: 0;
  background: #f0f0f0;
  overflow: hidden;
  position: relative;
}

.mega-menu-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: opacity 0.2s ease;
}

.mega-menu-img[src=""] {
  opacity: 0;
}

/* Header right */
.header-right {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.78rem;
  font-weight: 600;
  cursor: pointer;
  padding: 0.25rem 0.5rem;
  border-radius: var(--radius-pill);
  transition: background var(--transition);
}
.lang-switcher:hover {
}
.header-cta {
  width: 148px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding-top: 12px;
  padding-right: 24px;
  padding-bottom: 12px;
  padding-left: 24px;
  border-radius: 444px;
  background-color: #000000;
  font-weight: 600;
  font-size: 16px;
  line-height: 18px;
  letter-spacing: 0;
  color: #ffffff;
}

/* Hamburger */
.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 0.45rem;
  border-radius: 0.5rem;
  transition: background var(--transition);
}
.hamburger:hover {
  background: var(--color-light);
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--color-black);
  border-radius: 2px;
  transition:
    transform var(--transition),
    opacity var(--transition);
}
.hamburger.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger.is-open span:nth-child(2) {
  opacity: 0;
}
.hamburger.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile drawer */
.mobile-drawer {
  position: fixed;
  inset: 0;
  background: #000000;
  z-index: 1200;
  padding: max(1.1rem, env(safe-area-inset-top, 0px))
    clamp(1rem, 5vw, 1.5rem)
    calc(max(1.2rem, env(safe-area-inset-bottom, 0px)) + 6rem);
  overflow-y: auto;
}
.mobile-drawer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}
.mobile-drawer .lang-switcher,
.mobile-drawer .lang-switcher-toggle {
  color: #f4f4f5;
}
.mobile-drawer .lang-switcher-caret {
  stroke: #f4f4f5;
}
.mobile-drawer .lang-flag {
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.55) inset;
}
.mobile-drawer .lang-flag--tr {
  background-color: #e30a17;
}
.mobile-drawer-close {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: none;
  background: #f4f4f5;
  color: #000000;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  line-height: 1;
  font-weight: 500;
}
.mobile-drawer-close span {
  transform: translateY(-1px);
}
.mobile-drawer-nav {
  margin-bottom: 1.5rem;
}
.mobile-nav-list,
.mobile-nav-list .sub-menu {
  margin: 0;
  padding: 0;
  list-style: none;
}
.mobile-nav-list li {
  margin-bottom: 1.5rem;
  border-bottom: none;
}
.mobile-nav-list a {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.45rem;
  padding: 0.35rem 0;
  color: #f4f4f5;
  font-weight: 500;
  font-style: normal;
  font-size: 20px;
  line-height: 100%;
  letter-spacing: 0;
  vertical-align: middle;
}
.mobile-nav-list .current-menu-item > a,
.mobile-nav-list .current-menu-ancestor > a {
  color: #bb6d02;
}
.mobile-nav-list .menu-item-has-children > a::after {
  content: "";
  width: 20px;
  height: 20px;
  margin-left: 2px;
  background: url("../image/alt-arrow-down.svg") center / 20px 20px no-repeat;
  opacity: 1;
  transform: translateY(2px);
}
.mobile-nav-list .menu-item-has-children.is-open > a::after {
  transform: translateY(2px) rotate(180deg);
}
.mobile-nav-list .sub-menu {
  display: none;
  padding-bottom: 0.2rem;
}
.mobile-nav-list .menu-item-has-children.is-open > .sub-menu {
  display: block;
}
.mobile-nav-list .sub-menu li {
  border-bottom: none;
  margin-bottom: 0;
}

.mobile-nav-list .sub-menu li:last-child a {
  border-bottom: none;
}
.mobile-nav-list .sub-menu a {
  color: #f4f4f5;
  font-weight: 500;
  font-style: normal;
  font-size: 20px;
  line-height: 100%;
  letter-spacing: 0;
  vertical-align: middle;
  padding: 1rem;
  border-bottom: 1px solid var(--gray-800, #1E2939);
}
.mobile-nav-list .sub-menu a::after {
  content: "";
}
.mobile-drawer-cta {
  position: fixed;
  left: clamp(1rem, 5vw, 1.5rem);
  right: clamp(1rem, 5vw, 1.5rem);
  bottom: max(1rem, env(safe-area-inset-bottom, 0px));
  z-index: 1210;
}
.mobile-drawer-cta-btn {
  width: 100%;
  height: 48px;
  justify-content: center;
  color: #000000;
  font-size: 1.2rem;
  font-weight: 600;
}
body.mobile-menu-open {
  overflow: hidden;
}

/* =========================================================
   HERO
   ========================================================= */
.hero-section {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-color: var(--color-dark-bg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  overflow: hidden;
  padding-top: var(--header-h);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.78) 0%,
    rgba(0, 0, 0, 0.38) 100%
  );
  z-index: 1;
}
.hero-video-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero-yt-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}
.hero-yt-bg iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100vw;
  height: 56.25vw; /* 16:9 aspect ratio */
  min-height: 100vh;
  min-width: 177.77vh; /* 16:9 aspect ratio */
  transform: translate(-50%, -50%);
  border: none;
}
.hero-yt-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: transparent;
  pointer-events: auto;
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 3;
  padding-block: 2.5rem;
  max-width: 820px;
  margin: auto;
  text-align: center;
}
.hero-location {
  color: #ffffff;
  font-size: 24px;
  font-weight: 400;
  line-height: 100%;
  letter-spacing: 0;
  text-align: center;
  margin-bottom: 1rem;
}
.hero-headline {
  font-weight: 900;
  font-style: italic;
  font-size: 100px;
  line-height: 110px;
  letter-spacing: -2px;
  text-align: center;
  color: #ffffff;
  margin-bottom: 2rem;
  white-space: nowrap;
  width: 100%;
  max-width: none;
}
.hero-headline--image img {
  max-width: min(100%, 900px);
  height: auto;
  margin-inline: auto;
  display: block;
}
.hero-headline-rest {
  font-weight: 800;
  font-style: normal;
  font-size: 100px;
  line-height: 110px;
  letter-spacing: -2px;
  text-align: center;
  vertical-align: middle;
  color: #ffffff;
  white-space: nowrap;
  position: relative;
  top: -11px;
  margin-left: -0.02em;
}
.hero-headline-mobile-line1,
.hero-headline-mobile-line2 {
  display: none;
}
.hero-headline-line2 {
  display: block;
}
.hero-headline-prefix {
  position: relative;
  top: 0.12em;
}
.hero-column-o {
  display: inline-flex;
  align-items: flex-end;
  vertical-align: bottom;
  color: var(--color-gold);
  margin-inline: 0.05em;
}
.hero-t-replacement {
  display: inline-block;
  width: 0.78em;
  height: 1.02em;
  margin-inline: -0.02em -0.06em;
  vertical-align: -0.2em;
  line-height: 1;
  opacity: 1;
  transform: none;
}
.hero-t-replacement img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  object-position: center;
  opacity: 1;
}
.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  justify-content: center;
}
.hero-cta-primary-icon {
  flex-shrink: 0;
  display: block;
  width: 1.25rem;
  height: 1.25rem;
}
.hero-cta-primary {
  box-sizing: border-box;
  width: 216px;
  height: 48px;
  padding: 12px 24px;
  gap: 10px;
  border-radius: 444px;
  background: #ffffff;
  opacity: 1;
  justify-content: center;
  font-weight: 600;
  font-style: normal;
  font-size: 20px;
  line-height: 100%;
  letter-spacing: 0;
  vertical-align: middle;
  color: #000000;
  align-items: center;
}
.hero-cta-secondary {
  box-sizing: border-box;
  width: 216px;
  height: 48px;
  padding: 12px 24px;
  gap: 10px;
  border-radius: 444px;
  border: 1px solid #ffffff;
  background: transparent;
  opacity: 1;
  justify-content: center;
  font-weight: 600;
  font-style: normal;
  font-size: 20px;
  line-height: 100%;
  letter-spacing: 0;
  vertical-align: middle;
  color: #ffffff;
  align-items: center;
}
.hero-cta-secondary-icon {
  flex-shrink: 0;
  display: block;
  width: 1.25rem;
  height: 1.25rem;
}
.hero-bottom-brands {
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(0.35rem, 1vw, 0.8rem);
  margin-bottom: 2rem;
  width: 100%;
  max-width: 100%;
  padding-inline: clamp(0.75rem, 2vw, 1.25rem);
  box-sizing: border-box;
  pointer-events: none;
}
.hero-bottom-brands a,
.hero-bottom-brands img {
  pointer-events: auto;
}
.hero-partner-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(0.8rem, 2.8vw, 2rem);
  flex-wrap: nowrap;
  width: 100%;
  max-width: min(50rem, 100%);
}
.hero-partner-logo {
  display: block;
  width: auto;
  height: auto;
  max-height: 40px;
  max-width: min(30vw, 180px);
  object-fit: contain;
  object-position: center;
  flex: 0 1 auto;
  opacity: 1;
  filter: brightness(0) invert(1);
}
.hero-partner-logo--g1 {
  max-height: clamp(20px, 1.8vw, 28px);
  max-width: min(34vw, 220px);
}
.hero-partner-logo--png {
  max-height: clamp(20px, 1.8vw, 28px);
  max-width: min(30vw, 180px);
}
.hero-partner-logo.hero-partner-logo--third {
  max-height: clamp(34px, 4.8vw, 62px);
  max-width: min(52vw, 300px);
}
@media (max-width: 520px) {
  .hero-partner-logos {
    flex-wrap: wrap;
    gap: 1.5rem 2rem;
  }
  .hero-partner-logo,
  .hero-partner-logo--g1,
  .hero-partner-logo--png {
    max-height: 24px;
    max-width: min(42vw, 180px);
  }
  .hero-partner-logo.hero-partner-logo--third {
    max-height: 72px;
    max-width: min(88vw, 380px);
  }
}
.hero-sponsors {
  display: flex;
  align-items: center;
  gap: clamp(0.8rem, 2.2vw, 1.6rem);
  flex-wrap: wrap;
  justify-content: center;
  max-width: 100%;
}
.hero-sponsors img {
  height: clamp(20px, 2.8vw, 32px);
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.65;
  transition: opacity var(--transition);
}
.hero-sponsors img:hover {
  opacity: 1;
}

/* =========================================================
   TIMER
   ========================================================= */
.timer-section {
  position: relative;
  z-index: 1;
  width: 100%;
  min-height: 11.25vw;
  background: #000000;
  padding-left: 1%;
  padding-right: 1%;
  padding-top: 1.1%;
  padding-bottom: 1.1%;
  margin-top: 0;
  display: flex;
  align-items: center;
}
.timer-inner {
  display: flex;
  flex-direction: row;
  width: 100%;
  gap: clamp(1.25rem, 3vw, 2.5rem);
  justify-content: space-between;
  align-items: center;
  text-align: left;
  transform: none;
}
.timer-countdown-col {
  flex: 1 1 auto;
  min-width: 0;
  display: flex;
  justify-content: flex-end;
}
.timer-label-col {
  flex: 0 1 auto;
  max-width: min(100%, 25rem);
}
.timer-label {
  font-weight: 400;
  font-style: normal;
  font-size: 28px;
  line-height: 1.25;
  letter-spacing: 0;
  vertical-align: middle;
  color: #ffffff;
  margin: 0;
}
.timer-label-line {
  display: block;
}
@media (max-width: 767px) {
  .timer-label {
    font-size: clamp(1.05rem, 4.5vw, 28px);
  }
  .countdown-label {
    font-size: clamp(0.8rem, 3.8vw, 28px);
  }
}
.countdown {
  display: grid;
  width: 100%;
  max-width: min(100%, 44rem);
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr) auto minmax(
      0,
      1fr
    ) auto minmax(0, 1fr);
  grid-template-rows: auto auto;
  column-gap: clamp(1.25rem, 4.5vw, 3.75rem);
  row-gap: 0.05rem;
  justify-items: center;
  align-items: center;
}
.countdown > .countdown-label:nth-child(1) {
  grid-column: 1;
  grid-row: 1;
}
.countdown > .countdown-label:nth-child(2) {
  grid-column: 3;
  grid-row: 1;
}
.countdown > .countdown-label:nth-child(3) {
  grid-column: 5;
  grid-row: 1;
}
.countdown > .countdown-label:nth-child(4) {
  grid-column: 7;
  grid-row: 1;
}
.countdown > #cd-days {
  grid-column: 1;
  grid-row: 2;
}
.countdown > #cd-hours {
  grid-column: 3;
  grid-row: 2;
}
.countdown > #cd-minutes {
  grid-column: 5;
  grid-row: 2;
}
.countdown > #cd-seconds {
  grid-column: 7;
  grid-row: 2;
}
.countdown > :nth-child(6) {
  grid-column: 2;
  grid-row: 2;
}
.countdown > :nth-child(8) {
  grid-column: 4;
  grid-row: 2;
}
.countdown > :nth-child(10) {
  grid-column: 6;
  grid-row: 2;
}
.countdown-label {
  font-weight: 400;
  font-style: normal;
  font-size: 28px;
  line-height: 100%;
  letter-spacing: 0;
  text-align: center;
  vertical-align: middle;
  color: #ffffff;
  transform: translateY(-0.75rem);
}
.countdown-number,
.countdown-sep {
  font-weight: 600;
  font-style: normal;
  font-size: 60px;
  line-height: 100%;
  letter-spacing: -2px;
  text-align: center;
  vertical-align: middle;
  color: #ffffff;
}
.countdown-number {
  min-width: 2ch;
}
/* =========================================================
   PARKURLAR
   ========================================================= */
.parkurlar-section {
  padding-block: 4rem;
}
.parkurlar-section-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
  min-width: 0;
}
.parkurlar-section-title {
  font-weight: 600;
  font-style: normal;
  font-size: 60px;
  line-height: 1;
  letter-spacing: -2px;
  vertical-align: middle;
  color: #000000;
  margin: 0;
  padding-top: 0.12em;
  flex: 0 1 auto;
}
.parkurlar-section-lead {
  font-weight: 400;
  font-style: normal;
  font-size: 24px;
  line-height: 28px;
  letter-spacing: 0px;
  vertical-align: middle;
  color: #1e2939;
  text-box-trim: none;
  margin: 0;
  flex: 0 1 auto;
  min-width: 0;
  max-width: min(100%, 42rem);
  text-align: left;
}
.parkurlar-section-lead-line {
  display: block;
}
.parkurlar-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  align-items: start;
}
@media (min-width: 768px) {
  .parkurlar-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: clamp(1.25rem, 3vw, 2rem);
    row-gap: clamp(1.5rem, 3vw, 2rem);
  }
}
/* =========================================================
   PARKUR -> PROGRAM ARA GÖRSEL
   ========================================================= */
.parkur-program-container {
  min-height: 100vh;
  background: #000000;
  background-size: 100% auto;
  background-position: bottom;
}
.parkur-program-visual {
  position: relative;
  container-type: inline-size;
  width: 100%;
  /* aspect-ratio: 1440 / 1029; */
  overflow: hidden;
}
.parkur-program-visual-image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  opacity: 0.4;
}
.parkur-program-visual-content {
  padding-top: 5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.parkur-program-visual-title {
  margin: 0;
  padding-bottom: clamp(0.75rem, 1.5vw, 1.25rem);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 600;
  font-style: normal;
  font-size: clamp(1.8rem, calc(100cqw * 60 / 1440), 60px);
  line-height: 100%;
  letter-spacing: -2px;
  text-align: center;
  color: #ffffff;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.35);
}
.parkur-program-visual-subtitle {
  margin: 0;
  max-width: min(945px, 92%);
  font-family: var(--font-display);
  font-weight: 400;
  font-style: normal;
  font-size: clamp(1rem, calc(100cqw * 24 / 1440), 24px);
  line-height: 100%;
  letter-spacing: 0;
  text-align: center;
  color: #ffffff;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.35);
}
.parkur-program-visual-subtitle-line {
  display: inline;
}
.parkur-program-visual-subtitle-line + .parkur-program-visual-subtitle-line::before {
  content: " ";
}
.parkur-program-video-wrapper {
  position: relative;
  width: min(1360px, calc(100cqw * 1360 / 1440));
  max-width: 98%;
  margin-inline: auto;
}
.parkur-program-video-surface {
  display: block;
  width: 100%;
  margin-top: 4rem;
}
.parkur-program-video-facade {
  display: block;
  cursor: pointer;
  width: 100%;
  position: relative;
  aspect-ratio: 1534.60498046875 / 699.22998046875;
  border-radius: 30.69px;
  overflow: hidden;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.35);
  padding: 0;
  border: none;
  background: #000;
}
.parkur-program-video-facade img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.parkur-program-video-facade .yt-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  transition: transform 0.2s ease;
}
.parkur-program-video-facade:hover .yt-play-btn {
  transform: translate(-50%, -50%) scale(1.1);
}
.parkur-program-video-embed {
  display: none;
  position: relative;
  width: 100%;
  aspect-ratio: 1534.60498046875 / 699.22998046875;
  border-radius: 30.69px;
  overflow: hidden;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.35);
  margin-top: clamp(1rem, calc(100cqw * 28 / 1440), 2rem);
  background: #000;
}
.parkur-program-video-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
.parkur-program-gallery {
  position: relative;
  container-type: inline-size;
  width: 100%;
  min-height: clamp(16rem, calc(100vw * 440 / 1440), 27.5rem);
  opacity: 1;
  padding-top: 4rem;
  padding-bottom: clamp(2rem, calc(100cqw * 80 / 1440), 5rem);
  box-sizing: border-box;
}
.parkur-program-gallery-track {
  width: min(100%, 1440px);
  min-height: clamp(8rem, calc(100cqw * 320 / 1440), 20rem);
  margin-inline: auto;
  overflow: hidden;
  padding-inline: clamp(1rem, 3vw, 2rem);
  box-sizing: border-box;
}
.parkur-program-gallery-marquee {
  display: flex;
  width: max-content;
  align-items: center;
  gap: clamp(0.45rem, calc(100cqw * 22 / 1440), 1.35rem);
  animation: parkur-gallery-scroll 36s linear infinite;
}
.parkur-program-gallery-row {
  display: flex;
  align-items: center;
  gap: clamp(0.45rem, calc(100cqw * 14 / 1440), 1rem);
}
.parkur-program-gallery-card {
  width: clamp(180px, calc(100cqw * 320 / 1440), 320px);
  aspect-ratio: 1 / 1;
  border-radius: 14px;
  overflow: hidden;
  flex: 0 0 auto;
  background: #111;
}
.parkur-program-gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
@keyframes parkur-gallery-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(
      calc(-50% - clamp(0.25rem, calc(100cqw * 12 / 1440), 0.75rem))
    );
  }
}
.parkur-card {
  background: var(--color-white);
  border-radius: var(--radius-card);
  border: 1px solid #e5e7eb;
  overflow: hidden;
  box-shadow: none;
  transition:
    transform var(--transition),
    box-shadow var(--transition);
}
.parkur-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}
.parkur-thumb img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.parkur-card-body {
  padding: 1.5rem;
}
.parkur-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}
.parkur-card-title {
  font-weight: 600;
  font-style: normal;
  font-size: 28px;
  line-height: 100%;
  letter-spacing: -0.02em;
  text-align: left;
  vertical-align: middle;
  color: #000000;
  text-box-trim: none;
  margin: 0;
  flex: 1;
  min-width: 0;
}
.parkur-downloads {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.parkur-indir-details {
  position: relative;
}
.parkur-indir-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 0.38rem 0.9rem;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: var(--radius-pill);
  cursor: pointer;
  list-style: none;
  text-decoration: none;
  box-sizing: border-box;
  transition:
    border-color var(--transition),
    background var(--transition);
}
a.parkur-indir-btn:hover,
a.parkur-indir-btn:focus-visible {
  border-color: #d1d5db;
  background: #fafafa;
  outline: none;
}
summary.parkur-indir-btn:hover,
summary.parkur-indir-btn:focus-visible {
  border-color: #d1d5db;
  background: #fafafa;
  outline: none;
}
.parkur-indir-btn::-webkit-details-marker {
  display: none;
}
summary.parkur-indir-btn::marker {
  content: "";
}
.parkur-indir-icon {
  flex-shrink: 0;
  display: block;
  width: 14px;
  height: 14px;
}
.parkur-indir-label {
  font-weight: 600;
  font-style: normal;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0px;
  vertical-align: middle;
  color: #000000;
  text-box-trim: none;
}
.parkur-indir-panel {
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  min-width: 10.5rem;
  padding: 0.35rem;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 0.75rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  z-index: 5;
}
.parkur-indir-panel-link {
  display: block;
  padding: 0.5rem 0.75rem;
  border-radius: 0.5rem;
  font-size: 0.8125rem;
  font-weight: 500;
  color: #000000;
  text-decoration: none;
  transition: background var(--transition);
}
.parkur-indir-panel-link:hover,
.parkur-indir-panel-link:focus-visible {
  background: var(--color-light);
  outline: none;
}
.parkur-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-bottom: 0;
  padding-bottom: 1rem;
  border-bottom: 1px solid #e5e7eb;
  font-weight: 400;
  font-style: normal;
  font-size: 20px;
  line-height: 100%;
  letter-spacing: -0.02em;
  vertical-align: middle;
  color: #364153;
  text-box-trim: none;
}
.parkur-meta-item {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  color: inherit;
}
.parkur-meta-item svg {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  color: #364153;
}
.parkur-stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 0.65rem;
  row-gap: 1.15rem;
  margin-top: 1rem;
  margin-bottom: 0;
  padding: 0.75rem 0;
  background: var(--color-white);
  border-radius: 0.75rem;
  overflow: visible;
}
/* Üstteki parkur-meta ile sol kenar hizası; ikon sütunu meta’daki 18px ile aynı */
.parkur-stats-grid .stat-label-icon {
  flex: 0 0 18px;
  width: 18px;
  justify-content: flex-start;
  align-items: center;
}
.parkur-stat {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  overflow: visible;
  min-width: 0;
}
.stat-label {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  leading-trim: none;
  /* 100% satır yüksekliği ikonları (özellikle stroke’lu Cut Off) kırpıyordu */
  line-height: 1.25;
  letter-spacing: 0;
  vertical-align: middle;
  color: #4a5565;
  overflow: visible;
}
.stat-label-icon {
  display: inline-flex;
  flex-shrink: 0;
  line-height: 0;
  color: inherit;
  overflow: visible;
}
.stat-label-icon-svg {
  display: block;
  overflow: visible;
  flex-shrink: 0;
}
/* Yatay rakım ikonları: cap yüksekliğine yakın, tam genişlik */
.parkur-stats-grid
  .stat-label-icon-svg:not(.stat-label-icon-svg--cutoff):not(
    .stat-label-icon-svg--health-req
  ) {
  height: 12px;
  width: auto;
}
.stat-label-icon-svg--cutoff {
  height: 18px;
  width: auto;
}
/* Sağlık / belge ikonu (20×20 viewBox) */
.stat-label-icon-svg--health-req {
  height: 16px;
  width: auto;
}
.stat-value {
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--color-black);
}
.parkur-stats-grid .stat-value {
  padding-left: calc(18px + 0.4rem);
  font-weight: 500;
  font-style: normal;
  font-size: 20px;
  leading-trim: none;
  line-height: 1.25;
  letter-spacing: -0.02em;
  vertical-align: middle;
  color: #000000;
}
.parkur-card-actions {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid #e5e7eb;
}
.parkur-detail-btn {
  box-sizing: border-box;
  flex: 0 1 calc(50% - 5px);
  min-width: 0;
  width: auto;
  max-width: 258px;
  min-height: 56px;
  height: 56px;
  justify-content: center;
  gap: 10px;
  border-radius: 444px;
  padding: 16px 24px;
  background: #ffffff;
  border: 1px solid #d1d5dc;
  font-weight: 600;
  font-style: normal;
  font-size: 20px;
  leading-trim: none;
  line-height: 100%;
  letter-spacing: 0;
  vertical-align: middle;
  color: #000000;
  text-decoration: none;
}
.parkur-detail-btn:hover,
.parkur-detail-btn:focus-visible {
  opacity: 1;
  transform: none;
  background: #ffffff;
  border-color: #d1d5dc;
  color: #000000;
}
.parkur-card-actions .parkur-register-btn {
  flex: 0 1 calc(50% - 5px);
  min-width: 0;
  width: auto;
  max-width: 258px;
  margin-left: 0;
}
.parkur-register-btn {
  box-sizing: border-box;
  max-width: 100%;
  min-height: 56px;
  height: 56px;
  margin-left: auto;
  justify-content: center;
  gap: 10px;
  border-radius: 444px;
  padding: 16px 24px;
  background: #000000;
  border: 1px solid #000000;
  font-weight: 600;
  font-style: normal;
  font-size: 20px;
  line-height: 100%;
  letter-spacing: 0;
  vertical-align: middle;
  color: #ffffff;
  text-decoration: none;
}
.parkur-register-btn:hover,
.parkur-register-btn:focus-visible {
  opacity: 1;
  transform: none;
  background: #000000;
  border-color: #000000;
  color: #ffffff;
}

/* Single parkur */
.single-parkur-hero {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: flex-end;
  background-color: var(--color-dark-bg);
  background-size: cover;
  background-position: center;
  padding-top: var(--header-h);
}
.single-parkur-hero-content {
  padding-bottom: 3rem;
}
.parkur-stats-bar {
  background: var(--color-black);
  padding: 1.5rem 0;
}
.parkur-stats-bar-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}
.stats-bar-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
}
.stats-bar-item .stat-label {
  color: var(--color-gray);
}
.stats-bar-item .stat-value {
  color: var(--color-white);
  font-size: 1.05rem;
}
.parkur-download-row {
  display: flex;
  gap: 1rem;
  padding: 2rem var(--container-pad);
  flex-wrap: wrap;
}
.parkur-iframe-section {
  padding: 2rem 0;
}
.parkur-register-cta {
  margin-top: 2.5rem;
}
.archive-hero {
  position: relative;
  background: var(--color-dark-bg);
  padding: 8rem 0 4rem;
}

/* =========================================================
   VIDEO
   ========================================================= */
.video-section {
  background: var(--color-dark-bg);
  padding: 5rem 0;
  text-align: center;
}
.video-inner {
  max-width: 900px;
  margin-inline: auto;
}
.video-embed-wrapper {
  position: relative;
  border-radius: var(--radius-card);
  overflow: hidden;
  margin-top: 2rem;
  aspect-ratio: 16/9;
  background: #000;
}
.yt-facade {
  position: relative;
  width: 100%;
  height: 100%;
  cursor: pointer;
  display: block;
}
.yt-facade img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.yt-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: transform var(--transition);
  filter: drop-shadow(0 4px 16px rgba(0, 0, 0, 0.5));
}
.yt-facade:hover .yt-play-btn {
  transform: translate(-50%, -50%) scale(1.1);
}
.yt-facade iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}
.direct-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* =========================================================
   SCHEDULE
   ========================================================= */
.box-section {
  padding: 2.5rem;
  background: var(--color-white);
  border-radius: 12px;
  margin-top: -4rem !important;
  margin-bottom: 2rem !important;
}
.schedule-section-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-style: normal;
  font-size: 60px;
  line-height: 100%;
  letter-spacing: -0.02em;
  text-align: center;
  color: #000000;
}
.schedule-part {
  margin-block: 4rem;
}
.schedule-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 2rem;
}
.schedule-tab {
  height: 48px;
  box-sizing: border-box;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  /* border-radius: 100px; */
  font-family: var(--font-display);
  font-weight: 500;
  font-style: normal;
  font-size: 18px;
  line-height: 100%;
  letter-spacing: -0.02em;
  text-align: center;
  color: var(--color-gray-600);
  border: none;
  background: var(--color-gray-100);
  transition: all var(--transition);
  cursor: pointer;
  border-right: 1px solid var(--color-soft-gray)
}
.schedule-tab:first-child {
  border-radius: 12px 0 0 12px;
}
.schedule-tab:last-child {
  border-radius: 0 12px 12px 0;
  border: none;
}
.schedule-tab:hover:not(.active) {
  background: #e5e7eb;
}
.schedule-tab.active {
  background: #000000;
  color: #ffffff;
  border-color: transparent;
}

/* Mobile dropdown trigger */
.schedule-tabs-mobile {
  display: none;
}
.schedule-mobile-trigger {
  width: 100%;
  height: 56px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  border-radius: 16px;
  background: #000000;
  color: #ffffff;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 18px;
  border: none;
  cursor: pointer;
  margin-bottom: 1.5rem;
}
.schedule-mobile-trigger-chevron {
  transition: transform 0.3s ease;
}
.schedule-mobile-trigger.open .schedule-mobile-trigger-chevron {
  transform: rotate(180deg);
}

/* Bottom sheet overlay */
.schedule-bottom-sheet-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.4);
  z-index: 1000;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.schedule-bottom-sheet-overlay.open {
  display: block;
}
.schedule-bottom-sheet-overlay.visible {
  opacity: 1;
}
.schedule-bottom-sheet {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #ffffff;
  border-radius: 24px 24px 0 0;
  padding: 20px 16px 40px;
  z-index: 1001;
  transform: translateY(100%);
  transition: transform 0.35s cubic-bezier(0.32, 0.72, 0, 1);
  max-height: 85vh;
  overflow-y: auto;
}
.schedule-bottom-sheet.open {
  transform: translateY(0);
}
.schedule-bottom-sheet-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}
.schedule-bottom-sheet-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 22px;
  color: #000000;
}
.schedule-bottom-sheet-close {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #000000;
  color: #ffffff;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  line-height: 1;
  flex-shrink: 0;
}
.schedule-bottom-sheet-handle {
  width: 40px;
  height: 4px;
  background: #d1d5db;
  border-radius: 2px;
  margin: 0 auto 20px;
}
.schedule-sheet-option {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  border-radius: 14px;
  background: #f3f4f6;
  border: none;
  cursor: pointer;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 18px;
  color: #111827;
  margin-bottom: 10px;
  transition: background 0.2s;
}
.schedule-sheet-option:last-child {
  margin-bottom: 0;
}
.schedule-sheet-option.active {
  background: #000000;
  color: #ffffff;
}
.schedule-sheet-option-check {
  opacity: 0;
  flex-shrink: 0;
}
.schedule-sheet-option.active .schedule-sheet-option-check {
  opacity: 1;
}
.schedule-panel {
  display: none;
}
.schedule-panel.active {
  display: block;
}

.schedule-panel-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

/* Day image column */
.schedule-day-image {
  position: relative;
  border-radius: var(--radius-card);
  overflow: hidden;
  container-type: inline-size;
  width: 100%;
  aspect-ratio: 580 / 800;
  min-height: clamp(420px, calc(100vw * 800 / 1440), 800px);
  background-color: var(--color-dark-bg);
  background-size: cover;
  background-position: center;
}
.schedule-day-image--march-28 {
  background-position: 30% center;
}
.schedule-day-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.72) 0%,
    rgba(0, 0, 0, 0.1) 60%,
    transparent 100%
  );
  display: flex;
  flex-direction: column;
  align-items: baseline;
  padding: 3rem 1.75rem 1.75rem;
  gap: 1rem;
}
.schedule-day-title {
  font-family: var(--font-display);
  font-weight: 500;
  font-style: normal;
  font-size: 40px;
  line-height: 100%;
  letter-spacing: -0.02em;
  color: var(--color-white);
  margin: 0;
}
.schedule-day-overlay .btn.btn-white-filled.btn-sm {
  box-sizing: border-box;
  width: min(235px, calc(100vw * 235 / 1440));
  width: min(235px, calc(100cqw * 235 / 580));
  height: min(48px, calc(100vw * 48 / 1440));
  height: min(48px, calc(100cqw * 48 / 580));
  border-radius: 444px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding-top: calc(100vw * 12 / 1440);
  padding-top: calc(100cqw * 12 / 580);
  padding-right: calc(100vw * 24 / 1440);
  padding-right: calc(100cqw * 24 / 580);
  padding-bottom: calc(100vw * 12 / 1440);
  padding-bottom: calc(100cqw * 12 / 580);
  padding-left: calc(100vw * 24 / 1440);
  padding-left: calc(100cqw * 24 / 580);
  background: #ffffff;
  color: #000000;
  font-family: var(--font-display);
  font-weight: 600;
  font-style: normal;
  font-size: min(20px, calc(100vw * 20 / 1440));
  font-size: min(20px, calc(100cqw * 20 / 580));
  line-height: 100%;
  letter-spacing: 0;
  margin-top: calc(100vw * 22 / 1440);
  margin-top: calc(100cqw * 22 / 580);
}

/* Events column */
.schedule-events {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.schedule-event-card {
  display: grid;
  grid-template-columns: 144px 1fr;
  align-items: stretch;
  gap: 0;
  padding: 0;
  border-radius: 1.2rem;
  border: 1px solid #e5e7eb;
  background: var(--color-white);
  overflow: hidden;
  transition: border-color var(--transition);
}
.schedule-event-card:hover {
  border-color: var(--color-gold);
}
.event-time {
  font-family: var(--font-display);
  font-weight: 400;
  font-style: normal;
  font-size: 20px;
  color: #000000;
  width: 144px;
  min-width: 144px;
  height: 124px;
  box-sizing: border-box;
  background: #f9fafb;
  gap: 10px;
  padding-top: 24px;
  padding-right: 16px;
  padding-bottom: 24px;
  padding-left: 16px;
  line-height: 100%;
  letter-spacing: -0.02em;
  display: flex;
  align-items: center;
  justify-content: center;
  border-right: 1px solid #e5e7eb;
  border-top-left-radius: 12px;
  border-bottom-left-radius: 12px;
  text-align: center;
  align-self: center;
  white-space: nowrap;
  tabular-nums: true;
}
.event-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.45rem;
  padding: 1rem 1.2rem;
}
.event-categories {
  font-family: var(--font-display);
  font-weight: 500;
  font-style: normal;
  font-size: 16px;
  line-height: 18px;
  letter-spacing: -0.02em;
  color: #2b7fff;
  text-transform: none;
}
.event-title {
  font-family: var(--font-display);
  font-weight: 500;
  font-style: normal;
  font-size: 24px;
  line-height: 28px;
  letter-spacing: -0.02em;
  color: #000000;
}
.event-location {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-family: var(--font-display);
  font-weight: 300;
  font-style: normal;
  font-size: 16px;
  line-height: 18px;
  letter-spacing: -0.02em;
  text-align: center;
  color: #000000;
  flex-wrap: wrap;
}
.event-location svg {
  flex-shrink: 0;
  width: clamp(14px, 1.05vw, 18px);
  height: clamp(14px, 1.05vw, 18px);
}
.event-location a {
  color: #000000;
  text-decoration: none;
  font-weight: 600;
}
.event-location a:hover {
  text-decoration: underline;
}

/* =========================================================
   FOOTER — CTA + beyaz kart tek görsel kutuda (1440×998), alta taşmaz
   Beyaz kart tasarım: 1200×521, gap 40, padding 60/80/40/80 → % (1200 referans)
   ========================================================= */
.site-footer {
  position: relative;
  z-index: 4;
  isolation: isolate;
  overflow: hidden;
}
/* Tüm footer görsel alanı bu kutu içinde; yükseklik genişliğe göre sabit oran */
.footer-cta-band {
  position: relative;
  box-sizing: border-box;
  width: 100%;
  container-type: inline-size;
  container-name: footer-cta-band;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  overflow: hidden;
  padding: 0;
  background-color: var(--color-dark-bg);
  background-image: url("../image/0d6131557f51f0635679f6c5e5036cec1aff7e7a.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.footer-cta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.52);
  pointer-events: none;
}
.footer-cta-top {
  position: relative;
  z-index: 1;
  flex: 1 1 auto;
  padding-bottom: clamp(0.5rem, 1.5vw, 1rem);
  /* CTA metni hafif aşağıda (1440 referanslı, önceki 220 çok geldi) */
  padding-top: clamp(1rem, calc(100vw * 100 / 1440), 5rem);
  padding-bottom: clamp(1rem, calc(100cqw * 100 / 1440), 5rem);
}
.footer-cta-inner {
  position: relative;
  z-index: 1;
  width: 100%;
}
.footer-cta-content {
  text-align: start;
  /* .container zaten yatay padding veriyor; çift padding dar alanı 4 satıra düşürüyordu */
  max-width: min(100%, calc(100vw * 1100 / 1440), 1100px);
  max-width: min(100%, calc(100cqw * 1100 / 1440), 1100px);
  padding-inline: 0;
  box-sizing: border-box;
}
/*
 * Tasarım: Urbanist 600, 60/1440 genişlik, line-height 100%, harf aralığı -2/1440 (cqw).
 * İki mantıksal satır: PHP’de .footer-cta-headline__line; 693px dar kutuda ilk cümle 60px’te sığmıyordu.
 */
.footer-cta-headline {
  box-sizing: border-box;
  width: 100%;
  max-width: min(1100px, 100%, calc(100vw * 1100 / 1440));
  max-width: min(1100px, 100%, calc(100cqw * 1100 / 1440));
  min-height: 2em;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  margin: 0 0 0.5rem 0;
  padding: 0;
  font-family: var(--font-display);
  font-weight: 600;
  font-style: normal;
  font-size: clamp(1.125rem, calc(100vw * 60 / 1440), 3.75rem);
  font-size: clamp(1.125rem, calc(100cqw * 60 / 1440), 3.75rem);
  line-height: 100%;
  letter-spacing: calc(100vw * -2 / 1440);
  letter-spacing: calc(100cqw * -2 / 1440);
  color: #ffffff;
  text-align: start;
}
.footer-cta-headline__line {
  display: block;
  max-width: 100%;
}
.footer-cta-subtitle {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.5rem;
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.92);
  margin: clamp(0.85rem, calc(100vw * 52 / 1440), 1.35rem) 0 0.45rem 0;
  margin: clamp(0.85rem, calc(100cqw * 52 / 1440), 1.35rem) 0 0.45rem 0;
  max-width: min(24rem, 100%);
}
/* Beyaz pill, siyah metin + dış bağlantı ikonu */
.footer-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  box-sizing: border-box;
  min-height: 40px;
  padding: 0.45rem 1.15rem;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid #ffffff;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(0.75rem, 1.15vw, 0.95rem);
  line-height: 1;
  letter-spacing: 0;
  color: #000000 !important;
  text-decoration: none;
  margin-top: clamp(0.95rem, calc(100cqw * 52 / 1440), 1.5rem);
  margin-top: clamp(0.95rem, calc(100vw * 52 / 1440), 1.5rem);
  transition:
    opacity var(--transition),
    background var(--transition),
    color var(--transition);
}
.footer-cta-btn-icon {
  display: flex;
  flex-shrink: 0;
  line-height: 0;
}
.footer-cta-btn-icon svg {
  width: 15px;
  height: 15px;
}
.footer-cta-btn-icon img {
  width: 15px;
  height: 15px;
  display: block;
}
.footer-cta-btn:hover,
.footer-cta-btn:focus-visible {
  opacity: 0.94;
  transform: none;
  color: #000000 !important;
  background: #f3f4f6;
  border-color: #f3f4f6;
}

/* Beyaz kart: w=1200/1440, h=521/998 band; padding/gap = tasarım pikselinin kart genişliğine (1200) oranı */
.footer-panel-shell {
  flex: 0 0 auto;
  margin-inline: auto;
  margin-top: 0;
  /* Altta fotoğraftan şerit kalsın; kart tam sınıra yapışmasın */
  margin-bottom: clamp(0.85rem, 2.8vw, 1.85rem);
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
}
.footer-info-panel {
  flex: 1 1 auto;
  min-height: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-sizing: border-box;
  background: #ffffff;
  border-radius: clamp(0.85rem, 2vw, 1.65rem);
  box-shadow: 0 4px 28px rgba(0, 0, 0, 0.08);
  /* padding: 60 / 80 / 40 / 80 px @ 1200 genişlik → oranlar kart dış genişliğine */
  padding: 3.75rem 5rem;
}
.site-footer .footer-container {
  max-width: 100%;
  width: 100%;
  margin-inline: 0;
  padding-inline: 0;
}
.footer-info-grid {
  flex: 0 0 auto;
  min-height: 0;
  overflow: visible;
  display: grid;
  grid-template-columns: 1fr;
  /* gap 40 px @ 1200 — aynı referans (--footer-card-outer kalıtılır) */
  gap: calc(var(--footer-card-outer) * 40 / 1200);
  padding: 0 0 calc(var(--footer-card-outer) * 84 / 1200) 0;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid #e5e7eb;
  text-align: start;
}
.footer-col,
.footer-brand {
  text-align: start;
  min-width: 0;
}
.footer-info-grid--nav-3 .footer-col:not(.footer-brand) {
  margin-top: calc(var(--footer-card-outer) * 84 / 1200);
}
.footer-contact-line a,
.footer-copyright {
  overflow-wrap: anywhere;
  word-break: break-word;
}
@media (min-width: 600px) and (max-width: 767px) {
  .footer-info-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .footer-brand {
    grid-column: 1 / -1;
  }
}
.footer-col-title {
  font-weight: 600;
  font-style: normal;
  font-size: 20px;
  line-height: 100%;
  letter-spacing: 0;
  vertical-align: middle;
  text-transform: none;
  margin-bottom: 0.75rem;
  color: #000000;
  padding-top: 2rem;
}
.footer-logo img,
.footer-brand .custom-logo-link img {
  height: auto;
  max-height: clamp(90px, 10vw, 130px);
  width: auto;
  margin-bottom: 0.35rem;
}
.footer-tagline {
  font-family: var(--font-display);
  font-weight: 600;
  font-style: normal;
  font-size: 24px;
  line-height: 28px;
  letter-spacing: 0;
  color: #000000;
  margin-top: 1.5rem;
  margin-bottom: 0;
  max-width: 100%;
}
.footer-tagline-icons {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
}
.footer-tagline-icon-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  line-height: 0;
  padding: 9px;
}
.footer-tagline-icon-link img {
  width: 24px;
}
.footer-tagline-icon {
  width: 32px;
  height: auto;
  display: block;
}
.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 0.4rem;
}
.footer-social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 6px;
  border: 1px solid #000000;
  color: #000000;
  background: transparent;
  transition:
    background var(--transition),
    border-color var(--transition);
}
.footer-social-btn:hover,
.footer-social-btn:focus-visible {
  background: #f9fafb;
  border-color: #000000;
}
.footer-contact-list {
  display: flex;
  gap: 1.5rem;
  margin-top: 1.5rem;
}
.footer-contact-line {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(0.78rem, 1.05vw, 0.9rem);
  line-height: 1.4;
  color: #374151;
}
.footer-contact-block .footer-contact-line {
  font-weight: 500;
  font-style: normal;
  font-size: 16px;
  line-height: 18px;
  letter-spacing: 0;
  align-items: center;
}
.footer-contact-icon {
  flex-shrink: 0;
  margin-top: 0.15em;
  color: #000000;
}
.footer-contact-line a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition);
}
.footer-contact-line a[href^="mailto:"] {
  font-weight: 500;
  font-style: normal;
  font-size: 14px;
  line-height: 18px;
  letter-spacing: 0;
  vertical-align: middle;
  color: #000000;
}
.footer-contact-line a[href^="tel:"] {
  font-weight: 500;
  font-style: normal;
  font-size: 14px;
  line-height: 18px;
  letter-spacing: 0;
  vertical-align: middle;
  color: #000000;
}
.footer-contact-line a:hover,
.footer-contact-line a:focus-visible {
  color: #000000;
}
.footer-contact-hours {
  margin: 0.12rem 0 0;
  padding-left: calc(16px + 0.5rem);
  font-weight: 300;
  font-style: normal;
  font-size: 14px;
  line-height: 18px;
  letter-spacing: 0;
  vertical-align: middle;
  color: #6b7280;
}
.footer-nav-list li {
  margin-bottom: 0.75rem;
}
.footer-nav-list {
  margin: 0;
  padding: 0;
}
.footer-nav-list li:last-child {
  margin-bottom: 0;
}
.footer-nav-list a {
  font-weight: 500;
  font-style: normal;
  font-size: 16px;
  line-height: 18px;
  letter-spacing: 0;
  vertical-align: middle;
  color: #6a7282;
  transition: color var(--transition);
}
.footer-nav-list a:hover,
.footer-nav-list a:focus-visible {
  color: #000000;
}
.footer-bottom {
  flex-shrink: 0;
  margin-top: auto;
  text-align: start;
  padding-top: 2.5rem;
  padding-bottom: 0;
}
.footer-copyright {
  margin: 0;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0;
  vertical-align: middle;
  color: #99a1af;
}
.footer-nav .footer-nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* =========================================================
   GUTENBERG LAYOUT SYSTEM
   --
   Strategy: every block inside .entry-content is constrained
   to --container-max by default. Blocks with .alignwide get
   a wider breakout, and .alignfull go fully edge-to-edge.
   No horizontal scroll is introduced because overflow is
   never set on <body> or <html>.
   ========================================================= */

/*
 * 1. The content wrapper uses a CSS grid with a named
 *    "content" column. All children default to that column.
 */
.entry-content {
  --container-pad: 1.5rem;
  --container-max: 1200px;
  --wide-max: 1400px;
  background: #f9fafb;

  display: grid;
  grid-template-columns:
    [full-start] minmax(var(--container-pad), 1fr)
    [wide-start] minmax(0, calc((var(--container-max) - var(--wide-max)) / 2))
    [content-start] min(100% - (var(--container-pad) * 2), var(--container-max))
    [content-end] minmax(0, calc((var(--container-max) - var(--wide-max)) / 2))
    [wide-end] minmax(var(--container-pad), 1fr)
    [full-end];
  padding-bottom: 3rem;
}

/* Varsayılan tüm block'lar content alanına otursun */
.entry-content > * {
  grid-column: content;
}

/* Wide block'lar */
.entry-content > .alignwide {
  grid-column: wide;
}

/* Full width block'lar */
.entry-content > .alignfull {
  grid-column: full;
}

/* Dikey spacing'i gap yerine margin ile yönet */
.entry-content > * + * {
  margin-top: 1.5rem;
}

/* Ama full-width image sonrası gelen full-width section'da boşluk olmasın */
.entry-content > .alignfull + .alignfull {
  margin-top: 0;
}

/* Image'ın kendi default margin'ini kapat */
.entry-content .wp-block-image {
  margin-bottom: 0;
}

/* Default: all direct children sit in the content column */
.entry-content > * {
  grid-column: content;
}

/* Wide alignment — breaks out of the content column */
.entry-content > .alignwide {
  grid-column: wide;
}

/* Full alignment — true edge-to-edge */
.entry-content > .alignfull {
  grid-column: full;
  width: 100%; /* belt-and-suspenders for older WP versions */
}

/* Left/right floated alignments stay within content column */
.entry-content > .alignleft {
  grid-column: content;
  float: left;
  margin-right: 1.5rem;
  margin-bottom: 0.5rem;
  max-width: 50%;
}
.entry-content > .alignright {
  grid-column: content;
  float: right;
  margin-left: 1.5rem;
  margin-bottom: 0.5rem;
  max-width: 50%;
}

/* Center alignment */
.entry-content > .aligncenter {
  grid-column: content;
  margin-inline: auto;
}

/*
 * 2. Core block overrides
 *    Gutenberg adds its own margin/padding — reset where needed.
 */

/* Image block */
.entry-content > .wp-block-image {
  margin-block: 0; /* row-gap handles spacing */
}
.entry-content > .wp-block-image.alignfull img,
.entry-content > .wp-block-image.alignwide img {
  width: 100%;
  height: auto;
  display: block;
}

/* Cover block — needs full height when alignfull */
.entry-content > .wp-block-cover.alignfull {
  min-height: 60vh;
}

/* Group block — only remove default padding when alignfull has NO inline style set.
   If the editor set padding via the spacing panel, the inline style takes precedence. */
.entry-content > .wp-block-group.alignfull:not([style*="padding"]) {
  padding-inline: 0;
}
/* Inner content of a full-width group should still be constrained when no custom padding */
.entry-content > .wp-block-group.alignfull > .wp-block-group__inner-container {
  max-width: var(--container-max);
  margin-inline: auto;
}

/* Separator */
.entry-content > .wp-block-separator {
  border: none;
  border-top: 1px solid #eee;
  margin-block: 0;
}

/* Buttons block */
.entry-content > .wp-block-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

/* =========================================================
   PAGE
   ========================================================= */
/* .page-content { padding-top: calc(var(--header-h) + 2rem); } */
.page-inner {
  padding-block: 3rem;
}
.page-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: 2rem;
}
.page-default {
  padding-top: 100px;
}
.entry-content p {
  margin-bottom: 1rem;
}
.entry-content ul,
.entry-content ol {
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}
.entry-content ul {
  list-style: disc;
}
.entry-content ol {
  list-style: decimal;
}

/* =========================================================
   RESPONSIVE — 768px
   ========================================================= */
@media (min-width: 768px) {
  .header-nav {
    display: block;
  }
  .hamburger {
    display: none;
  }
  .mobile-drawer {
    display: none !important;
  }

  .timer-inner {
    flex-direction: row;
    text-align: left;
    justify-content: space-between;
  }

  .schedule-panel-inner {
    grid-template-columns: 1fr 1fr;
  }
  .schedule-day-image {
    min-height: clamp(520px, calc(100vw * 800 / 1440), 800px);
  }

  /* Aynı elemanda .footer-info-grid ile birlikte; tek sınıf seçicisinden daha yüksek özgüllük */
  .footer-info-grid.footer-info-grid--nav-0 {
    grid-template-columns: minmax(0, 1fr);
  }
  .footer-info-grid.footer-info-grid--nav-1 {
    grid-template-columns: minmax(0, 2fr) minmax(0, 1fr);
  }
  .footer-info-grid.footer-info-grid--nav-2 {
    grid-template-columns: minmax(0, 2fr) minmax(0, 1fr) minmax(0, 1fr);
  }
  .footer-info-grid.footer-info-grid--nav-3 {
    grid-template-columns: minmax(0, 2fr) minmax(0, 1fr) minmax(0, 1fr) minmax(
        0,
        1fr
      );
    align-items: start;
  }
}

@media (max-width: 767px) {
  .site-header {
    padding-top: max(1.35rem, env(safe-area-inset-top, 0px));
  }
  .header-pill {
    width: min(88vw, 352px);
    border-radius: 999px;
    min-height: 54px;
    padding: 4px 5px 4px 10px;
    gap: 0.3rem;
  }
  .header-logo a {
    transform: none;
  }
  .header-logo img {
    max-height: 30px;
  }
  .header-right {
    gap: 0.25rem;
    margin-left: auto;
  }
  .header-right > .lang-switcher {
    display: none;
  }
  .header-cta {
    width: 148px;
    min-width: 148px;
    height: 42px;
    font-size: 1.1rem;
    line-height: 1;
    padding: 0 20px;
  }
  .hamburger {
    width: 38px;
    height: 38px;
    border-radius: 999px;
    align-items: center;
    justify-content: center;
    gap: 3px;
    padding: 0;
  }
  .hamburger span {
    width: 17px;
    height: 2px;
  }
  .hamburger.is-open {
    display: none;
  }
  .mobile-drawer .lang-switcher-dropdown {
    background: #111111;
    border: 1px solid #252525;
  }
  .mobile-drawer .lang-switcher-dropdown a {
    color: #f4f4f5;
  }
  .mobile-drawer .lang-switcher-dropdown a:hover {
    background: #1b1b1b;
  }
  .hero-section {
    justify-content: flex-start;
    padding-top: clamp(88px, 24vw, 108px);
    background-size: cover;
    background-position: 89% 62%;
  }
  .hero-section[data-parallax="true"] {
    background-image: none !important;
  }
  .hero-section[data-parallax="true"]::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: var(--hero-bg-image);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: 89% 50%;
    transform: translateY(-14%) scale(1.8);
    transform-origin: center center;
    z-index: 0;
  }
  .hero-headline {
    font-size: clamp(2rem, 9vw, 2.75rem);
    line-height: 1.1;
    letter-spacing: -1px;
    white-space: normal;
    margin-top: 0;
    margin-bottom: 1.15rem;
  }
  .hero-headline-rest {
    font-size: clamp(2rem, 9vw, 2.75rem);
    line-height: 1.1;
    letter-spacing: -1px;
    white-space: normal;
    top: 0;
    margin-left: 0;
  }
  .hero-headline-desktop {
    display: none !important;
  }
  .hero-headline-mobile-line1,
  .hero-headline-mobile-line2 {
    display: block !important;
  }
  .hero-headline-mobile-line2 {
    white-space: nowrap;
    margin-top: 0.12em;
  }
  .hero-headline-line2 {
    white-space: nowrap;
    margin-top: 0.12em;
  }
  .hero-t-replacement {
    width: 0.78em;
    height: 1.02em;
    margin-inline: -0.01em -0.03em;
    vertical-align: -0.2em;
  }
  .hero-content {
    display: flex;
    flex-direction: column;
    transform: none;
    flex-grow: 1;
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
  .hero-location {
    margin-top: auto;
    font-weight: 400;
    font-style: normal;
    font-size: 14px;
    line-height: 100%;
    letter-spacing: 0;
    text-align: center;
    vertical-align: middle;
    margin-bottom: 0.3rem;
    transform: none;
  }
  .hero-cta-group {
    z-index: 3;
    flex-direction: column;
    align-items: center;
    margin-top: auto;
    gap: 1.33rem;
    width: 100%;
    padding-inline: 1rem;
  }
  .hero-cta-primary,
  .hero-cta-secondary {
    width: min(90vw, 330px);
    max-width: 100%;
    height: 52px;
    padding: 12px 20px;
    font-size: 1.5rem;
    line-height: 1;
  }
  .hero-bottom-brands {
    bottom: max(0.35rem, env(safe-area-inset-bottom, 0px));
    z-index: 2;
    gap: 0.45rem;
  }
  .hero-partner-logos {
    max-width: 95%;
    gap: 0.75rem;
  }
  .hero-partner-logo.hero-partner-logo--third {
    max-height: 44px;
    max-width: min(70vw, 280px);
  }
  .timer-section {
    min-height: auto;
    padding-left: 1%;
    padding-right: 1%;
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
  }
  .timer-inner {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    justify-content: flex-start;
    gap: 1.6rem;
  }
  .timer-label-col {
    max-width: 100%;
  }
  .timer-label {
    font-weight: 400;
    font-style: normal;
    font-size: 20px;
    line-height: 100%;
    letter-spacing: -0.02em;
    vertical-align: middle;
  }
  .countdown-number,
  .countdown-sep {
    font-size: clamp(2.45rem, 10.5vw, 60px);
    letter-spacing: -2px;
  }
  .countdown {
    max-width: 100%;
    margin-inline: 0;
    column-gap: clamp(0.55rem, 5.6vw, 2rem);
  }
  .countdown-label {
    font-size: clamp(1rem, 5.2vw, 28px);
    transform: translateY(-0.35rem);
  }
  .timer-countdown-col {
    justify-content: flex-start;
    width: 100%;
  }
  .parkurlar-section {
    padding-top: 1.2rem;
  }
  .parkurlar-section-title {
    font-weight: 600;
    font-style: normal;
    font-size: 36px;
    leading-trim: none;
    line-height: 100%;
    letter-spacing: -2px;
    vertical-align: middle;
  }
  .parkurlar-section-head {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }
  .parkurlar-section-lead {
    text-align: left;
    max-width: 100%;
    font-weight: 400;
    font-style: normal;
    font-size: 16px;
    leading-trim: none;
    line-height: 18px;
    letter-spacing: 0px;
    vertical-align: middle;
    color: #1e2939;
  }
  .parkur-card-title {
    font-weight: 600;
    font-style: normal;
    font-size: 18px;
    leading-trim: none;
    line-height: 100%;
    letter-spacing: -2%;
    vertical-align: middle;
  }
  .parkur-meta {
    font-weight: 400;
    font-style: normal;
    font-size: 14px;
    leading-trim: none;
    line-height: 100%;
    letter-spacing: -2%;
    vertical-align: middle;
    color: #364153;
  }
  .parkur-stats-grid .stat-label {
    font-weight: 400;
    font-style: normal;
    font-size: 12px;
    leading-trim: none;
    line-height: 100%;
    letter-spacing: 0%;
    vertical-align: middle;
    color: #4a5565;
  }
  .parkur-stats-grid .stat-value {
    font-weight: 500;
    font-style: normal;
    font-size: 14px;
    leading-trim: none;
    line-height: 100%;
    letter-spacing: -2%;
    vertical-align: middle;
    color: #000000;
  }
  .parkur-detail-btn,
  .parkur-register-btn {
    box-sizing: border-box;
    flex: 1 1 calc(50% - 5px);
    min-width: 0;
    width: auto;
    max-width: calc(50% - 5px);
    min-height: 42px;
    height: auto;
    justify-content: center;
    gap: 10px;
    border-radius: 444px;
    padding-top: 12px;
    padding-bottom: 12px;
    padding-left: clamp(12px, 5.5vw, 24px);
    padding-right: clamp(12px, 5.5vw, 24px);
    font-weight: 600;
    font-style: normal;
    font-size: 16px;
    leading-trim: none;
    line-height: 18px;
    letter-spacing: 0px;
    vertical-align: middle;
  }
  .box-section {
    padding: 1.33rem;
  }
  .schedule-day-group {
    padding: 1.33rem!important;
  }
  .schedule-section-title {
    font-size: clamp(2rem, 9vw, 3rem);
    margin-bottom: 0.9rem;
  }
  .schedule-tabs {
    margin-bottom: 1.25rem;
  }
  .schedule-tab {
    height: auto;
    min-height: 50px;
    padding: 1rem 2rem;
    font-size: clamp(1rem, 4.4vw, 1.15rem);
    line-height: 1.05;
  }
  .schedule-panel-inner {
    gap: 1rem;
  }
  .schedule-day-image {
    min-height: clamp(300px, 88vw, 520px);
  }
  .schedule-day-overlay {
    padding: 1.3rem 1rem 1rem;
    gap: 0.6rem;
  }
  .schedule-day-title {
    font-size: clamp(1.55rem, 7.2vw, 2.1rem);
  }
  .schedule-day-overlay .btn.btn-white-filled.btn-sm {
    width: min(100%, 235px);
    height: auto;
    min-height: 42px;
    font-size: clamp(0.95rem, 4vw, 1.1rem);
    padding: 10px 18px;
    margin-top: clamp(0.35rem, 2.5vw, 0.7rem);
  }
  .schedule-event-card {
    grid-template-columns: 112px 1fr;
    border-radius: 0.9rem;
  }
  .event-time {
    width: 112px;
    min-width: 112px;
    height: auto;
    min-height: 100%;
    padding: 18px 12px;
    font-size: clamp(1.05rem, 4.8vw, 1.25rem);
  }
  .event-body {
    padding: 0.85rem 0.9rem;
  }
  .event-categories {
    font-size: clamp(0.84rem, 3.6vw, 1rem);
    line-height: 1.2;
  }
  .event-title {
    font-size: clamp(1rem, 4.6vw, 1.2rem);
    line-height: 1.2;
  }
  .event-location {
    font-size: clamp(0.82rem, 3.6vw, 0.98rem);
    line-height: 1.25;
    text-align: left;
  }

  /* Ana sayfa Program — mobil (segmented tabs, kapak, kartlar) */
  .schedule-part {
    margin-block: 2rem 2.5rem;
  }
  .schedule-part .schedule-section-title {
    font-weight: 600;
    font-style: normal;
    font-size: 36px;
    leading-trim: none;
    line-height: 100%;
    letter-spacing: -2%;
    text-align: center;
    vertical-align: middle;
    margin-bottom: 1rem;
    color: #000000;
  }
  .schedule-part .schedule-tabs {
    display: none;
  }
  .schedule-part .schedule-tabs-mobile {
    display: block;
    margin-bottom: 1.15rem;
  }
  .schedule-part .schedule-mobile-trigger {
    font-size: 16px;
    height: 52px;
  }
  .schedule-part .schedule-panel-inner {
    gap: 0.85rem;
  }
  .schedule-part .schedule-day-image {
    border-radius: 12px;
    aspect-ratio: 361 / 260;
    min-height: unset;
    width: 100%;
    max-width: min(100%, 361px);
    margin-inline: auto;
    background-size: 225%;
    background-position: center 25%;
  }
  .schedule-part .schedule-day-image--march-28 {
    background-position: 32% 25%;
    background-size: 300%;
  }
  .schedule-part .schedule-day-image--march-29 {
    background-position: 35% 2%;
    background-size: 240%;
  }
  .schedule-part .schedule-day-overlay {
    align-items: flex-start;
    justify-content: flex-start;
    text-align: left;
    padding: clamp(1.15rem, 5vw, 1.75rem) clamp(1rem, 4vw, 1.5rem)
      clamp(1rem, 4vw, 1.25rem);
    gap: 0.4rem;
    background: linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.42) 0%,
      rgba(0, 0, 0, 0.18) 42%,
      rgba(0, 0, 0, 0.55) 100%
    );
  }
  .schedule-part .schedule-day-title {
    font-size: 22px;
    font-weight: 500;
    line-height: 100%;
    letter-spacing: -0.02em;
    color: #ffffff;
    text-align: left;
    vertical-align: middle;
  }
  .schedule-part .schedule-day-overlay .btn.btn-white-filled.btn-sm {
    width: auto;
    min-width: 160px;
    max-width: 100%;
    align-self: flex-start;
    margin-top: 0.15rem;
    height: 38px;
    gap: 10px;
    padding-top: 12px;
    padding-right: 24px;
    padding-bottom: 12px;
    padding-left: 24px;
    font-size: 12px;
    font-weight: 600;
    line-height: 100%;
    letter-spacing: 0;
    vertical-align: middle;
    border-radius: 444px;
    box-sizing: border-box;
    color: #000000;
    background: #ffffff;
  }
  .schedule-part .schedule-events {
    gap: 0.55rem;
  }
  .schedule-part .schedule-event-card {
    width: 100%;
    max-width: min(100%, 361px);
    margin-inline: auto;
    min-height: 126px;
    grid-template-columns: 57px 1fr;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    box-shadow: none;
    overflow: hidden;
  }
  .schedule-part .event-time {
    width: 57px;
    min-width: 57px;
    min-height: 126px;
    white-space: normal;
    font-size: 14px;
    font-weight: 400;
    line-height: 100%;
    letter-spacing: -0.02em;
    text-align: center;
    vertical-align: middle;
    padding-top: 24px;
    padding-right: 16px;
    padding-bottom: 24px;
    padding-left: 16px;
    box-sizing: border-box;
    background: #f9fafb;
    border-right: 1px solid #e5e7eb;
    border-top-left-radius: 12px;
    border-bottom-left-radius: 12px;
  }
  .schedule-part .event-body {
    padding: 0.8rem 0.7rem;
    gap: 0.35rem;
  }
  .schedule-part .event-categories {
    font-size: 12px;
    font-weight: 500;
    line-height: 18px;
    letter-spacing: -0.02em;
    vertical-align: middle;
    color: #2b7fff;
    display: inline-flex;
    align-items: center;
    gap: 6px;
  }
  .schedule-part .event-categories::before {
    content: "";
    width: 14px;
    height: 14px;
    flex: 0 0 14px;
    background-image: url("../image/running-round.svg");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
  }
  .schedule-part .event-title {
    font-size: 16px;
    font-weight: 500;
    line-height: 28px;
    letter-spacing: -0.02em;
    vertical-align: middle;
  }
  .schedule-part .event-location {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 0.35rem 0.4rem;
    font-size: 12px;
    font-weight: 300;
    line-height: 18px;
    letter-spacing: -0.02em;
    text-align: center;
    vertical-align: middle;
  }
  .schedule-part .event-location a {
    flex: 1 0 100%;
    margin-left: calc(13px + 0.35rem);
    margin-top: 0.15rem;
  }

  .footer-info-grid--nav-3 .footer-col:not(.footer-brand) {
    margin-top: 0;
  }
  /* Program / video / galeri — sadece mobil (≥768px masaüstü orijinal) */
  .parkur-program-container {
    background-image: none !important;
    background:
      radial-gradient(
        ellipse 120% 70% at 50% 0%,
        rgba(55, 55, 60, 0.45) 0%,
        transparent 55%
      ),
      #000000;
    min-height: auto;
    background-size: auto;
    background-position: center top;
  }
  .parkur-program-visual-content {
    gap: clamp(1rem, 3vw, 1.5rem);
    padding: clamp(2rem, 6vw, 2.75rem) clamp(1rem, 4vw, 1.25rem) 0.35rem;
    box-sizing: border-box;
  }
  .parkur-program-visual-title {
    min-height: 0;
    display: block;
    max-width: min(56rem, 92%);
    font-weight: 600;
    font-style: normal;
    font-size: 36px;
    leading-trim: none;
    line-height: 100%;
    letter-spacing: -2px;
    text-align: center;
    vertical-align: middle;
    text-shadow: 0 2px 24px rgba(0, 0, 0, 0.45);
  }
  .parkur-program-visual-subtitle {
    max-width: min(56rem, 92%);
    font-weight: 400;
    font-style: normal;
    font-size: 16px;
    leading-trim: none;
    line-height: 100%;
    letter-spacing: 0px;
    text-align: center;
    vertical-align: middle;
    color: #ffffff;
    text-shadow: 0 2px 16px rgba(0, 0, 0, 0.4);
  }
  .parkur-program-visual-subtitle-line {
    display: block;
  }
  .parkur-program-visual-subtitle-line + .parkur-program-visual-subtitle-line::before {
    content: none;
  }
  .parkur-program-video-wrapper {
    width: 100%;
    max-width: 100%;
    margin-left: 0;
    margin-top: 0.25rem;
    overflow: visible;
    border-radius: 0;
    box-shadow: none;
    transform: none;
    isolation: auto;
  }
  /* iOS/WebKit: köşe kırpma div üzerinde; button içindeki img taşmasın */
  .parkur-program-video-surface {
    border-radius: 12px;
    overflow: hidden;
    transform: translateZ(0);
    width: 100%;
    position: relative;
    background: #000;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
  }
  .parkur-program-video-facade,
  .parkur-program-video-embed {
    border-radius: 0;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    box-shadow: none;
    -webkit-appearance: none;
    appearance: none;
    border: 0;
    outline: none;
    vertical-align: top;
  }
  .parkur-program-video-facade img {
    border-radius: 0;
    vertical-align: top;
  }
  .parkur-program-video-facade:hover .yt-play-btn {
    transform: translate(-50%, -50%) scale(1.08);
  }
  .parkur-program-video-embed iframe {
    border-radius: 12px;
  }
  .parkur-program-video-embed video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
    background: #000;
  }
  .parkur-program-gallery {
    min-height: auto;
    padding: 0.35rem 0 2.5rem;
  }
  .parkur-program-gallery-track {
    min-height: auto;
    padding-inline: 1rem;
  }
  .parkur-program-gallery-marquee {
    gap: 0.65rem;
    animation-duration: 24s;
  }
  .parkur-program-gallery-row {
    gap: 0.65rem;
  }
  .parkur-program-gallery-card {
    width: clamp(5.25rem, 28cqw, 7.5rem);
    aspect-ratio: 1 / 1;
    border-radius: 12px;
  }

  /* Footer mobil: masaüstü oranları kaldır — tam genişlik kart, doğal yükseklik, kesilme yok */
  .site-footer {
    overflow: visible;
  }
  .footer-cta-band {
    aspect-ratio: unset;
    height: auto;
    min-height: 0;
    overflow: visible;
    padding-inline: 0.6rem;
    padding-top: 0.6rem;
    padding-bottom: max(env(safe-area-inset-bottom, 0px), 0.6rem);
    background-image: url("../image/0d6131557f51f0635679f6c5e5036cec1aff7e7a.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }
  .footer-cta-top {
    display: block;
    flex: 0 0 auto;
    padding-top: clamp(1.25rem, 5vw, 2.5rem);
    padding-bottom: 2rem;
  }
  .footer-cta-band .footer-cta-inner.container {
    max-width: 100%;
    width: 100%;
  }
  .footer-cta-content {
    text-align: left;
    margin-inline: 0;
    max-width: 100%;
    padding-inline: 0;
  }
  .footer-cta-btn {
    min-height: 46px;
    width: min(100%, 340px);
    margin-inline: auto;
    margin-top: clamp(1.05rem, 6vw, 1.6rem);
    font-weight: 600;
    font-style: normal;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0;
    vertical-align: middle;
  }
  .footer-cta-headline {
    max-width: 100%;
    min-height: 0;
    align-items: flex-start;
    justify-content: flex-start;
    font-weight: 600;
    font-style: normal;
    font-size: clamp(1.7rem, 8.8vw, 36px);
    line-height: 100%;
    letter-spacing: -2px;
    vertical-align: middle;
    text-align: left;
  }
  .footer-cta-headline__line {
    display: block;
    text-align: left;
  }
  .footer-cta-headline__line + .footer-cta-headline__line {
    margin-top: 0.14em;
  }
  .footer-cta-subtitle {
    font-weight: 400;
    font-style: normal;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0;
    vertical-align: middle;
    margin-inline: 0;
    margin-top: clamp(0.9rem, 5.5vw, 1.3rem);
  }
  .footer-panel-shell {
    --footer-card-outer: 100%;
    width: 100%;
    max-width: 100%;
    height: auto;
    max-height: none;
    margin-inline: 0;
    margin-bottom: max(env(safe-area-inset-bottom, 0px), 0.75rem);
  }
  .footer-info-panel {
    height: auto;
    max-height: none;
    min-height: 0;
    overflow: visible;
    background: #f3f4f6;
    border-radius: 1.1rem;
    padding: 1.05rem 1rem 0.85rem;
  }
  .footer-info-grid {
    flex: none;
    height: auto;
    max-height: none;
    overflow: visible;
    overflow-y: visible;
    gap: 1.55rem;
    grid-template-columns: 1fr;
    padding-bottom: 1.1rem;
  }
  .footer-brand {
    grid-column: auto;
  }
  .footer-contact-line {
    flex-wrap: wrap;
  }
  .footer-tagline {
    max-width: 100%;
    white-space: normal;
    font-size: clamp(1.95rem, 6.8vw, 2.35rem);
    line-height: 1.08;
  }
  .footer-logo img,
  .footer-brand .custom-logo-link img {
    max-height: 78px;
  }
  .footer-contact-block .footer-contact-line,
  .footer-contact-line a[href^="mailto:"],
  .footer-contact-line a[href^="tel:"] {
    font-weight: 500;
    font-style: normal;
    font-size: 14px;
    line-height: 18px;
    letter-spacing: 0;
    vertical-align: middle;
  }
  .footer-contact-hours {
    font-weight: 300;
    font-style: normal;
    font-size: 14px;
    line-height: 18px;
    letter-spacing: 0;
    vertical-align: middle;
  }
  .footer-col-title {
    font-weight: 600;
    font-style: normal;
    font-size: 20px;
    line-height: 100%;
    letter-spacing: 0;
    vertical-align: middle;
    color: #000000;
    margin-bottom: 0.7rem;
  }
  .footer-nav-list a {
    font-weight: 500;
    font-style: normal;
    font-size: 16px;
    line-height: 18px;
    letter-spacing: 0;
    vertical-align: middle;
    color: #6a7282;
  }
  .footer-nav-list li {
    margin-bottom: 0.45rem;
  }
  .footer-bottom {
    padding-block: 0.55rem 0.25rem;
  }
  .footer-copyright {
    font-weight: 400;
    font-style: normal;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0;
    vertical-align: middle;
    color: #99a1af;
  }
}

@media (min-width: 600px) and (max-width: 767px) {
  .footer-info-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 1024px) {
  .hero-headline-desktop {
    display: none !important;
  }
  .hero-headline-mobile-line1,
  .hero-headline-mobile-line2 {
    display: block !important;
  }
  .hero-headline-mobile-line2 {
    white-space: nowrap;
  }
}

/* Tablet: 4 sütun daralınca kolonlar sıkışmasın */
@media (min-width: 768px) and (max-width: 1023px) {
  .footer-info-grid.footer-info-grid--nav-3 {
    column-gap: calc(var(--footer-card-outer) * 24 / 1200);
  }
}

/* =========================================================
   RESPONSIVE — 1200px
   ========================================================= */
@media (min-width: 1200px) {
  :root {
    --container-pad: 2rem;
  }
  .hero-content {
    padding-block: 6rem;
  }
}

/* =========================================================
   SINGLE PARKUR — INFO CARD
   ========================================================= */
.single-parkur-hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  background-color: var(--color-dark-bg);
  background-size: cover;
  background-position: center;
  padding-top: var(--header-h);
  padding-bottom: 3rem;
}

.parkur-info-card {
  background: var(--color-white);
  border-radius: var(--radius-card);
  padding: 1.75rem 2rem;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.18);
  position: relative;
  z-index: 2;
}

.parkur-info-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #eee;
}

.parkur-info-title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  letter-spacing: 0.01em;
  line-height: 1.1;
  color: var(--color-black);
  margin: 0;
}

.parkur-info-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

@media (max-width: 767px) {
  .parkur-info-actions {
    width: 100%;
  }
  .parkur-info-actions .download-dropdown {
    width: 50%;
  }
  .parkur-info-actions .download-dropdown .btn {
    width: 100%;
    max-width: none;
  }
}

/* Stats row */
.parkur-info-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem 2.5rem;
}

.parkur-stat-item {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  gap: 1rem;
  min-width: 80px;
}

.parkur-stat-icon-label {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 1rem;
  font-weight: 500;
}

.parkur-stat-icon-label svg {
  flex-shrink: 0;
  overflow: visible;
}
.parkur-stat-icon-label .parkur-distance-routing-icon {
  width: 16px;
  height: 16px;
}
.parkur-stat-icon-label
  .stat-label-icon-svg:not(.stat-label-icon-svg--cutoff):not(
    .stat-label-icon-svg--health-req
  ) {
  height: 12px;
  width: auto;
}
.parkur-stat-icon-label .stat-label-icon-svg--cutoff {
  height: 18px;
  width: auto;
}
.parkur-stat-icon-label .stat-label-icon-svg--health-req {
  height: 15px;
  width: auto;
}

.parkur-stat-value {
  font-weight: 500;
  font-style: normal;
  font-size: 1.25rem;
  leading-trim: none;
  letter-spacing: -0.02em;
  vertical-align: middle;
  color: #000000;
}
.parkur-stat-value a {
  color: inherit;
  font: inherit;
  letter-spacing: inherit;
}

/* =========================================================
   DOWNLOAD DROPDOWN
   ========================================================= */
.download-dropdown {
  position: relative;
}

.download-menu {
  position: absolute;
  top: calc(100% + 0.5rem);
  right: 0;
  min-width: 180px;
  background: var(--color-white);
  border-radius: 1rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.14);
  padding: 0.5rem;
  z-index: 100;
  list-style: none;
}

.download-menu-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 1rem;
  border-radius: 0.65rem;
  font-family: var(--font-display);
  font-size: 1.3rem;
  letter-spacing: 0.04em;
  color: var(--color-black);
  transition: background var(--transition);
  gap: 1rem;
}

.download-menu-item:hover {
  background: var(--color-light);
}

/* Iframe section */
.parkur-iframe-section {
  width: 100%;
}
.parkur-iframe-wrapper {
  width: 100%;
}
.parkur-iframe-wrapper iframe {
  width: 100%!important;
  border: none;
  display: block;
}

/* =========================================================
   PARKUR MATERIALS
   ========================================================= */
.parkur-section-heading {
  font-weight: 600;
  font-size: 24px;
  line-height: 100%;
  letter-spacing: 0;
  vertical-align: middle;
  margin-bottom: 1.5rem;
  color: var(--color-black);
}

.parkur-materials {
  margin-top: 1.25rem;
  margin-bottom: 2.5rem;
  padding: 1.5rem;
  border-radius: 24px;
  background: #ffffff;
}

.parkur-materials-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: clamp(1.5rem, 4vw, 3.25rem);
  row-gap: clamp(1.25rem, 3vw, 2.25rem);
}

.parkur-material-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.75rem;
  min-width: 0;
}

.material-icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border-radius: 4px;
  opacity: 1;
  color: var(--color-black);
}
.material-icon img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.material-body {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  min-width: 0;
}

.material-name {
  font-weight: 500;
  font-size: 18px;
  line-height: 28px;
  letter-spacing: 0;
  vertical-align: middle;
  color: var(--color-black);
}

.material-note {
  font-weight: 500;
  font-size: 1.1rem;
  letter-spacing: 0;
  color: #7d8aa8;
  vertical-align: middle;
}

@media (min-width: 768px) {
  .parkur-materials {
    padding: clamp(1.5rem, 2.2vw, 2.5rem);
  }
}

@media (max-width: 767px) {
  .parkur-materials-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 2rem;
    column-gap: 1.5rem;
  }
  .parkur-materials-list .parkur-material-item--kimlik {
    grid-column: 1;
    grid-row: 1;
  }
  .parkur-materials-list .parkur-material-item--gogus {
    grid-column: 2;
    grid-row: 1;
  }
  .parkur-materials-list .parkur-material-item--cip {
    grid-column: 1;
    grid-row: 2;
  }
}

/* =========================================================
   PARKUR — START & LOCATION CARDS
   ========================================================= */

.parkur-info-section {
  border: 1px solid var(--color-soft-gray);
  border-radius: 12px;
  background: #fff;
}

.parkur-program-heading {
  font-weight: 600;
  font-size: 24px;
  line-height: 100%;
  letter-spacing: 0;
  vertical-align: middle;
  color: #000;
  margin: 0;
  padding: 1rem 1rem 0.5rem;
  text-align: left;
}

.parkur-info-content {
  border-top: 1px solid var(--color-soft-gray);
  border-bottom: 1px solid var(--color-soft-gray);
  padding: 1rem;
  font-size: 1.25rem;
}

/* 18 yas uyari kutusu */
.parkur-info-content .wp-block-group.has-background[style*="background-color:#ffffea"] {
  display: flex;
  align-items: center;
  width: min(100%, 321px);
  min-height: 73px;
  gap: 10px;
  padding-top: 8px !important;
  padding-right: 10px !important;
  padding-bottom: 8px !important;
  padding-left: 16px !important;
  border-radius: 12px !important;
  opacity: 1;
  box-sizing: border-box;
}
.parkur-info-content .wp-block-group.has-background[style*="background-color:#ffffea"]::before {
  content: "i";
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  border: 2px solid #000;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  color: #000;
}
.parkur-info-content .wp-block-group.has-background[style*="background-color:#ffffea"] p {
  margin: 0 !important;
  font-weight: 400;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0;
  vertical-align: middle;
  color: #000;
}

.parkur-info-cards-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  padding: 1rem;
}

@media (min-width: 768px) {
  .parkur-info-cards-row {
    grid-template-columns: 1fr 1fr;
  }
}

.parkur-info-block {
  background: var(--color-light);
  border-radius: 12px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  opacity: 1;
  box-sizing: border-box;
}

.parkur-info-block-title {
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 100%;
  letter-spacing: 0;
  vertical-align: middle;
  color: var(--color-black);
  margin: 0 0 1rem;
}

.parkur-info-block-text {
  font-size: 1.25rem;
  color: var(--color-black);
  line-height: 1.6;
  margin: 0;
}

.parkur-info-block-btn {
  border-color: var(--color-soft-gray);
  background-color: #fff;
  border-width: 1px;
  width: min(100%, 289px);
  min-height: 48px;
  gap: 8px;
  opacity: 1;
  border-radius: 444px;
  padding-top: 12px;
  padding-right: 24px;
  padding-bottom: 12px;
  padding-left: 24px;
  font-weight: 600;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0;
  text-align: center;
  vertical-align: middle;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
}

/* =========================================================
   PARKUR — PARTICIPANTS SECTION
   ========================================================= */
.parkur-participants-section {
  padding: 2rem 0;
}

.parkur-participants-section .parkur-section-heading {
  max-width: var(--container-max);
  margin-inline: auto;
  margin-bottom: 1rem;
}

.parkur-participants-section .parkur-iframe-wrapper {
  aspect-ratio: unset;
  min-height: 500px;
}

/* =========================================================
   LANGUAGE SWITCHER (Polylang)
   ========================================================= */
.lang-switcher {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 16px;
  font-weight: 500;
  line-height: 18px;
  letter-spacing: 0;
  color: #6a7282;
}

.lang-switcher-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 16px;
  font-weight: 500;
  line-height: 18px;
  letter-spacing: 0;
  color: #6a7282;
  padding: 0;
  border-radius: 0;
  background: none;
  border: none;
  cursor: pointer;
  transition: opacity var(--transition);
}

.lang-switcher-toggle:hover {
  opacity: 0.85;
}
.lang-switcher-caret {
  width: 12px;
  height: 12px;
  stroke: #6a7282;
  stroke-width: 1.8;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.lang-flag {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: inline-block;
  position: relative;
  flex-shrink: 0;
  overflow: hidden;
  background: #6a7282;
}
.lang-flag--tr {
  background-color: #e30a17;
  background-image: url("../image/flag-tr.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.lang-flag--en {
  background-color: #e30a17;
  background-image: url("../image/flag-en.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.lang-switcher-dropdown {
  position: absolute;
  top: calc(100% + 0.4rem);
  right: 0;
  background: var(--color-white);
  border-radius: 0.75rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  padding: 0.4rem;
  list-style: none;
  min-width: 80px;
  z-index: 200;
}

.lang-switcher-dropdown a {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 0.75rem;
  border-radius: 0.5rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: #6a7282;
  transition: background var(--transition);
}

.lang-switcher-dropdown a:hover {
  background: var(--color-light);
}

/* tabbar */

.uagb-block-c1639d9e.uagb-tabs__hstyle5-desktop {
  border: none;
}

.uagb-block-c1639d9e.uagb-tabs__hstyle5-desktop .uagb-tabs__body-wrap {
  padding: 0;
}

.uagb-block-c1639d9e.uagb-tabs__hstyle5-desktop .wp-block-uagb-tabs-child {
  padding: 0;
}

.uagb-block-c1639d9e.uagb-tabs__hstyle5-desktop .uagb-tab.uagb-tabs__active {
  border-bottom: none;
  background: #000;
  color: #fff;
}

.uagb-tabs__wrap.uagb-tabs__hstyle5-desktop .uagb-tab {
  margin: 0;
  flex-grow: 1;
  background: var(--color-light);
}

.uagb-tabs__wrap.uagb-tabs__hstyle5-desktop .uagb-tab a {
  display: block;
  width: 100%;
  padding: 1rem 1.5rem!important;
}

.uagb-tabs__wrap.uagb-tabs__hstyle5-desktop .uagb-tab:first-child {
  border-radius: 12px 0 0 12px;
}

.uagb-tabs__wrap.uagb-tabs__hstyle5-desktop .uagb-tab:last-child {
  border-radius: 0 12px 12px 0;
}

@media (max-width: 768px) {
  .uagb-tabs__wrap.uagb-tabs__hstyle5-desktop .uagb-tab {
  }

  .uagb-tabs__wrap.uagb-tabs__hstyle5-desktop .uagb-tab,
  .uagb-tabs__wrap.uagb-tabs__hstyle5-desktop .uagb-tab:first-child,
  .uagb-tabs__wrap.uagb-tabs__hstyle5-desktop .uagb-tab:last-child,
  .uagb-tabs__wrap.uagb-tabs__hstyle5-desktop .uagb-tab.uagb-tabs__active {
    border-radius: 12px;
  }
}


.wp-block-list li {
  margin-bottom: 1rem;
}
/* =========================================================
   PAGE PARKURLAR — intro content above listing
   ========================================================= */

/* Pagination */
.page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  height: 36px;
  padding-inline: 0.5rem;
  border-radius: var(--radius-pill);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-black);
  border: 2px solid transparent;
  transition: all var(--transition);
  text-decoration: none;
}

.page-numbers:hover {
  border-color: var(--color-black);
}
.page-numbers.current {
  background: var(--color-black);
  color: var(--color-white);
}

.parkurlar-section .page-numbers {
  margin-top: 2rem;
  display: flex;
  gap: 0.4rem;
  flex-wrap: wrap;
}

/* =========================================================
   SPONSORS PAGE
   ========================================================= */
.sponsors-page {
  padding-top: calc(var(--header-h) + 4rem);
  --sponsors-category-bleed: 190px;
}

.sponsors-page > *:first-child {
  margin-top: 1rem !important;
}

.sponsors-intro {
  margin-bottom: 3rem;
}

.sponsors-intro .wp-block-heading,
.sponsors-intro h1 {
  font-weight: 700;
  font-style: normal;
  font-size: clamp(2.1rem, 4.2vw, 60px);
  line-height: 1;
  letter-spacing: 0;
  text-align: center;
  margin-top: 0.75rem;
  margin-bottom: clamp(1.25rem, calc(100vw * 28 / 1440), 1.75rem);
  color: #000000;
}

.sponsors-intro p {
  font-family: var(--font-body);
  font-weight: 400;
  font-style: normal;
  font-size: clamp(1.125rem, calc(100vw * 28 / 1440), 28px);
  letter-spacing: 0;
  text-align: center;
  color: #000000;
}

.sponsors-section {
  padding: 5rem 0;
}
.sponsors-section + .sponsors-section {
  padding-top: 0;
}

.sponsors-page > .sponsors-banner + .sponsors-section--category {
  margin-top: 0 !important;
  padding-top: 0;
}

.sponsors-section-title {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 2rem);
  letter-spacing: 0.04em;
  text-align: center;
  margin-bottom: 2rem;
  color: var(--color-black);
}

/* ── Ana Sponsorlar background ──────────────────────────── */
.sponsors-section--main {
  position: relative;
  background-image: url("../image/ana-sponsorlar-bg.jpg");
  background-size: cover;
  background-position: center;
}
.sponsors-section--main-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}
.sponsors-section--main .sponsors-section-title {
  font-style: normal;
  font-weight: 600;
  font-size: 40px;
  line-height: 1;
  letter-spacing: 0;
  text-align: center;
  color: #ffffff;
}

.sponsors-section--co .sponsors-section-title {
  font-style: normal;
  font-weight: 600;
  font-size: 32px;
  line-height: 1;
  letter-spacing: 0;
  text-align: center;
  color: #000000;
}

.sponsors-section--product .sponsors-section-title {
  font-style: normal;
  font-weight: 600;
  font-size: 32px;
  line-height: 1;
  letter-spacing: 0;
  text-align: center;
  color: #000000;
}

.sponsors-section--corporate {
  position: relative;
  background: #ffffff;
  padding-bottom: 0 !important;
  margin-bottom: 0 !important;
}

.sponsors-section--corporate .sponsors-section-title {
  margin-top: 4rem;
}

.sponsors-section--corporate::before {
  content: "";
  position: absolute;
  inset: 0;
  left: 50%;
  width: 100vw;
  transform: translateX(-50%);
  background: #ffffff;
  z-index: 0;
}

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

.sponsors-page + .site-footer,
.sponsors-page + footer,
.sponsors-page ~ .site-footer,
.sponsors-page ~ footer {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

.sponsors-page {
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
}
.sponsors-section--main-content {
  position: relative;
  z-index: 1;
}

/* ── Logo grids ─────────────────────────────────────────── */
.sponsors-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}

@media (max-width: 768px) {
  .sponsors-grid--co {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .sponsors-grid--product {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
  }
}

.sponsor-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2.5rem;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 20px;
  transition:
    box-shadow var(--transition),
    border-color var(--transition);
}
.sponsor-item:hover {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border-color: #ddd;
}

/* Main sponsors — larger logos */
.sponsors-grid--main .sponsor-item {
  width: 282px;
  height: 160px;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  opacity: 1;
  margin-top: 2rem;
}
.sponsors-grid--main .sponsor-item img {
  height: 56px;
  width: auto;
  object-fit: contain;
}

/* Co-sponsors — medium */
.sponsors-grid--co .sponsor-item img {
  max-height: 100%;
  width: auto;
  object-fit: contain;
}

.sponsors-grid--co .sponsor-item {
  width: min(220.8px, 46vw);
  height: 120px;
  border-radius: 12px;
  opacity: 1;
}

/* Product & corporate — smaller */
.sponsors-grid--product .sponsor-item img,
.sponsors-grid--corporate .sponsor-item img {
  width: auto;
  object-fit: contain;
}

.sponsors-grid--corporate {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 220px));
  gap: 16px;
  width: 100%;
  justify-content: center;
  align-items: stretch;
  margin-bottom: 4rem;
}

.sponsors-grid--corporate .sponsor-item {
  min-height: 120px;
  padding: 1rem;
  border-radius: 12px;
  background: #ffffff;
  border: 1px solid #e5e7eb;
}

.sponsors-grid--corporate .sponsor-item img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 72px;
}


.sponsors-grid--product .sponsor-item {
  width: min(119.1111px, 28vw);
  height: 120px;
  border-radius: 12px;
  opacity: 1;
  padding: 1rem;
}

.sponsor-name-only {
  font-family: var(--font-display);
  font-size: 1.1rem;
  letter-spacing: 0.04em;
  color: var(--color-black);
}

/* ── Category sponsors (row layout) ────────────────────── */
.sponsors-section--category {
  background: var(--color-light);
}

.sponsors-category-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 0;
  border-radius: 0;
  overflow: visible;
  background: transparent;
}

.sponsor-category-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  justify-content: initial;
  width: 100%;
  min-height: 168px;
  gap: 60px;
  padding: 24px 5rem;
  background: transparent;
  border-bottom: 1px solid #e5e7eb;
  opacity: 1;
  margin: 0;
  box-sizing: border-box;
}
.sponsor-category-row:last-child {
  border-bottom: none;
}

.sponsor-category-label {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  flex: 1;
  align-items: flex-start;
}
.sponsor-category-title {
  font-size: 2rem;
  font-weight: 600;
  font-style: normal;
  line-height: 1;
  letter-spacing: 0;
  text-align: left;
  text-transform: none;
  color: #000000;
  margin-left: 0;
}
.sponsor-category-name {
  display: none;
}
.sponsor-category-logo img {
  max-height: 86px;
  max-width: 160px;
  width: auto;
  object-fit: contain;
  display: block;
}

.sponsor-category-logo {
  margin-left: auto;
}

/* Keep category titles aligned with banner left column */
.sponsors-section--category .sponsor-category-row {
  width: 100%;
  margin: 0;
  padding: 1.5rem 0;
}

/* ── Mid-page banner ────────────────────────────────────── */
.sponsors-banner {
  position: relative;
  min-height: clamp(260px, 29.4vw, 424px);
  background-color: #111;
  background-size: cover;
  background-position: center right;
  overflow: hidden;
  width: 100%;
}
.sponsors-banner .container {
  position: relative;
  z-index: 1;
  min-height: 260px;
  display: flex;
  align-items: center;
}
.sponsors-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.82) 0%,
    rgba(0, 0, 0, 0.55) 55%,
    rgba(0, 0, 0, 0) 100%
  );
}
.sponsors-banner-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.25rem;
  padding: 6rem 2.5rem 2.5rem 5rem;
  max-width: 460px;
}
.sponsors-banner-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: -1.5rem;
  padding: 0.6rem 0.9rem;
  background: transparent;
  border: 0;
  opacity: 1;
  box-sizing: border-box;
}
.sponsors-banner-logo-img {
  height: 80px;
  width: auto;
  object-fit: contain;
}
.sponsors-banner-title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 24px;
  line-height: 1.25;
  letter-spacing: 0;
  color: #ffffff;
  margin: 0;
  max-width: 420px;
  white-space: nowrap;
}

@media (max-width: 768px) {
  .sponsors-banner-content {
    max-width: 100%;
    padding: 2rem 1.25rem 1.5rem 2.5rem;
  }

  .sponsors-banner-title {
    font-size: 20px;
    max-width: 100%;
    white-space: nowrap;
  }
}
.sponsors-banner-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 220px;
  height: 48px;
  padding: 12px 24px;
  border-radius: 444px;
  border: 1px solid #e5e7eb;
  background: #ffffff;
  color: #000000;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 20px;
  line-height: 1;
  letter-spacing: 0;
  text-decoration: none;
  transition:
    background var(--transition),
    border-color var(--transition);
}
.sponsors-banner-btn:hover {
  background: rgba(255, 255, 255, 0.85);
}

/* ── Responsive ─────────────────────────────────────────── */
@media (min-width: 768px) {
  .sponsors-grid--main {
    gap: 1.25rem;
  }
  .sponsors-grid--co {
    gap: 1rem;
  }
  .sponsors-grid--product {
    gap: 0.75rem;
  }
  .sponsors-grid--corporate {
    gap: 1rem;
  }
}

@media (max-width: 1200px) {
  .sponsors-page {
    --sponsors-category-bleed: 80px;
  }

  .sponsor-category-row {
    gap: 32px;
  }
}

@media (max-width: 768px) {
  .sponsors-page {
    --sponsors-category-bleed: 0px;
    padding-top: calc(var(--header-h) + 2rem);
  }

  .sponsors-page > *:first-child {
    margin-top: 0 !important;
  }

  .sponsors-section {
    padding: 2.5rem 0;
  }

  .sponsors-section--main .sponsors-section-title {
    font-size: 32px;
  }

  .sponsors-section--co .sponsors-section-title,
  .sponsors-section--product .sponsors-section-title,
  .sponsor-category-title {

  }

  .sponsors-grid--main .sponsor-item {
    width: min(282px, 92vw);
    margin-top: 24px;
  }

  .sponsors-grid--co .sponsor-item {
    width: min(220.8px, 44vw);
    height: 108px;
  }

  .sponsors-grid--product .sponsor-item {
    width: min(119.1111px, 30vw);
    height: 102px;
  }

  .sponsor-category-row {
    width: 100%;
    margin: 0;
    padding: 16px 20px 16px 2.5rem;
    gap: 20px;
    min-height: 132px;
  }

  .sponsor-category-logo img {
    height: clamp(56px, 16vw, 72px);
  }

  .sponsors-grid--corporate {
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    margin-bottom: 2rem;
  }

  .sponsors-section--corporate .sponsors-section-title {
    margin-top: 2rem;
  }
}

/* ── Results page ───────────────────────────────────────── */
.results-section {
  padding: 3rem 0;
}

.results-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.25rem;
}

.result-card {
  position: relative;
  border-radius: var(--radius-card);
  overflow: hidden;
  aspect-ratio: 3 / 4;
  background-color: var(--color-black);
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
  transition:
    transform var(--transition),
    box-shadow var(--transition);
}

.result-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.22);
}

.result-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.72) 0%,
    rgba(0, 0, 0, 0.18) 55%,
    transparent 100%
  );
}

.result-card-body {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 1.5rem 1.25rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.result-card-title {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  font-weight: 700;
  color: var(--color-white);
  margin: 0;
  line-height: 1.2;
}

.result-card-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
  background: var(--color-white);
  color: var(--color-black);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.65rem 1.75rem;
  border-radius: var(--radius-pill);
  text-decoration: none;
  transition:
    background var(--transition),
    color var(--transition);
}

.result-card-btn:hover {
  background: var(--color-black);
  color: var(--color-white);
}

/* ── Full schedule page ─────────────────────────────────── */
.schedule-day-groups {
  border: 1px solid var(--color-soft-gray);
  border-radius: 12px;
  margin-top: 3.5rem;
}
.schedule-day-group {
  padding: 2.5rem;
  border-bottom: 1px solid var(--color-soft-gray, #eee);
}

.schedule-day-group:last-child {
  border-bottom: none;
}

.schedule-day-heading {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  margin-top: 0;
  margin-bottom: 1.25rem;
}

.schedule-cover {
  grid-column: full;
  width: 100%;
  height: clamp(220px, 40vw, 480px);
  background-size: cover;
  background-position: center;
}

/* ── Accommodation page ─────────────────────────────────── */
.accommodation-section {
  padding: 3rem 0;
}

.hotel-grid {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-top: 3rem;
}

.hotel-card {
  border-radius: var(--radius-card);
  overflow: hidden;
  border: 1px solid var(--color-soft-gray);
  background: var(--color-white);
  display: grid;
  grid-template-columns: 280px 1fr;
  transition: box-shadow var(--transition);
}

.hotel-card:hover {
  box-shadow: 0 6px 28px rgba(0, 0, 0, 0.09);
}

.hotel-card-image {
  overflow: hidden;
  min-height: 220px;
}

.hotel-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.hotel-card:hover .hotel-card-image img {
  transform: scale(1.04);
}

.hotel-card-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.hotel-card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}

.hotel-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.hotel-scope {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-gold);
  margin-bottom: 1rem;
}

.hotel-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--color-blue, #1a73e8);
}

.hotel-phone:hover {
  text-decoration: underline;
}

.hotel-cta {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-black);
  text-decoration: none;
  white-space: nowrap;
}

.hotel-cta:hover {
  text-decoration: underline;
}

.hotel-rooms {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--color-soft-gray);
  border-radius: 12px;
}

.hotel-rooms-group {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding: 1rem;
  font-size: 1.25rem;
  border-bottom: 1px solid var(--color-soft-gray);
}

.hotel-rooms-group:last-child {
  border: none;
}

.hotel-rooms-label {
  font-weight: 700;
  color: var(--color-black);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.hotel-rooms-note {
  font-size: 1rem;
  font-weight: 500;
  color: var(--color-gray);
  padding: 0 0.6rem;
}

.hotel-rooms-cols {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.hotel-room-col {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  min-width: 100px;
}

.room-title {
  font-size: 1.25rem;
  color: var(--color-gray);
}

.room-price {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-black);
}

@media (max-width: 680px) {
  .hotel-card {
    grid-template-columns: 1fr;
  }
  .hotel-card-image {
    min-height: 200px;
    aspect-ratio: 16/9;
  }
  .hotel-card-header {
    flex-direction: column;
  }
}

/* ── Transportation page ────────────────────────────────── */
.transportation-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  align-items: start;
  margin-top: 2rem;
}

.transportation-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.transport-card {
  border: 1px solid var(--color-soft-gray);
  border-radius: var(--radius-card);
  background: var(--color-white);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: box-shadow var(--transition);
}

/* Location card */
.transport-location {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}

.transport-location svg {
  flex-shrink: 0;
  margin-top: 0.15rem;
}

.transport-address {
  font-size: 1.5rem;
  margin: 0;
}

.transport-directions-btn {
  align-self: flex-start;
}

/* Direction cards */
.transport-card--direction {
  gap: 1rem;
  background: #F9FAFB;
  border: none;
}

.transport-direction-logo {
  width: 44px;
  height: 44px;
  object-fit: contain;
  flex-shrink: 0;
  border-radius: 6px;
}

.transport-direction-body {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  flex: 1;
}

.transport-direction-title {
  font-size: 1.25rem;
  color: var(--color-gray);
}

.transport-direction-link {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-black);
  text-decoration: none;
}

.transport-direction-link:hover {
  text-decoration: underline;
}

/* Map */
.transportation-map {
  border-radius: var(--radius-card);
  overflow: hidden;
  border: 1px solid var(--color-soft-gray);
  background: var(--color-light);
  min-height: 420px;
  position: sticky;
  top: 100px;
}

.transportation-map iframe {
  width: 100%;
  height: 100%;
  min-height: 420px;
  display: block;
  border: none;
}

.transport-map-fallback {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  min-height: 420px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-black);
  text-decoration: underline;
}

@media (max-width: 860px) {
  .transportation-layout {
    grid-template-columns: 1fr;
  }

  .transportation-map {
    position: static;
    min-height: 300px;
  }

  .transportation-map iframe {
    min-height: 300px;
  }
}

@media (max-width: 480px) {
  .transport-card--direction {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ── Photos page ────────────────────────────────────────── */
.photos-section {
  padding: 2rem 0;
}
.photos-tabs {
  margin-bottom: 2rem;
}
.photos-panel {
  display: none;
}
.photos-panel.active {
  display: block;
}

/* Photos page — mobile bottom sheet */
@media (max-width: 600px) {
  .photos-section .photos-tabs {
    display: none;
  }
  .photos-section .photos-tabs-mobile {
    display: block;
    margin-bottom: 1.5rem;
  }
}

/* =========================================================
   MEGA MENU — mobile hide
   ========================================================= */
@media (max-width: 767px) {
  .mega-menu {
    display: none !important;
  }
}

/* =========================================================
   CHARITY PAGE
   ========================================================= */

.charity-intro {
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.5rem;
}

.charity-intro-title {
  font-size: 2.5rem
}

.charity-intro-head {
  display: flex;
  justify-content: space-between;
}

.charity-description {
  font-size: 1.25rem;
  color: var(--color-text);
}

.charity-logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  margin-top: 2.5rem;
}

.charity-logo {
  padding-inline:  2.5rem;
  border-right: 1px solid var(--color-soft-gray);
}
.charity-logo:first-child {
  padding-left: 0;
}
.charity-logo:last-child {
  padding-right: 0;
  border-right: none;
}

.charity-logos img {
  height: 60px;
  width: auto;
  object-fit: contain;
}

.charity-intro-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  flex-shrink: 0;
  align-self: flex-start;
}

/* ── Red banner ─────────────────────────────────────────── */
.charity-banner {
  position: relative;
  background-color: var(--red-600);
  color: var(--color-white);
  padding: clamp(2.5rem, 6vw, 5rem) clamp(1.25rem, 5vw, 4rem);
}

.charity-banner-bg {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  opacity: 0.4;
  background-size: 100% auto;
  background-position: bottom;
  background-repeat: no-repeat;
}

.charity-banner-inner {
  position: relative;
  max-width: var(--content-width, 1200px);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.charity-banner-title {
  font-family: var(--font-display);
  font-size: 3.75rem;
  font-weight: 700;
  margin: 0;
}

.charity-banner-desc {
  font-size: 1.5rem;
  max-width: 60ch;
  margin: 0;
}

/* ── Info grid ──────────────────────────────────────────── */
.charity-info-grid {
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
  padding: 2.5rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2.5rem;
  width: 100%;
  margin-top: 1.5rem;
  margin-bottom: 4.5rem;
}

.charity-info-item {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.charity-info-icon img {
  width: 32px;
  height: 32px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.charity-info-title {
  font-size: 2rem;
  font-weight: 600;
}

.charity-info-desc {
  font-size: 1.25rem;
  margin: 0;
}

/* ── Video ──────────────────────────────────────────────── */
.charity-video-section {
}

.charity-video-wrap {
  max-width: var(--content-width, 1200px);
  margin: 0 auto;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-card);
  overflow: hidden;
}

.charity-video-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* ── General info (the_content) ─────────────────────────── */
.charity-general-info {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 5rem!important;
}


.charity-general-content ul {
  padding-left: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 1.25rem
}


/* ── Responsive ─────────────────────────────────────────── */
@media (max-width: 768px) {
  .charity-intro {
    flex-direction: column;
  }

  .charity-info-grid {
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 1.5rem;
  }

  .charity-intro-head {
    flex-direction: column;
    margin-bottom: 2rem;
  }

  .charity-intro-actions {
    flex-direction: column;
    width: 100%;
  }

  .charity-banner-bg {
    background-size: 100% 100%;
  }
}
