:root {
  color-scheme: light;
  --ink: #1f2329;
  --muted: #5f6876;
  --paper: #ffffff;
  --blue: #1fa6cd;
  --green: #a8c92c;
  --route-green: #78b86f;
  --route-accent: var(--pink);
  --pink: #cf137d;
  --red: #c90032;
  --line: rgba(31, 35, 41, 0.11);
  --layer-radius: 28px;
  --page-nav-height: 76px;
  --photo-ribbon-height: 44px;
  --hero-ribbon-overlap: 34px;
  --fixed-anchor-offset: calc(var(--page-nav-height) + var(--photo-ribbon-height) + 22px);
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  overflow-x: hidden;
  overflow-x: clip;
  overscroll-behavior-x: none;
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: #ffffff;
  overflow-x: hidden;
  overflow-x: clip;
  overscroll-behavior-x: none;
}

body.a4d-site.is-photo-ribbon-hidden {
  --photo-ribbon-height: 0px;
  --fixed-anchor-offset: calc(var(--page-nav-height) + 22px);
}

a {
  color: inherit;
  text-decoration-color: rgba(207, 19, 125, 0.38);
  text-underline-offset: 4px;
  transition: color 180ms ease, text-decoration-color 180ms ease;
}

a:hover {
  text-decoration-color: currentColor;
}

.hero {
  position: relative;
  display: grid;
  min-height: calc(100svh - var(--page-nav-height) - var(--photo-ribbon-height) + var(--hero-ribbon-overlap) + 1px);
  margin-top: calc(var(--page-nav-height) + var(--photo-ribbon-height) - var(--hero-ribbon-overlap) - 1px);
  isolation: isolate;
  overflow: hidden;
  background: #4faeaa;
}

.hero.is-ribbon-hidden {
  min-height: calc(100svh - var(--page-nav-height));
  margin-top: var(--page-nav-height);
}

.hero::before,
.hero::after {
  position: absolute;
  content: "";
  pointer-events: none;
}

.hero::before {
  inset: -18px;
  z-index: 0;
  background:
    radial-gradient(circle at 16% 26%, rgba(255, 255, 255, 0.18), transparent 30%),
    radial-gradient(circle at 84% 12%, rgba(168, 201, 44, 0.16), transparent 32%);
  opacity: 1;
}

.hero::after {
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(125deg, #1fa6cd 0%, #4eaaa9 34%, #a8c92c 68%, #ff8700 100%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  width: min(100%, 1180px);
  min-height: inherit;
  margin: 0 auto;
  padding: 92px 24px 104px;
  align-content: space-between;
  gap: 22px;
  transition: padding-top 220ms ease;
}

.hero.is-ribbon-hidden .hero-inner {
  padding-top: 38px;
}

.play-divider {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  z-index: 1;
  height: 104px;
  pointer-events: none;
}

.play-divider svg {
  display: block;
  width: 100%;
  height: 100%;
}

.play-divider .wave {
  fill: #ffffff;
}

.play-divider .trail {
  fill: none;
  stroke: rgba(255, 255, 255, 0.72);
  stroke-width: 7;
  stroke-linecap: round;
  stroke-dasharray: 3 24;
}

.play-divider .step {
  filter: drop-shadow(0 8px 14px rgba(31, 35, 41, 0.12));
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  --topbar-icon-size: 46px;
  --topbar-gap: 12px;
}

.hero-medal {
  position: absolute;
  top: 18px;
  left: min(calc(100% - 188px), calc(50% + 402px));
  right: auto;
  z-index: 4;
  width: clamp(158px, 8.7vw, 176px);
  height: auto;
  pointer-events: none;
  filter: drop-shadow(0 22px 32px rgba(31, 35, 41, 0.16));
  transform-origin: 50% 0;
  animation: medalSway 4200ms ease-in-out infinite;
}

.hero.is-ribbon-hidden .hero-medal {
  top: -18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: var(--topbar-gap);
  font-weight: 800;
  transition: transform 220ms ease;
}

.brand img {
  width: var(--topbar-icon-size);
  height: var(--topbar-icon-size);
  object-fit: contain;
  transition: transform 220ms ease;
}

.brand__name {
  font-size: 18px;
  color: #fff;
}

.photo-ribbon {
  position: relative;
  top: var(--page-nav-height);
  right: 0;
  left: 0;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  width: auto;
  min-height: var(--photo-ribbon-height);
  border: 0;
  border-radius: 0;
  background: var(--pink);
  color: #ffffff;
  isolation: isolate;
  box-shadow: 0 1px 0 rgba(31, 35, 41, 0.08), 0 14px 34px rgba(31, 35, 41, 0.14);
  overflow: hidden;
  transition: box-shadow 220ms ease;
}

.photo-note {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
  min-height: var(--photo-ribbon-height);
  padding: 6px 14px 6px max(24px, calc((100vw - 1180px) / 2 + 24px));
  color: #ffffff;
  font-weight: 400;
  text-decoration: none;
  white-space: nowrap;
  overflow: hidden;
}

.photo-note__icon {
  display: grid;
  position: relative;
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 999px;
  color: #ffffff;
}

.photo-note__icon i {
  display: grid;
  width: 18px;
  height: 18px;
  place-items: center;
  font-size: 18px;
  line-height: 1;
}

.photo-note__text {
  display: block;
  align-items: center;
  position: relative;
  line-height: 1;
  min-width: 0;
  overflow: hidden;
}

.photo-note__label {
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  letter-spacing: 0;
  text-transform: none;
}

.photo-note__message {
  display: block;
  color: #ffffff;
  font-size: clamp(15px, 1.05vw, 18px);
  font-weight: 400;
  line-height: 1.12;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.photo-note__message p {
  display: inline;
  margin: 0;
}

.photo-note__message br {
  display: none;
}

.photo-note__message strong,
.photo-note__message b {
  font-weight: 800;
}

.photo-note__hint {
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  font-weight: 800;
}

.photo-ribbon.is-ticker .photo-note__message {
  display: block;
  width: max-content;
  min-width: 100%;
  overflow: visible;
  text-overflow: clip;
  animation: photo-ribbon-ticker var(--photo-ribbon-ticker-duration, 14s) linear infinite;
  will-change: transform, opacity;
}

.photo-ribbon.is-ticker:hover .photo-note__message,
.photo-ribbon.is-ticker:focus-within .photo-note__message {
  animation-play-state: paused;
}

.photo-note:focus-visible {
  outline: 3px solid rgba(255, 255, 255, 0.52);
  outline-offset: 4px;
}

.photo-ribbon__close {
  position: relative;
  z-index: 2;
  display: grid;
  width: 34px;
  height: 34px;
  margin-right: max(24px, calc((100vw - 1180px) / 2 + 24px));
  place-items: center;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: rgba(255, 255, 255, 0.84);
  cursor: pointer;
  font: inherit;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

.photo-ribbon__close span {
  display: block;
  font-size: 22px;
  line-height: 1;
  transform: translateY(-1px);
}

.photo-ribbon.is-hidden {
  display: none;
}

.site-fixed-header {
  position: fixed;
  top: 0 !important;
  right: 0;
  left: 0;
  z-index: 1000;
  display: block;
  background: #ffffff;
  transform: none !important;
  translate: none;
  backface-visibility: visible;
  contain: none;
  will-change: auto;
}

.headline {
  display: grid;
  gap: 20px;
  max-width: 880px;
}

.hero-main {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 380px);
  gap: 34px;
  align-items: center;
}

.logo-wrap {
  position: relative;
  width: min(58vw, 430px);
  margin-left: -14px;
  overflow: visible;
  transform-origin: left center;
}

.logo-wrap::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 34%, rgba(255, 255, 255, 0.46) 48%, rgba(255, 255, 255, 0.16) 55%, transparent 68%);
  background-position: -160% 0;
  background-size: 220% 100%;
  content: "";
  -webkit-mask: url("../../logo-a4d.png?v=20260610-01") center / 100% 100% no-repeat;
  mask: url("../../logo-a4d.png?v=20260610-01") center / 100% 100% no-repeat;
  mix-blend-mode: screen;
  opacity: 0;
  pointer-events: none;
  animation: logoShine 2600ms linear infinite;
}

.logo {
  display: block;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 24px 44px rgba(31, 35, 41, 0.16));
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  padding: 9px 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: #1f2329;
  color: #ffffff;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: none;
  box-shadow: 0 14px 34px rgba(31, 35, 41, 0.10);
  backdrop-filter: blur(10px);
  margin-bottom: 18px;
}

.eyebrow__text {
  display: inline-block;
  line-height: 1;
  text-transform: none;
  white-space: nowrap;
}

.eyebrow__text sup {
  font-size: 0.62em;
  line-height: 0;
  vertical-align: super;
}

h1 {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  max-width: 840px;
  margin: 0;
  font-size: clamp(46px, 7vw, 92px);
  line-height: 0.9;
  letter-spacing: 0;
  color: #fff;
}

h1 span,
.section-title h2 span {
  min-width: 0;
}

.intro {
  max-width: 720px;
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(18px, 2vw, 23px);
  line-height: 1.43;
}

.quick-facts {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.fact,
.detail {
  border: 1px solid var(--line);
  border-radius: var(--layer-radius);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 18px 48px rgba(31, 35, 41, 0.08);
  backdrop-filter: blur(12px);
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease, background 220ms ease;
}

.fact {
  display: grid;
  align-content: center;
  justify-items: center;
  min-height: 112px;
  padding: 18px;
  text-align: center;
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.18);
  box-shadow: 0 18px 44px rgba(31, 35, 41, 0.04);
  color: inherit;
  text-decoration: none;
}

.fact.is-countdown {
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.18);
  cursor: pointer;
}

.fact.is-countdown:focus-visible {
  outline: 3px solid rgba(255, 255, 255, 0.76);
  outline-offset: 4px;
}

.countdown-value {
  display: block;
  justify-content: center;
  font-variant-numeric: tabular-nums;
}

.sponsor-strip {
  display: grid;
  gap: 12px;
}

.sponsor-title {
  color: rgba(255, 255, 255, 0.76);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

.sponsor-card {
  display: grid;
  min-height: 128px;
  place-items: center;
  padding: 12px 16px;
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: var(--layer-radius);
  background: rgba(255, 255, 255, 0.86);
  color: rgba(31, 35, 41, 0.56);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-align: center;
  text-transform: uppercase;
  box-shadow: 0 20px 54px rgba(31, 35, 41, 0.12);
  backdrop-filter: blur(12px);
  text-decoration: none;
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease, background 220ms ease;
}

.sponsor-card img {
  display: block;
  width: min(100%, 330px);
  max-height: 98px;
  object-fit: contain;
  transition: transform 220ms ease;
}

.page-nav {
  position: fixed !important;
  top: 0 !important;
  right: 0;
  left: 0;
  z-index: 9001;
  height: var(--page-nav-height);
  min-height: var(--page-nav-height);
  max-height: var(--page-nav-height);
  border-bottom: 1px solid rgba(31, 35, 41, 0.08);
  background: #ffffff;
  box-shadow: 0 24px 46px -26px rgba(31, 35, 41, 0.18);
  transform: none !important;
  translate: none;
  will-change: auto;
}

.page-nav::before {
  position: absolute;
  right: 0;
  bottom: 100%;
  left: 0;
  height: 2px;
  background: #ffffff;
  content: "";
  pointer-events: none;
}

.page-nav__inner {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  height: var(--page-nav-height);
  margin: 0;
  padding: 12px max(24px, calc((100% - 1240px) / 2 + 24px));
  overflow-x: auto;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.page-nav__inner::-webkit-scrollbar {
  display: none;
}

.page-nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  color: rgba(31, 35, 41, 0.78);
  font-size: 16px;
  font-weight: 800;
  line-height: 1.1;
  text-align: center;
  text-decoration: none;
  white-space: nowrap;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease;
}

.page-nav a i {
  display: grid;
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  place-items: center;
  color: var(--pink);
  font-size: 22px;
  line-height: 1;
  transition: color 180ms ease, transform 180ms ease;
}

.page-nav a:hover,
.page-nav a:focus-visible,
.page-nav a[aria-current="true"] {
  border-color: rgba(207, 19, 125, 0.18);
  background: rgba(207, 19, 125, 0.08);
  color: var(--pink);
  outline: none;
}

.page-nav a:hover i,
.page-nav a:focus-visible i,
.page-nav a[aria-current="true"] i {
  color: var(--pink);
}

.page-nav a[aria-current="true"] {
  box-shadow: inset 0 0 0 1px rgba(207, 19, 125, 0.08);
}

.page-nav a:active {
  transform: none;
}

.page-nav a.page-nav__logo {
  width: 48px;
  min-width: 48px;
  height: 48px;
  min-height: 48px;
  margin-left: auto;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(207, 19, 125, 0.42);
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0 10px 24px rgba(207, 19, 125, 0.12);
}

.page-nav a.page-nav__logo:hover,
.page-nav a.page-nav__logo:focus-visible {
  border-color: var(--pink);
  background: #ffffff;
  outline: none;
  box-shadow: 0 12px 28px rgba(207, 19, 125, 0.18);
}

.page-nav__logo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

#info,
#routes,
#albums,
#music,
#webapp,
#contact {
  scroll-margin-top: var(--fixed-anchor-offset);
}

.fact .label {
  justify-content: center;
  color: var(--ink);
}

.label {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
  color: var(--pink);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.label i {
  display: grid;
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  place-items: center;
  font-size: 22px;
  line-height: 1;
  transition: transform 220ms ease;
}

.value {
  display: block;
  color: var(--ink);
  font-size: clamp(19px, 1.8vw, 24px);
  font-weight: 800;
  line-height: 1.15;
}

.fact .value {
  color: #ffffff;
}

.info-band {
  background: #ffffff;
}

.info-inner {
  width: min(100%, 1180px);
  margin: 0 auto;
  padding: 64px 24px 58px;
}

.section-divider {
  position: relative;
  height: 104px;
  margin-bottom: -1px;
  overflow: hidden;
  background: var(--divider-bg, #ffffff);
  pointer-events: none;
}

.section-divider::after {
  position: absolute;
  right: 0;
  bottom: -2px;
  left: 0;
  z-index: 2;
  height: 5px;
  background: var(--divider-fill, #ffffff);
  content: "";
}

.section-divider svg {
  display: block;
  width: 100%;
  height: calc(100% + 2px);
  margin-bottom: -1px;
}

.section-divider .wave {
  fill: var(--divider-fill, #ffffff);
  stroke: var(--divider-fill, #ffffff);
  stroke-width: 2;
  shape-rendering: geometricPrecision;
}

.section-divider .trail {
  fill: none;
  stroke: rgba(31, 35, 41, 0.12);
  stroke-width: 7;
  stroke-linecap: round;
  stroke-dasharray: 3 24;
}

.section-divider .step {
  filter: drop-shadow(0 8px 14px rgba(31, 35, 41, 0.10));
}

.webapp-divider {
  height: 104px;
  margin-top: -1px;
  background: var(--blue);
}

.webapp-divider::after {
  background: #f4f6f8;
}

.webapp-divider .wave {
  fill: url("#webappDividerFill");
  stroke: #f4f6f8;
  stroke-width: 2;
}

.webapp-divider .trail {
  stroke: rgba(31, 35, 41, 0.13);
  stroke-dasharray: 3 26;
}

.webapp-divider .step {
  filter: drop-shadow(0 7px 12px rgba(31, 35, 41, 0.11));
}

.section-title {
  display: grid;
  gap: 12px;
  max-width: 760px;
  margin-bottom: 28px;
}

.section-title h2 {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0;
  font-size: clamp(34px, 5vw, 64px);
  line-height: 0.98;
  letter-spacing: 0;
}

.section-title h2 i {
  display: grid;
  width: 0.78em;
  height: 0.78em;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 999px;
  background: rgba(207, 19, 125, 0.10);
  color: var(--pink);
  font-size: 0.42em;
  line-height: 1;
}

.routes-band .section-title h2 i,
.music-band .section-title h2 i {
  background: rgba(255, 255, 255, 0.18);
  color: #ffffff;
}

.section-title p {
  margin: 0;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.55;
}

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

.detail {
  min-height: 134px;
  padding: 22px;
}

.detail strong {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 9px;
  color: var(--ink);
  font-size: 13px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.detail strong i {
  display: grid;
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  place-items: center;
  color: var(--pink);
  font-size: 22px;
  line-height: 1;
  transition: transform 220ms ease, color 220ms ease;
}

.detail span {
  display: block;
  color: #4f5968;
  font-size: 18px;
  line-height: 1.48;
}

.info-photo {
  min-height: 260px;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--layer-radius);
  background: #edf1f4;
  box-shadow: 0 18px 48px rgba(31, 35, 41, 0.08);
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.info-photo img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
}

.info-photo--before-news {
  min-height: clamp(260px, 32vw, 460px);
  margin-bottom: clamp(22px, 3vw, 34px);
}

.info-photo--before-news img {
  min-height: clamp(260px, 32vw, 460px);
}

.info-accordions {
  display: grid;
  gap: 10px;
}

.info-accordion {
  overflow: hidden;
  border: 1px solid rgba(31, 35, 41, 0.09);
  border-radius: var(--layer-radius);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 14px 34px rgba(31, 35, 41, 0.06);
  transition: height 280ms ease, border-color 220ms ease, box-shadow 220ms ease, background 220ms ease;
  will-change: height;
}

.info-accordion[open] {
  border-color: rgba(207, 19, 125, 0.18);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 20px 48px rgba(31, 35, 41, 0.09);
}

.info-accordion summary {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 14px;
  align-items: center;
  min-height: 58px;
  padding: 16px 18px;
  color: var(--ink);
  cursor: pointer;
  font-size: 16px;
  font-weight: 900;
  list-style: none;
}

.info-accordion summary::-webkit-details-marker {
  display: none;
}

.info-accordion summary::after {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 999px;
  background: rgba(31, 35, 41, 0.06);
  color: var(--route-accent);
  content: "\e02e";
  font-family: uicons-thin-straight;
  font-size: 15px;
  font-style: normal;
  font-weight: normal;
  line-height: 1;
  transition: background 180ms ease, color 180ms ease;
}

.info-accordion[open] summary::after {
  background: rgba(207, 19, 125, 0.10);
  content: "\f4e6";
  font-size: 12px;
}

.info-accordion__body {
  display: grid;
  gap: 12px;
  padding: 0 18px 18px;
  color: #4f5968;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
}

.info-accordion__body p {
  margin: 0;
}

.info-accordion__body ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 18px;
}

.info-accordion__body a {
  font-weight: 900;
}

.news-overview {
  display: grid;
  gap: 16px;
}

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

.news-card {
  display: grid;
  grid-template-rows: auto 1fr;
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(31, 35, 41, 0.09);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.94);
  cursor: pointer;
  box-shadow: 0 14px 34px rgba(31, 35, 41, 0.07);
}

.news-card:focus-visible {
  outline: 3px solid rgba(207, 19, 125, 0.34);
  outline-offset: 4px;
}

.news-card__media {
  position: relative;
  aspect-ratio: 16 / 9;
  margin: 0;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(31, 166, 205, 0.16), rgba(168, 201, 44, 0.18)),
    #edf5f4;
}

.news-card__media img,
.news-card__placeholder {
  display: block;
  width: 100%;
  height: 100%;
}

.news-card__media img {
  position: relative;
  z-index: 1;
  object-fit: contain;
}

.news-card__media .news-card__media-blur {
  position: absolute;
  inset: -18px;
  z-index: 0;
  width: calc(100% + 36px);
  height: calc(100% + 36px);
  object-fit: cover;
  filter: blur(18px);
  opacity: 0.42;
  transform: scale(1.04);
}

.news-card__placeholder {
  display: grid;
  place-items: center;
  color: var(--blue);
}

.news-card__placeholder i {
  display: grid;
  width: 66px;
  height: 66px;
  place-items: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  font-size: 32px;
  box-shadow: 0 14px 30px rgba(31, 35, 41, 0.10);
}

.news-card__content {
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  gap: 9px;
  min-height: 0;
  padding: 15px;
}

.news-card time {
  color: var(--pink);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.news-card h3 {
  margin: 0;
  color: var(--ink);
  font-size: 19px;
  line-height: 1.16;
}

.news-card p {
  margin: 0;
  color: #4f5968;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.5;
}

.news-card__button {
  justify-self: end;
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 8px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: var(--pink);
  color: #ffffff;
  cursor: pointer;
  font-size: 14px;
  font-weight: 950;
  box-shadow: 0 12px 26px rgba(207, 19, 125, 0.24);
  transition: box-shadow 220ms ease, transform 220ms ease;
}

.news-card__button i {
  display: grid;
  width: 100%;
  height: 100%;
  place-items: center;
  border-radius: 999px;
  background: transparent;
  font-size: 16px;
}

.news-load-more {
  justify-self: center;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 18px;
  border: 0;
  border-radius: 999px;
  background: var(--ink);
  color: #ffffff;
  cursor: pointer;
  font-size: 15px;
  font-weight: 950;
  box-shadow: 0 14px 28px rgba(31, 35, 41, 0.16);
}

.news-load-more i {
  font-size: 16px;
}

.social-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.social-button {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  width: fit-content;
  min-height: 42px;
  padding: 10px 14px;
  border: 1px solid rgba(31, 35, 41, 0.10);
  border-radius: 999px;
  background: #1f2329;
  color: #ffffff;
  font-size: 14px;
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 12px 24px rgba(31, 35, 41, 0.12);
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.social-button i {
  display: grid;
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  place-items: center;
  font-size: 18px;
  line-height: 1;
}

.social-button.is-instagram {
  background: var(--pink);
}

.social-button.is-facebook {
  background: #1877f2;
}

.webapp-band {
  background: #f4f6f8;
}

.webapp-inner {
  width: min(100%, 1180px);
  margin: 0 auto;
  padding: 28px 24px 18px;
}

.webapp-card {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 22px;
  align-items: center;
  border: 1px solid rgba(31, 35, 41, 0.09);
  border-radius: var(--layer-radius);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 18px 48px rgba(31, 35, 41, 0.08);
  padding: 22px;
}

.webapp-phone {
  display: grid;
  justify-items: center;
  gap: 13px;
  min-height: 292px;
  align-content: center;
  border: 10px solid #1f2329;
  border-radius: 34px;
  background:
    radial-gradient(circle at 50% 18%, rgba(255, 255, 255, 0.62), transparent 25%),
    linear-gradient(145deg, rgba(207, 19, 125, 0.95), rgba(31, 166, 205, 0.88));
  color: #ffffff;
  text-align: center;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.18), 0 18px 34px rgba(31, 35, 41, 0.14);
}

.webapp-phone img {
  width: 86px;
  height: 86px;
  border-radius: 22px;
  box-shadow: 0 16px 30px rgba(31, 35, 41, 0.18);
}

.webapp-phone span {
  max-width: 180px;
  font-size: 17px;
  font-weight: 900;
  line-height: 1.15;
}

.webapp-instructions {
  display: grid;
  gap: 14px;
  min-width: 0;
}

.webapp-switch {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 6px;
  padding: 6px;
  border: 1px solid rgba(31, 35, 41, 0.08);
  border-radius: 999px;
  background: rgba(31, 35, 41, 0.055);
}

.webapp-switch button {
  min-height: 42px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: #5f6876;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font: inherit;
  font-size: 15px;
  font-weight: 900;
  line-height: 1;
  transition: background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.webapp-switch button svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  fill: currentColor;
}

.webapp-switch button span {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.webapp-switch button.is-active {
  background: #ffffff;
  color: var(--pink);
  box-shadow: 0 10px 24px rgba(31, 35, 41, 0.10);
}

.webapp-panel {
  display: grid;
  gap: 10px;
}

.webapp-panel[hidden] {
  display: none;
}

.webapp-steps {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.webapp-steps li {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  min-height: 54px;
  padding: 10px 12px;
  border: 1px solid rgba(31, 35, 41, 0.08);
  border-radius: 14px;
  background: rgba(248, 250, 243, 0.82);
}

.webapp-steps li span {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 999px;
  background: var(--pink);
  color: #ffffff;
  font-size: 15px;
  font-weight: 900;
  line-height: 1;
}

.webapp-steps li p {
  margin: 0;
  color: var(--ink);
  font-size: 17px;
  font-weight: 750;
  line-height: 1.35;
}

.webapp-note {
  display: flex;
  grid-column: 2;
  align-items: center;
  gap: 10px;
  margin: -4px 0 0;
  color: #4f5968;
  font-size: 15px;
  font-weight: 750;
  line-height: 1.45;
}

.webapp-note i {
  display: grid;
  width: 26px;
  height: 26px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 999px;
  background: rgba(121, 184, 111, 0.16);
  color: #4d9b43;
}

.travel-note {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  margin-top: 18px;
  padding: 16px;
  border: 1px solid rgba(207, 19, 125, 0.13);
  border-radius: var(--layer-radius);
  background: rgba(207, 19, 125, 0.05);
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease;
}

.travel-note__icon {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 999px;
  background: rgba(207, 19, 125, 0.10);
  color: var(--pink);
  transform: translateY(-1px);
}

.travel-note__icon i {
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  font-size: 24px;
  line-height: 1;
}

.travel-note__content {
  min-width: 0;
}

.travel-note b {
  display: block;
  margin-bottom: 7px;
  color: var(--ink);
  font-size: 17px;
  line-height: 1.3;
}

.travel-note p {
  margin: 0;
  color: #5f6876;
  font-size: 16px;
  line-height: 1.5;
}

.routes-band {
  background: var(--route-green);
}

.routes-inner {
  width: min(100%, 1180px);
  margin: 0 auto;
  padding: 28px 24px 58px;
}

.routes-band .section-title h2,
.routes-band .section-title p {
  color: #ffffff;
}

.routes-band .section-title p {
  opacity: 0.88;
}

.routes-grid {
  --routes-pad: max(24px, calc((100vw - 1180px) / 2 + 24px));
  --route-card-size: calc((100vw - var(--routes-pad) - 32px) / 2.5);
  display: grid;
  grid-auto-columns: var(--route-card-size);
  grid-auto-flow: column;
  gap: 16px;
  width: 100vw;
  margin: -28px 0 0 calc(50% - 50vw);
  padding: 36px calc(100vw - var(--routes-pad) - var(--route-card-size)) 34px var(--routes-pad);
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-padding-inline: var(--routes-pad);
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  -webkit-mask-image: linear-gradient(to bottom, transparent 0, #000 18px, #000 calc(100% - 38px), transparent 100%);
  mask-image: linear-gradient(to bottom, transparent 0, #000 18px, #000 calc(100% - 38px), transparent 100%);
  scrollbar-width: none;
}

.routes-grid::-webkit-scrollbar {
  display: none;
}

.routes-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: -4px;
}

.routes-arrow {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--route-accent);
  cursor: pointer;
  box-shadow: 0 14px 34px rgba(31, 35, 41, 0.12);
  transition: transform 180ms ease, background 180ms ease, opacity 180ms ease;
}

.routes-arrow i {
  display: grid;
  width: 15px;
  height: 15px;
  place-items: center;
  font-size: 15px;
  line-height: 1;
}

.routes-arrow:disabled {
  cursor: default;
  opacity: 0.42;
  transform: none;
}

.routes-arrow:focus-visible,
.routes-bullet:focus-visible {
  outline: 3px solid rgba(255, 255, 255, 0.72);
  outline-offset: 3px;
}

.routes-bullets {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.routes-bullet {
  width: 9px;
  height: 9px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.46);
  cursor: pointer;
  transition: width 180ms ease, background 180ms ease, transform 180ms ease;
}

.routes-bullet.is-active {
  width: 24px;
  background: #ffffff;
}

.route-card {
  scroll-snap-align: start;
  min-height: 520px;
  color: var(--ink);
}

.route-card__surface {
  position: relative;
  display: grid;
  grid-template-rows: auto 1fr;
  min-height: inherit;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: var(--layer-radius);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 16px 34px rgba(31, 35, 41, 0.075);
  transition: transform 240ms ease, border-color 240ms ease, box-shadow 240ms ease, background 240ms ease;
}

.route-card.is-next .route-card__surface {
  border-color: rgba(255, 255, 255, 0.42);
  box-shadow: 0 20px 48px rgba(31, 35, 41, 0.14);
}

.route-card.is-next .route-card__media::after {
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  background: rgba(31, 35, 41, 0.86);
  color: #ffffff;
  content: "Eerstvolgende avond";
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.route-card.is-next.is-today .route-card__media::after {
  content: "Route van vandaag";
}

.route-card__media {
  position: relative;
  display: grid;
  aspect-ratio: 929 / 632;
  place-items: center;
  overflow: hidden;
  border-bottom: 1px solid rgba(31, 35, 41, 0.08);
  background: #fdf1f8;
}

.route-card__media img {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: filter 240ms ease;
}

.route-card__media .route-card__eyebrow {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  min-height: 31px;
  padding: 6px 10px;
  max-width: calc(100% - 146px);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  background: rgba(255, 255, 255, 0.9);
  font-size: 11px;
  letter-spacing: 0.04em;
  line-height: 1;
  box-shadow: 0 10px 24px rgba(31, 35, 41, 0.10);
  backdrop-filter: blur(8px);
}

.route-card__countdown {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  max-width: 124px;
  min-height: 31px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  color: #ff8700;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1;
  white-space: nowrap;
  box-shadow: 0 10px 24px rgba(31, 35, 41, 0.10);
  backdrop-filter: blur(8px);
}

.route-card__countdown::before {
  width: 7px;
  height: 7px;
  flex: 0 0 auto;
  border-radius: 999px;
  background: currentColor;
  content: "";
}

.route-card__countdown.is-done {
  width: 32px;
  min-width: 32px;
  max-width: 32px;
  min-height: 32px;
  justify-content: center;
  gap: 0;
  padding: 0;
  background: var(--route-accent);
  color: #ffffff;
}

.route-card__countdown.is-done::before {
  width: 11px;
  height: 6px;
  border: 0;
  border-bottom: 2.5px solid currentColor;
  border-left: 2.5px solid currentColor;
  border-radius: 1px;
  background: transparent;
  transform: translateY(-1px) rotate(-45deg);
}

.route-card__countdown-text {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
}

.route-card__countdown.is-done .route-card__countdown-text {
  display: none;
}

.route-card__content {
  --route-card-content-pad: 18px;
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 14px;
  padding: var(--route-card-content-pad);
  transition: transform 240ms ease;
}

.route-card__eyebrow {
  width: fit-content;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--route-accent-soft, rgba(207, 19, 125, 0.12));
  color: var(--route-accent);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.route-card b {
  display: block;
  color: var(--ink);
  font-size: 23px;
  line-height: 1.12;
}

.route-card__list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.route-card__list li {
  display: grid;
  gap: 5px;
  min-width: 0;
  padding: 12px;
  border: 1px solid var(--route-accent-border, rgba(31, 35, 41, 0.07));
  border-radius: 10px;
  background: var(--route-accent-soft, rgba(207, 19, 125, 0.055));
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.35;
  transition: border-color 220ms ease, background 220ms ease;
}

.route-card__list strong {
  color: var(--route-accent);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.route-card__list span {
  display: block;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.route-card__button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: calc(100% + (var(--route-card-content-pad) * 2));
  min-height: 58px;
  align-self: end;
  margin: 2px calc(var(--route-card-content-pad) * -1) calc(var(--route-card-content-pad) * -1);
  padding: 12px var(--route-card-content-pad);
  border: 0;
  border-top: 1px solid rgba(31, 35, 41, 0.10);
  border-radius: 0 0 var(--layer-radius) var(--layer-radius);
  background: linear-gradient(135deg, rgba(31, 35, 41, 0.045), rgba(255, 255, 255, 0.96));
  color: #3f4753;
  cursor: pointer;
  font: inherit;
  font-size: 14px;
  font-weight: 900;
  text-decoration: none;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.88);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.route-card__button > i {
  display: grid;
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  place-items: center;
  font-size: 18px;
  line-height: 1;
  transition: transform 180ms ease;
}

.route-card__button-text {
  flex: 1 1 auto;
  min-width: 0;
  text-align: left;
  white-space: nowrap;
}

.route-card__button-arrow {
  display: grid;
  width: 30px;
  height: 30px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 999px;
  background: var(--route-accent);
  color: #ffffff;
  box-shadow: 0 8px 18px rgba(31, 35, 41, 0.18);
}

.route-card__button-arrow i {
  display: grid;
  width: 16px;
  height: 16px;
  place-items: center;
  font-size: 16px;
  line-height: 1;
  transition: transform 180ms ease;
}

.route-card__button:focus-visible {
  outline: 3px solid var(--route-accent-border, rgba(207, 19, 125, 0.34));
  outline-offset: 3px;
}

.route-modal {
  position: fixed;
  inset: 0;
  z-index: 4500;
  display: none;
  padding: 24px;
  place-items: center;
  background: rgba(31, 35, 41, 0.58);
  backdrop-filter: blur(10px);
  opacity: 0;
  transition: opacity 320ms ease;
}

.route-modal.is-open,
.route-modal.is-closing {
  display: grid;
}

.route-modal.is-open {
  opacity: 1;
}

.route-modal__panel {
  position: relative;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  width: min(100%, 1120px);
  max-height: min(92vh, 900px);
  overflow: hidden;
  border-radius: var(--layer-radius);
  background: #ffffff;
  color: var(--ink);
  box-shadow: 0 30px 90px rgba(31, 35, 41, 0.32);
  opacity: 0;
  transform: translate3d(0, 8px, 0) scale(0.992);
  transition: opacity 380ms ease, transform 420ms ease;
  will-change: opacity, transform;
}

.route-modal.is-open .route-modal__panel {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}

.route-modal.is-closing .route-modal__panel {
  opacity: 0;
  transform: translate3d(0, 6px, 0) scale(0.995);
}

.route-modal__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  padding: 22px 24px;
  border-bottom: 1px solid var(--line);
}

.route-modal__kicker {
  display: block;
  margin-bottom: 6px;
  color: var(--route-accent);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.route-modal__title {
  margin: 0;
  color: var(--ink);
  font-size: clamp(26px, 4vw, 44px);
  line-height: 0.96;
}

.route-modal__close {
  display: grid;
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  place-items: center;
  border: 0;
  border-radius: 999px;
  background: rgba(31, 35, 41, 0.06);
  color: var(--ink);
  cursor: pointer;
  font: inherit;
  font-size: 28px;
  line-height: 1;
  transition: transform 180ms ease, background 180ms ease;
}

.route-modal__body {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.92fr);
  align-items: start;
  gap: 22px;
  min-height: 0;
  padding: 22px 24px 24px;
  overflow: hidden;
}

.route-modal__map {
  display: grid;
  align-self: start;
  width: 100%;
  aspect-ratio: 929 / 632;
  min-height: 360px;
  max-height: 100%;
  place-items: center;
  overflow: visible;
  background: transparent;
}

.route-modal__map-open {
  position: relative;
  display: grid;
  width: 100%;
  height: 100%;
  min-height: inherit;
  place-items: center;
  padding: 0;
  border: 0;
  background: transparent;
  color: #ffffff;
  cursor: zoom-in;
}

.route-modal__map-open img {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--layer-radius);
  object-fit: contain;
  box-shadow: 0 14px 34px rgba(31, 35, 41, 0.08);
}

.route-modal__map-zoom {
  position: absolute;
  right: 14px;
  bottom: 14px;
  z-index: 1;
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 999px;
  background: rgba(31, 35, 41, 0.82);
  color: #ffffff;
  box-shadow: 0 14px 34px rgba(31, 35, 41, 0.24);
  backdrop-filter: blur(14px);
  transition: transform 180ms ease, background 180ms ease;
}

.route-modal__map-open:hover .route-modal__map-zoom,
.route-modal__map-open:focus-visible .route-modal__map-zoom {
  background: var(--route-accent);
  transform: scale(1.05);
}

.route-modal__map-zoom i {
  display: block;
  font-size: 20px;
  line-height: 1;
}

.route-modal__info {
  display: grid;
  align-content: start;
  gap: 16px;
  max-height: 100%;
  overflow: auto;
  padding-right: 4px;
}

.route-modal__summary {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.route-modal__summary li {
  display: grid;
  gap: 6px;
  padding: 14px 16px;
  border: 1px solid var(--route-accent-border, rgba(207, 19, 125, 0.16));
  border-radius: 18px;
  background: var(--route-accent-soft, rgba(207, 19, 125, 0.055));
  color: var(--muted);
  font-size: 15px;
  font-weight: 800;
  line-height: 1.42;
}

.route-modal__summary strong {
  color: var(--route-accent);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.route-modal__summary span {
  color: var(--ink);
  font-size: 16px;
  font-weight: 850;
}

.route-modal__calendar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 46px;
  padding: 12px 16px;
  border: 1px solid var(--route-accent-border, rgba(207, 19, 125, 0.2));
  border-radius: 999px;
  background: var(--route-accent);
  color: #ffffff;
  font-size: 15px;
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 12px 26px rgba(31, 35, 41, 0.14);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.route-modal__calendar:hover,
.route-modal__calendar:focus-visible {
  color: #ffffff;
  transform: translateY(-1px);
  box-shadow: 0 16px 30px rgba(31, 35, 41, 0.18);
}

.route-modal__calendar i {
  display: block;
  font-size: 18px;
  line-height: 1;
}

.route-modal__steps {
  display: grid;
  gap: 0;
  counter-reset: route-step;
  margin: 0;
  padding: 4px 0 0;
  list-style: none;
}

.route-modal__steps li {
  position: relative;
  min-height: 44px;
  padding: 0 0 18px 48px;
  color: var(--muted);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.42;
  counter-increment: route-step;
}

.route-modal__steps li::before {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border: 2px solid var(--route-accent-border, rgba(207, 19, 125, 0.22));
  border-radius: 999px;
  background: #ffffff;
  color: var(--route-accent);
  box-shadow: 0 8px 18px rgba(31, 35, 41, 0.08);
  content: counter(route-step);
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
}

.route-modal__steps li::after {
  position: absolute;
  top: 32px;
  bottom: 0;
  left: 14px;
  width: 2px;
  border-radius: 999px;
  background: linear-gradient(to bottom, var(--route-accent-border, rgba(207, 19, 125, 0.28)), var(--route-accent-soft, rgba(207, 19, 125, 0.08)));
  content: "";
}

.route-modal__steps li:last-child {
  padding-bottom: 0;
}

.route-modal__steps li:last-child::after {
  display: none;
}

.route-modal__steps strong {
  color: var(--ink);
}

html.is-route-modal-open,
body.is-route-modal-open {
  overflow: hidden;
}

.news-modal {
  position: fixed;
  inset: 0;
  z-index: 4520;
  display: none;
  padding: 24px;
  place-items: center;
  background: rgba(31, 35, 41, 0.58);
  backdrop-filter: blur(10px);
  opacity: 0;
  transition: opacity 320ms ease;
}

.news-modal.is-open,
.news-modal.is-closing {
  display: grid;
}

.news-modal.is-open {
  opacity: 1;
}

.news-modal__panel {
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  width: min(100%, 980px);
  max-height: min(90vh, 760px);
  overflow: hidden;
  border-radius: var(--layer-radius);
  background: #ffffff;
  color: var(--ink);
  box-shadow: 0 30px 90px rgba(31, 35, 41, 0.32);
  opacity: 0;
  transform: translate3d(0, 8px, 0) scale(0.992);
  transition: opacity 380ms ease, transform 420ms ease;
}

.news-modal.is-open .news-modal__panel {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}

.news-modal.is-closing .news-modal__panel {
  opacity: 0;
  transform: translate3d(0, 6px, 0) scale(0.995);
}

.news-modal__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  padding: 22px 24px;
  border-bottom: 1px solid var(--line);
}

.news-modal__kicker {
  display: block;
  min-height: 15px;
  margin-bottom: 6px;
  color: var(--pink);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.news-modal__title {
  margin: 0;
  color: var(--ink);
  font-size: clamp(26px, 4vw, 42px);
  line-height: 1;
}

.news-modal__close {
  display: grid;
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  place-items: center;
  border: 0;
  border-radius: 999px;
  background: rgba(31, 35, 41, 0.06);
  color: var(--ink);
  cursor: pointer;
  font: inherit;
  font-size: 28px;
  line-height: 1;
}

.news-modal__body {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(0, 1fr);
  gap: 24px;
  min-height: 0;
  padding: 24px;
  overflow: auto;
}

.news-modal__media {
  position: sticky;
  top: 0;
  align-self: start;
  aspect-ratio: 16 / 10;
  margin: 0;
  overflow: hidden;
  border-radius: 22px;
  background:
    linear-gradient(135deg, rgba(31, 166, 205, 0.16), rgba(168, 201, 44, 0.18)),
    #edf5f4;
}

.news-modal__media img,
.news-modal__placeholder {
  width: 100%;
  height: 100%;
}

.news-modal__media img {
  position: relative;
  z-index: 1;
  display: block;
  object-fit: contain;
}

.news-modal__media .news-modal__media-blur {
  position: absolute;
  inset: -18px;
  z-index: 0;
  width: calc(100% + 36px);
  height: calc(100% + 36px);
  object-fit: cover;
  filter: blur(18px);
  opacity: 0.42;
  transform: scale(1.04);
}

.news-modal__media.is-placeholder img {
  display: none;
}

.news-modal__placeholder {
  display: none;
  place-items: center;
  color: var(--blue);
}

.news-modal__media.is-placeholder .news-modal__placeholder {
  display: grid;
}

.news-modal__placeholder i {
  display: grid;
  width: 76px;
  height: 76px;
  place-items: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  font-size: 38px;
  box-shadow: 0 14px 30px rgba(31, 35, 41, 0.10);
}

.news-modal__text {
  display: grid;
  gap: 14px;
  align-content: start;
  color: #4f5968;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.65;
}

.news-modal__text p,
.news-modal__text ul,
.news-modal__text ol {
  margin: 0;
}

.news-modal__text ul,
.news-modal__text ol {
  display: grid;
  gap: 8px;
  padding-left: 20px;
}

.news-modal__text a {
  color: var(--pink);
  font-weight: 900;
}

html.is-news-modal-open,
body.is-news-modal-open {
  overflow: hidden;
}

.route-map-viewer {
  position: fixed;
  inset: 0;
  z-index: 5600;
  display: none;
  overflow: hidden;
  background: rgba(10, 12, 16, 0.94);
  color: #ffffff;
  opacity: 0;
  transition: opacity 220ms ease;
}

.route-map-viewer.is-open,
.route-map-viewer.is-closing {
  display: block;
}

.route-map-viewer.is-open {
  opacity: 1;
}

.route-map-viewer__close {
  position: fixed;
  top: max(14px, env(safe-area-inset-top));
  right: max(14px, env(safe-area-inset-right));
  z-index: 2;
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--ink);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.24);
  cursor: pointer;
  font: inherit;
  font-size: 30px;
  line-height: 1;
}

.route-map-viewer__stage {
  position: absolute;
  inset: 0;
  overflow: auto;
  padding: max(74px, env(safe-area-inset-top)) max(18px, env(safe-area-inset-right)) max(24px, env(safe-area-inset-bottom)) max(18px, env(safe-area-inset-left));
  cursor: grab;
  overscroll-behavior: contain;
  touch-action: pan-x pan-y;
  -webkit-overflow-scrolling: touch;
}

.route-map-viewer__stage.is-dragging {
  cursor: grabbing;
  user-select: none;
}

.route-map-viewer__stage img {
  display: block;
  width: max(1180px, 88vw);
  max-width: none;
  height: auto;
  margin: 0 auto;
  border-radius: 10px;
  background: #ffffff;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.34);
  user-select: none;
  -webkit-user-drag: none;
}

html.is-route-map-viewer-open,
body.is-route-map-viewer-open {
  overflow: hidden;
}

.music-band {
  background: var(--blue);
}

.music-inner {
  width: min(100%, 1180px);
  margin: 0 auto;
  padding: 28px 24px 58px;
}

.music-band .section-title h2,
.music-band .section-title p {
  color: #ffffff;
}

.music-band .section-title p {
  opacity: 0.86;
}

.music-shell {
  --music-player-radius: 28px;
  position: relative;
  display: grid;
  margin-top: 22px;
  grid-template-columns: minmax(240px, 0.9fr) minmax(0, 1.1fr);
  grid-template-areas:
    "visual now"
    "visual controls"
    "visual timeline"
    "playlist playlist";
  gap: 18px 22px;
  overflow: hidden;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.52);
  border-radius: var(--music-player-radius);
  background: #ffffff;
  box-shadow: 0 22px 58px rgba(31, 35, 41, 0.16);
}

.music-shell audio {
  display: none;
}

.music-visual {
  position: relative;
  grid-area: visual;
  display: grid;
  --music-cover-bg: none;
  height: clamp(300px, 34vw, 430px);
  min-height: 294px;
  place-items: center;
  overflow: hidden;
  border-radius: calc(var(--music-player-radius) - 8px);
  background: #eaf7fb;
}

.music-visual::before,
.music-visual::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
}

.music-visual::before {
  z-index: 0;
  background-image: var(--music-cover-bg);
  background-position: center;
  background-size: cover;
  filter: blur(22px) saturate(1.14);
  opacity: 0.58;
  transform: scale(1.14);
}

.music-visual::after {
  z-index: 2;
  width: 58%;
  background: linear-gradient(105deg, transparent 0%, rgba(255, 255, 255, 0.10) 34%, rgba(255, 255, 255, 0.42) 50%, rgba(255, 255, 255, 0.10) 66%, transparent 100%);
  filter: blur(1px);
  opacity: 0;
  transform: translateX(-155%) skewX(-16deg);
  animation: musicCoverShimmer 5200ms ease-in-out infinite;
}

.music-visual__cover {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: contain;
  filter: drop-shadow(0 16px 30px rgba(31, 35, 41, 0.12));
}

.music-now {
  grid-area: now;
  align-self: end;
  min-width: 0;
  padding: 8px 4px 0;
}

.music-now__kicker {
  margin: 0 0 9px;
  color: var(--pink);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.music-now h3 {
  margin: 0;
  overflow: hidden;
  color: var(--ink);
  font-size: clamp(28px, 3.5vw, 46px);
  font-weight: 900;
  line-height: 0.98;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.music-now p:last-child {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 16px;
  font-weight: 800;
  line-height: 1.4;
}

.music-controls {
  grid-area: controls;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 0 4px;
}

.music-play,
.music-skip {
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease, opacity 180ms ease;
}

.music-play {
  width: 62px;
  height: 62px;
  background: var(--pink);
  color: #ffffff;
  box-shadow: 0 16px 34px rgba(207, 19, 125, 0.24);
}

.music-skip {
  width: 44px;
  height: 44px;
  background: rgba(31, 35, 41, 0.08);
  color: var(--ink);
}

.music-play i,
.music-skip i {
  display: grid;
  width: 20px;
  height: 20px;
  place-items: center;
  font-size: 20px;
  line-height: 1;
}

.music-play i {
  width: 28px;
  height: 28px;
  font-size: 28px;
}

.music-play .music-play__pause {
  display: none;
}

.music-shell.is-playing .music-play .music-play__play {
  display: none;
}

.music-shell.is-playing .music-play .music-play__pause {
  display: grid;
}

.music-timeline {
  grid-area: timeline;
  display: grid;
  gap: 12px;
  min-width: 0;
  padding: 0 4px;
}

.music-player__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 900;
  font-variant-numeric: tabular-nums;
}

.music-progress {
  width: 100%;
  height: 8px;
  border-radius: 999px;
  accent-color: var(--pink);
  cursor: pointer;
}

.music-playlist {
  grid-area: playlist;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.music-track {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  width: 100%;
  min-height: 74px;
  gap: 10px;
  padding: 12px;
  border: 1px solid rgba(31, 35, 41, 0.10);
  border-radius: 18px;
  background: #ffffff;
  color: var(--ink);
  text-align: left;
  font-size: 15px;
  font-weight: 800;
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.music-track__icon {
  position: relative;
  display: grid;
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 999px;
  background: rgba(207, 19, 125, 0.10);
  color: var(--pink);
  transition: transform 180ms ease;
}

.music-track__icon img {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  object-fit: cover;
}

.music-track__icon i {
  position: absolute;
  right: -1px;
  bottom: -1px;
  z-index: 2;
  display: grid;
  width: 18px;
  height: 18px;
  place-items: center;
  border: 2px solid #ffffff;
  border-radius: 999px;
  background: var(--pink);
  color: #ffffff;
  font-size: 10px;
  line-height: 1;
  box-shadow: 0 6px 12px rgba(31, 35, 41, 0.18);
}

.music-track__text {
  display: grid;
  gap: 3px;
  min-width: 0;
}

.music-track b,
.music-track small {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.music-track b {
  font-size: 15px;
  line-height: 1.15;
}

.music-track small {
  color: var(--muted);
  font-size: 13px;
  font-weight: 500;
  line-height: 1.3;
}

.music-track__duration {
  align-self: center;
  justify-self: end;
  padding: 5px 8px;
  border-radius: 999px;
  background: rgba(31, 35, 41, 0.07);
  color: #5f6876;
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.music-track.is-active {
  border-color: rgba(207, 19, 125, 0.24);
  background: rgba(207, 19, 125, 0.055);
  box-shadow: 0 14px 30px rgba(31, 35, 41, 0.08);
}

.music-photo {
  margin: 0;
  padding: 24px 0 10px;
}

.music-photo img {
  display: block;
  width: 100%;
  height: min(420px, 34vw);
  aspect-ratio: 21 / 9;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.18);
  box-shadow: 0 22px 58px rgba(31, 35, 41, 0.16);
  object-fit: cover;
}

.albums-band {
  background: #ffffff;
}

.albums-inner {
  width: min(100%, 1180px);
  margin: 0 auto;
  padding: 28px 24px 76px;
}

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

.album-card {
  --album-accent: var(--pink);
  --album-accent-soft: rgba(207, 19, 125, 0.18);
  --album-accent-glow: rgba(168, 201, 44, 0.14);
  --album-accent-border: rgba(207, 19, 125, 0.14);
  --album-accent-chip: rgba(207, 19, 125, 0.10);
  position: relative;
  display: grid;
  min-height: 310px;
  overflow: hidden;
  align-content: end;
  border: 1px solid var(--line);
  border-radius: var(--layer-radius);
  background: linear-gradient(145deg, rgba(207, 19, 125, 0.12), rgba(31, 166, 205, 0.13));
  color: var(--paper);
  text-decoration: none;
  box-shadow: 0 18px 48px rgba(31, 35, 41, 0.08);
  transform: translateZ(0);
  transition: transform 240ms ease, border-color 240ms ease, box-shadow 240ms ease;
}

.album-card.is-day-1 {
  --album-accent: #cf137d;
  --album-accent-soft: rgba(207, 19, 125, 0.18);
  --album-accent-glow: rgba(197, 18, 49, 0.10);
  --album-accent-border: rgba(207, 19, 125, 0.15);
  --album-accent-chip: rgba(207, 19, 125, 0.11);
}

.album-card.is-day-2 {
  --album-accent: #1fa6cd;
  --album-accent-soft: rgba(31, 166, 205, 0.18);
  --album-accent-glow: rgba(88, 172, 199, 0.12);
  --album-accent-border: rgba(31, 166, 205, 0.16);
  --album-accent-chip: rgba(31, 166, 205, 0.11);
}

.album-card.is-day-3 {
  --album-accent: #79b86f;
  --album-accent-soft: rgba(121, 184, 111, 0.18);
  --album-accent-glow: rgba(168, 201, 44, 0.13);
  --album-accent-border: rgba(121, 184, 111, 0.17);
  --album-accent-chip: rgba(121, 184, 111, 0.12);
}

.album-card.is-day-4 {
  --album-accent: #ff8700;
  --album-accent-soft: rgba(255, 135, 0, 0.18);
  --album-accent-glow: rgba(207, 19, 125, 0.10);
  --album-accent-border: rgba(255, 135, 0, 0.17);
  --album-accent-chip: rgba(255, 135, 0, 0.12);
}

.album-card::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(180deg, rgba(31, 35, 41, 0.08) 0%, rgba(31, 35, 41, 0.74) 100%),
    var(--album-cover, linear-gradient(145deg, rgba(207, 19, 125, 0.42), rgba(31, 166, 205, 0.36)));
  background-position: center;
  background-size: cover;
  transition: transform 360ms ease, filter 240ms ease;
}

.album-thumb {
  position: relative;
  z-index: 1;
  display: none;
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.48)),
    linear-gradient(145deg, var(--album-accent-soft), var(--album-accent-glow));
}

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

.album-thumb i {
  display: grid;
  width: 100%;
  height: 100%;
  place-items: center;
  color: var(--album-accent);
  font-size: 34px;
}

.album-card.is-empty .album-thumb img {
  object-fit: contain;
  padding: 18px;
  filter: drop-shadow(0 10px 22px rgba(31, 35, 41, 0.14));
}

.album-card:hover::before {
  transform: scale(1.04);
}

.album-card.is-empty {
  color: var(--ink);
  cursor: default;
}

.album-card.is-empty::before {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.54)),
    linear-gradient(145deg, var(--album-accent-soft), var(--album-accent-glow));
}

.album-empty-brand {
  position: absolute;
  right: 22px;
  top: 22px;
  display: grid;
  justify-items: center;
  z-index: 1;
  transition: transform 240ms ease;
}

.album-empty-logo {
  display: block;
  width: 64px;
  height: 64px;
  object-fit: contain;
  filter: drop-shadow(0 10px 22px rgba(31, 35, 41, 0.14));
}

.album-content {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 10px;
  padding: 20px;
  transition: transform 240ms ease;
}

.album-kicker,
.album-status {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  width: fit-content;
  padding: 7px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
}

.album-kicker {
  background: rgba(255, 255, 255, 0.18);
  transition: background 220ms ease, color 220ms ease;
}

.album-heading {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.album-status {
  background: rgba(255, 255, 255, 0.20);
  color: inherit;
}

.album-status.is-online {
  background: rgba(168, 201, 44, 0.22);
  color: #ffffff;
}

.is-empty .album-status {
  background: rgba(31, 35, 41, 0.08);
  color: var(--muted);
}

.is-empty .album-status.is-today {
  background: var(--album-accent-chip);
  color: var(--album-accent);
}

.is-empty .album-kicker {
  background: var(--album-accent-chip);
  color: var(--album-accent);
}

.album-card h3 {
  margin: 0;
  font-size: clamp(24px, 2.4vw, 34px);
  line-height: 1;
  letter-spacing: 0;
}

.album-card p {
  margin: 0;
  color: inherit;
  font-size: 15px;
  line-height: 1.45;
  opacity: 0.9;
}

.album-meta {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  color: inherit;
  font-size: 13px;
  font-weight: 900;
  line-height: 1;
}

.album-photo-panel {
  grid-column: 1 / -1;
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms ease;
  visibility: hidden;
}

.album-photo-panel[hidden] {
  display: none;
}

.album-photo-panel.is-open {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
}

.album-photo-panel__inner {
  margin: 2px 0 18px;
  padding: clamp(14px, 2.5vw, 22px);
  border: 1px solid var(--line);
  border-radius: var(--layer-radius);
  background: #ffffff;
  box-shadow: 0 18px 48px rgba(31, 35, 41, 0.08);
}

.album-photo-panel__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

.album-photo-panel__head strong {
  color: var(--ink);
  font-size: clamp(20px, 3vw, 30px);
  line-height: 1;
}

.album-photo-panel__head span {
  flex: 0 0 auto;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(207, 19, 125, 0.10);
  color: var(--pink);
  font-weight: 900;
}

.album-photo-grid {
  column-count: 4;
  column-gap: 12px;
}

.album-photo-grid a {
  display: inline-block;
  width: 100%;
  margin: 0 0 12px;
  overflow: hidden;
  border-radius: 18px;
  background: transparent;
  box-shadow: 0 10px 24px rgba(31, 35, 41, 0.08);
  break-inside: avoid;
}

.album-photo-grid img {
  display: block;
  width: 100%;
  height: auto;
  transition: transform 220ms ease;
}

.album-photo-grid a:hover img {
  transform: scale(1.025);
}

.album-photo-credit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  width: fit-content;
  margin: 22px auto 2px;
  color: rgba(31, 35, 41, 0.72);
  font-size: 14px;
  font-weight: 900;
  line-height: 1;
  text-decoration: none;
}

.album-photo-credit img {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.album-photo-credit:hover,
.album-photo-credit:focus-visible {
  color: var(--pink);
}

.album-photo-credit:focus-visible {
  outline: 3px solid rgba(207, 19, 125, 0.24);
  outline-offset: 5px;
}

.photo-viewer {
  --viewer-thumb-size: 72px;
  --viewer-thumb-bottom: max(14px, env(safe-area-inset-bottom));
  --viewer-photo-thumb-gap: 14px;
  --viewer-stage-bottom: calc(var(--viewer-thumb-size) + var(--viewer-thumb-bottom) + var(--viewer-photo-thumb-gap));
  --viewer-photo-top-gap: 14px;
  --viewer-photo-drag-x: 0px;
  --viewer-photo-rotate: 0deg;
  --viewer-photo-opacity: 1;
  --viewer-photo-scale: 1;
  --viewer-photo-zoom-x: 0px;
  --viewer-photo-zoom-y: 0px;
  --viewer-swipe-x: 0px;
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #101318;
  color: #ffffff;
  opacity: 0;
  pointer-events: none;
  touch-action: none;
  transition: opacity 180ms ease;
}

.photo-viewer.is-open {
  opacity: 1;
  pointer-events: auto;
}

.photo-viewer__backdrop {
  position: absolute;
  inset: -28px;
  background-image: var(--viewer-image);
  background-position: center;
  background-size: cover;
  filter: blur(28px) saturate(1.1);
  opacity: 0.56;
  transform: scale(1.08);
}

.photo-viewer__backdrop::after {
  position: absolute;
  inset: 0;
  content: "";
  background: rgba(10, 12, 16, 0.42);
}

.photo-viewer__stage {
  position: absolute;
  inset: var(--viewer-photo-top-gap) 0 auto;
  z-index: 1;
  display: block;
  width: 100vw;
  height: calc(100vh - var(--viewer-stage-bottom) - var(--viewer-photo-top-gap));
  height: calc(100dvh - var(--viewer-stage-bottom) - var(--viewer-photo-top-gap));
  min-width: 0;
  min-height: 0;
  margin: 0;
  padding: 0;
}

.photo-viewer__stage img {
  position: absolute;
  inset: 0;
  display: block;
  width: auto !important;
  height: auto !important;
  max-width: 100vw !important;
  max-height: calc(100vh - var(--viewer-stage-bottom) - var(--viewer-photo-top-gap)) !important;
  max-height: calc(100dvh - var(--viewer-stage-bottom) - var(--viewer-photo-top-gap)) !important;
  margin: auto;
  object-fit: contain !important;
  border-radius: 0;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.36);
  cursor: default;
  opacity: var(--viewer-photo-opacity);
  transform: translate3d(calc(var(--viewer-photo-drag-x) + var(--viewer-photo-zoom-x)), var(--viewer-photo-zoom-y), 0) rotate(var(--viewer-photo-rotate)) scale(var(--viewer-photo-scale));
  will-change: transform, opacity;
  user-select: none;
  -webkit-user-drag: none;
  transition: opacity 180ms ease, transform 180ms cubic-bezier(0.2, 0.72, 0.2, 1);
}

.photo-viewer.is-dragging .photo-viewer__stage img,
.photo-viewer.is-dragging .photo-viewer__thumb-track {
  transition: none;
}

.photo-viewer.is-zoomed .photo-viewer__stage img {
  cursor: grab;
}

.photo-viewer.is-clean .photo-viewer__stage {
  inset: var(--viewer-photo-top-gap) 0 auto;
  height: calc(100vh - (var(--viewer-photo-top-gap) * 2));
  height: calc(100dvh - (var(--viewer-photo-top-gap) * 2));
}

.photo-viewer.is-clean .photo-viewer__stage img {
  max-height: calc(100vh - (var(--viewer-photo-top-gap) * 2)) !important;
  max-height: calc(100dvh - (var(--viewer-photo-top-gap) * 2)) !important;
}

.photo-viewer[data-photo-motion="next"] .photo-viewer__stage img {
  animation: photo-viewer-next 260ms cubic-bezier(0.2, 0.72, 0.2, 1) both;
}

.photo-viewer[data-photo-motion="prev"] .photo-viewer__stage img {
  animation: photo-viewer-prev 260ms cubic-bezier(0.2, 0.72, 0.2, 1) both;
}

.photo-viewer__thumbs {
  position: absolute;
  z-index: 4;
  left: 50%;
  bottom: var(--viewer-thumb-bottom);
  width: min(660px, calc(100vw - 36px));
  height: var(--viewer-thumb-size);
  transform: translateX(-50%);
  overflow: hidden;
  pointer-events: auto;
}

.photo-viewer__thumb-track {
  display: grid;
  grid-template-columns: repeat(var(--viewer-thumb-count, 7), minmax(0, 1fr));
  gap: 8px;
  height: 100%;
  transform: translateX(var(--viewer-swipe-x));
  transition: transform 180ms ease;
}

.photo-viewer__thumb {
  position: relative;
  display: block;
  min-width: 0;
  height: 100%;
  padding: 0;
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 0.32);
  border-radius: 8px;
  background: rgba(5, 7, 11, 0.72);
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.26);
  cursor: pointer;
  opacity: 0.68;
  transform: scale(0.9);
  transition: border-color 180ms ease, box-shadow 180ms ease, opacity 180ms ease, transform 180ms ease;
}

.photo-viewer__thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: rgba(0, 0, 0, 0.32);
}

.photo-viewer__thumb.is-active {
  z-index: 1;
  border-color: var(--pink);
  box-shadow: 0 14px 38px rgba(207, 19, 125, 0.38);
  opacity: 1;
  transform: scale(1);
}

.photo-viewer__thumbs[data-motion="next"] .photo-viewer__thumb {
  animation: photo-thumb-next 220ms ease both;
}

.photo-viewer__thumbs[data-motion="prev"] .photo-viewer__thumb {
  animation: photo-thumb-prev 220ms ease both;
}

@keyframes photo-thumb-next {
  from {
    opacity: 0.35;
    transform: translateX(18px) scale(0.9);
  }
}

@keyframes photo-thumb-prev {
  from {
    opacity: 0.35;
    transform: translateX(-18px) scale(0.9);
  }
}

@keyframes photo-viewer-next {
  from {
    opacity: 0.32;
    transform: translate3d(72px, 0, 0) scale(0.985);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
}

@keyframes photo-viewer-prev {
  from {
    opacity: 0.32;
    transform: translate3d(-72px, 0, 0) scale(0.985);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
}

@keyframes photo-viewer-mobile-next {
  from {
    opacity: 0.55;
    transform: translate3d(0, 0, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes photo-viewer-mobile-prev {
  from {
    opacity: 0.55;
    transform: translate3d(0, 0, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

.photo-viewer__chrome {
  position: absolute;
  z-index: 3;
  top: max(12px, env(safe-area-inset-top));
  right: max(12px, env(safe-area-inset-right));
  display: flex;
  gap: 8px;
}

.photo-viewer__chrome,
.photo-viewer__arrow,
.photo-viewer__thumbs {
  transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
}

.photo-viewer.is-clean .photo-viewer__chrome,
.photo-viewer.is-clean .photo-viewer__arrow,
.photo-viewer.is-clean .photo-viewer__thumbs {
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
}

.photo-viewer.is-clean .photo-viewer__thumbs {
  transform: translateX(-50%) translateY(12px);
}

.photo-viewer__button,
.photo-viewer__arrow {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  padding: 0;
  border: 1px solid rgba(207, 19, 125, 0.72);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.88);
  color: var(--pink);
  text-decoration: none;
  backdrop-filter: blur(16px);
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.22);
  cursor: pointer;
}

.photo-viewer__button svg,
.photo-viewer__arrow svg {
  display: block;
  width: 17px;
  height: 17px;
  margin: auto;
  line-height: 1;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.photo-viewer__arrow svg {
  width: 18px;
  height: 18px;
}

.photo-viewer__arrow {
  position: absolute;
  z-index: 3;
  top: 50%;
  transform: translateY(-50%);
}

.photo-viewer__arrow--prev {
  left: max(14px, env(safe-area-inset-left));
}

.photo-viewer__arrow--next {
  right: max(14px, env(safe-area-inset-right));
}

body.photo-viewer-open {
  overflow: hidden;
}

.map-wrap {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 16px;
  align-items: stretch;
  margin-top: 16px;
}

.map-panel {
  height: 100%;
  min-height: 320px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--layer-radius);
  background: #edf1f4;
  box-shadow: 0 18px 48px rgba(31, 35, 41, 0.08);
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

#a4d-map {
  display: block;
  width: 100%;
  height: calc(100% + 4px);
  min-height: 324px;
  margin-bottom: -4px;
}

.map-panel .leaflet-container {
  font-family: Arial, Helvetica, sans-serif;
  background: #edf1f4;
}

.map-panel .leaflet-control-attribution {
  border-top-left-radius: 6px;
  background: rgba(255, 255, 255, 0.78);
  color: rgba(31, 35, 41, 0.62);
  font-size: 10px;
  line-height: 1.2;
}

.a4d-map-marker {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 3px solid #fff;
  border-radius: 999px;
  background: var(--pink);
  box-shadow: 0 10px 24px rgba(207, 19, 125, 0.28);
  animation: markerPulse 2400ms ease-in-out infinite;
}

.a4d-map-marker::after {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #fff;
  content: "";
}

.site-footer {
  border-top: 1px solid rgba(31, 35, 41, 0.08);
  background: #ffffff;
  color: var(--ink);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: min(100%, 1180px);
  margin: 0 auto;
  padding: 26px 24px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--ink);
}

.footer-logos {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto;
}

.footer-logo {
  width: 44px;
  height: 44px;
  object-fit: contain;
  transition: transform 220ms ease;
}

.footer-brand > div > span {
  display: block;
  font-size: 15px;
  font-weight: 800;
}

.footer-brand small {
  display: block;
  margin-top: 2px;
  color: rgba(31, 35, 41, 0.62);
  font-size: 13px;
}

.footer-brand small a {
  color: inherit;
  text-decoration: none;
}

.footer-brand small a:hover,
.footer-brand small a:focus-visible {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.wide {
  grid-column: 1 / -1;
}

.source {
  margin: 24px 0 0;
  color: #7a8491;
  font-size: 13px;
  line-height: 1.45;
}

.topbar,
.headline,
.quick-facts,
.sponsor-strip {
  animation: heroFadeUp 650ms ease both;
}

.headline {
  animation-delay: 110ms;
}

.quick-facts {
  animation-delay: 220ms;
}

.sponsor-strip {
  animation-delay: 320ms;
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 620ms ease, transform 620ms ease;
  transition-delay: var(--reveal-delay, 0ms);
}

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

.route-card.route-card-enter .route-card__surface {
  opacity: 0;
  transform: translate3d(0, var(--route-enter-y, 18px), 0) scale(0.988);
  transition:
    opacity 520ms ease,
    transform 680ms cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: var(--route-enter-delay, 0ms);
  will-change: opacity, transform;
}

.route-card.route-card-enter.is-entered .route-card__surface {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
  will-change: auto;
}

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

@keyframes medalSway {
  0%, 100% {
    transform: rotate(-3deg);
  }
  50% {
    transform: rotate(3deg);
  }
}

@keyframes logoShine {
  0% {
    background-position: -145% 0;
    opacity: 0;
  }
  14%, 78% {
    opacity: 0.56;
  }
  100% {
    background-position: 145% 0;
    opacity: 0;
  }
}

@keyframes musicCoverShimmer {
  0%, 18% {
    opacity: 0;
    transform: translateX(-155%) skewX(-16deg);
  }
  30%, 48% {
    opacity: 0.76;
  }
  62%, 100% {
    opacity: 0;
    transform: translateX(230%) skewX(-16deg);
  }
}

@keyframes markerPulse {
  0%, 100% {
    box-shadow: 0 10px 24px rgba(207, 19, 125, 0.28);
  }
  50% {
    box-shadow: 0 10px 28px rgba(207, 19, 125, 0.38), 0 0 0 10px rgba(207, 19, 125, 0.10);
  }
}

@keyframes photo-ribbon-ticker {
  0%, 8% {
    opacity: 1;
    transform: translateX(0);
  }

  88% {
    opacity: 1;
    transform: translateX(calc(-1 * var(--photo-ribbon-ticker-distance, 0px)));
  }

  92% {
    opacity: 0;
    transform: translateX(calc(-1 * var(--photo-ribbon-ticker-distance, 0px)));
  }

  93% {
    opacity: 0;
    transform: translateX(0);
  }

  96%, 100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@media (hover: hover) and (pointer: fine) {
  .brand:hover {
    transform: translateY(-2px);
  }

  .brand:hover img {
    transform: rotate(-3deg) scale(1.05);
  }

  .photo-ribbon:hover {
    box-shadow: 0 1px 0 rgba(31, 35, 41, 0.10), 0 14px 34px rgba(31, 35, 41, 0.18);
  }

  .photo-ribbon__close:hover {
    background: rgba(255, 255, 255, 0.16);
    color: #ffffff;
  }

  .fact:hover,
  .detail:hover,
  .info-photo:hover,
  .map-panel:hover {
    transform: translateY(-4px);
    border-color: rgba(207, 19, 125, 0.20);
    box-shadow: 0 24px 58px rgba(31, 35, 41, 0.13);
  }

  .sponsor-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, 0.78);
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 24px 58px rgba(31, 35, 41, 0.14);
  }

  .fact:hover .label i,
  .detail:hover strong i {
    transform: translateY(-1px) rotate(-4deg) scale(1.08);
  }

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

  .travel-note:hover {
    transform: translateY(-2px);
    border-color: rgba(207, 19, 125, 0.22);
    background: rgba(207, 19, 125, 0.075);
  }

  .album-card:hover {
    transform: translateY(-6px);
    border-color: rgba(207, 19, 125, 0.22);
    box-shadow: 0 28px 66px rgba(31, 35, 41, 0.16);
  }

  .music-shell:hover {
    box-shadow: 0 26px 66px rgba(31, 35, 41, 0.18);
  }

  .music-shell:hover .music-play {
    transform: scale(1.04);
    background: #b80f70;
    box-shadow: 0 18px 38px rgba(207, 19, 125, 0.30);
  }

  .music-skip:hover,
  .music-track:hover {
    transform: translateY(-2px);
  }

  .music-skip:hover {
    background: rgba(207, 19, 125, 0.10);
    color: var(--pink);
  }

  .music-track:hover {
    border-color: rgba(207, 19, 125, 0.20);
    box-shadow: 0 16px 34px rgba(31, 35, 41, 0.10);
  }

  .route-card:hover .route-card__surface {
    border-color: rgba(207, 19, 125, 0.34);
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 24px 60px rgba(31, 35, 41, 0.16);
  }

  .route-card.is-next:hover .route-card__surface {
    border-color: rgba(255, 255, 255, 0.42);
    box-shadow: 0 24px 60px rgba(31, 35, 41, 0.16);
  }

  .route-card:hover .route-card__media img {
    filter: saturate(1.08) contrast(1.02);
  }

  .route-card:hover .route-card__eyebrow,
  .route-card:hover .route-card__countdown:not(.is-done) {
    background: #ffffff;
    box-shadow: 0 12px 28px rgba(31, 35, 41, 0.14);
  }

  .route-card:hover .route-card__countdown.is-done {
    background: var(--route-accent);
    box-shadow: 0 12px 28px rgba(31, 35, 41, 0.14);
  }

  .route-card:hover .route-card__list li {
    border-color: rgba(207, 19, 125, 0.18);
    background: rgba(207, 19, 125, 0.075);
  }

  .route-card:hover .route-card__button {
    transform: none;
    border-color: rgba(31, 35, 41, 0.16);
    background: linear-gradient(135deg, rgba(31, 35, 41, 0.075), #ffffff);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.96), inset 0 12px 24px rgba(31, 35, 41, 0.035);
  }

  .route-card:hover .route-card__button-arrow i {
    transform: translateX(2px);
  }

  .routes-arrow:not(:disabled):hover {
    transform: translateY(-2px);
    background: #ffffff;
  }

  .routes-bullet:hover {
    transform: scale(1.16);
    background: rgba(255, 255, 255, 0.72);
  }

  .music-track:hover .music-track__icon {
    transform: rotate(-4deg) scale(1.06);
  }

  .social-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 30px rgba(31, 35, 41, 0.18);
  }

  .album-card:hover .album-content {
    transform: translateY(-4px);
  }

  .album-card:hover::before {
    filter: saturate(1.08);
  }

  .album-card.is-empty:hover .album-empty-brand {
    transform: rotate(-4deg) scale(1.05);
  }

}

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

  .reveal {
    opacity: 1;
    transform: none;
  }

  .logo-wrap::after {
    animation: none !important;
    opacity: 0;
  }
}

@media (max-width: 780px) {
  :root {
    --mobile-page-pad: 16px;
    --page-nav-height: 67px;
  }

  body.a4d-site {
    width: 100%;
    min-height: 100vh;
    min-height: 100dvh;
    overflow-x: hidden;
    overflow-x: clip;
  }

  body.a4d-site > main {
    position: relative;
    padding-top: calc(var(--page-nav-height) + var(--photo-ribbon-height));
    overflow-x: hidden;
    overflow-x: clip;
  }

  body.a4d-site.is-photo-ribbon-hidden > main {
    padding-top: var(--page-nav-height);
  }

  .site-fixed-header {
    position: fixed;
    top: 0 !important;
    right: 0;
    left: 0;
    z-index: 8000;
  }

  .hero-inner {
    padding: 84px var(--mobile-page-pad) 82px;
  }

  .hero.is-ribbon-hidden .hero-inner {
    padding-top: 30px;
  }

  .hero-medal {
    top: 20px;
    right: 42px;
    left: auto;
    width: clamp(118px, 17vw, 138px);
  }

  .hero.is-ribbon-hidden .hero-medal {
    top: -18px;
  }

  .play-divider {
    height: 92px;
  }

  .topbar {
    align-items: center;
    flex-direction: row;
    --topbar-icon-size: 46px;
  }

  .brand {
    min-width: 0;
  }

  .photo-ribbon {
    position: relative;
    top: var(--page-nav-height);
    width: 100vw;
    min-height: 0;
    border-radius: 0;
  }

  .hero {
    margin-top: calc(var(--hero-ribbon-overlap) * -1 - 1px);
  }

  .hero.is-ribbon-hidden {
    margin-top: 0;
  }

  .photo-note {
    display: flex;
    align-items: center;
    min-height: 0;
    padding: 7px 8px 7px 12px;
    white-space: nowrap;
    overflow: hidden;
    text-align: left;
  }

  .photo-ribbon__close {
    width: 34px;
    height: 34px;
    align-self: center;
    margin: 0 10px 0 0;
  }

  .photo-ribbon__close span {
    font-size: 22px;
  }

  .photo-note__icon {
    width: 24px;
    height: 24px;
  }

  .photo-note__text {
    display: block;
    min-width: 0;
    overflow: hidden;
  }

  .photo-note__label {
    display: none;
  }

  .photo-note__hint {
    font-size: 11px;
  }

  .photo-note__message {
    font-size: 15px;
    font-weight: 400;
    line-height: 1.1;
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    -webkit-line-clamp: unset;
    -webkit-box-orient: initial;
  }

  .logo-wrap {
    width: min(88%, 460px);
    margin-left: 0;
  }

  .logo {
    width: 100%;
    filter: drop-shadow(0 18px 34px rgba(31, 35, 41, 0.13));
  }

  .hero-main {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .quick-facts,
  .details,
  .news-grid,
  .webapp-card,
  .album-grid,
  .sponsor-grid,
  .map-wrap {
    grid-template-columns: 1fr;
  }

  .page-nav__inner {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 5px;
    width: 100%;
    height: 67px;
    padding: 7px 56px 7px 8px;
    overflow: visible;
  }

  .page-nav {
    position: fixed;
    top: 0 !important;
    right: 0;
    left: 0;
    z-index: 8001;
    height: 67px;
    min-height: 67px;
    max-height: 67px;
    transform: none;
    backface-visibility: visible;
    contain: none;
    will-change: auto;
  }

  .page-nav::before {
    height: 10px;
  }

  .page-nav a {
    display: grid;
    align-content: center;
    justify-items: center;
    gap: 4px;
    min-width: 0;
    min-height: 53px;
    padding: 5px 2px 6px;
    border-radius: 10px;
    font-size: 12px;
    line-height: 1;
    white-space: normal;
  }

  .page-nav a i {
    width: 22px;
    height: 22px;
    font-size: 22px;
    transform: none !important;
  }

  .page-nav a span {
    display: block;
    max-width: 100%;
    overflow: hidden;
    color: inherit;
    font-size: 0;
    line-height: 1;
    text-overflow: ellipsis;
  }

  .page-nav a span::after {
    content: attr(data-short);
    font-size: 12px;
    line-height: 1;
  }

  .page-nav a.page-nav__logo {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 46px;
    min-width: 46px;
    height: 46px;
    min-height: 46px;
    margin-left: 0;
    border-radius: 50%;
  }

  .map-panel .leaflet-container {
    touch-action: pan-y;
  }

  .fact,
  .detail {
    min-height: auto;
  }

  .info-inner {
    padding: 44px var(--mobile-page-pad) 56px;
  }

  .webapp-inner {
    padding: 32px var(--mobile-page-pad) 12px;
  }

  .webapp-card {
    gap: 16px;
    padding: 16px;
  }

  .webapp-switch {
    border-radius: 16px;
  }

  .webapp-switch button {
    border-radius: 12px;
  }

  .webapp-phone {
    min-height: 220px;
    border-width: 8px;
    border-radius: 28px;
  }

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

  .section-divider {
    height: 84px;
  }

  .albums-inner {
    padding: 24px var(--mobile-page-pad) 56px;
  }

  .routes-inner {
    padding: 24px var(--mobile-page-pad) 56px;
  }

  .routes-grid {
    --routes-pad: var(--mobile-page-pad);
    --route-card-left-peek: clamp(6px, 2vw, 10px);
    --route-card-peek: clamp(34px, 11vw, 48px);
    --route-card-size: calc(100vw - (var(--mobile-page-pad) * 2) - var(--route-card-peek));
    margin: -28px calc(var(--mobile-page-pad) * -1) 0;
    padding: 36px calc(var(--mobile-page-pad) + var(--route-card-peek)) 34px var(--mobile-page-pad);
    scroll-padding-left: calc(var(--mobile-page-pad) + var(--route-card-left-peek));
    scroll-padding-right: var(--mobile-page-pad);
  }

  .route-card {
    --route-enter-y: 12px;
    height: 520px;
    min-height: 0;
  }

  .route-card__surface {
    height: 100%;
    min-height: 0;
  }

  .route-card.route-card-enter .route-card__surface {
    transition:
      opacity 460ms ease-out,
      transform 580ms cubic-bezier(0.16, 1, 0.3, 1);
  }

  .route-card__content {
    --route-card-content-pad: 16px;
    min-height: 0;
    grid-template-rows: auto minmax(0, 1fr) auto;
    gap: 12px;
    padding: var(--route-card-content-pad);
  }

  .route-card b {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .route-card__list {
    min-height: 0;
    grid-template-rows: repeat(2, minmax(0, 1fr));
  }

  .route-card__list li {
    min-height: 0;
    overflow: hidden;
    align-content: center;
    padding: 11px 12px;
  }

  .route-card__list span {
    display: -webkit-box;
    overflow: hidden;
    white-space: normal;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }

  .route-modal {
    height: 100vh;
    height: 100dvh;
    padding: 12px;
  }

  .route-modal__panel {
    max-height: calc(100vh - 24px);
    max-height: calc(100dvh - 24px);
  }

  .route-modal__header {
    padding: 18px;
  }

  .route-modal__body {
    grid-template-columns: 1fr;
    align-items: stretch;
    gap: 16px;
    padding: 18px;
    overflow: auto;
  }

  .news-modal {
    height: 100vh;
    height: 100dvh;
    padding: 0;
    place-items: stretch;
  }

  .news-modal__panel {
    width: 100%;
    height: 100vh;
    height: 100dvh;
    max-height: none;
    border-radius: 0;
  }

  .news-modal__header {
    z-index: 2;
    align-items: flex-start;
    gap: 12px;
    padding: max(14px, env(safe-area-inset-top)) 16px 14px;
    background: #ffffff;
  }

  .news-modal__body {
    display: block;
    grid-template-columns: 1fr;
    align-content: start;
    min-height: 0;
    padding: 14px 16px max(22px, env(safe-area-inset-bottom));
    overflow: auto;
    -webkit-overflow-scrolling: touch;
  }

  .news-modal__media {
    position: static;
    top: auto;
    aspect-ratio: 16 / 9;
    max-height: 190px;
    margin-bottom: 14px;
    border-radius: 16px;
  }

  .news-modal__kicker {
    margin-bottom: 5px;
    font-size: 11px;
  }

  .news-modal__title {
    font-size: clamp(22px, 6.2vw, 28px);
    line-height: 1.04;
  }

  .news-modal__close {
    width: 38px;
    height: 38px;
    margin-top: 0;
  }

  .news-modal__text {
    gap: 12px;
    font-size: 16px;
    line-height: 1.58;
  }

  .route-modal__map {
    aspect-ratio: auto;
    min-height: 260px;
    max-height: none;
  }

  .route-map-viewer__stage {
    padding: max(70px, env(safe-area-inset-top)) 12px max(18px, env(safe-area-inset-bottom));
  }

  .route-map-viewer__stage img {
    width: max(980px, 235vw);
    border-radius: 8px;
  }

  .route-modal__info {
    max-height: none;
    overflow: visible;
    padding-right: 0;
  }

  .music-inner {
    padding: 20px var(--mobile-page-pad) 44px;
  }

  .music-shell {
    --music-player-radius: 22px;
    grid-template-columns: 104px minmax(0, 1fr);
    grid-template-areas:
      "visual now"
      "controls controls"
      "timeline timeline"
      "playlist playlist";
    gap: 12px;
    padding: 12px;
  }

  .music-visual {
    height: 104px;
    min-height: 104px;
    align-self: stretch;
  }

  .music-now {
    align-self: center;
    padding: 0;
  }

  .music-now__kicker {
    margin-bottom: 6px;
    font-size: 10px;
  }

  .music-now h3 {
    font-size: 24px;
    line-height: 1.04;
    white-space: normal;
  }

  .music-now p:last-child {
    display: -webkit-box;
    margin-top: 6px;
    overflow: hidden;
    font-size: 14px;
    line-height: 1.28;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }

  .music-controls {
    justify-content: center;
    gap: 10px;
    padding: 0;
  }

  .music-play {
    width: 52px;
    height: 52px;
  }

  .music-play i {
    width: 24px;
    height: 24px;
    font-size: 24px;
  }

  .music-skip {
    width: 38px;
    height: 38px;
  }

  .music-timeline {
    gap: 8px;
    padding: 0;
  }

  .music-playlist {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .music-photo {
    padding: 14px 0 8px;
  }

  .music-photo img {
    height: auto;
    aspect-ratio: 4 / 3;
    border-radius: 18px;
  }

  .music-track {
    min-height: 60px;
    gap: 9px;
    padding: 9px 10px;
    border-radius: 16px;
  }

  .music-track__icon {
    width: 34px;
    height: 34px;
  }

  .music-track__icon i {
    right: -2px;
    bottom: -2px;
    width: 17px;
    height: 17px;
    font-size: 9px;
  }

  .music-track b {
    font-size: 14px;
  }

  .music-track small {
    font-size: 12px;
  }

  .music-track__duration {
    padding: 4px 7px;
    font-size: 11px;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
    padding: 24px var(--mobile-page-pad);
  }
}

@media (max-width: 460px) {
  .hero-medal {
    top: 20px;
    right: 18px;
    width: 112px;
  }

  .hero.is-ribbon-hidden .hero-medal {
    top: -18px;
  }

  .brand span {
    font-size: 16px;
  }

  .brand img {
    width: 40px;
    height: 40px;
  }

  .fact,
  .detail {
    padding: 18px;
  }

  .music-shell {
    grid-template-columns: 86px minmax(0, 1fr);
    gap: 10px;
    padding: 10px;
  }

  .music-visual {
    height: 86px;
    min-height: 86px;
  }

  .music-now__kicker {
    display: none;
  }

  .music-now h3 {
    font-size: 21px;
  }

  .music-now p:last-child {
    font-size: 13px;
    -webkit-line-clamp: 2;
  }

  .music-play {
    width: 48px;
    height: 48px;
  }

  .music-skip {
    width: 36px;
    height: 36px;
  }

  .music-track {
    min-height: 56px;
    padding: 8px 10px;
  }

  .music-track__duration {
    padding: 4px 6px;
  }

}

.routes-grid {
  --route-card-size: min(860px, calc(100vw - var(--routes-pad) - 96px));
  padding-right: calc(100vw - var(--routes-pad) - var(--route-card-size));
}

.route-card {
  height: 424px;
  min-height: 424px;
}

.route-card__surface {
  display: grid;
  grid-template-columns: 178px minmax(0, 1fr);
  grid-template-rows: 1fr;
  height: 100%;
  border-radius: var(--layer-radius);
  background: #ffffff;
  cursor: pointer;
  box-shadow: 0 22px 58px rgba(31, 35, 41, 0.14);
  transform-origin: center;
}

.route-card__surface::before {
  position: absolute;
  inset: 0;
  z-index: 4;
  background: linear-gradient(115deg, transparent 0 34%, rgba(255, 255, 255, 0.36) 48%, transparent 62% 100%);
  content: "";
  opacity: 0;
  pointer-events: none;
  transform: translateX(-36%);
  transition: opacity 220ms ease, transform 520ms ease;
}

.route-card__surface:focus-visible {
  outline: 4px solid rgba(255, 255, 255, 0.72);
  outline-offset: 4px;
}

.route-card__rail {
  position: relative;
  display: grid;
  align-content: space-between;
  gap: 18px;
  min-width: 0;
  padding: 24px 24px 68px;
  background: var(--route-pass-color, var(--route-accent));
  color: #ffffff;
  transition: background 220ms ease;
}

.route-card:nth-child(1) {
  --route-pass-color: #cf137d;
  --route-pass-color-hover: #b80f70;
}

.route-card:nth-child(2) {
  --route-pass-color: #1fa6cd;
  --route-pass-color-hover: #178fb2;
}

.route-card:nth-child(3) {
  --route-pass-color: #78b86f;
  --route-pass-color-hover: #5fa355;
}

.route-card:nth-child(4) {
  --route-pass-color: #ff8700;
  --route-pass-color-hover: #e46f00;
}

.route-card__rail-label,
.route-card__rail-date {
  display: block;
  color: rgba(255, 255, 255, 0.86);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  line-height: 1.35;
  text-transform: uppercase;
}

.route-card__rail strong {
  display: block;
  color: #ffffff;
  font-size: clamp(58px, 7vw, 82px);
  font-weight: 900;
  line-height: 0.86;
}

.route-card__body {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(280px, 0.92fr);
  min-width: 0;
  min-height: 0;
}

.route-card__media {
  aspect-ratio: auto;
  min-height: 0;
  border-bottom: 0;
  border-right: 1px solid rgba(31, 35, 41, 0.09);
  background: #edf4ea;
}

.route-card__media img {
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
  object-fit: cover;
  transition: filter 240ms ease, transform 320ms ease;
}

.route-card__past-overlay {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transform: scale(0.96);
  transition: opacity 220ms ease, transform 260ms ease;
}

.route-card__past-overlay {
  --past-overlay-bg: rgba(31, 35, 41, 0.76);
}

.route-card__past-overlay::before {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 164px;
  height: 116px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 22px;
  background: var(--past-overlay-bg);
  box-shadow: 0 18px 38px rgba(31, 35, 41, 0.24);
  content: "";
  transform: translate3d(-50%, -50%, 0);
  backdrop-filter: blur(10px);
}

.route-card__past-icon,
.route-card__past-label {
  position: relative;
  z-index: 1;
}

.route-card__past-icon {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  color: #ffffff;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.16);
}

.route-card__past-icon i {
  display: grid;
  width: 25px;
  height: 25px;
  place-items: center;
  font-size: 25px;
  line-height: 1;
}

.route-card__past-label {
  color: #ffffff;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.07em;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}

.route-card.is-next .route-card__rail::after {
  display: none;
}

.route-card.is-next .route-card__media::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 16px;
  border: 0;
  border-radius: 0;
  background: rgba(31, 35, 41, 0.76);
  color: #ffffff;
  content: "Eerstvolgend";
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  box-shadow: none;
  pointer-events: none;
}

.route-card.is-next.is-today .route-card__media::after {
  content: "Route van vandaag";
}

.route-card.is-past:not(.is-next) .route-card__rail::after {
  display: none;
}

.route-card__countdown {
  position: static;
  justify-self: start;
  max-width: 100%;
  min-height: 34px;
  padding: 7px 11px;
  background: rgba(255, 255, 255, 0.18);
  color: #ffffff;
  box-shadow: none;
  backdrop-filter: none;
}

.route-card__countdown.is-done {
  background: rgba(255, 255, 255, 0.18);
  color: #ffffff;
}

.route-card:hover .route-card__countdown:not(.is-done),
.route-card:hover .route-card__countdown.is-done {
  background: rgba(255, 255, 255, 0.18);
  color: #ffffff;
  box-shadow: none;
}

.route-card:hover .route-card__list li {
  border-color: rgba(31, 35, 41, 0.10);
  background: rgba(255, 255, 255, 0.82);
}

.route-card__content {
  --route-card-content-pad: 22px;
  align-content: stretch;
  grid-template-rows: auto auto minmax(0, 1fr) auto;
  gap: 12px;
  min-width: 0;
  min-height: 0;
  padding: var(--route-card-content-pad);
  background: #fbfcfa;
}

.route-card__content::before {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 30px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(207, 19, 125, 0.09);
  color: var(--route-accent);
  content: "5 kilometer";
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.route-card b {
  font-size: clamp(29px, 2.5vw, 38px);
  line-height: 1;
}

.route-card__list {
  align-content: start;
  gap: 10px;
  min-height: 0;
  overflow: hidden;
}

.route-card__list li {
  gap: 7px;
  min-height: 78px;
  padding: 12px 14px;
  overflow: hidden;
  border: 1px solid rgba(31, 35, 41, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.74);
  font-size: 14px;
  line-height: 1.35;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.82);
}

.route-card__list strong {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
}

.route-card__list strong::before {
  display: grid;
  width: 18px;
  height: 18px;
  place-items: center;
  color: var(--route-accent);
  content: "\eca9";
  font-family: uicons-thin-rounded;
  font-size: 18px;
  font-style: normal;
  font-weight: normal;
  line-height: 1;
}

.route-card__list li:nth-child(2) strong::before {
  content: "\f131";
}

.route-card__list span {
  display: -webkit-box;
  overflow: hidden;
  white-space: normal;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.route-card__button {
  width: auto;
  min-height: 48px;
  align-self: end;
  margin: 0;
  padding: 0 0 0 2px;
  border-top: 1px solid rgba(31, 35, 41, 0.10);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.route-card__button-arrow {
  width: 44px;
  height: 44px;
  box-shadow: 0 12px 26px rgba(207, 19, 125, 0.24);
  transition: box-shadow 220ms ease, transform 220ms ease;
}

@media (hover: hover) and (pointer: fine) {
  .route-card:hover .route-card__surface {
    background: #ffffff;
    box-shadow: 0 30px 74px rgba(31, 35, 41, 0.22), 0 0 0 2px rgba(255, 255, 255, 0.58);
    transform: translateY(-4px);
  }

  .route-card:hover .route-card__surface::before {
    opacity: 1;
    transform: translateX(44%);
  }

  .route-card:hover .route-card__rail {
    background: var(--route-pass-color-hover, var(--route-pass-color, var(--route-accent)));
  }

  .route-card:hover .route-card__media img {
    filter: saturate(1.12) contrast(1.03);
    transform: scale(1.035);
  }

  .route-card:hover .route-card__button {
    border-color: rgba(31, 35, 41, 0.14);
    background: transparent;
    box-shadow: none;
  }

  .route-card:hover .route-card__button-arrow {
    box-shadow: 0 16px 34px rgba(207, 19, 125, 0.34);
    transform: scale(1.06);
  }
}

.route-card.is-past:not(.is-next) .route-card__rail {
  background:
    linear-gradient(180deg, rgba(118, 127, 139, 0.94), rgba(96, 110, 123, 0.92)),
    #657080;
}

.route-card.is-past:not(.is-next) .route-card__media img {
  filter: saturate(0.72) contrast(0.96);
}

.route-card.is-past:not(.is-next) .route-card__media::before {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    radial-gradient(circle at 50% 44%, rgba(31, 35, 41, 0.10), transparent 42%),
    linear-gradient(180deg, rgba(31, 35, 41, 0.20), rgba(31, 35, 41, 0.34));
  content: "";
  pointer-events: none;
}

.route-card.is-past:not(.is-next) .route-card__past-overlay {
  opacity: 1;
  transform: scale(1);
}

.route-card.is-past:not(.is-next) .route-card__content::before {
  background: rgba(31, 35, 41, 0.07);
  color: #657080;
  content: "Route is geweest";
}

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

.album-card {
  min-height: 360px;
  align-content: stretch;
  border-radius: var(--layer-radius);
  background: #ffffff;
  color: #ffffff;
  box-shadow: 0 22px 58px rgba(31, 35, 41, 0.12);
}

.album-card::before {
  inset: 0 0 0 360px;
  background:
    linear-gradient(180deg, rgba(31, 35, 41, 0.02), rgba(31, 35, 41, 0.14)),
    var(--album-cover, linear-gradient(145deg, rgba(207, 19, 125, 0.18), rgba(31, 166, 205, 0.16)));
  background-position: center;
  background-size: cover;
}

.album-card.is-album-even::before {
  inset: 0 360px 0 0;
}

.album-card.is-empty::before {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.48)),
    linear-gradient(145deg, var(--album-accent-soft), var(--album-accent-glow));
}

.album-content {
  width: min(360px, 42%);
  min-height: 360px;
  align-content: center;
  padding: 26px;
  background: var(--album-accent);
  color: #ffffff;
}

.album-card.is-album-even .album-content {
  margin-left: auto;
}

.album-kicker,
.album-status,
.is-empty .album-kicker,
.is-empty .album-status,
.is-empty .album-status.is-today {
  background: rgba(255, 255, 255, 0.18);
  color: #ffffff;
}

.album-status.is-online {
  background: rgba(255, 255, 255, 0.22);
  color: #ffffff;
}

.album-card h3 {
  font-size: clamp(32px, 3.8vw, 52px);
  line-height: 0.95;
}

.album-card p {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 800;
}

.album-meta {
  background: rgba(255, 255, 255, 0.18);
  color: #ffffff;
}

.album-empty-brand {
  top: 50%;
  right: calc(((100% - 360px) / 2) - 32px);
  z-index: 1;
  transform: translateY(-50%);
  max-width: 170px;
}

.album-card.is-album-even .album-empty-brand {
  right: auto;
  left: calc(((100% - 360px) / 2) - 32px);
}

@media (hover: hover) and (pointer: fine) {
  .album-card:hover {
    transform: translateY(-3px);
    border-color: rgba(31, 35, 41, 0.12);
    box-shadow: 0 28px 68px rgba(31, 35, 41, 0.15);
  }

  .album-card:hover .album-content {
    transform: none;
  }

  .album-card:hover::before {
    filter: saturate(1.05) contrast(1.02);
    transform: scale(1.025);
  }

  .album-card.is-empty:hover .album-empty-brand {
    transform: translateY(-50%) scale(1.03);
  }
}

@media (max-width: 780px) {
  .routes-grid {
    --route-card-left-peek: clamp(6px, 2vw, 10px);
    --route-card-peek: clamp(34px, 11vw, 48px);
    --route-card-size: calc(100vw - (var(--mobile-page-pad) * 2) - var(--route-card-peek));
    padding-right: calc(var(--mobile-page-pad) + var(--route-card-peek));
  }

  .route-card {
    height: auto;
    min-height: 0;
  }

  .route-card__surface {
    grid-template-columns: 1fr;
    grid-template-rows: auto 1fr;
    height: auto;
    min-height: inherit;
    border-radius: 22px;
  }

  .route-card__rail {
    position: relative;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    align-content: center;
    gap: 10px;
    min-height: 58px;
    padding: 10px 16px;
  }

  .route-card__rail-label {
    display: none;
  }

  .route-card__rail strong {
    font-size: 40px;
  }

  .route-card__rail-date {
    min-width: 0;
    font-size: 12px;
  }

  .route-card__countdown {
    justify-self: end;
    max-width: 116px;
  }

  .route-card.is-next .route-card__rail::after {
    display: none;
  }

  .route-card.is-past:not(.is-next) .route-card__rail::after {
    display: none;
  }

  .route-card.is-next .route-card__media::after {
    min-height: 34px;
    padding: 0 14px;
    font-size: 10px;
  }

  .route-card__past-overlay {
    align-items: center;
    flex-direction: column;
    justify-content: center;
    gap: 8px;
    padding: 16px;
  }

  .route-card__past-overlay::before {
    top: 50%;
    left: 50%;
    width: 154px;
    height: 104px;
    border-radius: 20px;
    transform: translate3d(-50%, -50%, 0);
  }

  .route-card__past-icon {
    width: 42px;
    height: 42px;
    margin: 0;
  }

  .route-card__past-icon i {
    width: 23px;
    height: 23px;
    font-size: 23px;
  }

  .route-card__past-label {
    display: inline-flex;
    font-size: 10px;
  }

  .route-card__body {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    align-content: start;
  }

  .route-card__media {
    height: 200px;
    min-height: 200px;
    border-right: 0;
    border-bottom: 1px solid rgba(31, 35, 41, 0.09);
  }

  .route-card__content {
    --route-card-content-pad: 18px;
    align-content: start;
    min-height: 0;
    grid-template-rows: auto auto auto;
    gap: 12px;
  }

  .route-card b {
    white-space: normal;
  }

  .route-card__list {
    display: none;
    grid-template-rows: none;
  }

  .route-card__list li {
    min-height: 82px;
    overflow: hidden;
    padding: 13px 14px;
  }

  .route-card__list li:nth-child(1),
  .route-card__list li:nth-child(2) {
    display: none;
  }

  .route-card__list span {
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 2;
  }

  .album-card {
    grid-template-columns: 1fr;
    grid-template-rows: 190px auto;
    align-items: stretch;
    min-height: 0;
    padding-bottom: 0;
    border-radius: 22px;
    overflow: hidden;
    background: var(--album-accent);
  }

  .album-card::before,
  .album-card.is-album-even::before {
    display: none;
  }

  .album-thumb,
  .album-empty-brand,
  .album-card.is-album-even .album-empty-brand {
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
    display: grid;
    width: 100%;
    height: 190px;
    min-height: 190px;
    border-radius: 0;
    transform: none;
  }

  .album-empty-brand,
  .album-card.is-album-even .album-empty-brand {
    align-content: center;
    gap: 10px;
    max-width: none;
    padding: 42px 48px 36px;
    background:
      linear-gradient(145deg, rgba(255, 255, 255, 0.86), rgba(255, 255, 255, 0.62)),
      linear-gradient(145deg, var(--album-accent-soft), var(--album-accent-glow));
  }

  .album-empty-logo {
    width: 86px;
    height: 86px;
  }

  .album-content,
  .album-card.is-album-even .album-content {
    width: 100%;
    min-height: 0;
    margin-left: 0;
    padding: 18px;
    background: var(--album-accent);
    color: #ffffff;
  }

  .album-card h3 {
    font-size: 28px;
  }

  .album-card p {
    font-size: 14px;
  }

  .album-photo-panel__inner {
    border-radius: 22px;
  }

  .album-photo-panel__head {
    align-items: flex-start;
    flex-direction: column;
  }

  .album-photo-grid {
    column-count: 2;
    column-gap: 8px;
  }

  .album-photo-grid a {
    margin-bottom: 8px;
    border-radius: 14px;
  }

  .album-photo-credit {
    margin-top: 18px;
    font-size: 13px;
  }

  .album-photo-credit img {
    width: 30px;
    height: 30px;
  }

  .photo-viewer {
    --viewer-thumb-size: 58px;
    --viewer-thumb-bottom: max(12px, env(safe-area-inset-bottom));
    --viewer-photo-thumb-gap: 10px;
    --viewer-photo-top-gap: 10px;
  }

  .photo-viewer__stage {
    padding: 0;
  }

  .photo-viewer__stage img {
    width: auto !important;
    height: auto !important;
    max-width: 100vw !important;
    max-height: calc(100vh - var(--viewer-stage-bottom) - var(--viewer-photo-top-gap)) !important;
    max-height: calc(100dvh - var(--viewer-stage-bottom) - var(--viewer-photo-top-gap)) !important;
    border-radius: 0;
  }

  .photo-viewer.is-zoomed .photo-viewer__stage img {
    transform: none;
  }

  .photo-viewer__thumbs {
    width: min(360px, calc(100vw - 24px));
    height: var(--viewer-thumb-size);
    bottom: var(--viewer-thumb-bottom);
  }

  .photo-viewer__thumb-track {
    gap: 6px;
  }

  .photo-viewer__thumb {
    border-radius: 7px;
  }

  .photo-viewer[data-photo-motion="next"] .photo-viewer__stage img {
    animation-duration: 210ms;
  }

  .photo-viewer[data-photo-motion="prev"] .photo-viewer__stage img {
    animation-duration: 210ms;
  }

  .photo-viewer[data-photo-motion="next"] .photo-viewer__stage img {
    animation-name: photo-viewer-mobile-next;
  }

  .photo-viewer[data-photo-motion="prev"] .photo-viewer__stage img {
    animation-name: photo-viewer-mobile-prev;
  }

  .photo-viewer__arrow {
    width: 44px;
    height: 44px;
  }

  .photo-viewer__arrow {
    top: auto;
    bottom: calc(var(--viewer-stage-bottom) + 4px);
    transform: none;
  }

  .album-card.is-empty:hover .album-empty-brand {
    transform: none;
  }
}

@media (max-width: 780px) {
  .site-fixed-header,
  .page-nav {
    position: fixed !important;
    top: 0 !important;
    right: 0 !important;
    left: 0 !important;
    transform: none !important;
    translate: none !important;
  }

  .site-fixed-header {
    z-index: 9000 !important;
  }

  .page-nav {
    z-index: 9001 !important;
  }
}
