:root {
  --navy: #071a33;
  --navy-2: #0c2948;
  --cyan: #29add1;
  --cyan-soft: #e9f7fb;
  --orange: #f2a443;
  --orange-soft: #fff3e3;
  --ink: #102033;
  --muted: #5f6c7b;
  --line: #d8e0e8;
  --paper: #ffffff;
  --mist: #f3f6f8;
  --display: "Libre Caslon Display", Georgia, serif;
  --sans: "Inter", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-y: scroll;
  scrollbar-width: auto;
}

@supports (-moz-appearance: none) {
  html {
    scrollbar-color: var(--cyan) var(--navy);
  }
}

html::-webkit-scrollbar {
  width: 12px;
}

html::-webkit-scrollbar-track {
  background: var(--navy);
}

html::-webkit-scrollbar-button:single-button {
  display: block;
  width: 12px;
  height: 14px;
  background-color: var(--navy);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 8px 8px;
}

html::-webkit-scrollbar-button:single-button:vertical:decrement {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 10 10'%3E%3Cpath fill='%23f2a443' d='M1 7 5 3l4 4z'/%3E%3C/svg%3E");
}

html::-webkit-scrollbar-button:single-button:vertical:increment {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 10 10'%3E%3Cpath fill='%23f2a443' d='M1 3 5 7l4-4z'/%3E%3C/svg%3E");
}

html::-webkit-scrollbar-thumb {
  min-height: 44px;
  border: 3px solid var(--navy);
  border-radius: 8px;
  background: var(--cyan);
}

html::-webkit-scrollbar-thumb:hover {
  background: #45bedc;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  line-height: 1.6;
}

/* Committees and contact */
.committee-section,
.organizing-section,
.contact-intro,
.contact-layout {
  width: min(1180px, 88vw);
  margin-inline: auto;
}

.leadership-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.committee-panel {
  position: relative;
  min-height: 260px;
  padding: 34px 36px;
  border: 1px solid var(--line);
  border-left: 4px solid var(--orange);
  background: var(--paper);
}

.committee-index {
  color: var(--cyan);
  font-size: 12px;
  font-weight: 700;
}

.committee-panel h3,
.rank-group h3 {
  margin: 12px 0 24px;
  font: 400 clamp(28px, 3vw, 42px)/1.05 var(--display);
}

.name-list,
.rank-name-grid {
  display: grid;
  gap: 0;
}

.name-list p,
.rank-name-grid p {
  margin: 0;
  padding: 13px 0 13px 18px;
  border-left: 3px solid var(--orange);
  border-bottom: 1px solid var(--line);
  font-family: var(--display);
  font-size: 20px;
}

.leadership-grid .name-list p {
  padding-left: 0;
  border-left: 0;
}

.organizing-section {
  padding-top: 20px;
}

.rank-group {
  display: grid;
  grid-template-columns: minmax(150px, 0.28fr) 1fr;
  gap: 40px;
  padding: 36px 0;
  border-top: 1px solid var(--line);
}

.rank-name-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 28px;
}

.rank-group-last {
  border-bottom: 1px solid var(--line);
}

.science-board {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 48px;
  margin-bottom: 72px;
  color: var(--ink);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--mist);
}

.science-board h2,
.science-board > p {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
}

.contact-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: end;
  gap: 48px;
}

.contact-intro h2 {
  margin: 0;
  font: 400 clamp(42px, 5vw, 68px)/1 var(--display);
}
.contact-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 70px;
  padding-top: 20px;
}

.contact-lead {
  padding: 36px;
  color: white;
  background: var(--navy);
}

.contact-lead h2 {
  margin: 10px 0 50px;
  font: 400 clamp(28px, 3.4vw, 46px)/1.12 var(--display);
}

.coordinator {
  display: grid;
  gap: 4px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.24);
}

.coordinator span {
  color: var(--cyan);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.coordinator strong {
  font-family: var(--display);
  font-size: 25px;
  font-weight: 400;
}

.contact-methods {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.contact-method {
  min-height: 180px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  padding: 26px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition: color 180ms ease, background-color 180ms ease;
}

.contact-method:hover {
  color: var(--navy);
  background: var(--cyan-soft);
}

.contact-method svg {
  width: 26px;
  height: 26px;
  margin-bottom: auto;
  color: var(--orange);
}

.contact-method span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.contact-method strong {
  margin-top: 5px;
  font-family: var(--display);
  font-size: 20px;
  font-weight: 400;
}

.contact-address {
  grid-column: 1 / -1;
}
@media (max-width: 820px) {
  .leadership-grid,
  .science-board,
  .contact-intro,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .rank-group {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .rank-name-grid,
  .contact-methods {
    grid-template-columns: 1fr;
  }

  .contact-address {
    grid-column: auto;
  }
}

/* Registration form: keep the primary action consistent with the light-surface button system. */
.ahod-form-page .ahod-form-surface .cf7-form-wrapper input.wpcf7-submit {
  min-width: 230px !important;
  min-height: 54px !important;
  padding: 0 26px !important;
  color: var(--navy) !important;
  background: transparent !important;
  border: 1px solid var(--orange) !important;
  border-radius: 0 !important;
  font-family: var(--body) !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  line-height: 1 !important;
  cursor: pointer !important;
  transition: color 160ms ease, background-color 160ms ease, border-color 160ms ease !important;
}

.ahod-form-page .ahod-form-surface .cf7-form-wrapper input.wpcf7-submit:hover,
.ahod-form-page .ahod-form-surface .cf7-form-wrapper input.wpcf7-submit:focus-visible {
  color: #fff !important;
  background: var(--cyan) !important;
  border-color: var(--cyan) !important;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button:focus-visible,
a:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 8px;
  left: 8px;
  padding: 10px 14px;
  background: white;
  color: var(--navy);
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  min-height: 96px;
  display: grid;
  grid-template-columns: 240px 1fr auto;
  align-items: center;
  gap: 32px;
  padding: 0 5vw;
  color: white;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  transition: background-color 180ms ease, min-height 180ms ease, box-shadow 180ms ease;
}

.site-header.scrolled {
  min-height: 72px;
  background: rgba(7, 26, 51, 0.98);
  box-shadow: 0 8px 24px rgba(7, 26, 51, 0.14);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: 170px;
}

.brand img {
  display: block;
  width: 100%;
  height: auto;
}

.desktop-nav {
  display: flex;
  justify-content: center;
  gap: clamp(18px, 2.2vw, 38px);
  font-family: var(--display);
  font-size: 17px;
}

.desktop-nav a {
  position: relative;
  padding: 10px 0;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 4px;
  left: 0;
  height: 2px;
  background: var(--cyan);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after {
  transform: scaleX(1);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.language-switch {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
}

.language-button {
  min-width: 28px;
  border: 0;
  padding: 6px 2px;
  color: rgba(255, 255, 255, 0.66);
  background: transparent;
  cursor: pointer;
  font: 600 13px var(--sans);
  font-size: 0;
}

.language-button::before {
  content: attr(data-lang);
  font: 600 13px var(--sans);
  text-transform: uppercase;
}

.language-button.active {
  color: white;
}

.header-register {
  padding: 10px 16px;
  background: var(--orange);
  color: var(--navy);
  border-radius: 4px;
  font-size: 14px;
  font-weight: 700;
  transition: background-color 180ms ease, color 180ms ease;
}

.header-register:hover {
  background: var(--cyan);
  color: var(--navy);
}

.menu-button {
  display: none;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 4px;
  background: transparent;
  color: white;
}

.menu-button svg {
  width: 22px;
  height: 22px;
}

.mobile-panel {
  position: fixed;
  z-index: 90;
  top: 0;
  right: 0;
  width: min(390px, 100%);
  height: 100vh;
  padding: 116px 34px 40px;
  background: var(--navy);
  color: white;
  transform: translateX(100%);
  transition: transform 220ms ease;
}

.mobile-panel.open {
  transform: translateX(0);
}

.mobile-panel nav {
  display: grid;
}

.mobile-panel a {
  padding: 17px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  font-family: var(--display);
  font-size: 24px;
}

.hero {
  position: relative;
  min-height: clamp(570px, calc(100svh - 104px), 740px);
  display: flex;
  align-items: center;
  overflow: hidden;
  color: white;
  background-color: var(--navy);
  background-image: url("hero-main.webp");
  background-position: center bottom;
  background-size: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(3, 13, 29, 0.34) 0%,
    rgba(3, 13, 29, 0.18) 54%,
    rgba(3, 13, 29, 0.08) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(920px, 90vw);
  margin: 72px auto 0;
  text-align: center;
}

.hero-kicker,
.eyebrow {
  margin: 0 0 14px;
  color: var(--cyan);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-kicker {
  display: none;
}

.hero h1 {
  max-width: 900px;
  margin: 0 auto;
  font-family: var(--display);
  font-size: clamp(50px, 5vw, 76px);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: 0;
}

.hero-pretitle {
  margin: 0 0 12px;
  color: rgba(255, 255, 255, 0.84);
  font-family: var(--display);
  font-size: clamp(22px, 2.4vw, 36px);
  font-weight: 500;
}

.event-facts {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 18px 38px;
  margin: 28px 0 0;
}

.event-facts p {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
}

.event-facts svg {
  width: 18px;
  color: #fff;
}

.hero-actions {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  width: calc(100vw - 32px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin: 0;
  pointer-events: none;
  transform: translate(-50%, -50%);
}

.hero-actions .button {
  flex: 0 1 190px;
  width: 190px;
  min-width: 0;
  pointer-events: auto;
  white-space: nowrap;
}

.hero-actions .button-primary::before,
.hero-actions .button-secondary::after {
  color: var(--orange);
  font-size: 22px;
  font-weight: 400;
  line-height: 1;
}

.hero-actions .button-primary::before {
  content: "\2190";
}

.hero-actions .button-secondary::after {
  content: "\2192";
}

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 4px;
  font-weight: 700;
  transition: background-color 180ms ease, color 180ms ease, border-color 180ms ease;
}

.button svg {
  width: 18px;
  height: 18px;
}

.button-primary {
  border-color: var(--orange);
  background: transparent;
  color: var(--navy);
}

.button-primary:hover {
  border-color: var(--cyan);
  background: var(--cyan);
  color: #fff;
}

.button-secondary {
  border-color: var(--orange);
  background: transparent;
  color: var(--navy);
}

.button-secondary:hover {
  border-color: var(--cyan);
  background: var(--cyan);
  color: #fff;
}

.hero-actions .button-primary {
  border-color: var(--orange);
  background: transparent;
  color: #fff;
}

.hero-actions .button-primary:hover {
  border-color: var(--cyan);
  background: var(--cyan);
  color: #fff;
}

.hero-actions .button-secondary {
  border-color: var(--orange);
  background: transparent;
  color: #fff;
}

.hero-actions .button-secondary:hover {
  border-color: var(--cyan);
  background: var(--cyan);
  color: #fff;
}

.countdown {
  display: inline-grid;
  grid-template-columns: repeat(4, minmax(84px, 1fr));
  gap: 0;
  margin-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.28);
  border-bottom: 1px solid rgba(255, 255, 255, 0.28);
  font-family: var(--display);
}

.countdown div {
  padding: 13px 20px 12px;
  border-right: 1px solid rgba(255, 255, 255, 0.22);
}

.countdown div:last-child {
  border-right: 0;
}

.countdown strong,
.countdown span {
  display: block;
}

.countdown strong {
  font-family: var(--display);
  font-size: 26px;
  font-weight: 400;
  line-height: 1;
}

.countdown span {
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 10px;
  font-weight: 400;
  text-transform: uppercase;
}

.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  z-index: 3;
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--orange);
  border-radius: 50%;
  color: var(--orange);
  background: rgba(7, 26, 51, 0.66);
  transform: translateX(-50%);
  transition: background-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.hero-scroll:hover {
  color: #fff;
  background: var(--orange);
  transform: translateX(-50%) translateY(3px);
}

.hero-scroll svg {
  width: 18px;
}

.quick-actions {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-bottom: 1px solid var(--line);
  background: white;
}

.quick-actions > a {
  min-height: 104px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 15px;
  padding: 20px clamp(18px, 2.5vw, 44px);
  border-right: 1px solid var(--line);
  transition: background-color 180ms ease;
}

.quick-actions > a:last-child {
  border-right: 0;
}

.quick-actions > a:hover {
  background: var(--cyan-soft);
}

.quick-actions svg {
  width: 22px;
  color: var(--cyan);
}

.quick-actions > a > svg:last-child {
  width: 17px;
  color: var(--orange);
}

.quick-actions strong,
.quick-actions small {
  display: block;
}

.quick-actions strong {
  font-family: var(--display);
  font-size: 20px;
  font-weight: 400;
}

.quick-actions small {
  color: var(--muted);
  font-size: 12px;
}

/* Home section navigation matches the registration page jump controls. */
.quick-actions {
  position: relative;
  z-index: 3;
  width: min(1180px, 92vw);
  min-height: 86px;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  margin: -22px auto 0;
  border: 1px solid var(--line);
  box-shadow: 0 16px 40px rgba(7, 26, 51, 0.1);
}

.quick-actions > a {
  min-width: 0;
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 16px 12px;
  color: var(--navy);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.25;
  text-align: center;
  transition: color 160ms ease, background-color 160ms ease;
}

.quick-actions > a:hover {
  color: var(--navy);
  background: var(--cyan-soft);
}

.quick-actions > a svg {
  width: 19px;
  min-width: 19px;
  color: var(--cyan);
}

.quick-actions > a span {
  display: block;
}

#dates,
#program,
#registration,
#venue,
#abstracts,
#about {
  scroll-margin-top: 96px;
}

.section {
  width: min(1180px, 88vw);
  margin: 0 auto;
  padding: 108px 0;
}

.section-heading {
  max-width: 620px;
}

.section h2,
.registration-band h2,
.venue-content h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(38px, 4vw, 60px);
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: 0;
}

.section-heading > p:last-child,
.program-intro > p:last-of-type,
.invite-copy,
.venue-content > p,
.abstract-section > div:first-child > p:last-child,
.about-section > div > p:last-child {
  color: var(--muted);
  font-size: 17px;
}

.date-line {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 58px;
  border-top: 1px solid var(--line);
}

.date-item {
  position: relative;
  padding: 32px 26px 0 0;
}

.date-item::before {
  content: "";
  position: absolute;
  top: -6px;
  left: 0;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--cyan);
}

.date-item.highlighted::before {
  background: var(--orange);
  box-shadow: 0 0 0 7px var(--orange-soft);
}

.date-item time {
  display: block;
  margin-bottom: 24px;
  color: var(--navy);
  font-family: var(--display);
  font-size: 44px;
  line-height: 1;
}

.date-item time span {
  font-size: 20px;
}

.date-item strong {
  display: block;
  margin-bottom: 8px;
  font-size: 15px;
}

.date-item p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.program-section {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 9vw;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
  padding-bottom: 5px;
  border-bottom: 1px solid var(--orange);
  color: var(--orange);
  font-weight: 700;
  transition: color 180ms ease, border-color 180ms ease;
}

.text-link svg {
  width: 17px;
  color: var(--orange);
  transition: color 180ms ease;
}

.text-link:hover {
  border-color: var(--orange);
  color: var(--orange);
}

.text-link:hover svg {
  color: var(--orange);
}

.agenda {
  border-top: 1px solid var(--line);
}

.agenda article {
  min-height: 128px;
  display: grid;
  grid-template-columns: 74px 1fr auto;
  align-items: center;
  gap: 24px;
  border-bottom: 1px solid var(--line);
}

.agenda time {
  color: var(--cyan);
  font-weight: 700;
}

.agenda span,
.agenda strong {
  display: block;
}

.agenda span,
.agenda small {
  color: var(--muted);
  font-size: 12px;
}

.agenda strong {
  margin-top: 4px;
  font-family: var(--display);
  font-size: 21px;
  font-weight: 400;
  line-height: 1.35;
}

.registration-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 5vw;
  margin-bottom: clamp(24px, 2.5vw, 40px);
  padding: 68px 6vw;
  color: white;
  background: var(--navy);
}

.registration-band p {
  color: rgba(255, 255, 255, 0.72);
}

.registration-band .button-primary {
  border-color: var(--orange);
  background: transparent;
  color: #fff;
  transform: translateY(17px);
}

.registration-band .button-primary:hover {
  border-color: var(--cyan);
  background: var(--cyan);
  color: #fff;
}

.invite-section {
  display: grid;
  width: min(1320px, 92vw);
  grid-template-columns: minmax(240px, 0.62fr) minmax(0, 1.38fr);
  gap: clamp(52px, 6vw, 96px);
}

.invite-copy p:first-child {
  margin-top: 0;
}

.invite-copy p {
  line-height: 1.78;
}

.invite-salutation {
  color: var(--navy);
  font-family: var(--display);
  font-size: clamp(23px, 2vw, 31px);
}

.invitation-leadership {
  margin-top: 44px;
  padding-top: 30px;
  border-top: 1px solid var(--line);
}

.leadership-group {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.leadership-names {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  width: 100%;
  gap: 24px;
}

.leadership-group span,
.leadership-group strong {
  display: block;
}

.leadership-group span {
  margin-bottom: 9px;
  color: var(--cyan);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.leadership-group strong {
  margin-top: 7px;
  color: var(--navy);
  font-family: var(--display);
  font-size: 18px;
  font-weight: 400;
}

.venue-section {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  min-height: 540px;
  background: var(--mist);
}

.venue-image {
  min-height: 540px;
  background-color: #c9d8e1;
  background-image: url("elexus-venue.jpg");
  background-position: center;
  background-size: cover;
}

.venue-content {
  align-self: center;
  padding: 40px clamp(42px, 6vw, 100px);
}

.venue-content dl {
  margin: 36px 0 18px;
}

.venue-content dl div {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 18px;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
}

.venue-content dt {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.venue-content dd {
  margin: 0;
  font-weight: 600;
}

.abstract-section {
  display: grid;
  grid-template-columns: 1.2fr 0.55fr 0.7fr;
  align-items: center;
  gap: 6vw;
}

.abstract-deadline {
  padding-left: 30px;
  border-left: 3px solid var(--orange);
}

.abstract-deadline span,
.abstract-deadline strong {
  display: block;
}

.abstract-deadline span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.abstract-deadline strong {
  color: var(--navy);
  font-family: var(--display);
  font-size: 38px;
  font-weight: 400;
}

.abstract-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.abstract-actions .text-link {
  border-color: var(--orange);
  color: var(--orange);
  font-size: 13px;
}

.abstract-actions .button-primary {
  border-color: var(--orange);
  background: transparent;
  color: var(--navy);
}

.abstract-actions .button-primary:hover {
  border-color: var(--cyan);
  background: var(--cyan);
  color: #fff;
}
.about-section {
  display: grid;
  grid-template-columns: 0.55fr 1.45fr;
  align-items: center;
  gap: 8vw;
  border-top: 1px solid var(--line);
}

.about-section img {
  width: min(280px, 100%);
  justify-self: center;
}

footer {
  color: white;
  background: var(--navy);
}

.footer-main {
  width: min(1180px, 88vw);
  display: grid;
  grid-template-columns: minmax(260px, 1fr) minmax(360px, 0.95fr) minmax(170px, 0.5fr);
  align-items: start;
  gap: clamp(40px, 6vw, 88px);
  margin: 0 auto;
  padding: 48px 0 40px;
}

.footer-logo {
  display: inline-flex;
}

.footer-logo:focus-visible,
.footer-action:focus-visible,
.footer-nav a:focus-visible {
  outline: 3px solid #fff;
  outline-offset: 4px;
}

.footer-brand img {
  width: 170px;
}

.footer-brand p {
  max-width: 320px;
  margin: 14px 0 0;
  font-family: var(--display);
  font-size: 18px;
  line-height: 1.45;
}

.footer-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.footer-action {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border: 1px solid;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  text-align: center;
  transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease;
}

.footer-action-registration {
  border-color: var(--orange);
}

.footer-action-abstract {
  border-color: var(--cyan);
}

.footer-action-registration:hover {
  color: var(--navy);
  background: var(--orange);
}

.footer-action-abstract:hover {
  color: var(--navy);
  background: var(--cyan);
}

.footer-nav {
  display: grid;
  align-content: start;
  gap: 10px;
  font-family: var(--display);
}

.footer-nav a:hover {
  color: var(--cyan);
}

.footer-bottom {
  display: flex;
  justify-content: center;
  padding: 16px 6vw;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.6);
  font-size: 11px;
  text-align: center;
}

.ahod-form-page .subhero {
  min-height: 470px;
}

.ahod-form-section {
  width: 100%;
  padding: clamp(72px, 8vw, 96px) 0;
  background: #f4f7f9;
}

.ahod-form-layout {
  width: min(1180px, 88vw);
  display: grid;
  grid-template-columns: minmax(240px, 0.46fr) minmax(620px, 1.54fr);
  gap: clamp(36px, 4vw, 64px);
  margin: 0 auto;
}

.ahod-form-layout > aside,
.ahod-form-surface {
  min-width: 0;
}

.ahod-form-layout > aside {
  align-self: start;
  position: sticky;
  top: 120px;
}

.ahod-form-layout > aside > span {
  color: var(--cyan);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.ahod-form-layout > aside h2 {
  margin: 18px 0 0;
  color: var(--navy);
  font: 400 clamp(38px, 4vw, 58px)/1.04 var(--display);
}

.ahod-form-layout > aside p {
  margin: 24px 0 0;
  color: #5d6875;
  line-height: 1.75;
}

.ahod-form-surface {
  padding: clamp(28px, 4vw, 56px);
  background: #fff;
  border-top: 4px solid var(--cyan);
  box-shadow: 0 18px 60px rgba(7, 26, 51, 0.08);
}

.ahod-form-surface .wpcf7-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px 24px;
}

.ahod-form-surface .wpcf7-form > div:not(.wpcf7-response-output) {
  grid-column: 1 / -1;
}

.ahod-form-surface .wpcf7-form > p {
  min-width: 0;
  margin: 0;
}

.ahod-form-surface .wpcf7-form > p:has(textarea),
.ahod-form-surface .wpcf7-form > p:has(input[type="file"]),
.ahod-form-surface .wpcf7-form > p:has(input[type="submit"]),
.ahod-form-surface .wpcf7-response-output {
  grid-column: 1 / -1;
}

.ahod-form-surface label {
  display: grid;
  gap: 8px;
  color: var(--navy);
  font-size: 12px;
  font-weight: 700;
}

.ahod-form-surface input:not([type="submit"]):not([type="checkbox"]):not([type="radio"]),
.ahod-form-surface select,
.ahod-form-surface textarea {
  width: 100%;
  min-height: 50px;
  padding: 12px 14px;
  color: var(--navy);
  background: #f7f9fb;
  border: 1px solid #d8e0e7;
  border-radius: 0;
  font: 400 14px/1.4 var(--body);
  outline: 0;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}


.ahod-form-surface .wpcf7-form-control-wrap,
.ahod-form-surface .wpcf7-form-control {
  min-width: 0;
  max-width: 100%;
}

.ahod-form-surface textarea {
  min-height: 132px;
  resize: vertical;
}

.ahod-form-surface input:focus,
.ahod-form-surface select:focus,
.ahod-form-surface textarea:focus {
  border-color: var(--cyan);
  box-shadow: 0 0 0 3px rgba(40, 182, 216, 0.14);
}

.ahod-form-surface input[type="file"] {
  min-height: 54px;
  padding: 12px;
}

.ahod-form-surface .wpcf7-submit {
  min-height: 52px;
  padding: 0 26px;
  color: var(--navy);
  background: var(--orange);
  border: 0;
  border-radius: 0;
  font: 700 13px/1 var(--body);
  cursor: pointer;
}

.ahod-form-surface .wpcf7-submit:hover,
.ahod-form-surface .wpcf7-submit:focus-visible {
  color: #fff;
  background: var(--navy);
}

.ahod-form-surface .wpcf7-not-valid-tip {
  margin-top: 6px;
  color: #b42318;
  font-size: 11px;
}

.ahod-form-surface .wpcf7-response-output {
  margin: 8px 0 0 !important;
  padding: 14px 16px !important;
  border-color: var(--cyan) !important;
}

/* Contact Form 7 groups the abstract fields inside a single wrapper. */
.ahod-form-surface .bildiri-form {
  max-width: none;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 22px;
  margin: 0;
  padding: 0;
}

.ahod-form-surface .bildiri-form label {
  margin: 0;
  font-size: 12px;
  font-weight: 700;
}

.ahod-form-surface .bildiri-form input,
.ahod-form-surface .bildiri-form select,
.ahod-form-surface .bildiri-form textarea {
  margin: 0;
}

.ahod-form-surface .bildiri-form > h3 {
  grid-column: 1 / -1;
  margin: 8px 0 2px;
  padding: 0 0 12px;
  color: var(--navy);
  border-bottom: 1px solid #dce5eb;
  font: 400 24px/1.2 var(--display);
}

.ahod-form-surface .bildiri-form > h3:first-child {
  margin-top: 0;
}

.ahod-form-surface .bildiri-form > p {
  display: contents;
}

.ahod-form-surface .bildiri-form > p > br {
  display: none;
}

.ahod-form-surface .bildiri-form > p > label {
  min-width: 0;
  align-content: start;
}

.ahod-form-surface .bildiri-form label:has([name="konu_basligi"]),
.ahod-form-surface .bildiri-form label:has(textarea),
.ahod-form-surface .bildiri-form label:has(input[type="file"]),
.ahod-form-surface .bildiri-form input[type="submit"],
.ahod-form-surface .bildiri-form .wpcf7-spinner {
  grid-column: 1 / -1;
}

.ahod-form-surface .bildiri-form label:has(input[type="file"]) {
  padding: 16px;
  background: #f1f9fc;
  border: 1px dashed #9bcfdd;
}

.ahod-form-surface .bildiri-form input[type="file"] {
  margin-top: 2px;
  background: #fff;
}

.ahod-form-surface .ahod-field-label {
  line-height: 1.35;
}

.ahod-form-surface .ahod-file-hint {
  display: block;
  color: #5d6875;
  font-size: 11px;
  font-weight: 500;
  line-height: 1.45;
}

.ahod-form-surface .bildiri-form > p.ahod-form-submit {
  display: flex;
  grid-column: 1 / -1;
  align-items: center;
  gap: 12px;
  margin: 4px 0 0;
}

.ahod-form-surface .bildiri-form input[type="submit"] {
  width: auto;
  min-width: 220px;
  margin: 0;
  color: var(--navy) !important;
  background: transparent !important;
  border: 1px solid var(--orange) !important;
}

.ahod-form-surface .bildiri-form input[type="submit"]:hover,
.ahod-form-surface .bildiri-form input[type="submit"]:focus-visible {
  color: #fff !important;
  background: var(--cyan) !important;
  border-color: var(--cyan) !important;
}

.ahod-form-warning {
  margin: 0;
  padding: 18px;
  color: #842029;
  background: #fff2f2;
  border-left: 4px solid #b42318;
}

@media (max-width: 900px) {
  .ahod-form-layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .ahod-form-layout > aside {
    position: static;
  }
}

@media (max-width: 620px) {
  .ahod-form-page .subhero {
    min-height: 410px;
  }

  .ahod-form-layout {
    width: calc(100% - 40px);
  }

  .ahod-form-surface {
    padding: 24px 18px;
  }

  .ahod-form-surface .wpcf7-form {
    grid-template-columns: minmax(0, 1fr);
  }

  .ahod-form-surface .wpcf7-form > p {
    grid-column: 1;
  }

  .ahod-form-surface .bildiri-form {
    grid-template-columns: minmax(0, 1fr);
  }

  .ahod-form-surface .bildiri-form > h3,
  .ahod-form-surface .bildiri-form label:has([name="konu_basligi"]),
  .ahod-form-surface .bildiri-form label:has(textarea),
  .ahod-form-surface .bildiri-form label:has(input[type="file"]),
  .ahod-form-surface .bildiri-form input[type="submit"],
  .ahod-form-surface .bildiri-form .wpcf7-spinner {
    grid-column: 1;
  }

  .ahod-form-surface .bildiri-form > p.ahod-form-submit,
  .ahod-form-surface .bildiri-form input[type="submit"] {
    width: 100%;
  }
}

@media (max-width: 1120px) {
  .site-header {
    grid-template-columns: 190px 1fr auto;
  }

  .desktop-nav {
    gap: 18px;
    font-size: 15px;
  }

  .header-register {
    display: none;
  }

  .quick-actions {
    grid-template-columns: repeat(2, 1fr);
  }

  .quick-actions > a:nth-child(even),
  .quick-actions > a:last-child {
    border-right: 0;
  }

  .quick-actions > a {
    border-bottom: 1px solid var(--line);
  }

  .quick-actions > a:last-child {
    grid-column: 1 / -1;
    border-bottom: 0;
  }
}

@media (max-width: 1050px) {
  .site-header {
    min-height: 82px;
    grid-template-columns: 1fr auto;
    padding: 0 28px;
  }

  .brand {
    width: 150px;
  }

  .desktop-nav {
    display: none;
  }

  .header-actions {
    gap: 12px;
  }

  .menu-button {
    display: inline-flex;
  }

  .hero-actions {
    position: static;
    width: auto;
    justify-content: center;
    gap: 12px;
    margin: 24px 0 0;
    pointer-events: auto;
    transform: none;
  }
}

@media (max-width: 820px) {
  .site-header {
    min-height: 76px;
    grid-template-columns: 1fr auto;
    padding: 0 20px;
  }

  .site-header.scrolled {
    min-height: 66px;
  }

  .brand {
    width: 142px;
  }

  .desktop-nav {
    display: none;
  }

  .header-actions {
    gap: 12px;
  }

  .menu-button {
    display: inline-flex;
  }

  .hero {
    min-height: max(560px, calc(100svh - 92px));
    background-position: 54% center;
  }

  .hero-content {
    width: min(92vw, 620px);
    margin-top: 58px;
  }

  .hero-kicker {
    margin-bottom: 10px;
    font-size: 10px;
  }

  .hero h1 {
    font-size: clamp(39px, 11vw, 56px);
    line-height: 1.03;
  }

  .hero-pretitle {
    margin-bottom: 10px;
    font-size: 16px;
    line-height: 1.3;
  }

  .desktop-break {
    display: none;
  }

  .event-facts {
    display: grid;
    gap: 6px;
    margin-top: 22px;
    font-size: 13px;
  }

  .event-facts p {
    justify-content: center;
  }

  .hero-actions {
    margin: 20px 0 0;
  }

  .countdown {
    margin-top: 24px;
  }

  .button {
    min-height: 48px;
    padding: 0 17px;
    font-size: 13px;
  }

  .countdown {
    grid-template-columns: repeat(4, 68px);
  }

  .countdown div {
    padding: 11px 8px;
  }

  .countdown strong {
    font-size: 22px;
  }

  .hero-scroll {
    bottom: 82px;
    display: inline-flex;
  }

  .quick-actions {
    grid-template-columns: repeat(2, 1fr);
  }

  .quick-actions > a {
    min-height: 90px;
    border-bottom: 1px solid var(--line);
  }

  .quick-actions > a:nth-child(odd) {
    border-right: 1px solid var(--line);
  }

  .quick-actions > a:nth-child(even) {
    border-right: 0;
  }

  .quick-actions > a:last-child {
    border-right: 0;
  }

  .section {
    width: min(90vw, 650px);
    padding: 76px 0;
  }

  .section h2,
  .registration-band h2,
  .venue-content h2 {
    font-size: clamp(34px, 9vw, 46px);
  }

  .date-line {
    grid-template-columns: 1fr;
    margin-top: 42px;
    padding-left: 17px;
    border-top: 0;
    border-left: 1px solid var(--line);
  }

  .date-item {
    padding: 0 0 34px 24px;
  }

  .date-item::before {
    top: 7px;
    left: -23px;
  }

  .date-item time {
    margin-bottom: 12px;
    font-size: 38px;
  }

  .program-section,
  .invite-section,
  .abstract-section,
  .about-section {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .agenda article {
    grid-template-columns: 58px 1fr;
    gap: 16px;
  }

  .agenda small {
    display: none;
  }

  .registration-band {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 58px 6vw;
  }

  .registration-band p {
    margin: 0;
  }

  .registration-band .button {
    justify-self: start;
    transform: none;
  }

  .leadership-names {
    grid-template-columns: 1fr;
  }

  .venue-section {
    grid-template-columns: 1fr;
  }

  .venue-image {
    min-height: 390px;
  }

  .venue-content {
    padding: 58px 6vw 68px;
  }

  .abstract-deadline {
    padding: 18px 0 18px 22px;
  }

  .about-section img {
    width: 220px;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 40px 0 34px;
  }

  .footer-actions {
    width: min(430px, 100%);
  }

}

@media (max-width: 600px) {
  .quick-actions {
    grid-template-columns: 1fr;
  }

  .quick-actions > a {
    border-right: 0;
  }

  .quick-actions > a:last-child {
    grid-column: auto;
  }
}

@media (max-width: 430px) {
  .language-switch span {
    display: none;
  }

  .language-switch {
    gap: 2px;
  }

  .hero {
    min-height: 625px;
  }

  .hero-content {
    margin-top: 50px;
  }

  .hero h1 {
    font-size: 38px;
  }

  .hero-actions {
    gap: 8px;
  }

  .hero-actions .button {
    padding: 0 10px;
  }

  .venue-image {
    min-height: 300px;
  }

  .venue-content dl div {
    grid-template-columns: 1fr;
    gap: 2px;
  }

  .footer-action {
    min-height: 50px;
    padding: 0 12px;
    font-size: 13px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

/* Registration and accommodation page */
.subpage {
  background: var(--paper);
}

.subpage-header {
  background: rgba(7, 26, 51, 0.98);
}

.desktop-nav a.active::after {
  transform: scaleX(1);
}

.subhero {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding: 150px 0 76px;
  color: white;
  background-color: var(--navy);
  background-image: url("hero-main.webp");
  background-position: center 56%;
  background-size: cover;
}

.subhero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(4, 16, 34, 0.96) 0%, rgba(4, 16, 34, 0.78) 48%, rgba(4, 16, 34, 0.28) 100%);
}

.subhero-inner {
  position: relative;
  z-index: 1;
  width: min(1120px, 88vw);
  margin: 0 auto;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 48px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 13px;
  font-weight: 600;
}

.back-link svg {
  width: 17px;
}

.subhero-kicker {
  margin: 0 0 12px;
  color: var(--cyan);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.subhero h1 {
  max-width: 780px;
  margin: 0;
  font: 400 clamp(52px, 7vw, 86px)/0.98 var(--display);
}

.subhero-inner > p:last-child {
  max-width: 680px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 17px;
}

.page-jump {
  position: relative;
  z-index: 3;
  width: min(1120px, 88vw);
  min-height: 86px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: -22px auto 0;
  background: white;
  border: 1px solid var(--line);
  box-shadow: 0 16px 40px rgba(7, 26, 51, 0.1);
}

.page-jump a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 18px;
  border-right: 1px solid var(--line);
  color: var(--navy);
  font-size: 14px;
  font-weight: 700;
  transition: color 160ms ease, background-color 160ms ease;
}

.page-jump a:last-child {
  border-right: 0;
}

.page-jump a:hover {
  color: var(--navy);
  background: var(--cyan-soft);
}

.page-jump svg {
  width: 19px;
  color: var(--cyan);
}

.registration-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.75fr);
  align-items: end;
  gap: 72px;
  padding-bottom: 58px;
}

.registration-intro h2,
.stay-content h2,
.payment-heading h2,
.registration-cta h2 {
  margin: 0;
  font: 400 clamp(40px, 5vw, 62px)/1.05 var(--display);
}

.registration-intro > p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
}

.fees-section {
  padding-top: 0;
}

.fees-section,
.stay-section,
.transfer-section,
.payment-section {
  scroll-margin-top: 96px;
}

.compact-heading {
  text-align: left;
}

.compact-heading h2 {
  font-size: clamp(42px, 5vw, 60px);
}

.fee-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  margin-top: 38px;
}

.fee-card {
  min-height: 230px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 28px 24px 26px;
  border: 1px solid var(--line);
  background: white;
}

.fee-card.featured {
  background: var(--navy);
  color: white;
  border-color: var(--navy);
}

.fee-card.course-fee {
  background: var(--orange-soft);
  border-color: rgba(242, 164, 67, 0.46);
}

.fee-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  background: var(--cyan-soft);
  color: var(--navy);
}

.featured .fee-icon {
  background: var(--cyan);
}

.course-fee .fee-icon {
  background: var(--orange);
}

.fee-icon svg {
  width: 22px;
}

.fee-card p {
  min-height: 50px;
  margin: 30px 0 16px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.45;
}

.fee-card strong {
  font: 400 27px var(--display);
}

.notice-line,
.schedule-note {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-top: 18px;
  padding: 17px 20px;
  background: var(--mist);
  color: var(--muted);
  font-size: 13px;
}

.notice-line svg,
.schedule-note svg {
  width: 18px;
  flex: 0 0 18px;
  margin-top: 2px;
  color: var(--orange);
}

.notice-line p,
.schedule-note p {
  margin: 0;
}

.stay-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(480px, 1.1fr);
  align-items: end;
  gap: 72px;
  padding-top: 68px;
  padding-bottom: 28px;
  border-top: 1px solid var(--line);
}

.stay-section .section-heading {
  margin: 0;
}

.stay-section .section-heading > p:last-child {
  max-width: 620px;
  margin: 20px 0 0;
  color: var(--muted);
}

.stay-summary {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border: 1px solid var(--line);
  background: var(--mist);
}

.stay-summary > div {
  min-height: 142px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 24px;
  border-right: 1px solid var(--line);
}

.stay-summary > div:last-child {
  border-right: 0;
}

.stay-summary svg {
  width: 21px;
  margin-bottom: 16px;
  color: var(--cyan);
}

.stay-summary span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.stay-summary strong {
  margin-top: 4px;
  color: var(--navy);
  font-size: 14px;
  line-height: 1.35;
}

.pricing-tables {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  padding-top: 20px;
}

.price-panel {
  border: 1px solid var(--line);
  background: white;
}

.price-panel header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 30px;
  background: var(--mist);
}

.price-panel header span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.price-panel h3 {
  margin: 2px 0 0;
  font: 400 38px var(--display);
}

.price-panel .early-registration-date {
  margin: 8px 0 0;
  color: var(--navy);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.4;
}

.price-panel header svg {
  color: var(--cyan);
}

.table-wrap {
  overflow-x: auto;
}

.price-panel table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.price-panel th,
.price-panel td {
  padding: 19px 24px;
  text-align: left;
  border-bottom: 1px solid var(--line);
}

.price-panel th {
  color: var(--muted);
  background: white;
  font-size: 11px;
  text-transform: uppercase;
}

.price-panel td:not(:first-child) {
  font-size: 17px;
  font-weight: 700;
  white-space: nowrap;
}

.price-panel tbody tr:last-child td {
  border-bottom: 0;
}

.schedule-note {
  grid-column: 1 / -1;
  margin-top: 0;
}

.transfer-section {
  display: grid;
  grid-template-columns: 90px 1fr auto;
  align-items: center;
  gap: 34px;
  padding-top: 54px;
  padding-bottom: 54px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.transfer-mark {
  width: 90px;
  height: 90px;
  display: grid;
  place-items: center;
  background: var(--cyan-soft);
  color: var(--navy);
}

.transfer-mark svg {
  width: 32px;
}

.transfer-section h2 {
  margin: 0;
  font: 400 clamp(36px, 4vw, 52px)/1.05 var(--display);
}

.transfer-section p:not(.eyebrow) {
  max-width: 700px;
  margin: 16px 0 0;
  color: var(--muted);
}

.transfer-section > strong {
  color: var(--navy);
  font: 400 44px var(--display);
}

.payment-section {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(500px, 1.22fr);
  gap: 80px;
  align-items: start;
}

.payment-heading > p:last-child {
  margin: 26px 0 0;
  color: var(--muted);
}

.bank-details {
  margin: 0;
  border-top: 1px solid var(--line);
}

.bank-details div {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 28px;
  padding: 19px 0;
  border-bottom: 1px solid var(--line);
}

.bank-details dt {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.bank-details dd {
  min-width: 0;
  margin: 0;
  overflow-wrap: anywhere;
  font-weight: 600;
}

.registration-cta {
  width: min(1120px, 88vw);
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 60px;
  margin: 0 auto 110px;
  padding: 58px 62px;
  background: var(--cyan-soft);
  border-left: 5px solid var(--cyan);
}

.registration-cta h2 {
  max-width: 680px;
  font-size: clamp(36px, 4.5vw, 56px);
}

.registration-cta p:not(.eyebrow) {
  max-width: 700px;
  margin: 18px 0 0;
  color: var(--muted);
}

.registration-cta .button {
  white-space: nowrap;
}

@media (max-width: 1050px) {
  .fee-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .payment-section {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

@media (max-width: 820px) {
  .subhero {
    min-height: 500px;
    padding-bottom: 62px;
    background-position: 58% center;
  }

  .subhero-overlay {
    background: rgba(4, 16, 34, 0.76);
  }

  .subhero h1 {
    font-size: clamp(48px, 12vw, 66px);
  }

  .page-jump {
    grid-template-columns: repeat(2, 1fr);
  }

  .page-jump a {
    border-bottom: 1px solid var(--line);
  }

  .page-jump a:nth-child(2) {
    border-right: 0;
  }

  .registration-intro,
  .stay-section,
  .pricing-tables,
  .registration-cta {
    grid-template-columns: 1fr;
  }

  .registration-intro {
    gap: 30px;
  }

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

  .fee-card {
    min-height: 210px;
  }

  .stay-section {
    gap: 34px;
    padding-top: 58px;
  }

  .stay-summary {
    grid-template-columns: 1fr;
  }

  .stay-summary > div {
    min-height: 112px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .stay-summary > div:last-child {
    border-bottom: 0;
  }

  .schedule-note {
    grid-column: auto;
  }

  .transfer-section {
    grid-template-columns: 70px 1fr;
  }

  .transfer-mark {
    width: 70px;
    height: 70px;
  }

  .transfer-section > strong {
    grid-column: 2;
  }

  .registration-cta {
    gap: 32px;
    padding: 46px 7vw;
  }

  .registration-cta .button {
    justify-self: start;
  }
}

@media (max-width: 540px) {
  .subhero {
    min-height: 470px;
  }

  .back-link {
    margin-bottom: 36px;
  }

  .subhero-inner > p:last-child {
    font-size: 15px;
  }

  .page-jump {
    width: 92vw;
  }

  .page-jump a {
    gap: 7px;
    padding: 15px 9px;
    font-size: 12px;
  }

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

  .fee-card {
    min-height: 174px;
  }

  .fee-card p {
    min-height: 0;
    margin-top: 22px;
  }

  .price-panel header {
    padding: 24px 20px;
  }

  .price-panel th,
  .price-panel td {
    padding: 16px;
  }

  .transfer-section {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .transfer-section > strong {
    grid-column: auto;
  }

  .bank-details div {
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .registration-cta {
    width: 92vw;
    margin-bottom: 72px;
  }
}

/* Scientific program page */
.program-status {
  display: grid;
  grid-template-columns: 110px 1fr;
  align-items: center;
  gap: 42px;
  padding-top: 88px;
  padding-bottom: 64px;
}

.status-mark {
  width: 110px;
  height: 110px;
  display: grid;
  place-items: center;
  background: var(--cyan-soft);
  color: var(--navy);
}

.status-mark svg {
  width: 38px;
}

.program-status h2 {
  max-width: 850px;
  margin: 0;
  font: 400 clamp(42px, 5vw, 64px)/1.05 var(--display);
}

.program-status > div:last-child > p:last-child {
  max-width: 760px;
  margin: 22px 0 0;
  color: var(--muted);
}

.program-days {
  padding-top: 54px;
  border-top: 1px solid var(--line);
}

.day-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 42px;
}

.day-grid article {
  min-height: 270px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 30px 28px;
  border: 1px solid var(--line);
  background: white;
}

.day-grid article:first-child {
  color: white;
  background: var(--navy);
  border-color: var(--navy);
}

.day-grid time {
  display: flex;
  align-items: baseline;
  gap: 8px;
  font: 400 52px var(--display);
}

.day-grid time span {
  color: var(--cyan);
  font: 700 11px var(--sans);
  text-transform: uppercase;
}

.day-grid b {
  display: block;
  margin-bottom: 8px;
  font-size: 14px;
}

.day-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.day-grid article:first-child p {
  color: rgba(255, 255, 255, 0.68);
}

.program-features {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  padding-top: 0;
  padding-bottom: 90px;
}

.program-features > div {
  min-height: 130px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 26px;
  background: var(--mist);
  font-weight: 700;
  font-size: 13px;
}

.program-features svg {
  width: 23px;
  flex: 0 0 23px;
  color: var(--cyan);
}

/* Abstract submission page */
.abstract-hero-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 80px;
}

.deadline-panel {
  min-width: 270px;
  padding: 28px 30px;
  color: var(--navy);
  background: var(--orange);
}

.deadline-panel span,
.deadline-panel small {
  display: block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.deadline-panel strong {
  display: block;
  margin: 7px 0 4px;
  font: 400 40px var(--display);
}

.abstract-summary {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  padding-top: 68px;
  padding-bottom: 68px;
}

.abstract-summary article {
  min-height: 170px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 25px;
  border: 1px solid var(--line);
}

.abstract-summary svg {
  width: 24px;
  margin-bottom: 22px;
  color: var(--cyan);
}

.abstract-summary span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.abstract-summary strong {
  margin-top: 6px;
  color: var(--navy);
}

.guidelines-layout {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 80px;
  align-items: start;
  padding-top: 44px;
  border-top: 1px solid var(--line);
}

.guidelines-nav {
  position: sticky;
  top: 104px;
  display: grid;
  gap: 2px;
}

.guidelines-nav .eyebrow {
  margin-bottom: 14px;
}

.guidelines-nav a {
  padding: 11px 0;
  color: var(--muted);
  border-bottom: 1px solid var(--line);
  font-size: 13px;
  font-weight: 600;
}

.guidelines-nav a:hover {
  color: var(--cyan);
}

.guideline-block {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 34px;
  padding: 0 0 72px;
  scroll-margin-top: 96px;
}

.guideline-block + .guideline-block {
  padding-top: 66px;
  border-top: 1px solid var(--line);
}

.guideline-number {
  color: var(--cyan);
  font: 400 44px var(--display);
}

.guideline-block h2 {
  margin: 0 0 34px;
  font: 400 clamp(38px, 4.5vw, 58px)/1.06 var(--display);
}

.rule-list {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.rule-list li {
  position: relative;
  padding: 18px 0 18px 30px;
  color: var(--muted);
  border-bottom: 1px solid var(--line);
}

.rule-list li::before {
  content: "";
  position: absolute;
  top: 26px;
  left: 3px;
  width: 8px;
  height: 8px;
  background: var(--orange);
}

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

.presentation-grid article {
  padding: 30px;
  border: 1px solid var(--line);
}

.presentation-grid svg {
  width: 26px;
  margin-bottom: 28px;
  color: var(--cyan);
}

.presentation-grid h3 {
  margin: 0 0 16px;
  font: 400 30px var(--display);
}

.presentation-grid p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.publication-note {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-top: 14px;
  padding: 22px 24px;
  background: var(--cyan-soft);
}

.publication-note svg {
  width: 22px;
  flex: 0 0 22px;
  color: var(--navy);
}

.publication-note p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.abstract-cta {
  margin-top: 10px;
}

/* Hotel and travel page */
.venue-overview {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  min-height: 540px;
  background: var(--navy);
  color: white;
}

.venue-overview-image {
  min-height: 540px;
  background-color: #b8cbd7;
  background-image: url("elexus-venue.jpg");
  background-position: center;
  background-size: cover;
}

.venue-overview-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 52px clamp(42px, 6vw, 100px);
}

.venue-overview-copy .venue-name {
  margin: 0;
  font: 400 clamp(44px, 5vw, 66px)/1.05 var(--display);
}

.venue-overview-copy > p:not(.eyebrow) {
  margin: 25px 0 34px;
  color: rgba(255, 255, 255, 0.72);
}

.venue-overview-copy dl {
  margin: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.venue-overview-copy dl div {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 20px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.venue-overview-copy dt {
  color: rgba(255, 255, 255, 0.58);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.venue-overview-copy dd {
  margin: 0;
  font-weight: 700;
}

.travel-plan {
  padding-bottom: 64px;
}

.travel-plan .section-heading > p:last-child {
  max-width: 650px;
  margin: 20px 0 0;
  color: var(--muted);
}

.route-line {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 54px;
}

.route-line::before {
  content: "";
  position: absolute;
  top: 45px;
  right: 16%;
  left: 16%;
  height: 1px;
  background: var(--line);
}

.route-line article {
  position: relative;
  min-height: 260px;
  padding: 30px;
  border: 1px solid var(--line);
  background: white;
}

.route-line article > span {
  position: absolute;
  top: 18px;
  right: 20px;
  color: var(--line);
  font: 400 34px var(--display);
}

.route-line svg {
  position: relative;
  z-index: 1;
  width: 30px;
  margin-bottom: 50px;
  color: var(--cyan);
  background: white;
}

.route-line h3 {
  margin: 0 0 12px;
  font: 400 27px var(--display);
}

.route-line p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.transfer-price-band {
  display: grid;
  grid-template-columns: 86px 1fr auto;
  align-items: center;
  gap: 34px;
  padding-top: 42px;
  padding-bottom: 42px;
  color: white;
  background: var(--navy);
}

.transfer-price-icon {
  width: 86px;
  height: 86px;
  display: grid;
  place-items: center;
  color: var(--navy);
  background: var(--cyan);
}

.transfer-price-icon svg {
  width: 31px;
}

.transfer-price-band h2 {
  margin: 0;
  font: 400 clamp(34px, 4vw, 50px)/1.05 var(--display);
}

.transfer-price-band p:not(.eyebrow) {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.66);
}

.transfer-price-band > strong {
  color: var(--orange);
  font: 400 46px var(--display);
}

.travel-details {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  padding-top: 62px;
}

.travel-details article {
  min-height: 250px;
  padding: 30px;
  border: 1px solid var(--line);
}

.travel-details svg {
  width: 26px;
  margin-bottom: 32px;
  color: var(--cyan);
}

.travel-details h3 {
  margin: 0 0 14px;
  font: 400 28px var(--display);
}

.travel-details p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

@media (max-width: 1050px) {
  .abstract-hero-inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .deadline-panel {
    width: fit-content;
  }

  .guidelines-layout {
    grid-template-columns: 180px 1fr;
    gap: 48px;
  }
}

@media (max-width: 820px) {
  .program-status {
    grid-template-columns: 80px 1fr;
    gap: 25px;
  }

  .status-mark {
    width: 80px;
    height: 80px;
  }

  .day-grid,
  .program-features,
  .abstract-summary,
  .travel-details {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .guidelines-layout {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .guidelines-nav {
    position: static;
    grid-template-columns: repeat(2, 1fr);
  }

  .guidelines-nav .eyebrow {
    grid-column: 1 / -1;
  }

  .guideline-block {
    grid-template-columns: 52px 1fr;
    gap: 20px;
  }

  .presentation-grid,
  .venue-overview,
  .route-line {
    grid-template-columns: 1fr;
  }

  .venue-overview-image {
    min-height: 360px;
  }

  .venue-overview-copy {
    padding: 46px 7vw 54px;
  }

  .route-line::before {
    display: none;
  }

  .route-line article {
    min-height: 210px;
  }

  .transfer-price-band {
    grid-template-columns: 70px 1fr;
  }

  .transfer-price-icon {
    width: 70px;
    height: 70px;
  }

  .transfer-price-band > strong {
    grid-column: 2;
  }
}

@media (max-width: 540px) {
  .program-status {
    grid-template-columns: 1fr;
  }

  .day-grid,
  .program-features,
  .abstract-summary,
  .travel-details {
    grid-template-columns: 1fr;
  }

  .program-features > div {
    min-height: 94px;
  }

  .deadline-panel {
    min-width: 0;
    width: 100%;
  }

  .guideline-block {
    grid-template-columns: 1fr;
  }

  .guideline-number {
    font-size: 32px;
  }

  .guideline-block h2 {
    font-size: 36px;
  }

  .guidelines-nav {
    grid-template-columns: 1fr;
  }

  .venue-overview-image {
    min-height: 280px;
  }

  .venue-overview-copy dl div {
    grid-template-columns: 1fr;
    gap: 3px;
  }

  .transfer-price-band {
    grid-template-columns: 1fr;
  }

  .transfer-price-band > strong {
    grid-column: auto;
  }
}

/* Shared vertical alignment for subpage posters and action bands. */
.subhero {
  align-items: center;
  padding-top: 96px;
  padding-bottom: 0;
}

.abstract-hero-inner {
  align-items: center;
}

.registration-band,
.registration-cta,
.registration-band {
  column-gap: 5vw;
}

.registration-cta {
  column-gap: 60px;
}
.registration-band > div,
.registration-cta > div,
.registration-band .eyebrow,
.registration-cta .eyebrow,
.registration-band h2,
.registration-cta h2,
.registration-band .button,
.registration-cta .button,
.transfer-price-band {
  grid-template-columns: 86px minmax(0, 1fr) auto;
  grid-template-rows: auto auto auto;
  align-items: center;
  column-gap: 34px;
  row-gap: 0;
}

.transfer-price-band > div:not(.transfer-price-icon) {
  display: contents;
}

.transfer-price-icon {
  grid-column: 1;
  grid-row: 2;
}

.transfer-price-band .eyebrow {
  grid-column: 2;
  grid-row: 1;
}

.transfer-price-band h2 {
  grid-column: 2;
  grid-row: 2;
}

.transfer-price-band p:not(.eyebrow) {
  grid-column: 2;
  grid-row: 3;
}

.transfer-price-band > strong {
  grid-column: 3;
  grid-row: 2;
  align-self: center;
}

@media (max-width: 1050px) {
  .subhero {
    padding-top: 82px;
  }

  .transfer-price-band {
    grid-template-columns: 70px minmax(0, 1fr);
    grid-template-rows: auto auto auto auto;
  }

  .transfer-price-band > strong {
    grid-column: 2;
    grid-row: 4;
    justify-self: start;
    margin-top: 18px;
  }
}

@media (max-width: 820px) {
  .subhero {
    padding-top: 76px;
    padding-bottom: 0;
  }

  .registration-band,
  .registration-cta,
.registration-band {
    margin-bottom: 20px;
  }

  .registration-band .eyebrow,
  .registration-cta .eyebrow,
.registration-band .button,
  .registration-cta .button,
}

@media (max-width: 540px) {
  .transfer-price-band {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto auto auto;
  }

  .transfer-price-icon {
    grid-column: 1;
    grid-row: 1;
  }

  .transfer-price-band .eyebrow {
    grid-column: 1;
    grid-row: 2;
    margin-top: 20px;
  }

  .transfer-price-band h2 {
    grid-column: 1;
    grid-row: 3;
  }

  .transfer-price-band p:not(.eyebrow) {
    grid-column: 1;
    grid-row: 4;
  }

  .transfer-price-band > strong {
    grid-column: 1;
    grid-row: 5;
  }
}

/* Responsive layout for the six home section tabs. */
@media (max-width: 1050px) {
  .quick-actions {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .quick-actions > a {
    min-height: 78px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }

  .quick-actions > a:nth-child(3n) {
    border-right: 0;
  }

  .quick-actions > a:nth-last-child(-n + 3) {
    border-bottom: 0;
  }
}

@media (max-width: 680px) {
  .quick-actions {
    width: 92vw;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .quick-actions > a,
  .quick-actions > a:nth-child(3n) {
    min-height: 72px;
    gap: 7px;
    padding: 13px 8px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    font-size: 12px;
  }

  .quick-actions > a:nth-child(2n) {
    border-right: 0;
  }

  .quick-actions > a:nth-last-child(-n + 2) {
    border-bottom: 0;
  }
}

/* Kurullar: Tam Kural düzeni - 2026-07-26 */
body.subpage .science-board {
  display: block;
  padding: 56px 48px;
  margin-bottom: 0;
}

body.subpage .science-board-copy {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1.2fr);
  align-items: center;
  gap: 48px;
  width: 100%;
}

body.subpage .science-board-copy h2 {
  margin: 0;
}

body.subpage .science-board-copy p {
  margin: 0;
  max-width: 620px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

@media (max-width: 820px) {
  body.subpage .science-board {
    padding: 42px 24px;
  }

  body.subpage .science-board-copy {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  body.subpage .science-board-copy h2 {
    font-size: clamp(36px, 11vw, 48px);
    line-height: 1.05;
  }
}

/* Kayıt ve Konaklama: karşılıklı blokları düşey merkezde eşleştir. */
@media (min-width: 821px) {
  body.subpage .stay-section,
  body.subpage .payment-section {
    align-items: center;
  }
}

/* Kayıt ve Konaklama: otel özetini 4 Gece kartının düşey eksenine bağla. */
@media (min-width: 821px) {
  body.subpage .stay-section {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    align-items: center;
  }
}

/* Bildiri alt afişi: sade başlık, çalışan son gönderim sayacı. */
.subhero-abstract .abstract-hero-inner {
  grid-template-columns: minmax(0, 1fr);
  gap: 0;
}

.abstract-countdown-block {
  width: fit-content;
  margin-top: 26px;
}

.abstract-countdown {
  margin-top: 0;
}

.abstract-countdown-caption {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  font-weight: 600;
}

@media (max-width: 540px) {
  .abstract-countdown-block {
    width: 100%;
  }

  .abstract-countdown {
    width: 100%;
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}


/* Kayıt alt afişi: çalışan son kayıt sayacı. */
.registration-countdown-block {
  width: fit-content;
  margin-top: 26px;
}

.registration-countdown {
  margin-top: 0;
}

.registration-countdown-caption {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  font-weight: 600;
}

@media (max-width: 540px) {
  .registration-countdown-block {
    width: 100%;
  }

  .registration-countdown {
    width: 100%;
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}


/* Kayıt sayfası footerı: tek kalan işlem tuşunu orta sütunda ortala. */
.footer-actions-single {
  grid-template-columns: minmax(0, 1fr);
  justify-self: center;
  width: min(260px, 100%);
}


/* Kayıt sayfası footerı: orta işlem tuşunu footerın gerçek yatay merkezine bağla. */
@media (min-width: 821px) {
  .site-footer-single-action .footer-main {
    grid-template-columns: minmax(260px, 1fr) 260px minmax(260px, 1fr);
  }

  .site-footer-single-action .footer-nav {
    justify-self: end;
    width: min(260px, 100%);
  }
}


/* Tüm sayfalar: tek tıkla sayfa sonuna/başına götüren turuncu yön düğmesi. */
.page-scroll-toggle {
  position: fixed;
  right: max(22px, env(safe-area-inset-right));
  bottom: max(84px, env(safe-area-inset-bottom));
  z-index: 1400;
  width: 56px;
  height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 2px solid var(--orange);
  border-radius: 50%;
  color: var(--orange);
  background: #fff;
  cursor: pointer;
  transition: color 160ms ease, background-color 160ms ease, transform 160ms ease;
}

.page-scroll-toggle:hover {
  color: var(--navy);
  background: var(--orange);
  transform: translateY(-2px);
}

.page-scroll-toggle:focus-visible {
  outline: 3px solid #fff;
  outline-offset: 3px;
}

.page-scroll-toggle[hidden] {
  display: none !important;
}

.page-scroll-toggle svg {
  width: 28px;
  height: 28px;
  stroke-width: 2.2;
}

.page-scroll-toggle[data-direction="down"] .scroll-icon-up,
.page-scroll-toggle[data-direction="up"] .scroll-icon-down {
  display: none;
}

@media (max-width: 600px) {
  .page-scroll-toggle {
    right: max(14px, env(safe-area-inset-right));
    bottom: max(72px, env(safe-area-inset-bottom));
    width: 50px;
    height: 50px;
  }
}


/* Footer action group: center on the page axis */
.footer-actions {
  justify-self: center;
}

@media (min-width: 821px) {
  .footer-main {
    grid-template-columns: minmax(0, 1fr) minmax(360px, 390px) minmax(0, 1fr);
  }
}

@media (max-width: 820px) {
  .footer-actions {
    margin-inline: auto;
  }
}


/* Program mobile scroll-control clearance */
@media (max-width: 600px) {
  .program-status > div:last-child {
    padding-right: 62px;
  }
}


/* Hidden mobile navigation must not remain keyboard-focusable */
.mobile-panel {
  visibility: hidden;
  pointer-events: none;
  transition: transform 220ms, visibility 0s linear 220ms;
}

.mobile-panel.open {
  visibility: visible;
  pointer-events: auto;
  transition-delay: 0s;
}


/* Mobile footer actions: preserve text fit and keep the fixed scroll control clear */
@media (max-width: 600px) {
  .footer-actions {
    grid-template-columns: minmax(0, 1fr);
    width: min(260px, 100%);
    margin-inline: auto;
  }

  .footer-action {
    width: 100%;
    min-width: 0;
    white-space: nowrap;
  }

  .page-scroll-toggle {
    right: max(10px, env(safe-area-inset-right));
    bottom: max(12px, env(safe-area-inset-bottom));
  }
}


/* Keep the mobile page-scroll control clear of footer actions and legal text */
@media (max-width: 600px) {
  .page-scroll-toggle {
    right: max(4px, env(safe-area-inset-right));
    bottom: max(90px, env(safe-area-inset-bottom));
  }
}


/* Committees: visually separate the Science Board band from the footer */
body.subpage .science-board {
  margin-bottom: clamp(40px, 5vw, 64px);
}

/* Registration page: accessible cyan labels on light surfaces. */
body.subpage .registration-intro .eyebrow,
body.subpage #fees .eyebrow,
body.subpage #stay .eyebrow,
body.subpage #transfer .eyebrow,
body.subpage #payment .eyebrow,
body.subpage .registration-cta .eyebrow {
  color: #0b789f;
}

/* Abstract page: accessible cyan labels on light surfaces. */
body.subpage .guideline-number,
body.subpage .guideline-block .eyebrow {
  color: #0b789f;
}

/* Travel page: scoped accessibility and image-performance fixes. */
body.subpage .travel-plan .eyebrow,
body.subpage .travel-plan .route-line article > span {
  color: #0b789f;
}

body.subpage .venue-overview-image {
  background-image: url("https://ahoddernegikongre.org/wp-content/uploads/2026/07/elexus-venue-optimized.webp");
}


/* Ulasim: section heading aligned with the site-wide title system. */
body.subpage .venue-section-heading {
  padding: 20px 0;
  background: #fff;
  text-align: left;
}



/* Ulasim Demo 2 - v1.0.109 START */
.travel-demo-two {
  --travel-navy: #071a33;
  --travel-navy-soft: #0c2948;
  --travel-cyan: #29add1;
  --travel-orange: #f2a443;
  --travel-mist: #f3f6f8;
  --travel-line: #d8e0e8;
}

.travel-demo-two .travel-alt-hero {
  min-height: 520px;
  display: flex;
  align-items: center;
  padding: 96px max(6vw, calc((100vw - 1180px) / 2)) 0;
  color: #fff;
  background-color: rgba(7, 26, 51, 0.76);
  background-image: url("hero-main.webp");
  background-blend-mode: multiply;
  background-position: 50% 56%;
  background-size: cover;
}

.travel-demo-two .travel-alt-hero .eyebrow,
.travel-demo-two .travel-alt-transfer .eyebrow,
.travel-demo-two .travel-alt-cta .eyebrow {
  color: var(--travel-cyan);
}

.travel-demo-two .travel-alt-hero h1 {
  max-width: 720px;
  margin: 14px 0 0;
  font: 400 clamp(60px, 7vw, 94px)/0.98 var(--display);
}

.travel-alt-venue-heading {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  margin-top: 0;
  color: #fff;
  background: var(--travel-navy-soft);
}

.travel-alt-venue-heading > div {
  min-height: 122px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 22px max(6vw, calc((100vw - 1180px) / 2));
}

.travel-alt-venue-heading > div:first-child {
  padding-right: clamp(34px, 5vw, 72px);
}

.travel-alt-venue-heading > div + div {
  padding-left: clamp(42px, 6vw, 92px);
  padding-right: max(6vw, calc((100vw - 1180px) / 2));
  border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.travel-alt-venue-heading span,
.travel-alt-transfer-price span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.travel-alt-venue-heading strong {
  margin-top: 5px;
  font-family: var(--display);
  font-size: clamp(21px, 2vw, 28px);
  font-weight: 400;
  line-height: 1.25;
}

.travel-alt-venue {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  min-height: 540px;
  background: var(--travel-mist);
}

.travel-alt-venue-image {
  min-height: 540px;
  background-color: #b8cbd7;
  background-image: url("elexus-venue.jpg");
  background-position: center;
  background-size: cover;
}

.travel-alt-venue-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 48px clamp(42px, 6vw, 92px);
}

.travel-alt-venue-copy h2 {
  max-width: 540px;
  margin: 12px 0 0;
  color: var(--travel-navy);
  font: 400 clamp(46px, 5vw, 68px)/1.02 var(--display);
}

.travel-alt-venue-copy > p:not(.eyebrow) {
  max-width: 600px;
  margin: 24px 0 30px;
  color: var(--muted);
}

.travel-alt-venue-copy dl {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 0;
  border-top: 1px solid var(--travel-line);
  border-bottom: 1px solid var(--travel-line);
}

.travel-alt-venue-copy dl > div {
  padding: 18px 0;
}

.travel-alt-venue-copy dl > div + div {
  padding-left: 26px;
  border-left: 1px solid var(--travel-line);
}

.travel-alt-venue-copy dt {
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.travel-alt-venue-copy dd {
  margin: 4px 0 0;
  color: var(--travel-navy);
  font-weight: 700;
}

.travel-alt-route {
  padding-top: 88px;
  padding-bottom: 88px;
}

.travel-alt-route-heading {
  display: grid;
  grid-template-columns: 0.9fr 0.55fr;
  grid-template-areas:
    "eyebrow description"
    "title description";
  align-items: end;
  column-gap: 8vw;
  row-gap: 12px;
}

.travel-alt-route-heading .eyebrow {
  grid-area: eyebrow;
}

.travel-alt-route-heading h2 {
  grid-area: title;
}

.travel-alt-route-heading h2,
.travel-alt-notes-heading h2 {
  margin: 12px 0 0;
  color: var(--travel-navy);
  font: 400 clamp(44px, 5vw, 66px)/1.02 var(--display);
}

.travel-alt-route-heading > p:last-child {
  grid-area: description;
  margin: 0 0 5px;
  color: var(--muted);
}

.travel-alt-steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin: 58px 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--travel-line);
  border-bottom: 1px solid var(--travel-line);
}

.travel-alt-steps li {
  min-height: 288px;
  padding: 38px 38px 42px;
}

.travel-alt-steps li + li {
  border-left: 1px solid var(--travel-line);
}

.travel-alt-step-mark {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 52px;
}

.travel-alt-step-mark span {
  color: var(--travel-orange);
  font: 400 28px var(--display);
}

.travel-alt-step-mark svg {
  width: 29px;
  height: 29px;
  color: var(--travel-cyan);
}

.travel-alt-steps h3 {
  margin: 0 0 12px;
  color: var(--travel-navy);
  font: 400 29px/1.1 var(--display);
}

.travel-alt-steps p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.travel-alt-transfer {
  min-height: 220px;
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr) auto;
  align-items: center;
  gap: 38px;
  padding: 46px max(6vw, calc((100vw - 1180px) / 2));
  color: #fff;
  background: var(--travel-navy);
}

.travel-alt-transfer-icon {
  width: 96px;
  height: 96px;
  display: grid;
  place-items: center;
  color: var(--travel-navy);
  background: var(--travel-cyan);
}

.travel-alt-transfer-icon svg {
  width: 34px;
  height: 34px;
}

.travel-alt-transfer-copy h2 {
  margin: 9px 0 0;
  font: 400 clamp(34px, 4vw, 50px)/1.04 var(--display);
}

.travel-alt-transfer-copy > p:not(.eyebrow) {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.66);
}

.travel-alt-transfer-price {
  min-width: 150px;
  padding-left: 34px;
  border-left: 1px solid rgba(255, 255, 255, 0.24);
}

.travel-alt-transfer-price span,
.travel-alt-transfer-price strong {
  display: block;
}

.travel-alt-transfer-price strong {
  margin-top: 3px;
  color: var(--travel-orange);
  font: 400 50px/1 var(--display);
}

.travel-alt-notes {
  display: grid;
  grid-template-columns: minmax(280px, 0.56fr) minmax(0, 1fr);
  gap: clamp(56px, 9vw, 130px);
  padding-top: 88px;
  padding-bottom: 88px;
}

.travel-alt-notes-heading {
  align-self: start;
}

.travel-alt-notes-list {
  border-top: 1px solid var(--travel-line);
}

.travel-alt-notes-list article {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 26px;
  padding: 28px 0;
  border-bottom: 1px solid var(--travel-line);
}

.travel-alt-notes-list svg {
  width: 27px;
  height: 27px;
  color: var(--travel-cyan);
}

.travel-alt-notes-list h3 {
  margin: 0 0 8px;
  color: var(--travel-navy);
  font: 400 28px/1.1 var(--display);
}

.travel-alt-notes-list p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.travel-alt-cta {
  min-height: 230px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 60px;
  padding: 48px max(6vw, calc((100vw - 1180px) / 2));
  color: #fff;
  background: var(--travel-navy-soft);
}

.travel-alt-cta h2 {
  max-width: 780px;
  margin: 10px 0 0;
  font: 400 clamp(38px, 4.5vw, 58px)/1.03 var(--display);
}

.travel-alt-button {
  min-width: 250px;
  min-height: 62px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 0 26px;
  border: 1px solid var(--travel-orange);
  color: #fff;
  font-weight: 700;
  transition: color 180ms ease, background-color 180ms ease;
}

.travel-alt-button:hover {
  color: var(--travel-navy);
  background: var(--travel-orange);
}

.travel-alt-button svg {
  width: 19px;
  height: 19px;
}

@media (max-width: 1050px) {
  .travel-demo-two .travel-alt-hero {
    min-height: 520px;
  }

  .travel-alt-route-heading,
  .travel-alt-notes {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .travel-alt-route-heading {
    grid-template-areas:
      "eyebrow"
      "title"
      "description";
    row-gap: 12px;
  }
}

@media (max-width: 820px) {
  .travel-demo-two .travel-alt-hero {
    min-height: 520px;
    padding-top: 96px;
    padding-bottom: 0;
  }

  .travel-alt-venue,
  .travel-alt-steps {
    grid-template-columns: 1fr;
  }

  .travel-alt-venue-image {
    min-height: 420px;
  }

  .travel-alt-venue-copy {
    padding: 58px 7vw 64px;
  }

  .travel-alt-steps li {
    min-height: 0;
  }

  .travel-alt-steps li + li {
    border-top: 1px solid var(--travel-line);
    border-left: 0;
  }

  .travel-alt-step-mark {
    margin-bottom: 30px;
  }

  .travel-alt-transfer {
    grid-template-columns: 76px minmax(0, 1fr);
  }

  .travel-alt-transfer-icon {
    width: 76px;
    height: 76px;
  }

  .travel-alt-transfer-price {
    grid-column: 2;
    min-width: 0;
    padding: 18px 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.24);
    border-left: 0;
  }

  .travel-alt-cta {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .travel-alt-button {
    justify-self: start;
  }
}

@media (max-width: 540px) {
  .travel-demo-two .travel-alt-hero {
    min-height: 520px;
  }

  .travel-demo-two .travel-alt-hero h1 {
    font-size: 52px;
  }

  .travel-alt-venue-heading,
  .travel-alt-venue-copy dl {
    grid-template-columns: 1fr;
  }

  .travel-alt-venue-heading {
    margin-top: 18px;
  }

  .travel-alt-venue-heading > div {
    min-height: 102px;
    padding: 20px 7vw;
  }

  .travel-alt-venue-heading > div:first-child {
    padding-right: 7vw;
  }

  .travel-alt-venue-heading > div + div,
  .travel-alt-venue-copy dl > div + div {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    border-left: 0;
  }

  .travel-alt-venue-heading > div + div {
    padding-right: 7vw;
    padding-left: 7vw;
  }

  .travel-alt-venue-copy dl > div + div {
    border-top-color: var(--travel-line);
  }

  .travel-alt-venue-image {
    min-height: 300px;
  }

  .travel-alt-route,
  .travel-alt-notes {
    padding-top: 68px;
    padding-bottom: 68px;
  }

  .travel-alt-transfer {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .travel-alt-transfer-price {
    grid-column: 1;
  }

  .travel-alt-notes-list article {
    grid-template-columns: 36px minmax(0, 1fr);
    gap: 18px;
  }

  .travel-alt-button {
    width: 100%;
    min-width: 0;
  }
}

/* Ulasim Demo 2 - v1.0.109 END */

/* Contact full-rule v1.0.112 */
.contact-intro,
.contact-layout {
  width: min(1180px, 88vw);
  margin-inline: auto;
}

.contact-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  align-items: center;
  gap: 48px;
  padding-top: 84px;
  padding-bottom: 56px;
}

.contact-intro h2 {
  margin: 0;
  font: 400 clamp(38px, 4.4vw, 62px)/1.04 var(--display);
}

.contact-intro-copy {
  margin: 0;
  padding-left: 28px;
  border-left: 4px solid var(--orange);
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: stretch;
  gap: 48px;
  padding-top: 0;
  padding-bottom: 108px;
}

.contact-lead {
  min-height: 360px;
  display: flex;
  flex-direction: column;
  padding: 40px;
  color: white;
  background: var(--navy);
}

.contact-lead h2 {
  margin: 10px 0 40px;
  font: 400 clamp(28px, 3vw, 42px)/1.12 var(--display);
}

.coordinator {
  display: grid;
  gap: 4px;
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.24);
}

.coordinator span {
  color: var(--cyan);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.coordinator strong {
  font-family: var(--display);
  font-size: 25px;
  font-weight: 400;
}

.contact-methods {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.contact-method {
  min-height: 180px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 26px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition: color 180ms ease, background-color 180ms ease;
}

.contact-method:hover {
  color: var(--navy);
  background: var(--cyan-soft);
}

.contact-method svg {
  width: 26px;
  height: 26px;
  margin-bottom: 38px;
  color: var(--orange);
}

.contact-method span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.contact-method strong {
  margin-top: 5px;
  font-family: var(--display);
  font-size: 20px;
  font-weight: 400;
}

.contact-address {
  grid-column: auto;
}

@media (max-width: 820px) {
  .contact-intro,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .contact-intro {
    gap: 28px;
    padding-top: 64px;
    padding-bottom: 40px;
  }

  .contact-intro-copy {
    padding-left: 20px;
  }

  .contact-layout {
    gap: 28px;
    padding-bottom: 72px;
  }

  .contact-lead {
    min-height: 300px;
    padding: 32px;
  }

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

@media (max-width: 560px) {
  .contact-methods {
    grid-template-columns: 1fr;
    grid-template-rows: none;
    grid-auto-rows: 184px;
  }

  .contact-method {
    min-height: 184px;
  }

  .contact-method svg {
    margin-bottom: 18px;
  }
}
/* Contact full-rule v1.0.112 END */


/* Hotel images refreshed from the official Elexus gallery v1.0.114 */
.venue-section {
  min-height: 0;
}

.venue-image {
  align-self: center;
  min-height: 0 !important;
  aspect-ratio: 16 / 9;
  background-color: #c9d8e1;
  background-image: url("https://ahoddernegikongre.org/wp-content/uploads/2026/07/elexus-venue-dusk.webp") !important;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.travel-alt-venue {
  min-height: 0;
}

.travel-alt-venue-image {
  align-self: center;
  min-height: 0 !important;
  aspect-ratio: 3 / 2;
  background-color: #b8cbd7;
  background-image: url("https://ahoddernegikongre.org/wp-content/uploads/2026/07/elexus-venue-daylight.jpg") !important;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

@media (max-width: 820px) {
  .venue-image {
    min-height: 0 !important;
    aspect-ratio: 16 / 9;
  }

  .travel-alt-venue-image {
    min-height: 0 !important;
    aspect-ratio: 3 / 2;
  }
}
/* Hotel images v1.0.114 END */


/* AHOD KVKK FORM NOTICE 2026-07-27 */
.ahod-form-surface .ahod-kvkk-row,
.ahod-form-surface .ahod-kvkk {
  grid-column: 1 / -1;
  min-width: 0;
}

.ahod-form-surface .ahod-kvkk {
  margin-top: 6px;
  padding: clamp(20px, 2.5vw, 28px);
  color: var(--navy);
  background: #f1f9fc;
  border: 1px solid #b9dce7;
  border-left: 4px solid var(--cyan);
}

.ahod-form-surface .ahod-kvkk details {
  margin: 0 0 20px;
}

.ahod-form-surface .ahod-kvkk summary {
  color: var(--navy);
  cursor: pointer;
  font: 700 14px/1.45 var(--body);
}

.ahod-form-surface .ahod-kvkk summary::marker {
  color: var(--orange);
}

.ahod-form-surface .ahod-kvkk-text {
  max-height: 360px;
  margin-top: 18px;
  padding: clamp(18px, 2vw, 24px);
  overflow: auto;
  background: #fff;
  border: 1px solid #d8e5ea;
  scrollbar-color: var(--cyan) #e8f1f4;
  scrollbar-width: thin;
}

.ahod-form-surface .ahod-kvkk-text h3 {
  margin: 0 0 18px;
  color: var(--navy);
  font: 400 clamp(22px, 2.4vw, 30px)/1.2 var(--display);
}

.ahod-form-surface .ahod-kvkk-text h4 {
  margin: 20px 0 7px;
  color: var(--navy);
  font: 700 13px/1.45 var(--body);
}

.ahod-form-surface .ahod-kvkk-text p {
  margin: 0 0 12px;
  color: #46566a;
  font: 400 13px/1.7 var(--body);
}

.ahod-form-surface .ahod-kvkk-consent {
  margin: 0;
}

.ahod-form-surface .ahod-kvkk .wpcf7-list-item {
  margin: 0;
}

.ahod-form-surface .ahod-kvkk .wpcf7-list-item label {
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  color: var(--navy);
  font: 600 13px/1.55 var(--body);
}

.ahod-form-surface .ahod-kvkk input[type="checkbox"] {
  width: 20px;
  height: 20px;
  margin: 1px 0 0;
  accent-color: var(--cyan);
}

.ahod-form-surface .ahod-kvkk-note {
  margin: 10px 0 0 32px;
  color: #627184;
  font: 400 11px/1.55 var(--body);
}

@media (max-width: 620px) {
  .ahod-form-surface .ahod-kvkk { padding: 18px; }
  .ahod-form-surface .ahod-kvkk-text { max-height: 320px; padding: 16px; }
}



/* AHOD KVKK FORM NOTICE 2026-07-27 */
.ahod-form-surface .ahod-kvkk-row,
.ahod-form-surface .ahod-kvkk {
  grid-column: 1 / -1;
  min-width: 0;
}

.ahod-form-surface .ahod-kvkk {
  margin-top: 6px;
  padding: clamp(20px, 2.5vw, 28px);
  color: var(--navy);
  background: #f1f9fc;
  border: 1px solid #b9dce7;
  border-left: 4px solid var(--cyan);
}

.ahod-form-surface .ahod-kvkk details {
  margin: 0 0 20px;
}

.ahod-form-surface .ahod-kvkk summary {
  color: var(--navy);
  cursor: pointer;
  font: 700 14px/1.45 var(--body);
}

.ahod-form-surface .ahod-kvkk summary::marker {
  color: var(--orange);
}

.ahod-form-surface .ahod-kvkk-text {
  max-height: 360px;
  margin-top: 18px;
  padding: clamp(18px, 2vw, 24px);
  overflow: auto;
  background: #fff;
  border: 1px solid #d8e5ea;
  scrollbar-color: var(--cyan) #e8f1f4;
  scrollbar-width: thin;
}

.ahod-form-surface .ahod-kvkk-text h3 {
  margin: 0 0 18px;
  color: var(--navy);
  font: 400 clamp(22px, 2.4vw, 30px)/1.2 var(--display);
}

.ahod-form-surface .ahod-kvkk-text h4 {
  margin: 20px 0 7px;
  color: var(--navy);
  font: 700 13px/1.45 var(--body);
}

.ahod-form-surface .ahod-kvkk-text p {
  margin: 0 0 12px;
  color: #46566a;
  font: 400 13px/1.7 var(--body);
}

.ahod-form-surface .ahod-kvkk-consent {
  margin: 0;
}

.ahod-form-surface .ahod-kvkk .wpcf7-list-item {
  margin: 0;
}

.ahod-form-surface .ahod-kvkk .wpcf7-list-item label {
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  color: var(--navy);
  font: 600 13px/1.55 var(--body);
}

.ahod-form-surface .ahod-kvkk input[type="checkbox"] {
  width: 20px;
  height: 20px;
  margin: 1px 0 0;
  accent-color: var(--cyan);
}

.ahod-form-surface .ahod-kvkk-note {
  margin: 10px 0 0 32px;
  color: #627184;
  font: 400 11px/1.55 var(--body);
}

@media (max-width: 620px) {
  .ahod-form-surface .ahod-kvkk { padding: 18px; }
  .ahod-form-surface .ahod-kvkk-text { max-height: 320px; padding: 16px; }
}


/* PageSpeed accessibility: readable brand variants for small text on light surfaces. */
#invitation .eyebrow,
#dates .eyebrow,
#program .eyebrow,
#abstracts .eyebrow,
#about .eyebrow,
.invitation-leadership span,
.agenda time,
.program-status .eyebrow,
.program-days .eyebrow,
.day-grid time span,
.committee-section .eyebrow,
.organizing-section .eyebrow,
.contact-intro .eyebrow,
.travel-alt-venue-copy .eyebrow,
.travel-alt-route-heading .eyebrow,
.travel-alt-notes-heading .eyebrow,
.ahod-form-layout aside > span {
  color: #077593;
}

#program .text-link,
#venue .text-link,
#abstracts .text-link {
  color: #9a5200;
}

.travel-alt-step-mark span {
  color: #ad6200;
}

.travel-alt-transfer .eyebrow {
  color: #5cc7e5;
}


/* PageSpeed verification: preserve logo proportions and dark-surface contrast. */
.about-section > img,
.footer-brand img {
  height: auto;
}

.day-grid article time span {
  color: #077593;
}

.day-grid article:first-child time span,
body.subpage #transfer .travel-alt-transfer-copy .eyebrow {
  color: #5cc7e5;
}
