@font-face {
  font-display: swap;
  font-family: Anton;
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/anton/Anton-Regular.ttf") format("truetype");
}

:root {
  /* Semantic design tokens. */
  --color-background: #f7f6f2;
  --color-surface: #fff;
  --color-text: #101820;
  --color-text-muted: #50575d;
  --color-accent: #397c98;
  --color-accent-dark: #285e75;
  --color-accent-light: #dceaf0;
  --color-border: rgb(16 24 32 / 18%);
  --color-focus: #397c98;
  --font-sans: "Inter", ui-sans-serif, -apple-system, "BlinkMacSystemFont", "Segoe UI", "Helvetica", "Arial", sans-serif;
  --font-display: var(--font-sans);
  --font-handwritten: "Segoe Print", "Bradley Hand", "Snell Roundhand", cursive;
  --font-size-body: clamp(1rem, 0.98rem + 0.08vw, 1.0625rem);
  --font-size-display: clamp(3.3rem, 7vw, 7.5rem);
  --font-size-h1: clamp(2.75rem, 5.6vw, 6rem);
  --font-size-h2: clamp(2.3rem, 4.5vw, 5rem);
  --font-size-h3: clamp(1.5rem, 2.5vw, 2.5rem);
  --line-height-body: 1.6;
  --line-height-heading: 0.98;
  --letter-spacing-heading: -0.045em;
  --space-xs: clamp(0.5rem, 0.46rem + 0.16vw, 0.625rem);
  --space-sm: clamp(0.75rem, 0.67rem + 0.32vw, 1rem);
  --space-md: clamp(1.25rem, 1.17rem + 0.32vw, 1.5rem);
  --space-lg: clamp(2rem, 1.68rem + 1.27vw, 3rem);
  --space-xl: clamp(3.5rem, 3.02rem + 1.91vw, 5rem);
  --space-2xl: clamp(5rem, 4.2rem + 3.18vw, 7.5rem);
  --space-section: clamp(4rem, 2.49rem + 6.03vw, 8.75rem);
  --layout-gutter: clamp(1.25rem, 0.17rem + 4.81vw, 4.5rem);
  --container-max: 90rem;
  --content-measure: 65ch;
  --radius-small: 0.25rem;
  --transition-fast: 180ms;
  --transition-base: 260ms;
  --ease-standard: cubic-bezier(0.2, 0.75, 0.25, 1);

  /* Compatibility aliases for existing components during the staged redesign. */
  --alpt-ink: var(--color-text);
  --alpt-forest: var(--color-accent-dark);
  --alpt-pine: var(--color-accent-dark);
  --alpt-lake: #78a6b9;
  --alpt-coral: var(--color-accent);
  --alpt-coral-dark: var(--color-accent-dark);
  --alpt-cream: var(--color-accent-light);
  --alpt-snow: var(--color-background);
  --alpt-ice: var(--color-accent-light);
  --alpt-white: var(--color-surface);
  --alpt-paper: #fffaf1;
  --alpt-sage: #edf2ea;
  --alpt-sand: #f3ebdf;
  --alpt-mist: #edf1f2;
  --alpt-dusk: #283149;
  --alpt-muted: var(--color-text-muted);
  --alpt-canvas: var(--color-background);
  --alpt-surface-soft: #f5f4ef;
  --alpt-surface-cool: #f1f3f5;
  --alpt-border: var(--color-border);
  --alpt-border-light: rgb(255 255 255 / 18%);
  --alpt-shadow-sm: 0 0.35rem 1.25rem rgb(24 35 48 / 5%);
  --alpt-shadow-lg: 0 1.25rem 3.5rem rgb(24 35 48 / 10%);
  --alpt-radius-sm: var(--radius-small);
  --alpt-radius: 0.65rem;
  --alpt-radius-lg: 1rem;
  --alpt-gutter: var(--layout-gutter);
  --alpt-wide: var(--container-max);
  --alpt-measure: var(--content-measure);
  --alpt-space-xs: var(--space-xs);
  --alpt-space-sm: var(--space-sm);
  --alpt-space-md: var(--space-md);
  --alpt-space-lg: var(--space-lg);
  --alpt-space-xl: var(--space-xl);
  --alpt-ease-out: var(--ease-standard);
  --alpt-duration-fast: var(--transition-fast);
  --alpt-duration: var(--transition-base);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--color-background);
  color: var(--color-text);
  font-family: var(--font-sans);
  font-size: var(--font-size-body);
  line-height: var(--line-height-body);
  margin: 0;
  overflow-wrap: break-word;
  text-rendering: optimizelegibility;
}

.wp-site-blocks > * {
  margin-block-start: 0;
}

img {
  display: block;
  height: auto;
  max-width: 100%;
}

a {
  color: var(--color-accent-dark);
  text-decoration-line: underline;
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.2em;
  transition: color var(--transition-fast) var(--ease-standard), text-decoration-thickness var(--transition-fast) var(--ease-standard);
}

a:hover {
  color: var(--color-accent);
  text-decoration-thickness: 0.13em;
}

:where(a, button, input, textarea, select, summary, [tabindex]):focus-visible {
  box-shadow: 0 0 0 6px var(--color-surface);
  outline: 3px solid var(--color-focus);
  outline-offset: 4px;
}

::selection {
  background: var(--color-accent-light);
  color: var(--color-text);
}

.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute !important;
  width: 1px;
  word-wrap: normal !important;
}

.screen-reader-text:focus,
.skip-link:focus {
  background: var(--alpt-white);
  clip: auto !important;
  clip-path: none;
  color: var(--alpt-forest);
  display: block;
  font-size: 1rem;
  font-weight: 750;
  height: auto;
  left: 1rem;
  padding: 0.8rem 1rem;
  top: 1rem;
  width: auto;
  z-index: 100000;
}

h1,
h2,
h3,
h4 {
  color: var(--color-text);
  font-family: var(--font-display);
  font-weight: 800;
  hyphens: manual;
  letter-spacing: var(--letter-spacing-heading);
  line-height: var(--line-height-heading);
  overflow-wrap: normal;
  text-wrap: balance;
  word-break: normal;
}

h1 {
  font-size: var(--font-size-h1);
}

h2 {
  font-size: var(--font-size-h2);
}

h3 {
  font-size: var(--font-size-h3);
}

p {
  text-wrap: pretty;
}

.container {
  margin-inline: auto;
  padding-inline: var(--layout-gutter);
  width: min(100%, calc(var(--container-max) + (2 * var(--layout-gutter))));
}

.section {
  margin: 0;
  padding-block: var(--space-section);
  position: relative;
}

.section--full {
  max-width: none;
  width: 100%;
}

.eyebrow {
  align-items: center;
  color: var(--color-accent-dark);
  display: flex;
  font-size: 0.75rem;
  font-weight: 750;
  gap: var(--space-sm);
  letter-spacing: 0.14em;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow::before {
  background: currentcolor;
  content: "";
  flex: 0 0 2rem;
  height: 2px;
}

.display-heading {
  font-family: var(--font-display);
  font-size: var(--font-size-display);
  font-weight: 850;
  letter-spacing: -0.055em;
  line-height: 0.92;
  text-wrap: balance;
}

.handwritten-accent {
  color: var(--color-accent-dark);
  font-family: var(--font-handwritten);
  font-size: clamp(1.15rem, 1rem + 0.75vw, 1.75rem);
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.25;
}

.button,
.wp-element-button,
.wp-block-button__link,
.alpt-form button {
  align-items: center;
  background: var(--color-text);
  border: 2px solid var(--color-text);
  border-radius: var(--radius-small);
  color: var(--color-surface);
  cursor: pointer;
  display: inline-flex;
  font: inherit;
  font-size: 0.875rem;
  font-weight: 700;
  gap: 0.65em;
  justify-content: center;
  letter-spacing: 0.045em;
  min-height: 3rem;
  padding: 0.7rem 1.25rem;
  text-decoration: none;
  text-transform: uppercase;
  transition: background-color var(--transition-fast) var(--ease-standard), border-color var(--transition-fast) var(--ease-standard), color var(--transition-fast) var(--ease-standard), transform var(--transition-fast) var(--ease-standard);
}

.button:hover,
.wp-element-button:hover,
.wp-block-button__link:hover,
.alpt-form button:hover {
  background: var(--color-accent-dark);
  border-color: var(--color-accent-dark);
  color: var(--color-surface);
  transform: translateY(-1px);
}

.button:active,
.wp-element-button:active,
.wp-block-button__link:active,
.alpt-form button:active {
  transform: translateY(0);
}

.button:disabled,
.button[aria-disabled="true"],
.wp-element-button:disabled,
.wp-element-button[aria-disabled="true"],
.wp-block-button__link[aria-disabled="true"],
.alpt-form button:disabled {
  cursor: not-allowed;
  opacity: 0.48;
  pointer-events: none;
  transform: none;
}

.button--primary {
  background: var(--color-text);
  border-color: var(--color-text);
  color: var(--color-surface);
}

.button--secondary,
.wp-block-button.is-style-outline .wp-block-button__link {
  background: transparent;
  border-color: var(--color-accent-dark);
  color: var(--color-accent-dark);
}

.button--secondary:hover,
.wp-block-button.is-style-outline .wp-block-button__link:hover {
  background: var(--color-accent-light);
  border-color: var(--color-accent-dark);
  color: var(--color-accent-dark);
}

.text-link,
.alpt-text-link {
  align-items: center;
  color: var(--color-accent-dark);
  display: inline-flex;
  font-weight: 700;
  gap: 0.5rem;
  text-decoration-line: underline;
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.24em;
}

.text-link::after {
  content: "\2192";
  transition: transform var(--transition-fast) var(--ease-standard);
}

.alpt-text-link span {
  transition: transform var(--transition-fast) var(--ease-standard);
}

.alpt-text-link:hover span {
  transform: translateX(0.25rem);
}

.text-link:hover::after {
  transform: translateX(0.25rem);
}

/* Header */
.site-header {
  background: var(--color-surface);
  border-bottom: 1px solid var(--color-border);
  position: static;
  transition:
    background-color var(--transition-base) var(--ease-standard),
    border-color var(--transition-base) var(--ease-standard),
    box-shadow var(--transition-base) var(--ease-standard);
}

header.wp-block-template-part {
  position: sticky;
  top: 0;
  z-index: 50;
}

header.wp-block-template-part.is-scrolled .site-header {
  box-shadow: var(--alpt-shadow-sm);
}

.site-header__accent {
  display: none;
}

.admin-bar header.wp-block-template-part {
  top: 32px;
}

.site-header__inner {
  align-items: center;
  gap: var(--space-lg);
  margin-block-start: 0;
  min-height: clamp(4.5rem, 4.2rem + 0.6vw, 4.875rem);
  padding-inline: var(--layout-gutter);
  transition: min-height var(--transition-base) var(--ease-standard);
  width: 100%;
}

.site-header > .site-header__inner {
  margin-inline: 0;
  max-width: none;
}

header.wp-block-template-part.is-scrolled .site-header__inner {
  min-height: 4.5rem;
}

.site-brand {
  flex-shrink: 0;
  margin: 0;
}

.site-brand__logo {
  display: block;
  line-height: 0;
  width: clamp(7rem, 7.5vw, 8rem);
}

.site-brand__logo svg {
  display: block;
  height: auto;
  filter: invert(1);
  width: 100%;
}

.site-header__actions {
  align-items: center;
  gap: clamp(0.55rem, 0.8vw, 0.85rem);
  margin-left: auto;
  min-width: 0;
}

.site-navigation .wp-block-navigation__container {
  column-gap: clamp(0.6rem, 1vw, 1rem);
}

.site-navigation .wp-block-navigation-item > a {
  color: var(--color-text);
  font-size: clamp(0.75rem, 0.7rem + 0.12vw, 0.825rem);
  font-weight: 650;
  font-kerning: normal;
  letter-spacing: 0.015em;
  line-height: 1.1;
  padding: 1rem 0.12rem;
  position: relative;
  text-decoration: none;
  transition: color var(--transition-fast) var(--ease-standard);
}

.site-navigation .wp-block-navigation-item > a::after {
  background: var(--color-accent);
  bottom: 0.55rem;
  content: "";
  height: 2px;
  left: 0;
  position: absolute;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform var(--transition-fast) var(--ease-standard);
  width: 100%;
}

.site-navigation .wp-block-navigation-item > a:hover::after,
.site-navigation .current-menu-item > a::after,
.site-navigation .current-menu-ancestor > a::after,
.site-navigation .is-current > a::after {
  transform: scaleX(1);
}

.site-navigation .wp-block-navigation-item > a:hover,
.site-navigation .is-current > a {
  color: var(--color-accent-dark);
}

.site-header__donate {
  flex: 0 0 auto;
  white-space: nowrap;
}

.site-navigation .site-header__donate > a.wp-block-navigation-item__content {
  align-items: center;
  background: var(--color-text);
  border: 2px solid var(--color-text);
  border-radius: var(--radius-small);
  color: var(--color-surface);
  display: inline-flex;
  font-size: 0.75rem;
  font-weight: 700;
  justify-content: center;
  letter-spacing: 0.045em;
  min-height: 2.75rem;
  padding: 0.65rem 1rem;
  text-transform: uppercase;
  transition: background-color var(--transition-fast) var(--ease-standard), border-color var(--transition-fast) var(--ease-standard), color var(--transition-fast) var(--ease-standard), transform var(--transition-fast) var(--ease-standard);
}

.site-navigation .site-header__donate > a.wp-block-navigation-item__content::after {
  display: none;
}

.site-navigation .site-header__donate > a.wp-block-navigation-item__content:hover {
  background: var(--color-accent-dark);
  border-color: var(--color-accent-dark);
  color: var(--color-surface);
  transform: translateY(-1px);
}

.site-navigation .site-header__donate.current-menu-item > a.wp-block-navigation-item__content,
.site-navigation .site-header__donate.current-menu-ancestor > a.wp-block-navigation-item__content,
.site-navigation .site-header__donate.is-current > a.wp-block-navigation-item__content {
  box-shadow: inset 0 -3px var(--color-accent);
}

.wp-block-navigation__responsive-container-open,
.wp-block-navigation__responsive-container-close {
  align-items: center;
  color: var(--color-text);
  justify-content: center;
  min-height: 2.75rem;
  min-width: 2.75rem;
}

.wp-block-navigation__responsive-container-open svg,
.wp-block-navigation__responsive-container-close svg {
  height: 1.5rem;
  width: 1.5rem;
}

.alpt-language-switcher {
  align-items: center;
  display: flex;
  flex-wrap: nowrap;
  font-size: 0.72rem;
  font-weight: 700;
  gap: 0.15rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.alpt-language-switcher a,
.alpt-language-switcher span {
  align-items: center;
  border-radius: var(--radius-small);
  display: inline-flex;
  height: 2.5rem;
  justify-content: center;
  min-width: 2.5rem;
  padding: 0.2rem 0.4rem;
  text-decoration: none;
  transition: background-color var(--transition-fast) var(--ease-standard), color var(--transition-fast) var(--ease-standard);
}

.site-header :where(.site-brand__logo, .site-navigation a, .alpt-language-switcher a, .wp-block-navigation__responsive-container-open, .wp-block-navigation__responsive-container-close):focus-visible {
  box-shadow: none;
  outline: 3px solid var(--color-focus);
  outline-offset: 3px;
}

.alpt-language-switcher a {
  color: var(--color-text-muted);
}

.alpt-language-switcher a:hover {
  background: var(--color-accent-light);
  color: var(--color-text);
}

.alpt-language-switcher [aria-current="page"] {
  box-shadow: inset 0 -2px var(--color-accent);
  color: var(--color-text);
}

body.home {
  --alpt-home-header-height: clamp(4.5rem, 4.2rem + 0.6vw, 4.875rem);
}

body.home header.wp-block-template-part {
  margin-bottom: calc(-1 * var(--alpt-home-header-height));
}

body.home header.wp-block-template-part:not(.is-scrolled) .site-header {
  background: transparent;
  border-bottom-color: transparent;
}

body.home .site-header__inner {
  min-height: var(--alpt-home-header-height);
}

.alpt-eyebrow {
  align-items: center;
  color: var(--alpt-coral-dark);
  display: flex;
  font-size: 0.75rem !important;
  font-weight: 680;
  gap: 0.7rem;
  letter-spacing: 0.16em;
  margin-bottom: 1.2rem;
  text-transform: uppercase;
}

.alpt-eyebrow::before {
  background: currentcolor;
  border-radius: 999px;
  content: "";
  height: 0.42rem;
  width: 0.42rem;
}

/* Sections and content */
.alpt-section {
  margin: 0;
  padding: clamp(3.25rem, 5vw, 4.75rem) var(--alpt-gutter);
  position: relative;
}

.alpt-section > .alignwide {
  margin-inline: auto;
  max-width: var(--alpt-wide);
}

.alpt-lead {
  color: var(--alpt-ink);
  font-size: clamp(1.08rem, 1.55vw, 1.4rem) !important;
  font-weight: 450;
  letter-spacing: -0.025em;
  line-height: 1.4;
  margin: 0;
  max-width: 39ch;
}

.alpt-grid {
  display: grid;
  gap: clamp(1.4rem, 2.5vw, 2.5rem);
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 18rem), 1fr));
}

.alpt-card {
  background: transparent;
  border: 0;
  border-top: 1px solid var(--alpt-ink);
  border-radius: 0;
  box-shadow: none;
  color: var(--alpt-ink);
  display: flex;
  flex-direction: column;
  min-height: 14.5rem;
  overflow: hidden;
  padding: 1rem 0 0;
  position: relative;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.alpt-card::after {
  display: none;
}

.alpt-card:focus-within,
.alpt-card:hover {
  border-color: var(--alpt-pine);
  box-shadow: none;
  transform: translateY(-0.2rem);
}

.alpt-card__accent {
  background: var(--alpt-coral-dark);
  border-radius: 0;
  display: block;
  height: 0.3rem;
  margin-bottom: clamp(1.25rem, 2vw, 1.75rem);
  width: 2rem;
}

.alpt-card:nth-child(2n) .alpt-card__accent {
  background: var(--alpt-lake);
}

.alpt-card:nth-child(3n) .alpt-card__accent {
  background: var(--alpt-coral);
}

.alpt-card h2,
.alpt-card h3 {
  font-size: clamp(1.2rem, 1.6vw, 1.4rem);
  font-weight: 610;
  line-height: 1.2;
  margin-bottom: 0.8rem;
  margin-top: 0;
}

.alpt-card h2 a,
.alpt-card h3 a {
  color: var(--alpt-ink);
  text-decoration: none;
}

.alpt-card p {
  color: var(--alpt-muted);
  font-size: 0.96rem;
  line-height: 1.5;
}

.alpt-card__meta {
  color: var(--alpt-muted);
  font-size: 0.78rem;
  font-weight: 760;
  letter-spacing: 0.08em;
  margin: 0 0 0.75rem;
  text-transform: uppercase;
}

.alpt-card__link {
  align-items: center;
  color: var(--alpt-forest);
  display: flex;
  font-weight: 630;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 1rem;
  text-decoration: none;
}

.alpt-card__link::after {
  content: "→";
  font-size: 1.35rem;
  transition: transform 180ms ease;
}

.alpt-card__link:hover::after {
  transform: translateX(0.3rem);
}

.alpt-status {
  align-self: flex-start;
  background: var(--alpt-ice);
  border-radius: 999px;
  color: var(--alpt-forest);
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 780;
  padding: 0.3rem 0.7rem;
}

.alpt-actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
  margin-top: 1.6rem;
}

.alpt-story-card {
  max-width: 52rem;
  min-height: 14rem;
}

.alpt-story-card .alpt-card__accent {
  margin-bottom: 1.5rem;
}

.alpt-story-empty {
  align-items: center;
  border-bottom: 1px solid var(--alpt-ink);
  border-top: 1px solid var(--alpt-ink);
  display: grid;
  gap: 1.5rem;
  grid-template-columns: auto 1fr;
  max-width: 52rem;
  padding: clamp(1.25rem, 2vw, 1.75rem) 0;
}

.alpt-story-empty span {
  align-items: center;
  background: var(--alpt-coral);
  display: flex;
  font-size: 1.35rem;
  height: 3rem;
  justify-content: center;
  width: 3rem;
}

.alpt-story-empty p {
  font-size: clamp(1.02rem, 1.45vw, 1.2rem);
  margin: 0;
}

/* Home hero: immersive alpine editorial composition. */
.alpt-editorial-hero {
  background: var(--color-background);
  color: var(--color-text);
  display: grid;
  isolation: isolate;
  margin: 0 !important;
  min-height: clamp(47rem, 88vh, 58rem);
  overflow: hidden;
  position: relative;
}

.alpt-editorial-hero__media,
.alpt-editorial-hero__media img,
.alpt-editorial-hero__veil {
  height: 100%;
  inset: 0;
  position: absolute;
  width: 100%;
}

.alpt-editorial-hero__media {
  margin: 0;
  z-index: 0;
}

.alpt-editorial-hero__media img {
  filter: brightness(1.01) contrast(1.02) saturate(0.98);
  object-fit: cover;
  object-position: 58% 50%;
}

.alpt-editorial-hero__veil {
  background:
    linear-gradient(180deg, rgb(247 246 242 / 8%) 0%, transparent 40%),
    linear-gradient(90deg, rgb(247 246 242 / 95%) 0%, rgb(247 246 242 / 76%) 26%, rgb(247 246 242 / 38%) 42%, rgb(247 246 242 / 8%) 56%, transparent 65%);
  pointer-events: none;
  z-index: 1;
}

.alpt-editorial-hero__inner {
  align-items: center;
  display: grid;
  margin-inline: auto;
  min-height: inherit;
  padding: clamp(4rem, 6vw, 6rem) var(--layout-gutter) clamp(3rem, 4.5vw, 4.5rem);
  position: relative;
  width: min(100%, calc(var(--container-max) + (2 * var(--layout-gutter))));
  z-index: 2;
}

.alpt-editorial-hero__copy {
  max-width: 43rem;
  transform: none;
  width: min(50%, 43rem);
}

.alpt-editorial-hero__kicker {
  color: var(--color-accent-dark);
  font-size: 0.68rem;
  gap: 0.75rem;
  letter-spacing: 0.19em;
  margin: 0 0 clamp(1.35rem, 2vw, 1.75rem);
}

.alpt-editorial-hero__kicker::before {
  flex-basis: 1.55rem;
  height: 1px;
  width: 1.55rem;
}

.alpt-editorial-hero h1 {
  color: var(--color-text);
  font-family: Anton, var(--font-display);
  font-size: clamp(4rem, 7.4vw, 7.4rem);
  font-weight: 400;
  letter-spacing: 0.005em;
  line-height: 0.94;
  margin: 0;
  text-transform: uppercase;
}

.alpt-editorial-hero h1 span {
  display: block;
}

@media (min-width: 783px) {
  html[lang^="it"] body.home .alpt-editorial-hero h1 {
    font-size: clamp(3.75rem, 6.7vw, 6.8rem);
  }
}

.alpt-editorial-hero__accent {
  color: var(--color-accent);
  display: block;
  margin-top: clamp(1.05rem, 1.6vw, 1.35rem);
  width: clamp(4.5rem, 5.5vw, 6.25rem);
}

.alpt-editorial-hero__accent img {
  display: block;
  height: auto;
  width: 100%;
}

.alpt-editorial-hero__intro {
  color: var(--color-text);
  font-size: clamp(1rem, 1.15vw, 1.125rem);
  line-height: 1.58;
  margin: clamp(0.55rem, 0.9vw, 0.85rem) 0 0;
  max-width: 23.75rem;
}

.alpt-editorial-hero__intro span {
  display: block;
}

.alpt-editorial-hero__actions {
  display: flex;
  margin-top: clamp(1.6rem, 2.5vw, 2rem);
}

.alpt-editorial-hero__primary {
  min-height: 3.25rem;
  padding-inline: 1.5rem 1.75rem;
}

.alpt-editorial-hero__primary .alpt-editorial-hero__arrow {
  margin-left: 0.2rem;
}

.alpt-editorial-hero__arrow {
  transition: transform 210ms var(--alpt-ease-out);
}

.alpt-editorial-hero__primary:hover .alpt-editorial-hero__arrow {
  transform: translateX(0.25rem);
}


/* Unified homepage editorial system */
body.home .alpt-home-journey {
  --alpt-home-max: 1380px;
  --alpt-home-columns: repeat(12, minmax(0, 1fr));
  --alpt-home-gap: clamp(1.125rem, 1.5vw, 1.75rem);
  --alpt-home-inline: clamp(1.125rem, 5vw, 6rem);
  --alpt-home-section-space: clamp(7rem, 7.5vw, 9rem);
  --alpt-home-content-space: clamp(4rem, 5vw, 5.75rem);
  --alpt-home-line: rgb(24 35 48 / 22%);

  margin-block-start: 0 !important;
}

body.home .alpt-home-journey > section {
  border-top: 1px solid rgb(24 35 48 / 8%);
  padding: var(--alpt-home-section-space) var(--alpt-home-inline);
}

body.home .alpt-home-journey > section > .alignwide {
  margin-inline: auto;
  max-width: var(--alpt-home-max);
}

body.home .alpt-home-approach {
  background: var(--color-background);
  isolation: isolate;
  overflow: hidden;
  position: relative;
}

body.home .alpt-home-journey > .alpt-home-approach {
  border-top: 0;
  padding-bottom: clamp(4rem, 5vw, 5.5rem);
  padding-top: clamp(4rem, 5vw, 5.5rem);
}

body.home .alpt-home-approach__inner {
  align-items: start;
  display: grid;
  gap: var(--alpt-home-gap);
  grid-template-columns: var(--alpt-home-columns);
  position: relative;
  z-index: 1;
}

body.home .alpt-home-approach__statement {
  grid-column: 1 / 6;
}

body.home .alpt-home-approach__statement h2 {
  font-family: Anton, var(--font-display);
  font-size: clamp(2.9rem, 3.8vw, 3.9rem);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 0.94;
  margin: 0;
  max-width: none;
  text-transform: uppercase;
  text-wrap: nowrap;
}

body.home .alpt-home-approach__statement h2 span {
  display: block;
}

body.home .alpt-home-approach__statement h2 span:nth-child(2) {
  margin-left: 0;
}

body.home .alpt-home-approach__handwritten {
  color: var(--color-accent-dark);
  font-size: clamp(1.55rem, 1.9vw, 2.25rem);
  line-height: 1.25;
  margin: clamp(0.4rem, 0.8vw, 0.75rem) 0 0;
  transform: rotate(-1deg);
  transform-origin: left center;
}

body.home .alpt-home-approach__underline {
  color: var(--color-accent-dark);
  display: block;
  height: auto;
  margin: clamp(-0.75rem, -0.7vw, -0.45rem) 0 0 20%;
  stroke: currentcolor;
  stroke-linecap: round;
  stroke-width: 2;
  width: 48%;
}

body.home .alpt-home-approach__copy {
  align-self: start;
  grid-column: 6 / 10;
  max-width: 22rem;
  padding-top: 0.35rem;
}

body.home .alpt-home-approach__copy > p {
  font-size: clamp(0.825rem, 0.92vw, 0.95rem);
  line-height: 1.45;
  margin: 0;
}

body.home .alpt-home-approach__emphasis {
  font-weight: 600;
  margin-top: 0.875rem !important;
}

body.home .alpt-home-approach__emphasis span {
  display: block;
}

body.home .alpt-home-approach__link {
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  line-height: 1.2;
  margin-top: 1.5rem;
  min-height: 2.75rem;
  text-transform: uppercase;
}

body.home .alpt-home-approach__mountains {
  bottom: 0.5rem;
  color: var(--color-accent);
  height: auto;
  opacity: 0.45;
  pointer-events: none;
  position: absolute;
  right: -1rem;
  stroke: currentcolor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.15;
  width: min(36vw, 52rem);
  z-index: 0;
}

body.home .alpt-home-experiences {
  background: #f6f5f1;
}

body.home .alpt-home-journey > .alpt-home-next {
  background: var(--color-surface);
  overflow: hidden;
  padding: 0;
}

body.home .alpt-home-journey > .alpt-home-next > .alignwide {
  max-width: none;
}

body.home .alpt-home-next .alpt-home-section-header > h2 {
  font-size: clamp(3rem, 4vw, 4.25rem);
  max-width: 12ch;
}

body.home .alpt-home-next .alpt-home-section-header__aside {
  grid-column: 10 / 13;
  justify-self: end;
}

body.home .alpt-home-experiences::before {
  display: none;
}

body.home .alpt-home-inclusion {
  background: var(--color-background);
  overflow: hidden;
}

body.home .alpt-home-journey > .alpt-home-inclusion {
  padding: clamp(5.625rem, 8vw, 8.125rem) var(--layout-gutter);
}

body.home .alpt-home-inclusion__inner {
  margin: 0 auto !important;
  max-width: var(--container-max) !important;
  width: 100%;
}

body.home .alpt-home-inclusion__content {
  align-items: center;
  background: transparent;
  display: grid;
  grid-template-columns: minmax(21rem, 1.2fr) clamp(3rem, 5vw, 5.5rem) minmax(0, 1fr) clamp(2rem, 3vw, 4rem) minmax(0, 0.95fr);
  min-width: 0;
  padding: 0;
}

body.home .alpt-home-inclusion__lead {
  grid-column: 1;
  min-width: 0;
}

body.home .alpt-home-inclusion__statement h2 {
  font-family: Anton, var(--font-display);
  font-size: clamp(3rem, 4.4vw, 5rem);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 0.96;
  margin: 0;
  text-transform: uppercase;
}

body.home .alpt-home-inclusion__statement h2 span {
  display: block;
}

body.home .alpt-home-inclusion__handwritten {
  color: var(--color-accent-dark);
  font-size: clamp(1.8rem, 2.5vw, 2.8rem);
  line-height: 1.1;
  margin: clamp(1rem, 1.3vw, 1.25rem) 0 0;
  transform: rotate(-1deg);
  transform-origin: left center;
}

body.home .alpt-home-inclusion__underline {
  color: var(--color-accent-dark);
  display: block;
  height: auto;
  margin: 0.2rem 0 0 clamp(1.75rem, 5vw, 4rem);
  stroke: currentcolor;
  stroke-linecap: round;
  stroke-width: 2;
  width: clamp(8.75rem, 30%, 13.75rem);
}

body.home .alpt-home-inclusion__intro {
  margin: clamp(2rem, 2.6vw, 2.5rem) 0 0;
  max-width: 26.25rem;
  width: 100%;
}

body.home .alpt-home-inclusion__intro,
body.home .alpt-home-inclusion__detail p {
  font-size: 1rem;
  line-height: 1.6;
}

body.home .alpt-home-inclusion__divider {
  color: var(--color-accent);
  grid-column: 2;
  height: clamp(11rem, 17vw, 15rem);
  justify-self: center;
  stroke: currentcolor;
  stroke-linecap: round;
  stroke-width: 2.5;
  width: min(100%, clamp(3.5rem, 4.5vw, 5rem));
}

body.home .alpt-home-inclusion__quote {
  grid-column: 3;
  margin: 0;
  max-width: 26.875rem;
  min-width: 0;
  transform: translateY(0.75rem);
}

body.home .alpt-home-inclusion__quote p {
  color: var(--color-accent-dark);
  font-family: var(--font-handwritten);
  font-size: clamp(1.7rem, 2.4vw, 2.6rem);
  line-height: 1.2;
  margin: 0;
}

body.home .alpt-home-inclusion__quote p span {
  display: block;
}

body.home .alpt-home-inclusion__quote-mark,
body.home .alpt-home-inclusion__quote-underline {
  display: none;
}

body.home .alpt-home-inclusion__quote cite {
  color: var(--color-accent-dark);
  display: block;
  font-size: 0.75rem;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.14em;
  margin-top: 1.5rem;
  text-transform: uppercase;
}

body.home .alpt-home-inclusion__detail {
  grid-column: 5;
  max-width: 29.375rem;
  width: 100%;
}

body.home .alpt-home-inclusion__detail p {
  margin: 0;
}

body.home .alpt-home-inclusion__link {
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  line-height: 1.2;
  margin-top: 1.75rem;
  min-height: 2.75rem;
  text-transform: uppercase;
}

@media (max-width: 1023px) {
  body.home .alpt-home-journey > .alpt-home-inclusion {
    padding-block: clamp(3.5rem, 6.8vw, 4.5rem);
  }

  body.home .alpt-home-inclusion__content {
    align-items: stretch;
    display: flex;
    flex-direction: column;
  }

  body.home .alpt-home-inclusion__lead {
    max-width: none;
    order: 2;
  }

  body.home .alpt-home-inclusion__statement {
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    white-space: nowrap;
    width: 1px;
  }

  body.home .alpt-home-inclusion__intro {
    margin: 2.25rem 0 0;
    max-width: min(34ch, 100%);
  }

  body.home .alpt-home-inclusion__divider {
    display: none;
  }

  body.home .alpt-home-inclusion__quote {
    max-width: min(34ch, 100%);
    order: 1;
    position: relative;
    transform: none;
    width: 100%;
  }

  body.home .alpt-home-inclusion__quote p {
    font-size: clamp(1.85rem, 7.5vw, 2.45rem);
    line-height: 1.16;
    max-width: 16ch;
    position: relative;
    z-index: 1;
  }

  body.home .alpt-home-inclusion__quote p span {
    display: inline;
  }

  body.home .alpt-home-inclusion__quote-mark {
    color: var(--color-accent-dark);
    display: block;
    font-family: Georgia, serif;
    font-size: clamp(4.5rem, 18vw, 6rem);
    left: -0.12em;
    line-height: 0.75;
    opacity: 0.09;
    position: absolute;
    top: -0.28em;
  }

  body.home .alpt-home-inclusion__quote-underline {
    color: var(--color-accent-dark);
    display: block;
    height: auto;
    margin: 1.125rem 0 0;
    stroke: currentcolor;
    stroke-linecap: round;
    stroke-width: 2;
    width: clamp(6.25rem, 15vw, 8.125rem);
  }

  body.home .alpt-home-inclusion__quote cite {
    font-size: 0.7rem;
    margin-top: 0.875rem;
  }

  body.home .alpt-home-inclusion__detail {
    margin-top: 1.25rem;
    max-width: min(34ch, 100%);
    order: 3;
  }

  body.home .alpt-home-inclusion__link {
    font-size: 0.78rem;
    letter-spacing: 0.1em;
    margin-top: 1.75rem;
  }

  body.home .alpt-home-approach__link {
    font-size: 0.78rem;
    letter-spacing: 0.1em;
  }
}

@media (min-width: 783px) {
  body.home .alpt-home-inclusion__statement h2 span {
    white-space: nowrap;
  }
}

@media (min-width: 1024px) {
  body.home .alpt-home-journey > .alpt-home-inclusion {
    padding-block: clamp(4.375rem, 6vw, 5.9375rem);
  }

  body.home .alpt-home-inclusion__content {
    align-items: stretch;
    column-gap: clamp(5.625rem, 9vw, 10.625rem);
    grid-template-columns: minmax(0, 1.2fr) minmax(22.5rem, 0.8fr);
    grid-template-rows: 1fr auto auto 1fr;
  }

  body.home .alpt-home-inclusion__lead {
    display: contents;
  }

  body.home .alpt-home-inclusion__statement {
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    white-space: nowrap;
    width: 1px;
  }

  body.home .alpt-home-inclusion__intro {
    grid-column: 2;
    grid-row: 2;
    line-height: 1.6;
    margin: 0;
    max-width: 28.75rem;
  }

  body.home .alpt-home-inclusion__divider {
    display: none;
  }

  body.home .alpt-home-inclusion__quote {
    grid-column: 1;
    grid-row: 1 / 5;
    margin: 0;
    max-width: min(35.625rem, 38vw);
    padding-left: clamp(0.5rem, 1vw, 1.25rem);
    place-self: center;
    position: relative;
    transform: none;
  }

  body.home .alpt-home-inclusion__quote p {
    font-size: clamp(2.1rem, 2.8vw, 3.25rem);
    line-height: 1.14;
    max-width: min(35.625rem, 38vw);
    position: relative;
    z-index: 1;
  }

  body.home .alpt-home-inclusion__quote p span {
    display: inline;
  }

  body.home .alpt-home-inclusion__quote-mark {
    color: var(--color-accent-dark);
    display: block;
    font-family: Georgia, serif;
    font-size: clamp(6.75rem, 10vw, 11.5rem);
    left: -0.12em;
    line-height: 0.75;
    opacity: 0.1;
    position: absolute;
    top: -0.2em;
  }

  body.home .alpt-home-inclusion__quote-underline {
    color: var(--color-accent-dark);
    display: block;
    height: auto;
    margin: 1.5rem 0 0 clamp(1.5rem, 4vw, 3.5rem);
    stroke: currentcolor;
    stroke-linecap: round;
    stroke-width: 2;
    width: clamp(8.125rem, 8vw, 10rem);
  }

  body.home .alpt-home-inclusion__quote cite {
    margin-top: 1rem;
  }

  body.home .alpt-home-inclusion__detail {
    grid-column: 2;
    grid-row: 3;
    margin-top: 1.375rem;
    max-width: 28.75rem;
  }

  body.home .alpt-home-inclusion__detail p {
    line-height: 1.6;
  }

  body.home .alpt-home-inclusion__link {
    font-weight: 700;
    margin-top: 1.625rem;
  }
}

body.home .alpt-home-journey > .alpt-home-participation {
  background: #102b37;
  border-top: 0;
  padding: 0;
}

body.home .alpt-home-participation__grid {
  display: grid;
  grid-template-columns: minmax(15.5rem, 0.95fr) repeat(3, minmax(0, 1fr));
  min-height: clamp(26.25rem, 34vw, 32.5rem);
}

body.home .alpt-home-participation__intro {
  --alpt-participation-intro-background: #567c88;

  align-items: flex-start;
  background: var(--alpt-participation-intro-background);
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(2rem, 3.5vw, 3.75rem);
}

body.home .alpt-home-participation__intro h2 {
  color: inherit;
  font-family: Anton, var(--font-display);
  font-size: clamp(3.6rem, 5vw, 5.75rem);
  font-weight: 400;
  letter-spacing: -0.015em;
  line-height: 0.94;
  margin: 0;
  text-transform: uppercase;
}

body.home .alpt-home-participation__intro h2 span {
  display: block;
}

body.home .alpt-home-participation__intro .handwritten-accent {
  color: #fff;
  font-size: clamp(1.5rem, 1.8vw, 2.1rem);
  line-height: 1.12;
  margin: clamp(1.5rem, 2.5vw, 2.25rem) 0 0;
  transform: rotate(-1deg);
  transform-origin: left center;
}

body.home .alpt-home-participation__item {
  background: #102b37;
  min-width: 0;
  overflow: hidden;
  position: relative;
}

body.home .alpt-home-participation__item > a {
  color: #fff;
  display: block;
  height: 100%;
  min-height: inherit;
  overflow: hidden;
  position: relative;
  text-decoration: none;
}

body.home .alpt-home-participation__item > a::after {
  background: linear-gradient(
    to bottom,
    rgb(10 20 28 / 2%) 20%,
    rgb(10 20 28 / 25%) 52%,
    rgb(10 20 28 / 78%) 100%
  );
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
  z-index: 1;
}

body.home .alpt-home-participation__media,
body.home .alpt-home-participation__media img {
  display: block;
  height: 100%;
  inset: 0;
  position: absolute;
  width: 100%;
}

body.home .alpt-home-participation__media img {
  object-fit: cover;
}

body.home .alpt-home-participation__item--1 img {
  object-position: 52% 38%;
}

body.home .alpt-home-participation__item--2 img {
  object-position: 64% 50%;
}

body.home .alpt-home-participation__item--3 img {
  object-position: 52% 44%;
}

body.home .alpt-home-participation__content {
  bottom: 0;
  box-sizing: border-box;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) 2.75rem;
  height: clamp(13.75rem, 17vw, 16.25rem);
  inset-inline: 0;
  padding: 0 clamp(1.75rem, 3vw, 3rem) 2.25rem;
  position: absolute;
  row-gap: 0.75rem;
  z-index: 2;
}

body.home .alpt-home-participation__content h3 {
  color: inherit;
  font-family: var(--font-sans);
  font-size: clamp(1.5rem, 1.8vw, 2rem);
  font-weight: 800;
  letter-spacing: 0.02em;
  line-height: 1.05;
  margin: 0;
  overflow-wrap: normal;
  text-transform: uppercase;
}

body.home .alpt-home-participation__description {
  align-self: start;
  color: rgb(255 255 255 / 92%);
  font-size: 1rem;
  line-height: 1.5;
  margin: 0;
  max-width: 28ch;
}

body.home .alpt-home-participation__arrow {
  align-items: center;
  display: inline-flex;
  font-size: 1.45rem;
  height: 2.75rem;
  margin-top: 0;
  width: fit-content;
}

body.home .alpt-home-participation__item > a:focus-visible {
  outline: 3px solid #fff;
  outline-offset: -7px;
  z-index: 3;
}

@media (prefers-reduced-motion: no-preference) {
  body.home .alpt-home-participation__item > a::after,
  body.home .alpt-home-participation__media img,
  body.home .alpt-home-participation__arrow {
    transition: transform 230ms var(--alpt-ease-out), background 230ms var(--alpt-ease-out);
  }

  body.home .alpt-home-participation__item > a:hover::after {
    background: linear-gradient(180deg, rgb(7 19 26 / 4%) 10%, rgb(7 19 26 / 72%) 100%);
  }

  body.home .alpt-home-participation__item > a:hover .alpt-home-participation__media img {
    transform: scale(1.03);
  }

  body.home .alpt-home-participation__item > a:hover .alpt-home-participation__arrow {
    transform: translateX(0.3rem);
  }
}

body.home .alpt-home-section-header {
  align-items: end;
  display: grid;
  gap: clamp(1.5rem, 2vw, 2.25rem) var(--alpt-home-gap);
  grid-template-columns: var(--alpt-home-columns);
}

body.home .alpt-home-section-header > .alpt-eyebrow {
  grid-column: 1 / 13;
  margin: 0 0 clamp(0.5rem, 1vw, 1rem);
}

body.home .alpt-home-section-header > h2 {
  font-family: inherit;
  font-size: clamp(3.25rem, 4.5vw, 4.85rem);
  font-style: normal;
  font-weight: 520;
  grid-column: 1 / 7;
  letter-spacing: -0.06em;
  line-height: 0.91;
  margin: 0;
  max-width: 11ch;
}

body.home .alpt-home-section-header__aside {
  align-self: end;
  grid-column: 8 / 13;
  padding-bottom: 0.25rem;
}

body.home .alpt-home-section-header__aside > p {
  color: #56616a;
  font-size: clamp(1.08rem, 1.15vw, 1.2rem);
  line-height: 1.55;
  margin: 0;
  max-width: 42ch;
}

body.home .alpt-home-activities {
  display: grid;
  gap: clamp(4rem, 5vw, 5.5rem);
  list-style: none;
  margin: var(--alpt-home-content-space) 0 0;
  padding: 0;
}

body.home .alpt-home-activity {
  align-items: center;
  display: grid;
  gap: var(--alpt-home-gap);
  grid-template-columns: var(--alpt-home-columns);
}

body.home .alpt-home-activity__media,
body.home .alpt-home-activity:nth-child(even) .alpt-home-activity__media {
  aspect-ratio: 16 / 10;
  background: #dfe1dc;
  grid-column: 1 / 7;
  margin: 0;
  overflow: hidden;
}

body.home .alpt-home-activity:nth-child(even) .alpt-home-activity__media {
  grid-column: 7 / 13;
}

body.home .alpt-home-activity__media img {
  display: block;
  filter: saturate(0.76) contrast(0.94) brightness(1.02);
  height: 100%;
  object-fit: cover;
  transition:
    filter 400ms var(--alpt-ease-out),
    transform 400ms var(--alpt-ease-out);
  width: 100%;
}

body.home .alpt-home-activity:nth-child(1) .alpt-home-activity__media img {
  object-position: center 44%;
}

body.home .alpt-home-activity:nth-child(2) .alpt-home-activity__media img {
  object-position: center 54%;
}

body.home .alpt-home-activity:nth-child(3) .alpt-home-activity__media img {
  object-position: center 42%;
}

body.home .alpt-home-activity:hover .alpt-home-activity__media img,
body.home .alpt-home-activity:focus-within .alpt-home-activity__media img {
  filter: saturate(0.9) contrast(0.97) brightness(1.01);
  transform: scale(1.008);
}

body.home .alpt-home-activity__copy,
body.home .alpt-home-activity:nth-child(even) .alpt-home-activity__copy {
  grid-column: 8 / 13;
  padding: 0;
}

body.home .alpt-home-activity:nth-child(even) .alpt-home-activity__copy {
  grid-column: 1 / 6;
  grid-row: 1;
}

body.home .alpt-home-activity__number {
  color: var(--alpt-pine);
  display: block;
  font-family: ui-monospace, SFMono-Regular, "Cascadia Mono", "Roboto Mono", monospace;
  font-size: 0.7rem;
  font-weight: 760;
  letter-spacing: 0.14em;
}

body.home .alpt-home-activity__number::after {
  display: none;
}

body.home .alpt-home-activity h3 {
  font-size: clamp(1.75rem, 2.15vw, 2.45rem);
  font-weight: 550;
  letter-spacing: -0.045em;
  line-height: 1;
  margin: 1rem 0 0;
  max-width: none;
}

body.home .alpt-home-activity p {
  color: #5f6871;
  font-size: clamp(1rem, 1.05vw, 1.1rem);
  line-height: 1.55;
  margin: 1.15rem 0 0;
  max-width: 38ch;
}

body.home .alpt-home-cta {
  align-items: center;
  display: inline-flex;
  font-size: 0.94rem;
  font-weight: 650;
  gap: 0.85rem;
  justify-content: space-between;
  min-height: 3rem;
  text-decoration: none;
}

body.home .alpt-home-cta i {
  color: var(--alpt-pine);
  font-size: 1.15rem;
  font-style: normal;
  transition: transform 220ms var(--alpt-ease-out);
}

body.home .alpt-home-cta:hover i {
  transform: translateX(0.25rem);
}

body.home .alpt-home-cta--text {
  color: var(--alpt-ink);
  position: relative;
}

body.home .alpt-home-cta--text::after {
  background: currentcolor;
  bottom: 0.35rem;
  content: "";
  height: 1px;
  left: 0;
  position: absolute;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms var(--alpt-ease-out);
  width: calc(100% - 2rem);
}

body.home .alpt-home-cta--text:hover::after,
body.home .alpt-home-cta--text:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

body.home .alpt-home-cta--primary {
  background: var(--alpt-ink);
  border: 1px solid var(--alpt-ink);
  color: #f8f5ec;
  padding: 0.7rem 1rem;
}

body.home .alpt-home-cta--primary i {
  color: var(--alpt-coral);
}

body.home .alpt-home-cta--primary:hover {
  background: var(--alpt-pine);
  border-color: var(--alpt-pine);
}

body.home .alpt-home-activity__link,
body.home .alpt-home-event__link {
  margin-top: 1.15rem;
}

body.home .alpt-home-event {
  align-items: stretch;
  display: grid;
  grid-template-columns: minmax(0, 38.5%) minmax(0, 61.5%);
  height: clamp(26rem, 30vw, 34rem);
  margin: 0;
  min-height: 0;
  padding: 0;
  position: relative;
}

body.home .alpt-home-event.has-no-media {
  grid-template-columns: 1fr;
  height: auto;
  min-height: 0;
}

body.home .alpt-home-event__copy {
  align-self: center;
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: clamp(1.5rem, 2vw, 2.25rem) clamp(2rem, 3.5vw, 3.75rem) clamp(1.15rem, 1.5vw, 1.75rem) clamp(2.5rem, 7.2vw, 7.5rem);
}

body.home .alpt-home-event.has-no-media .alpt-home-event__copy {
  max-width: 48rem;
}

body.home .alpt-home-event__next {
  color: var(--color-accent-dark);
  font-size: clamp(1.1rem, 1.35vw, 1.35rem);
  line-height: 1;
  margin: 0 0 0.55rem;
  transform: rotate(-2deg);
  width: fit-content;
}

body.home .alpt-home-event__date {
  margin: 0 0 0.5rem;
}

body.home .alpt-home-event__date time {
  align-items: baseline;
  color: var(--alpt-ink);
  display: flex;
  flex-wrap: wrap;
  font-size: 0.76rem;
  font-weight: 760;
  gap: 0.35rem 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

body.home .alpt-home-event__date strong {
  font-size: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
  line-height: inherit;
  white-space: nowrap;
}

body.home .alpt-home-event__date time > span:not(.screen-reader-text) {
  color: inherit;
  font: inherit;
  letter-spacing: inherit;
  margin: 0;
}

body.home .alpt-home-event h2 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1;
  margin: clamp(0.25rem, 0.45vw, 0.45rem) 0 0;
  max-width: none;
  text-transform: uppercase;
}

body.home .alpt-home-event h2 a {
  color: var(--alpt-ink);
  display: block;
  text-decoration: none;
}

body.home .alpt-home-event__place-title {
  display: block;
  font-family: Anton, var(--font-display);
  font-size: clamp(3.2rem, 4.1vw, 4.8rem);
  font-weight: 400;
  letter-spacing: 0.015em;
  line-height: 1;
}

body.home .alpt-home-event__title {
  display: block;
  font-family: Anton, var(--font-display);
  font-size: clamp(1rem, 1.2vw, 1.3rem);
  letter-spacing: 0.025em;
  line-height: 1.15;
  margin-top: 0.45rem;
}

body.home .alpt-home-event__copy > p:not(.alpt-home-event__next) {
  color: #46515b;
  font-size: clamp(1rem, 1vw, 1.05rem);
  line-height: 1.5;
  margin: clamp(1rem, 1.4vw, 1.35rem) 0 0;
  max-width: 36ch;
}

body.home .alpt-home-event__meta {
  color: #4f5c65;
  display: grid;
  font-size: clamp(0.9rem, 0.92vw, 1rem);
  gap: 0.5rem;
  list-style: none;
  margin: 0.75rem 0 0;
  max-width: 38rem;
  padding: 0;
}

body.home .alpt-home-event__meta li {
  align-items: start;
  display: flex;
  gap: 0.7rem;
  line-height: 1.45;
}

body.home .alpt-home-event__meta-icon {
  align-items: center;
  color: var(--color-accent);
  display: inline-flex;
  flex: 0 0 1rem;
  height: 1.45em;
  justify-content: center;
}

body.home .alpt-home-event__meta-icon svg {
  display: block;
  height: 1rem;
  stroke: currentcolor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
  width: 1rem;
}

body.home .alpt-home-event__link {
  font-size: 0.78rem;
  justify-content: space-between;
  letter-spacing: 0.06em;
  margin: 1rem 0 0;
  min-height: 3rem;
  text-transform: uppercase;
  width: fit-content;
}

body.home .alpt-home-event__link::after {
  display: none;
}

body.home .alpt-home-event__link i {
  color: var(--alpt-coral);
}

body.home .alpt-home-event__link:hover {
  background: var(--alpt-pine);
  color: #fff;
}

body.home .alpt-home-event__media {
  margin: 0;
  min-height: 0;
  overflow: hidden;
}

body.home .alpt-home-event__media img {
  display: block;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center 72%;
  width: 100%;
}

body.home .alpt-home-event__all {
  align-items: center;
  background: #f9f8f3;
  color: var(--alpt-ink);
  display: flex;
  font-size: 0.68rem;
  font-weight: 700;
  gap: 1rem;
  justify-content: center;
  letter-spacing: 0.08em;
  min-height: 11rem;
  padding: 1rem;
  position: absolute;
  right: 0;
  text-decoration: none;
  text-transform: uppercase;
  top: 50%;
  transform: translateY(-50%);
  transition: background-color 180ms ease, color 180ms ease;
  writing-mode: vertical-rl;
  z-index: 2;
}

body.home .alpt-home-event__all i {
  font-size: 1rem;
  font-style: normal;
}

body.home .alpt-home-event__all:hover {
  background: var(--alpt-ink);
  color: #fff;
}

body.home .alpt-home-event--empty {
  background: #eef0ea;
  border-bottom: 1px solid rgb(24 35 48 / 42%);
  border-top: 1px solid rgb(24 35 48 / 42%);
  grid-template-columns: var(--alpt-home-columns);
  height: auto;
  margin-top: clamp(3.25rem, 4vw, 4.5rem);
  min-height: clamp(16rem, 19vw, 18.5rem);
}

body.home .alpt-home-event--empty > div:first-child {
  grid-column: 1 / 7;
  padding: clamp(2.25rem, 3vw, 3.5rem);
}

body.home .alpt-home-event--empty > div:last-child {
  grid-column: 7 / 13;
  border-left: 1px solid rgb(24 35 48 / 18%);
  padding: clamp(2.25rem, 3vw, 3.5rem);
}

body.home .alpt-home-event--empty h3 {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 2.8vw, 3.05rem);
  font-weight: 550;
  letter-spacing: -0.05em;
  line-height: 1;
  margin-top: 1rem;
  max-width: 17ch;
  text-transform: none;
}

@media (max-width: 1060px) {
  body.home .alpt-home-journey {
    --alpt-home-columns: repeat(8, minmax(0, 1fr));
    --alpt-home-section-space: clamp(6rem, 10vw, 7.25rem);
    --alpt-home-content-space: clamp(4rem, 7vw, 5.25rem);
  }

  body.home .alpt-home-section-header > .alpt-eyebrow {
    grid-column: 1 / 9;
  }

  body.home .alpt-home-section-header > h2 {
    font-size: clamp(3rem, 6vw, 4.25rem);
    grid-column: 1 / 5;
  }

  body.home .alpt-home-section-header__aside {
    grid-column: 6 / 9;
  }

  body.home .alpt-home-next .alpt-home-section-header__aside {
    grid-column: 6 / 9;
  }

  body.home .alpt-home-approach__statement {
    grid-column: 1 / 5;
  }

  body.home .alpt-home-approach__copy {
    grid-column: 5 / 9;
  }

  body.home .alpt-home-approach__statement h2 {
    font-size: clamp(2.4rem, 5vw, 2.9rem);
    line-height: 0.96;
    text-wrap: balance;
  }

  body.home .alpt-home-activity__media,
  body.home .alpt-home-activity:nth-child(even) .alpt-home-activity__media {
    grid-column: 1 / 5;
  }

  body.home .alpt-home-activity:nth-child(even) .alpt-home-activity__media {
    grid-column: 5 / 9;
  }

  body.home .alpt-home-activity__copy,
  body.home .alpt-home-activity:nth-child(even) .alpt-home-activity__copy {
    grid-column: 6 / 9;
  }

  body.home .alpt-home-activity:nth-child(even) .alpt-home-activity__copy {
    grid-column: 1 / 4;
  }

  body.home .alpt-home-event {
    grid-template-columns: minmax(0, 42%) minmax(0, 58%);
    height: clamp(26rem, 41vw, 28rem);
    min-height: 0;
  }

  body.home .alpt-home-event__copy {
    padding: 1.75rem clamp(1.75rem, 3vw, 2.25rem) 1.5rem 5vw;
  }

  body.home .alpt-home-event h2 {
    font-size: 1rem;
  }

  body.home .alpt-home-event__place-title {
    font-size: clamp(2.75rem, 5.2vw, 3.35rem);
  }
}

@media (max-width: 782px) {
  body.home .alpt-home-journey {
    --alpt-home-columns: repeat(4, minmax(0, 1fr));
    --alpt-home-gap: 1rem;
    --alpt-home-section-space: clamp(4rem, 16vw, 5.25rem);
    --alpt-home-content-space: clamp(3.25rem, 12vw, 4.5rem);
  }

  body.home .alpt-home-section-header > .alpt-eyebrow,
  body.home .alpt-home-section-header > h2,
  body.home .alpt-home-section-header__aside {
    grid-column: 1 / 5;
  }

  body.home .alpt-home-journey > .alpt-home-approach {
    padding: 4rem 1.5rem 3rem;
  }

  body.home .alpt-home-next .alpt-home-section-header__aside {
    grid-column: 1 / 5;
    justify-self: start;
  }

  body.home .alpt-home-section-header > h2 {
    font-size: clamp(2.65rem, 11.5vw, 3.9rem);
    max-width: 11ch;
  }

  body.home .alpt-home-approach__inner {
    gap: 0;
    grid-template-columns: 1fr;
  }

  body.home .alpt-home-approach__statement,
  body.home .alpt-home-approach__copy {
    grid-column: 1 / -1;
  }

  body.home .alpt-home-approach__statement {
    margin-top: 0;
  }

  body.home .alpt-home-approach__statement h2 {
    font-size: clamp(2.6rem, 10.5vw, 3.4rem);
    letter-spacing: -0.015em;
    line-height: 0.98;
    text-wrap: balance;
  }

  body.home .alpt-home-approach__statement h2 span:nth-child(2) {
    margin-left: 0;
  }

  body.home .alpt-home-approach__handwritten {
    font-size: clamp(1.45rem, 6vw, 1.9rem);
    line-height: 1.1;
    margin-top: 1rem;
  }

  body.home .alpt-home-approach__underline {
    margin: 0.25rem 0 0 clamp(3.5rem, 24vw, 6rem);
    width: clamp(8.125rem, 42vw, 11.25rem);
  }

  body.home .alpt-home-approach__copy {
    margin-top: 2.25rem;
    max-width: 32ch;
    padding-top: 0;
  }

  body.home .alpt-home-approach__copy > p {
    font-size: 1rem;
    line-height: 1.55;
  }

  body.home .alpt-home-approach__emphasis {
    font-size: 1rem;
    line-height: 1.45;
    margin-top: 1rem !important;
  }

  body.home .alpt-home-approach__link {
    align-items: center;
    font-size: 0.78rem;
    letter-spacing: 0.1em;
    margin-top: 1.75rem;
    min-height: 2.75rem;
  }

  body.home .alpt-home-approach__mountains {
    bottom: -12vw;
    display: block;
    opacity: 0.14;
    right: -5vw;
    width: 55vw;
  }

  body.home .alpt-home-journey > .alpt-home-inclusion {
    padding: 3.5rem 1.375rem 4rem;
  }

  body.home .alpt-home-inclusion__inner {
    min-height: 0;
  }

  body.home .alpt-home-inclusion__content {
    display: flex;
    flex-direction: column;
    padding: 0;
  }

  body.home .alpt-home-inclusion__statement h2 {
    font-size: clamp(2.5rem, 10vw, 3.4rem);
    letter-spacing: -0.02em;
    line-height: 0.98;
  }

  body.home .alpt-home-inclusion__handwritten {
    font-size: clamp(1.45rem, 6vw, 1.9rem);
    line-height: 1.1;
    margin-top: 1rem;
  }

  body.home .alpt-home-inclusion__underline {
    margin-left: clamp(2.5rem, 15vw, 4.75rem);
    width: clamp(8.75rem, 39vw, 11.875rem);
  }

  body.home .alpt-home-inclusion__intro {
    margin: 2.25rem 0 0;
    max-width: min(34ch, 100%);
  }

  body.home .alpt-home-inclusion__intro,
  body.home .alpt-home-inclusion__detail p {
    font-size: 1rem;
    line-height: 1.55;
  }

  body.home .alpt-home-inclusion__divider {
    height: 2.25rem;
    margin: 2rem 0;
    width: 4rem;
  }

  body.home .alpt-home-inclusion__quote p {
    font-size: clamp(1.85rem, 7.5vw, 2.45rem);
    line-height: 1.16;
  }

  body.home .alpt-home-inclusion__quote cite {
    margin-top: 0.875rem;
  }

  body.home .alpt-home-inclusion__detail {
    margin-top: 1.25rem;
    max-width: min(34ch, 100%);
  }

  body.home .alpt-home-inclusion__link {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    line-height: 1.2;
    margin-top: 1.75rem;
    min-height: 2.75rem;
  }

  body.home .alpt-home-journey > .alpt-home-participation {
    padding: 0;
  }

  body.home .alpt-home-participation__grid {
    display: block;
    min-height: 0;
  }

  body.home .alpt-home-participation__intro {
    min-height: auto;
    padding: 3.5rem 1.375rem 3.75rem;
  }

  body.home .alpt-home-participation__intro h2 {
    font-size: clamp(3.4rem, 15vw, 4.7rem);
    line-height: 0.9;
  }

  body.home .alpt-home-participation__intro .handwritten-accent {
    font-size: clamp(1.55rem, 7vw, 2rem);
    line-height: 1.1;
    margin-top: 1.625rem;
  }

  body.home .alpt-home-participation__item {
    height: clamp(20rem, 85vw, 26.25rem);
    min-height: 20rem;
  }

  body.home .alpt-home-participation__content {
    display: flex;
    flex-direction: column;
    height: clamp(14.5rem, 60vw, 16rem);
    padding: 1.5rem 1.375rem 1.625rem;
    row-gap: 0;
  }

  body.home .alpt-home-participation__content h3 {
    font-size: clamp(1.5rem, 6.5vw, 2rem);
    line-height: 1.05;
    overflow-wrap: normal;
  }

  body.home .alpt-home-participation__item > a::after {
    background: linear-gradient(180deg, rgb(7 19 26 / 8%) 15%, rgb(7 19 26 / 82%) 100%);
  }

  body.home .alpt-home-participation__description {
    font-size: 1rem;
    line-height: 1.45;
    margin-top: 1rem;
    max-width: 30ch;
  }

  body.home .alpt-home-participation__arrow {
    margin-top: auto;
  }

  body.home .alpt-home-section-header__aside {
    margin-top: 0.75rem;
    padding: 0;
  }

  body.home .alpt-home-section-header__aside > p {
    font-size: clamp(1.05rem, 4.7vw, 1.2rem);
  }

  body.home .alpt-home-activities {
    gap: clamp(4rem, 16vw, 5.5rem);
  }

  body.home .alpt-home-activity__media,
  body.home .alpt-home-activity:nth-child(even) .alpt-home-activity__media {
    aspect-ratio: 16 / 9;
    grid-column: 1 / 5;
    grid-row: 1;
  }

  body.home .alpt-home-activity__copy,
  body.home .alpt-home-activity:nth-child(even) .alpt-home-activity__copy {
    grid-column: 1 / 5;
    grid-row: 2;
    margin-top: 0.75rem;
  }

  body.home .alpt-home-activity h3 {
    font-size: clamp(1.65rem, 8vw, 2.25rem);
  }

}

@media (max-width: 360px) {
  body.home .alpt-home-journey > .alpt-home-approach {
    padding-inline: 1.25rem;
  }

  body.home .alpt-home-journey > .alpt-home-inclusion {
    padding-inline: 1.25rem;
  }
}

@media (max-width: 480px) {
  body.home .alpt-home-cta--primary {
    width: 100%;
  }

}

@media (max-width: 900px) {
  body.home .alpt-home-journey > .alpt-home-next {
    padding: 3.5rem 1.375rem 4rem;
  }

  body.home .alpt-home-event,
  body.home .alpt-home-event--empty {
    align-items: start;
    grid-template-columns: minmax(0, 1fr);
    height: auto;
    min-height: 0;
  }

  body.home .alpt-home-event__copy,
  body.home .alpt-home-event__media,
  body.home .alpt-home-event__all,
  body.home .alpt-home-event--empty > div:first-child,
  body.home .alpt-home-event--empty > div:last-child {
    grid-column: 1;
  }

  body.home .alpt-home-event__copy {
    align-self: auto;
    padding: 0;
  }

  body.home .alpt-home-event__next {
    font-size: clamp(1.35rem, 6vw, 1.7rem);
    margin-bottom: 1.25rem;
  }

  body.home .alpt-home-event__date {
    margin: 0 0 0.875rem;
  }

  body.home .alpt-home-event__date time {
    font-size: 0.8rem;
    font-weight: 700;
    gap: 0.35rem;
    letter-spacing: 0.16em;
    line-height: 1.25;
  }

  body.home .alpt-home-event__date time > span:not(.screen-reader-text) {
    display: inline;
    margin: 0;
  }

  body.home .alpt-home-event h2 {
    margin-top: 0.125rem;
    max-width: none;
  }

  body.home .alpt-home-event__place-title {
    font-size: clamp(3.1rem, 14vw, 4.4rem);
    line-height: 0.98;
  }

  body.home .alpt-home-event__title {
    font-size: clamp(1.25rem, 5.5vw, 1.65rem);
    line-height: 1;
    margin-top: 0.5rem;
  }

  body.home .alpt-home-event__copy > p:not(.alpt-home-event__next) {
    font-size: 1rem;
    line-height: 1.55;
    margin-top: 1.75rem;
    max-width: 34ch;
  }

  body.home .alpt-home-event__meta {
    font-size: 0.9rem;
    gap: 0.8125rem;
    margin-top: 1.25rem;
  }

  body.home .alpt-home-event__meta li {
    align-items: start;
    display: grid;
    gap: 0.625rem;
    grid-template-columns: 1.25rem minmax(0, 1fr);
    line-height: 1.45;
  }

  body.home .alpt-home-event__meta-icon {
    flex-basis: auto;
    height: 1.45em;
    width: 1.25rem;
  }

  body.home .alpt-home-event__meta-icon svg {
    height: 1.125rem;
    width: 1.125rem;
  }

  body.home .alpt-home-event__link.alpt-home-cta--primary {
    align-self: flex-start;
    display: inline-flex;
    gap: 0.65rem;
    justify-content: flex-start;
    margin-top: 1.625rem;
    min-height: 3.125rem;
    padding-inline: 1.375rem;
    width: auto;
  }

  body.home .alpt-home-event__media {
    aspect-ratio: 4 / 3;
    height: auto;
    margin-top: 2.5rem;
    width: 100%;
  }

  body.home .alpt-home-event__media img {
    height: 100%;
    object-position: center;
    position: static;
    top: auto;
  }

  body.home .alpt-home-event__all {
    background: transparent;
    font-size: 0.8rem;
    gap: 0.625rem;
    justify-content: flex-start;
    letter-spacing: 0.12em;
    margin-top: 1.75rem;
    min-height: 2.75rem;
    padding: 0;
    position: static;
    transform: none;
    width: fit-content;
    writing-mode: horizontal-tb;
  }

  body.home .alpt-home-event__all:hover {
    background: transparent;
    color: var(--alpt-pine);
  }

  body.home .alpt-home-event--empty > div:first-child,
  body.home .alpt-home-event--empty > div:last-child {
    padding: 1.75rem;
  }

  body.home .alpt-home-event--empty > div:last-child {
    border-left: 0;
    border-top: 1px solid rgb(24 35 48 / 18%);
  }
}

@media (max-width: 360px) {
  body.home .alpt-home-journey > .alpt-home-next {
    padding-inline: 1.25rem;
  }
}

/* Archives, forms and article views */
body:not(.home) main#main-content {
  min-height: 55vh;
  padding-left: var(--alpt-gutter);
  padding-right: var(--alpt-gutter);
}

body:not(.home) main#main-content > h1:first-child,
body:not(.home) main#main-content > .wp-block-post-title:first-child {
  margin-bottom: clamp(2rem, 5vw, 4rem);
  max-width: 13ch;
  position: relative;
}

body:not(.home) main#main-content > h1:first-child::after,
body:not(.home) main#main-content > .wp-block-post-title:first-child::after {
  background: var(--alpt-coral);
  border-radius: 999px;
  bottom: -1.25rem;
  content: "";
  height: 0.35rem;
  left: 0;
  position: absolute;
  width: 4rem;
}

/* Subpages */
body:not(.home) main.alpt-subpage {
  background: var(--alpt-white);
  max-width: none;
  min-height: 55vh;
  padding: 0;
}

.alpt-subpage > * {
  margin-block-start: 0;
}

.alpt-page-hero {
  background: var(--alpt-canvas);
  margin: 0;
  position: relative;
}

.alpt-page-hero::after {
  content: none;
}

.alpt-page-hero__inner {
  margin-inline: auto;
  padding: clamp(2.8rem, 4.5vw, 4rem) var(--alpt-gutter) clamp(2.4rem, 3.6vw, 3.3rem);
  position: relative;
  width: min(100%, calc(var(--alpt-wide) + (2 * var(--alpt-gutter))));
  z-index: 1;
}

.alpt-page-hero__inner::after {
  background: linear-gradient(90deg, var(--alpt-ink) 0 calc(100% - 7rem), var(--alpt-coral) calc(100% - 7rem) calc(100% - 3rem), var(--alpt-lake) calc(100% - 3rem));
  bottom: 0;
  content: "";
  height: 1px;
  left: var(--alpt-gutter);
  position: absolute;
  right: var(--alpt-gutter);
}

.alpt-page-hero__inner::before {
  color: var(--alpt-world-accent, #646b78);
  content: "Verein Alpentraum";
  display: block;
  font-family: ui-monospace, SFMono-Regular, "Cascadia Mono", "Roboto Mono", monospace;
  font-size: 0.7rem;
  font-weight: 680;
  letter-spacing: 0.18em;
  margin-bottom: 0.9rem;
  text-transform: uppercase;
}

body.alpt-world-about .alpt-page-hero__inner::before {
  content: "Menschen & Haltung";
}

body.alpt-world-offers .alpt-page-hero:has(.alpt-offers-hero) {
  background: #fff;
}

body.alpt-world-offers .alpt-page-hero__inner:has(> .alpt-offers-hero) {
  padding-bottom: clamp(3rem, 3.25vw, 3.75rem);
  padding-top: clamp(3.75rem, 4.25vw, 4.75rem);
}

body.alpt-world-offers .alpt-page-hero__inner:has(> .alpt-offers-hero)::before,
body.alpt-world-offers .alpt-page-hero__inner:has(> .alpt-offers-hero)::after {
  display: none;
}

.alpt-offers-hero {
  align-items: center;
  column-gap: clamp(4.375rem, 6vw, 7.5rem);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(20rem, 0.72fr);
  max-width: none !important;
  width: 100%;
}

.alpt-offers-hero__statement,
.alpt-offers-hero__intro {
  min-width: 0;
}

body.alpt-world-offers .alpt-page-hero .alpt-offers-hero__eyebrow {
  align-items: center;
  color: var(--color-accent-dark);
  display: flex;
  gap: 0.8rem;
  margin: 0 0 1.25rem;
  text-transform: uppercase;
}

body.alpt-world-offers .alpt-page-hero .alpt-offers-hero__eyebrow::before {
  background: currentcolor;
  content: "";
  display: block;
  flex: 0 0 auto;
  height: 1px;
  width: clamp(1.75rem, 2.2vw, 2.25rem);
}

.alpt-page-hero .alpt-offers-hero__title {
  font-family: Anton, var(--font-display);
  font-size: clamp(3.5rem, 5vw, 5.6rem);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 0.93;
  max-width: 100%;
  text-transform: uppercase;
  width: max-content;
}

.alpt-offers-hero__title span {
  display: block;
}

.alpt-offers-hero__accent {
  color: var(--color-accent-dark);
  margin-top: 1.375rem;
  width: fit-content;
}

.alpt-page-hero .alpt-offers-hero__accent .handwritten-accent {
  font-size: clamp(1.5rem, 2vw, 2.15rem);
  line-height: 1.12;
  margin: 0;
  max-width: 24.375rem;
}

.alpt-offers-hero__underline {
  display: block;
  height: auto;
  margin: 0.35rem 0 0 1.75rem;
  stroke: currentcolor;
  stroke-linecap: round;
  stroke-width: 2;
  width: clamp(6.5rem, 9vw, 9rem);
}

.alpt-offers-hero__intro {
  border-left: 2px solid var(--color-accent);
  max-width: 26.25rem;
  padding-left: 1.75rem;
}

.alpt-page-hero .alpt-offers-hero__intro .alpt-page-hero__lead {
  color: var(--color-text);
  font-size: 1rem !important;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.6;
  margin: 0;
  max-width: none;
}

@media (max-width: 900px) {
  body.alpt-world-offers .alpt-page-hero__inner:has(> .alpt-offers-hero) {
    padding-bottom: clamp(3.5rem, 9vw, 4.5rem);
    padding-top: clamp(3rem, 8vw, 3.75rem);
  }

  .alpt-offers-hero {
    display: block;
  }

  body.alpt-world-offers .alpt-page-hero .alpt-offers-hero__eyebrow {
    gap: 0.75rem;
  }

  body.alpt-world-offers .alpt-page-hero .alpt-offers-hero__eyebrow::before {
    width: 1.75rem;
  }

  .alpt-page-hero .alpt-offers-hero__title {
    font-size: clamp(2.8rem, 12vw, 4rem);
    letter-spacing: -0.035em;
    line-height: 0.93;
  }

  .alpt-offers-hero__accent {
    margin-top: 1.5rem;
  }

  .alpt-page-hero .alpt-offers-hero__accent .handwritten-accent {
    font-size: clamp(1.4rem, 6vw, 1.85rem);
    max-width: 18ch;
  }

  .alpt-offers-hero__underline {
    margin-left: 1rem;
    width: 6.5rem;
  }

  .alpt-offers-hero__intro {
    margin-top: clamp(1.875rem, 5vw, 2.25rem);
    max-width: 34ch;
    padding-left: 1rem;
  }

  .alpt-page-hero .alpt-offers-hero__intro .alpt-page-hero__lead {
    line-height: 1.55;
  }
}

body.alpt-world-offers .alpt-page-body {
	padding-bottom: clamp(2.75rem, 4vw, 4rem);
	padding-top: clamp(1rem, 1.75vw, 1.5rem);
}

body.alpt-world-experiences .alpt-page-hero:has(.alpt-experiences-hero) {
  background: #fff;
}

body.alpt-world-experiences .alpt-page-hero__inner:has(> .alpt-experiences-hero) {
  padding-bottom: clamp(3.25rem, 4vw, 4.25rem);
  padding-top: clamp(3.75rem, 4.5vw, 4.75rem);
}

body.alpt-world-experiences .alpt-page-hero__inner:has(> .alpt-experiences-hero)::before,
body.alpt-world-experiences .alpt-page-hero__inner:has(> .alpt-experiences-hero)::after {
  content: none;
  display: none;
}

.alpt-experiences-hero {
  align-items: center;
  column-gap: clamp(3.5rem, 5vw, 6rem);
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(24rem, 0.82fr);
  max-width: none !important;
  width: 100%;
}

.alpt-experiences-hero.has-no-media {
  display: block;
}

.alpt-experiences-hero__statement,
.alpt-experiences-hero__media {
  min-width: 0;
}

body.alpt-world-experiences .alpt-page-hero .alpt-experiences-hero__eyebrow {
  align-items: center;
  color: var(--color-accent-dark);
  display: flex;
  gap: 0.8rem;
  margin: 0 0 1.25rem;
  text-transform: uppercase;
}

body.alpt-world-experiences .alpt-page-hero .alpt-experiences-hero__eyebrow::before {
  background: currentcolor;
  content: "";
  display: block;
  flex: 0 0 auto;
  height: 1px;
  width: clamp(1.75rem, 2.2vw, 2.25rem);
}

.alpt-page-hero .alpt-experiences-hero__title {
  font-family: Anton, var(--font-display);
  font-size: clamp(3.5rem, 5vw, 5.6rem);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 0.93;
  max-width: 100%;
  text-transform: uppercase;
  width: max-content;
}

.alpt-experiences-hero__title span {
  display: block;
}

.alpt-experiences-hero__accent {
  color: var(--color-accent-dark);
  margin-top: 1.5rem;
  width: fit-content;
}

.alpt-page-hero .alpt-experiences-hero__accent .handwritten-accent {
  font-size: clamp(1.5rem, 2vw, 2.15rem);
  line-height: 1.15;
  margin: 0;
}

.alpt-experiences-hero__underline {
  display: block;
  height: auto;
  margin: 0.35rem 0 0 1.5rem;
  stroke: currentcolor;
  stroke-linecap: round;
  stroke-width: 2;
  width: clamp(6.25rem, 8vw, 8.25rem);
}

.alpt-experiences-hero__intro {
  margin-top: clamp(1.625rem, 2vw, 2rem);
  max-width: 36ch;
}

.alpt-page-hero .alpt-experiences-hero__intro .alpt-page-hero__lead {
  color: var(--color-text);
  font-size: 1rem !important;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.6;
  margin: 0;
  max-width: none;
}

.alpt-experiences-hero__media {
  margin: clamp(1.5rem, 3vw, 3rem) 0 0;
  max-width: clamp(24rem, 33vw, 34rem);
  position: relative;
  transform: translateY(0.25rem);
  width: 100%;
}

.alpt-experiences-hero__image {
  aspect-ratio: 4 / 3;
}

.alpt-experiences-hero__image img {
  display: block;
  height: 100%;
  object-fit: contain;
  width: 100%;
}

@media (min-width: 901px) {
  .alpt-experiences-hero__media::before {
    background: #fff;
    clip-path: polygon(0 0, 100% 0, 92% 55%, 66% 100%, 0 100%);
    content: "";
    height: 20%;
    left: -1px;
    pointer-events: none;
    position: absolute;
    top: -1px;
    width: 52%;
    z-index: 1;
  }

  .alpt-experiences-hero__media::after {
    background: #fff;
    content: "";
    height: 6%;
    left: 47%;
    pointer-events: none;
    position: absolute;
    top: -1px;
    width: 18%;
    z-index: 1;
  }
}

@media (max-width: 900px) {
  body.alpt-world-experiences .alpt-page-hero__inner:has(> .alpt-experiences-hero) {
    padding-bottom: clamp(3.75rem, 10vw, 4.75rem);
    padding-top: clamp(3rem, 8vw, 3.75rem);
  }

  .alpt-experiences-hero {
    display: block;
  }

  body.alpt-world-experiences .alpt-page-hero .alpt-experiences-hero__eyebrow {
    gap: 0.75rem;
  }

  body.alpt-world-experiences .alpt-page-hero .alpt-experiences-hero__eyebrow::before {
    width: 1.75rem;
  }

  .alpt-page-hero .alpt-experiences-hero__title {
    font-size: clamp(3rem, 13vw, 4.2rem);
    letter-spacing: -0.035em;
    line-height: 0.92;
  }

  .alpt-experiences-hero__accent {
    margin-top: 1.375rem;
  }

  .alpt-page-hero .alpt-experiences-hero__accent .handwritten-accent {
    font-size: clamp(1.45rem, 6.2vw, 1.85rem);
    line-height: 1.12;
  }

  .alpt-experiences-hero__underline {
    margin-left: 1rem;
    width: 6.5rem;
  }

  .alpt-experiences-hero__intro {
    margin-top: 1.5rem;
    max-width: 34ch;
  }

  .alpt-page-hero .alpt-experiences-hero__intro .alpt-page-hero__lead {
    line-height: 1.55;
  }

  .alpt-experiences-hero__media {
    margin-top: clamp(2.25rem, 8vw, 3rem);
    margin-left: -0.75rem;
    max-width: none;
    transform: none;
    width: min(calc(100% + 1.5rem), 29.5625rem);
  }
}

body.alpt-world-experiences .alpt-page-body {
  padding-top: clamp(1.5rem, 2vw, 2rem);
}

body.alpt-world-support .alpt-page-hero:has(.alpt-support-hero) {
  background: #fff;
}

body.alpt-world-support .alpt-page-hero__inner:has(> .alpt-support-hero) {
  padding-bottom: clamp(3.25rem, 4vw, 4rem);
  padding-top: clamp(3.25rem, 4vw, 4rem);
}

body.alpt-world-support .alpt-page-hero__inner:has(> .alpt-support-hero)::before,
body.alpt-world-support .alpt-page-hero__inner:has(> .alpt-support-hero)::after {
  content: none;
  display: none;
}

.alpt-support-hero {
  align-items: center;
  column-gap: clamp(4.5rem, 7vw, 7.5rem);
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(20rem, 0.75fr);
  max-width: none !important;
  width: 100%;
}

.alpt-support-hero__statement,
.alpt-support-hero__aside,
.alpt-support-hero__intro {
  min-width: 0;
}

.alpt-support-hero__aside {
  align-self: center;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  row-gap: clamp(1.25rem, 2vw, 2.25rem);
}

body.alpt-world-support .alpt-page-hero .alpt-support-hero__eyebrow {
  align-items: center;
  color: var(--color-accent-dark);
  display: flex;
  gap: 0.8rem;
  margin: 0 0 1.25rem;
  text-transform: uppercase;
}

body.alpt-world-support .alpt-page-hero .alpt-support-hero__eyebrow::before {
  background: currentcolor;
  content: "";
  display: block;
  flex: 0 0 auto;
  height: 1px;
  width: clamp(1.75rem, 2.2vw, 2.25rem);
}

.alpt-page-hero .alpt-support-hero__title {
  font-family: Anton, var(--font-display);
  font-size: clamp(3.5rem, 5vw, 5.4rem);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 0.94;
  margin: 0;
  max-width: 100%;
  text-transform: uppercase;
  width: fit-content;
}

.alpt-support-hero__title span,
.alpt-support-hero__accent .handwritten-accent span {
  display: block;
}

.alpt-support-hero__accent {
  color: var(--color-accent-dark);
  margin-top: 1.5rem;
  width: fit-content;
}

.alpt-page-hero .alpt-support-hero__accent .handwritten-accent {
  font-size: clamp(1.5rem, 2vw, 2.05rem);
  line-height: 1.15;
  margin: 0;
}

.alpt-support-hero__underline {
  display: block;
  margin: 0.35rem 0 0 1.25rem;
  width: clamp(6.25rem, 8vw, 8rem);
}

.alpt-support-hero__underline svg {
  display: block;
  height: auto;
  stroke: currentcolor;
  stroke-linecap: round;
  stroke-width: 2;
  width: 100%;
}

.alpt-support-hero__intro {
  border-left: 2px solid var(--color-accent);
  max-width: 25rem;
  padding-left: 1.5rem;
}

.alpt-page-hero .alpt-support-hero__intro .alpt-page-hero__lead {
  color: var(--color-text);
  font-size: 1rem !important;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.6;
  margin: 0;
  max-width: none;
}

.alpt-support-hero__route {
  --alpt-support-route-width: clamp(26.25rem, 36vw, 40.625rem);

  /* Keep the oversized drawing flush right while its start enters the grid gap. */
  display: block;
  grid-row: 2;
  height: auto;
  justify-self: start;
  margin: 0 0 0 calc(100% - var(--alpt-support-route-width));
  max-width: none;
  width: var(--alpt-support-route-width);
}

@media (min-width: 901px) and (max-width: 1280px) {
  .alpt-support-hero__route {
    --alpt-support-route-width: clamp(24.375rem, 34vw, 27.5rem);
  }
}

@media (max-width: 900px) {
  body.alpt-world-support .alpt-page-hero__inner:has(> .alpt-support-hero) {
    padding-bottom: 2.5rem;
    padding-top: clamp(3rem, 8vw, 3.75rem);
  }

  .alpt-support-hero {
    display: block;
  }

  .alpt-support-hero__aside {
    display: block;
  }

  body.alpt-world-support .alpt-page-hero .alpt-support-hero__eyebrow {
    gap: 0.75rem;
  }

  body.alpt-world-support .alpt-page-hero .alpt-support-hero__eyebrow::before {
    width: 1.75rem;
  }

  .alpt-page-hero .alpt-support-hero__title {
    font-size: clamp(3rem, 13vw, 4.2rem);
    letter-spacing: -0.03em;
    line-height: 0.94;
  }

  .alpt-support-hero__accent {
    margin-top: 1.375rem;
  }

  .alpt-page-hero .alpt-support-hero__accent .handwritten-accent {
    font-size: clamp(1.4rem, 6vw, 1.75rem);
    line-height: 1.15;
  }

  .alpt-support-hero__underline {
    margin-left: 1rem;
    width: 6.5rem;
  }

  .alpt-support-hero__intro {
    margin-top: clamp(1.875rem, 6vw, 2.5rem);
    max-width: none;
    padding-left: 1.125rem;
  }

  .alpt-support-hero__route {
    margin: 1.5rem 0 0 auto;
    max-width: 22.5rem;
    width: min(85%, 22.5rem);
  }

  .alpt-page-hero .alpt-support-hero__intro .alpt-page-hero__lead {
    line-height: 1.6;
  }
}

body.alpt-world-support .alpt-page-body {
  padding-top: clamp(1.5rem, 2vw, 2rem);
}

body.alpt-world-contact .alpt-page-hero:has(.alpt-contact-hero) {
  background: #fff;
}

body.alpt-world-contact .alpt-page-hero__inner:has(> .alpt-contact-hero) {
  padding-bottom: clamp(2rem, 2.5vw, 2.5rem);
  padding-top: clamp(3.5rem, 4.5vw, 4.5rem);
}

body.alpt-world-contact .alpt-page-hero__inner:has(> .alpt-contact-hero)::before,
body.alpt-world-contact .alpt-page-hero__inner:has(> .alpt-contact-hero)::after {
  content: none;
  display: none;
}

.alpt-contact-hero {
  align-items: center;
  column-gap: clamp(4rem, 7vw, 7.5rem);
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(20rem, 0.82fr);
  max-width: none !important;
  width: 100%;
}

.alpt-contact-hero__statement,
.alpt-contact-hero__media,
.alpt-contact-hero__intro {
  min-width: 0;
}

body.alpt-world-contact .alpt-page-hero .alpt-contact-hero__eyebrow {
  align-items: center;
  color: var(--color-accent-dark);
  display: flex;
  gap: 0.8rem;
  margin: 0 0 1.25rem;
  text-transform: uppercase;
}

body.alpt-world-contact .alpt-page-hero .alpt-contact-hero__eyebrow::before {
  background: currentcolor;
  content: "";
  display: block;
  flex: 0 0 auto;
  height: 1px;
  width: clamp(1.75rem, 2.2vw, 2.25rem);
}

.alpt-page-hero .alpt-contact-hero__title {
  font-family: Anton, var(--font-display);
  font-size: clamp(3.6rem, 5vw, 5.6rem);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 0.94;
  margin: 0;
  max-width: 100%;
  overflow: visible;
  text-transform: uppercase;
  width: fit-content;
}

.alpt-contact-hero__title span {
  display: block;
}

.alpt-contact-hero__accent {
  color: var(--color-accent-dark);
  margin-top: 1.5rem;
  width: fit-content;
}

.alpt-page-hero .alpt-contact-hero__accent .handwritten-accent {
  font-size: clamp(1.5rem, 2vw, 2rem);
  line-height: 1.15;
  margin: 0;
}

.alpt-contact-hero__underline {
  display: block;
  height: auto;
  margin: 0.35rem 0 0 1.25rem;
  stroke: currentcolor;
  stroke-linecap: round;
  stroke-width: 2;
  width: clamp(6.25rem, 8vw, 8rem);
}

.alpt-contact-hero__intro {
  margin-top: clamp(1.5rem, 2vw, 2rem);
  max-width: 36ch;
}

.alpt-page-hero .alpt-contact-hero__intro .alpt-page-hero__lead {
  color: var(--color-text);
  font-size: 1rem !important;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.6;
  margin: 0;
  max-width: none;
}

.alpt-contact-hero__media {
  justify-self: end;
  margin: 0;
  width: min(100%, 37.5rem);
}

.alpt-contact-hero__media img {
  height: auto;
  width: 100%;
}

@media (max-width: 900px) {
  body.alpt-world-contact .alpt-page-hero__inner:has(> .alpt-contact-hero) {
    padding-bottom: clamp(3rem, 7vw, 3.5rem);
    padding-top: clamp(3rem, 8vw, 3.75rem);
  }

  .alpt-contact-hero {
    display: block;
  }

  body.alpt-world-contact .alpt-page-hero .alpt-contact-hero__eyebrow {
    gap: 0.75rem;
  }

  body.alpt-world-contact .alpt-page-hero .alpt-contact-hero__eyebrow::before {
    width: 1.75rem;
  }

  .alpt-page-hero .alpt-contact-hero__title {
    font-size: clamp(3rem, 13vw, 4.1rem);
    letter-spacing: -0.03em;
    line-height: 0.94;
  }

  .alpt-contact-hero__title span {
    white-space: normal;
  }

  .alpt-contact-hero__accent {
    margin-top: clamp(1rem, 2.5vw, 1.25rem);
  }

  .alpt-page-hero .alpt-contact-hero__accent .handwritten-accent {
    font-size: clamp(1.4rem, 6vw, 1.7rem);
    line-height: 1.15;
  }

  .alpt-contact-hero__underline {
    margin-left: 1rem;
    width: 6.5rem;
  }

  .alpt-contact-hero__intro {
    margin-top: clamp(1.75rem, 4vw, 2.25rem);
    max-width: 34ch;
  }

  .alpt-contact-hero__media {
    margin: clamp(1.75rem, 4vw, 2.25rem) 0 0 auto;
    width: min(88%, 21.25rem);
  }
}

@media (max-width: 360px) {
  .alpt-contact-hero__media {
    width: min(82%, 18rem);
  }
}

body.alpt-world-contact .alpt-page-hero__inner::before {
  content: "Direkter Kontakt";
}

body.alpt-world-legal .alpt-page-hero__inner::before {
  content: "Transparent & klar";
}

html[lang^="it"] body.alpt-world-about .alpt-page-hero__inner::before {
  content: "Persone & valori";
}

html[lang^="it"] body.alpt-world-experiences .alpt-page-hero__inner::before {
  content: "Momenti & storie";
}

html[lang^="it"] body.alpt-world-contact .alpt-page-hero__inner::before {
  content: "Contatto diretto";
}

html[lang^="it"] body.alpt-world-legal .alpt-page-hero__inner::before {
  content: "Trasparente & chiaro";
}

.alpt-page-hero__inner:has(> .alpt-eyebrow)::before,
.alpt-story-detail .alpt-page-hero__inner::before {
  display: none;
}

.alpt-page-hero__inner > * {
  margin-left: 0 !important;
  margin-right: 0 !important;
}

.alpt-page-hero h1,
.alpt-page-hero .wp-block-post-title {
  color: var(--alpt-ink);
  font-size: clamp(2.7rem, 4.2vw, 4.1rem);
  font-weight: 510;
  letter-spacing: -0.06em;
  line-height: 0.98;
  margin: 0;
  max-width: 15ch;
  overflow-wrap: normal;
  text-wrap: balance;
  word-break: normal;
}

.alpt-page-hero .alpt-eyebrow,
.alpt-event-registration__header .alpt-eyebrow,
.alpt-event-selection > header .alpt-eyebrow {
  color: var(--alpt-world-accent, var(--alpt-coral-dark));
  font-family: ui-monospace, SFMono-Regular, "Cascadia Mono", "Roboto Mono", monospace;
  font-size: 0.7rem !important;
  font-weight: 680;
  letter-spacing: 0.18em;
  margin-bottom: 0.9rem;
}

.alpt-page-hero .alpt-eyebrow::before,
.alpt-event-registration__header .alpt-eyebrow::before,
.alpt-event-selection > header .alpt-eyebrow::before {
  display: none;
}

.alpt-page-hero .alpt-page-hero__lead {
  color: #4f5963;
  font-size: clamp(1.02rem, 1.35vw, 1.18rem) !important;
  letter-spacing: -0.015em;
  line-height: 1.55;
  margin-bottom: 0;
  margin-top: 1.25rem;
  max-width: 48ch;
}

.alpt-page-body {
  margin-inline: auto;
  padding: var(--alpt-space-lg) var(--alpt-gutter) var(--alpt-space-xl);
  width: min(100%, var(--alpt-wide));
}

.alpt-breadcrumbs {
  border-bottom: 1px solid var(--alpt-border);
  margin-bottom: clamp(2rem, 3.5vw, 3rem);
  padding-bottom: 0.85rem;
}

.alpt-breadcrumbs ol {
  align-items: center;
  color: var(--alpt-muted);
  display: flex;
  flex-wrap: wrap;
  font-size: 0.82rem;
  gap: 0.45rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.alpt-breadcrumbs li + li::before {
  color: var(--alpt-lake);
  content: "→";
  margin-right: 0.45rem;
}

.alpt-breadcrumbs a {
  color: var(--alpt-forest);
  font-weight: 650;
  text-decoration: none;
}

.alpt-breadcrumbs [aria-current="page"] {
  color: var(--alpt-muted);
}

.alpt-page-body > .wp-block-post-featured-image {
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
  margin-top: 0;
}

.alpt-page-body > .wp-block-post-featured-image img {
  max-height: 38rem;
  object-fit: cover;
  width: 100%;
}

.alpt-page-body .wp-block-post-content {
  margin: 0;
  max-width: none;
  width: 100%;
}

.alpt-page-body .wp-block-post-content > :where(p, h2, h3, h4, ul, ol, blockquote) {
  margin-left: 0 !important;
  margin-right: 0 !important;
  max-width: 48rem;
}

.alpt-page-body .wp-block-post-content > p:not(.alpt-lead) {
  color: #4f5963;
  font-size: 1.02rem;
  line-height: 1.7;
}

.alpt-page-body .wp-block-post-content > h2 {
  font-size: clamp(1.9rem, 3vw, 2.75rem);
  letter-spacing: -0.045em;
  line-height: 1.08;
  margin-bottom: 1rem;
  margin-top: clamp(2.5rem, 5vw, 4rem);
}

.alpt-page-body .wp-block-post-content > h3 {
  font-size: clamp(1.35rem, 2vw, 1.7rem);
  margin-bottom: 0.75rem;
  margin-top: 2.25rem;
}

.alpt-page-body .wp-block-post-content > .alpt-lead {
  border-bottom: 1px solid var(--alpt-border);
  font-size: clamp(1.25rem, 2vw, 1.65rem) !important;
  line-height: 1.4;
  margin-bottom: clamp(2.5rem, 4vw, 3.5rem);
  max-width: 46rem;
  padding-bottom: clamp(1.75rem, 3vw, 2.5rem);
}

.alpt-page-body .wp-block-shortcode {
  margin: 0;
  max-width: none;
  width: 100%;
}

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

.alpt-page-body .alpt-card {
  min-height: 15rem;
}

.alpt-page-body .alpt-team-grid {
  counter-reset: alpt-team;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.alpt-page-body .alpt-team-card {
  background: var(--alpt-sage);
  border: 0;
  counter-increment: alpt-team;
  min-height: 15rem;
  padding: 1.25rem;
}

.alpt-page-body .alpt-team-card:nth-child(3n + 2) {
  background: var(--alpt-sand);
}

.alpt-page-body .alpt-team-card:nth-child(3n) {
  background: var(--alpt-mist);
}

.alpt-page-body .alpt-team-card::before {
  color: var(--alpt-coral-dark);
  content: "0" counter(alpt-team);
  font-family: ui-monospace, SFMono-Regular, "Cascadia Mono", "Roboto Mono", monospace;
  font-size: 0.72rem;
  font-weight: 760;
  letter-spacing: 0.12em;
  padding-bottom: 2rem;
}

.alpt-page-body .alpt-team-card h2 {
  font-size: clamp(1.25rem, 1.7vw, 1.5rem);
}

.alpt-page-body .alpt-team-card p {
  color: #4f5963;
}

.alpt-team-card__portrait {
  align-items: center;
  aspect-ratio: 4 / 5;
  background: #e7e9e4;
  display: flex;
  justify-content: center;
  margin-bottom: 1.35rem;
  overflow: hidden;
  width: 100%;
}

.alpt-team-card__portrait img {
  border-radius: 0;
  height: 100%;
  object-fit: cover;
  object-position: center 22%;
  width: 100%;
}

.alpt-team-card__initials {
  color: var(--alpt-pine);
  font-family: "Iowan Old Style", Baskerville, "Palatino Linotype", Georgia, serif;
  font-size: clamp(2.8rem, 5vw, 4.6rem);
  font-style: italic;
  letter-spacing: -0.08em;
}

.alpt-card--offer:hover,
.alpt-card--offer:focus-within {
  border-color: var(--alpt-ink);
  transform: none;
}

.alpt-inline-section {
  border-top: 1px solid var(--alpt-ink);
  margin-top: clamp(3.5rem, 7vw, 6rem);
  padding-top: clamp(2rem, 4vw, 3rem);
}

:where(#der-verein, #geschichte, #team, #dokumente, #guides) {
  scroll-margin-top: 7rem;
}

.alpt-inline-section > .alpt-eyebrow {
  margin-bottom: 0.9rem;
}

.alpt-inline-section > h2 {
  font-size: clamp(1.9rem, 3vw, 2.75rem);
  letter-spacing: -0.045em;
  line-height: 1.08;
  margin: 0 0 1.25rem;
  max-width: 18ch;
}

.alpt-inline-section > p {
  color: #4f5963;
  line-height: 1.7;
  max-width: 48rem;
}

.alpt-inline-section .alpt-team-grid,
.alpt-inline-section > .wp-block-shortcode {
  margin-top: 2rem;
}

.alpt-about-filter-ready .alpt-about-panel {
  animation: alpt-panel-in 280ms var(--alpt-ease-out) both;
  border-top: 0;
  margin-top: 0;
  padding-top: 0;
}

.alpt-about-filter-ready .alpt-about-panel[hidden] {
  display: none;
}

.alpt-about-filter-ready .alpt-about-panel > h2 {
  font-size: clamp(1.9rem, 3vw, 2.75rem);
  letter-spacing: -0.045em;
  line-height: 1.08;
  margin: 0 0 1.25rem;
  max-width: 18ch;
}

.alpt-about-filter-ready .alpt-about-panel > .alpt-eyebrow {
  display: none;
}

.alpt-about-filter-ready .alpt-about-panel > p:not(.alpt-eyebrow) {
  color: #4f5963;
  line-height: 1.7;
  margin-top: 0;
  max-width: 48rem;
}

.alpt-about-filter-ready .alpt-about-panel > p:not(.alpt-eyebrow) + p:not(.alpt-eyebrow) {
  margin-top: 0.85rem;
}

.alpt-about-filter-ready #team .alpt-team-grid,
.alpt-about-filter-ready
  #dokumente
  > :where(.wp-block-shortcode, .alpt-empty, .alpt-documents-request) {
  margin-top: 1.5rem;
}

@media (max-width: 360px) {
  body.home .alpt-home-participation__intro {
    padding-inline: 1.25rem;
  }
}

@media (min-width: 600px) and (max-width: 1023px) {
  body.home .alpt-home-participation__grid {
    display: grid;
    grid-auto-rows: clamp(20rem, 46vw, 26.25rem);
    grid-template-columns: repeat(2, minmax(0, 1fr));
    min-height: 0;
  }

  body.home .alpt-home-participation__intro {
    min-height: 0;
    padding: clamp(2rem, 4.5vw, 3.5rem);
  }

  body.home .alpt-home-participation__intro h2 {
    font-size: clamp(3.4rem, 8vw, 4.7rem);
    line-height: 0.9;
  }

  body.home .alpt-home-participation__intro .handwritten-accent {
    font-size: clamp(1.55rem, 3.6vw, 2rem);
    line-height: 1.1;
    margin-top: 1.625rem;
  }

  body.home .alpt-home-participation__item {
    height: auto;
    min-height: 0;
  }

  body.home .alpt-home-participation__content {
    display: flex;
    flex-direction: column;
    height: 16rem;
    padding: 1.5rem 1.375rem 1.625rem;
    row-gap: 0;
  }

  body.home .alpt-home-participation__content h3 {
    font-size: clamp(1.5rem, 3.4vw, 2rem);
    line-height: 1.05;
  }

  body.home .alpt-home-participation__item > a::after {
    background: linear-gradient(180deg, rgb(7 19 26 / 8%) 15%, rgb(7 19 26 / 82%) 100%);
  }

  body.home .alpt-home-participation__description {
    font-size: 1rem;
    line-height: 1.45;
    margin-top: 1rem;
    max-width: 30ch;
  }

  body.home .alpt-home-participation__arrow {
    margin-top: auto;
  }
}

@media (min-width: 600px) and (max-width: 1023px) {
  html[lang^="it"] body.home .alpt-home-participation__intro h2 {
    font-size: clamp(2.8rem, 7vw, 4rem);
  }
}

@media (min-width: 1024px) {
  html[lang^="it"] body.home .alpt-home-participation__grid {
    grid-template-columns: minmax(18.5rem, 1.15fr) repeat(3, minmax(0, 1fr));
  }

  html[lang^="it"] body.home .alpt-home-participation__intro h2 {
    font-size: clamp(2.5rem, 4vw, 4rem);
  }
}

@media (min-width: 901px) {
  .alpt-about-filter-ready :where(#der-verein, #geschichte, #dokumente) {
    align-items: start;
    column-gap: clamp(3rem, 7vw, 7rem);
    display: grid;
    grid-template-columns: minmax(14rem, 0.65fr) minmax(0, 1.35fr);
  }

  .alpt-about-filter-ready :where(#der-verein, #geschichte, #dokumente) > :where(.alpt-eyebrow, h2) {
    grid-column: 1;
  }

  .alpt-about-filter-ready .alpt-about-panel:where(#geschichte, #dokumente) > .alpt-eyebrow {
    grid-column: 1;
  }

  .alpt-about-filter-ready :where(#der-verein, #geschichte) > p,
  .alpt-about-filter-ready
    #dokumente
    > :where(.wp-block-shortcode, .alpt-empty, .alpt-documents-request) {
    grid-column: 2;
  }

  .alpt-about-filter-ready :where(#geschichte, #dokumente) > .alpt-eyebrow {
    grid-row: 1;
  }

  /* Let the copy define its own paragraph rhythm instead of inheriting the heading row height. */
  .alpt-about-filter-ready #der-verein > h2 {
    align-self: start;
    grid-row: 1 / span 7;
  }

  .alpt-about-filter-ready #geschichte > h2 {
    align-self: start;
    grid-row: 1 / span 4;
  }

  .alpt-about-filter-ready #der-verein > p:first-of-type,
  .alpt-about-filter-ready #geschichte > p:first-of-type,
  .alpt-about-filter-ready
    #dokumente
    > :where(.wp-block-shortcode, .alpt-empty, .alpt-documents-request) {
    grid-row: 1;
  }

  .alpt-about-filter-ready .alpt-about-panel:where(#geschichte, #dokumente) > h2 {
    grid-row: 1;
    margin-top: 0;
  }
}

.alpt-support-grid {
  border-bottom: 1px solid var(--color-border);
  border-top: 1px solid var(--color-border);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  counter-reset: alpt-support;
  margin-top: var(--alpt-space-md);
}

.alpt-support-path {
  counter-increment: alpt-support;
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: clamp(2.25rem, 3vw, 3rem) clamp(1.5rem, 2.6vw, 2.5rem);
  scroll-margin-top: 7rem;
}

.alpt-support-path + .alpt-support-path {
  border-left: 1px solid var(--alpt-border);
}

.alpt-support-path:nth-child(2) {
  background: transparent;
}

.alpt-support-path::before {
  color: var(--alpt-world-accent);
  content: "0" counter(alpt-support);
  font-family: var(--font-handwritten);
  font-size: clamp(1.8rem, 2.3vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1;
  margin-bottom: 0.8rem;
}

.alpt-support-path > .alpt-eyebrow {
  display: none;
}

.alpt-support-path h2 {
  font-family: Anton, var(--font-display);
  font-size: clamp(2rem, 2.5vw, 2.8rem);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 0.94;
  margin: 0;
  text-transform: uppercase;
}

.alpt-support-path__slogan {
  color: var(--color-accent-dark);
  font-family: var(--font-handwritten);
  font-size: clamp(1.25rem, 1.6vw, 1.6rem);
  line-height: 1.15;
  margin: 0.65rem 0 1rem;
}

.alpt-support-path__slogan-line {
  border-top: 2px solid currentcolor;
  display: block;
  margin: 0.45rem 0 0 0.75rem;
  transform: rotate(-1.2deg);
  width: clamp(4.5rem, 7vw, 6.5rem);
}

.alpt-support-path > p:not(.alpt-eyebrow, .alpt-support-path__slogan) {
  color: var(--color-text);
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.6;
  margin: 0;
  max-width: 34ch;
}

.alpt-support-path .alpt-text-link {
  align-self: flex-start;
  margin-top: auto;
  min-height: 2.75rem;
  padding-top: 1.25rem;
}

@media (min-width: 901px) and (max-width: 1100px) {
  .alpt-support-path__slogan {
    min-height: 2.8em;
  }
}

@media (max-width: 900px) {
  body.alpt-world-support .alpt-page-body {
    padding-bottom: clamp(3.5rem, 8vw, 4.5rem);
    padding-top: 0;
  }

  .alpt-support-grid {
    border-bottom: 0;
    grid-template-columns: 1fr;
    margin-top: 0;
  }

  .alpt-support-path {
    padding: clamp(2.25rem, 6vw, 3rem) 0 clamp(2.5rem, 6vw, 3rem);
  }

  .alpt-support-path + .alpt-support-path {
    border-left: 0;
    border-top: 1px solid var(--color-border);
  }

  .alpt-support-path:last-child {
    padding-bottom: 0;
  }

  .alpt-support-path::before {
    font-size: clamp(1.7rem, 6.5vw, 2rem);
    margin-bottom: 0.625rem;
  }

  .alpt-support-path h2 {
    font-size: clamp(2rem, 9vw, 2.6rem);
    line-height: 0.95;
  }

  .alpt-support-path__slogan {
    font-size: clamp(1.25rem, 5.5vw, 1.5rem);
    line-height: 1.15;
    margin: 0.6875rem 0 1.125rem;
  }

  .alpt-support-path > p:not(.alpt-eyebrow, .alpt-support-path__slogan) {
    font-size: 1rem;
    line-height: 1.6;
    max-width: none;
  }

  .alpt-support-path h2 + p:not(.alpt-support-path__slogan) {
    margin-top: 1.125rem;
  }

  .alpt-support-path .alpt-text-link {
    align-items: flex-end;
    line-height: 1.35;
    margin-top: 0;
    max-width: 100%;
    min-height: 2.75rem;
    padding-top: 1.25rem;
  }
}

.alpt-detail-cta {
  background: var(--alpt-dusk);
  color: rgb(255 255 255 / 72%);
  margin: clamp(3rem, 6vw, 5rem) 0 0;
  max-width: 52rem;
  padding: clamp(1.75rem, 4vw, 3rem);
}

.alpt-detail-cta .alpt-eyebrow {
  color: var(--alpt-coral);
}

.alpt-detail-cta h2 {
  color: var(--alpt-white);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  letter-spacing: -0.04em;
  line-height: 1.08;
  margin: 0 0 0.8rem;
}

.alpt-detail-cta p:not(.alpt-eyebrow) {
  line-height: 1.55;
  max-width: 45ch;
}

.alpt-contact-note {
  background: var(--alpt-sage);
  border-left: 2px solid var(--alpt-pine);
  margin-bottom: 2rem !important;
  padding: 0.9rem 1rem;
}

.alpt-action-panel,
.alpt-review-note {
  max-width: 52rem;
}

.alpt-action-panel {
  background: var(--alpt-sage);
  border-top: 1px solid var(--alpt-ink);
  margin: clamp(2.5rem, 5vw, 4rem) 0 0;
  padding: clamp(1.5rem, 3vw, 2.5rem);
}

body.alpt-world-support .alpt-action-panel {
  background: var(--alpt-sand);
}

.alpt-action-panel h2 {
  font-size: clamp(1.6rem, 2.6vw, 2.3rem) !important;
  margin-top: 0 !important;
}

.alpt-review-note {
  background: var(--alpt-sand);
  border-left: 2px solid #8b6e55;
  color: #55483d !important;
  padding: 0.9rem 1rem;
}

.alpt-post-grid {
  display: grid;
  gap: clamp(1.5rem, 3vw, 3rem);
  grid-template-columns: repeat(3, minmax(0, 1fr));
  list-style: none;
  margin: 0;
  padding: 0;
}

.alpt-story-detail,
.alpt-story-detail .alpt-page-hero {
  background: #fff;
}

.alpt-story-detail .alpt-page-hero__inner {
  padding-bottom: clamp(3rem, 4vw, 3.5rem);
  padding-top: clamp(3.5rem, 5vw, 5rem);
  width: min(100%, calc(1120px + (2 * var(--alpt-gutter))));
}

.alpt-story-detail .alpt-page-hero__inner::after {
  content: none;
}

.alpt-story-detail__header {
  margin-inline: 0 !important;
  max-width: 1120px;
  width: 100%;
}

.alpt-story-detail__overview-link {
  align-items: center;
  display: inline-flex;
  font-size: 0.78rem;
  gap: 0.65rem;
  letter-spacing: 0.1em;
  min-height: 2.75rem;
  text-transform: uppercase;
}

.alpt-story-detail__date {
  color: var(--alpt-world-accent);
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  margin-top: clamp(1.75rem, 2.5vw, 2.25rem);
  text-transform: uppercase;
}

.alpt-story-detail .alpt-page-hero h1 {
  font-family: var(--font-sans);
  font-size: clamp(2.75rem, 4.2vw, 4.3rem);
  font-weight: 800;
  hyphens: auto;
  letter-spacing: -0.04em;
  line-height: 1.03;
  margin: 1rem 0 0;
  max-width: 900px;
  text-transform: none;
  text-wrap: balance;
}

.alpt-story-detail__slogan {
  color: var(--alpt-world-accent);
  max-width: 780px;
  margin-top: clamp(1.25rem, 2vw, 1.75rem);
  width: 100%;
}

.alpt-story-detail__slogan p {
  font-family: var(--font-handwritten);
  font-size: clamp(1.3rem, 1.8vw, 1.7rem);
  letter-spacing: 0;
  line-height: 1.2;
  margin: 0;
}

.alpt-story-detail__slogan svg {
  display: block;
  height: auto;
  margin-top: 0.35rem;
  max-width: 6.5rem;
  width: 24%;
}

.alpt-story-detail__slogan path {
  fill: none;
  stroke: currentcolor;
  stroke-linecap: round;
  stroke-width: 2;
  vector-effect: non-scaling-stroke;
}

.alpt-story-detail .alpt-page-body {
  border-top: 0;
  padding-bottom: clamp(4rem, 6vw, 5.5rem);
  padding-top: 0;
  width: min(100%, calc(1120px + (2 * var(--alpt-gutter))));
}

.alpt-story-detail > .alpt-page-body {
  margin-block-start: 0;
}

body.alpt-world-experiences .alpt-story-detail .alpt-page-body {
  padding-top: 0;
}

.alpt-story-detail .alpt-page-body > *,
.alpt-story-detail__copy {
  margin-left: 0 !important;
  margin-right: 0 !important;
  margin-top: 0 !important;
  min-width: 0;
  width: 100%;
}

.alpt-story-detail__content {
  display: block;
}

.alpt-story-detail__content > * {
  margin-left: 0;
  margin-right: 0;
  max-width: 780px;
  width: 100%;
}

.alpt-story-detail__content > :first-child {
  margin-top: 0;
}

.alpt-story-detail__content > * + * {
  margin-top: clamp(1.5rem, 2.5vw, 2rem);
}

.alpt-story-detail__content :where(p, li, td, th) {
  font-size: 1.0625rem;
  line-height: 1.7;
}

.alpt-story-detail__content :where(h2, h3, h4) {
  font-family: var(--font-sans);
  font-weight: 800;
  hyphens: auto;
  letter-spacing: -0.035em;
  line-height: 1.08;
  text-transform: none;
}

.alpt-story-detail__content h2 {
  font-size: clamp(1.7rem, 2.2vw, 2.2rem);
}

.alpt-story-detail__content h3 {
  font-size: clamp(1.4rem, 2vw, 1.9rem);
}

.alpt-story-detail__content h4 {
  font-size: clamp(1.2rem, 1.6vw, 1.55rem);
}

.alpt-story-detail__content :where(ul, ol) {
  padding-left: 1.4rem;
}

.alpt-story-detail__content li + li {
  margin-top: 0.65rem;
}

.alpt-story-detail__content :where(.wp-block-columns, .wp-block-table, .alignwide),
.alpt-story-detail__content > .is-style-alpt-editorial-split {
  max-width: 780px;
}

.alpt-story-detail__content .wp-block-columns,
.alpt-story-detail__content .is-style-alpt-editorial-split {
  display: block;
}

.alpt-story-detail__content .wp-block-columns > .wp-block-column + .wp-block-column {
  margin-top: 1.5rem;
}

.alpt-story-detail__content :where(figcaption, .wp-element-caption) {
  color: var(--color-text-muted);
  font-size: 0.875rem;
  line-height: 1.5;
  margin-top: 0.65rem;
}

.alpt-story-detail__content .wp-block-table {
  overflow-x: auto;
}

.alpt-story-detail__content .wp-block-table table {
  border-collapse: collapse;
  width: 100%;
}

.alpt-story-detail__content .wp-block-table :where(th, td) {
  border-bottom: 1px solid var(--color-border);
  padding: 0.75rem;
  text-align: left;
  vertical-align: top;
}

.alpt-story-detail__content blockquote {
  border: 0;
}

.alpt-story-detail__content blockquote cite {
  display: block;
  font-size: 0.8rem;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-top: 1rem;
  text-transform: uppercase;
}

.alpt-story-detail .alpt-page-body .alpt-story-detail__content > .is-style-alpt-editorial-intro {
  border: 0;
  color: var(--color-text);
  font-size: 1.125rem;
  line-height: 1.7;
  max-width: 780px;
  padding-left: 0;
}

.alpt-story-detail__content .is-style-alpt-editorial-quote {
  border: 0;
  color: var(--alpt-world-accent);
  margin-left: clamp(1.5rem, 4vw, 3.5rem) !important;
  margin-top: clamp(4rem, 6vw, 5.5rem) !important;
  max-width: 900px;
  padding: clamp(0.5rem, 1vw, 1rem) clamp(1.25rem, 4vw, 3.5rem);
  position: relative;
  width: min(900px, calc(100vw - (2 * var(--alpt-gutter)) - clamp(1.5rem, 4vw, 3.5rem)));
}

.alpt-story-detail__content .is-style-alpt-editorial-quote::before {
  content: "“";
  font-family: var(--font-handwritten);
  font-size: clamp(4rem, 8vw, 7rem);
  left: 0;
  line-height: 0.7;
  opacity: 0.16;
  position: absolute;
  top: 1rem;
}

.alpt-story-detail__content .is-style-alpt-editorial-quote p {
  font-family: var(--font-handwritten);
  font-size: clamp(1.5rem, 2.4vw, 2.1rem);
  letter-spacing: 0;
  line-height: 1.35;
  margin: 0;
}

.alpt-story-detail__content .is-style-alpt-numbered-section {
  border: 0;
  display: block;
  max-width: 780px;
  padding-top: 0;
}

.alpt-story-detail__content .is-style-alpt-editorial-intro + .is-style-alpt-numbered-section {
  margin-top: clamp(3rem, 4vw, 3.5rem);
}

.alpt-story-detail__content .is-style-alpt-numbered-section + .is-style-alpt-numbered-section,
.alpt-story-detail__content .is-style-alpt-numbered-section + .is-style-alpt-editorial-cta {
  margin-top: clamp(3rem, 5vw, 4.25rem);
}

.alpt-story-detail__content .is-style-alpt-numbered-section + .is-style-alpt-editorial-quote {
  margin-top: clamp(2.5rem, 4vw, 3.25rem) !important;
}

.alpt-story-detail__content .is-style-alpt-editorial-quote + .is-style-alpt-numbered-section {
  margin-top: clamp(2.75rem, 4vw, 3.5rem) !important;
}

.alpt-story-detail__content .alpt-editorial-section__body > .is-style-alpt-editorial-quote {
  margin-top: clamp(2.5rem, 4vw, 3.25rem) !important;
}

.alpt-story-detail__content .is-style-alpt-numbered-section:has(
  > .alpt-editorial-section__body > .is-style-alpt-editorial-quote
) + .is-style-alpt-numbered-section {
  margin-top: clamp(2.75rem, 4vw, 3.5rem);
}

.alpt-story-detail__content .alpt-editorial-section__number {
  color: var(--color-accent);
  font-family: var(--font-handwritten);
  font-size: 1.3rem;
  line-height: 1;
  margin: 0 0 0.5rem;
}

.alpt-story-detail__content .alpt-editorial-section__number::after {
  content: none;
}

.alpt-story-detail__content .is-style-alpt-numbered-section > h2 {
  font-family: var(--font-sans);
  font-size: clamp(1.7rem, 2.2vw, 2.2rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.08;
  margin: 0;
  text-transform: none;
}

.alpt-story-detail__content .alpt-editorial-section__body {
  margin-top: 1rem;
}

.alpt-story-detail__content .alpt-editorial-section__body > :first-child {
  margin-top: 0;
}

.alpt-story-detail__content .alpt-editorial-section__body > * + * {
  margin-top: 1.5rem;
}

.alpt-story-detail__content ol.is-style-alpt-editorial-numbered {
  counter-reset: alpt-editorial-list;
  list-style: none;
  max-width: 780px;
  padding: 0;
}

.alpt-story-detail__content ol.is-style-alpt-editorial-numbered > li {
  border: 0;
  counter-increment: alpt-editorial-list;
  display: grid;
  gap: 0.75rem;
  grid-template-columns: 2rem minmax(0, 1fr);
  margin: 0;
  padding: 0.5rem 0;
}

.alpt-story-detail__content ol.is-style-alpt-editorial-numbered > li + li {
  margin-top: 0;
}

.alpt-story-detail__content ol.is-style-alpt-editorial-numbered > li::before {
  color: var(--alpt-world-accent);
  content: counter(alpt-editorial-list, decimal-leading-zero);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.alpt-story-detail__content .is-style-alpt-editorial-split {
  align-items: center !important;
  gap: clamp(2rem, 6vw, 6rem);
}

.alpt-story-detail__content .is-style-alpt-editorial-split > .wp-block-column {
  margin-top: 0;
  min-width: 0;
}

.alpt-story-detail__content .is-style-alpt-editorial-cta {
  border: 0;
  margin-top: clamp(2rem, 3vw, 2.5rem) !important;
  max-width: 780px;
  padding: 0;
}

.alpt-story-detail__content .is-style-alpt-editorial-cta > :first-child {
  margin-top: 0;
}

.alpt-story-detail__content .is-style-alpt-editorial-cta > * + * {
  margin-top: 1.25rem;
}

.alpt-story-detail__content .is-style-alpt-editorial-cta a {
  color: var(--alpt-world-accent);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.4;
  text-decoration-line: underline;
  text-decoration-thickness: 0.08em;
  text-transform: uppercase;
  text-underline-offset: 0.24em;
  white-space: nowrap;
}

.alpt-story-detail__back {
  border: 0;
  margin: clamp(2.75rem, 4vw, 3.5rem) 0 0 !important;
  max-width: 780px;
  padding-top: 0;
}

.alpt-story-detail__back .alpt-text-link {
  gap: 0.65rem;
  min-height: 2.75rem;
}

.alpt-story-detail__content .is-style-alpt-editorial-cta > p {
  font-size: 1.0625rem;
  line-height: 1.7;
  max-width: 780px;
  text-wrap: pretty;
}

.alpt-story-detail__content .is-style-alpt-editorial-cta a:not(:has([aria-hidden="true"]))::after {
  content: "\00a0\2192";
}

.alpt-story-gallery {
  margin-top: 3rem;
  max-width: 1120px;
  width: 100%;
}

.alpt-story-gallery__header {
  align-items: center;
  display: flex;
  gap: 1.5rem;
  justify-content: space-between;
  margin-bottom: 1.25rem;
}

.alpt-story-gallery__header h2 {
  color: var(--color-text);
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1.3;
  margin: 0;
  text-transform: uppercase;
}

.alpt-story-gallery__controls {
  display: flex;
  gap: 0.5rem;
}

.alpt-story-gallery__controls button {
  align-items: center;
  background: transparent;
  border: 1px solid var(--color-border);
  color: var(--alpt-world-accent);
  cursor: pointer;
  display: inline-flex;
  font: inherit;
  height: 2.75rem;
  justify-content: center;
  min-width: 2.75rem;
  padding: 0;
}

.alpt-story-gallery__controls button:hover:not(:disabled) {
  border-color: var(--alpt-world-accent);
}

.alpt-story-gallery__controls button:disabled {
  cursor: default;
  opacity: 0.35;
}

.alpt-story-gallery__controls button:focus-visible,
.alpt-story-gallery__viewport:focus-visible {
  outline: 3px solid var(--color-focus);
  outline-offset: 3px;
}

.alpt-story-gallery__track {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(min(11.25rem, 100%), 15rem));
  list-style: none;
  margin: 0;
  padding: 0;
}

.alpt-story-gallery.is-single .alpt-story-gallery__track {
  grid-template-columns: minmax(0, 28rem);
}

.alpt-story-gallery__item,
.alpt-story-gallery__item figure {
  margin: 0;
  min-width: 0;
}

.alpt-story-gallery__image {
  aspect-ratio: 4 / 3;
  display: block;
  height: auto;
  object-fit: cover;
  width: 100%;
}

.alpt-story-gallery__item figcaption {
  color: var(--color-text-muted);
  font-size: 0.8125rem;
  line-height: 1.45;
  margin-top: 0.55rem;
}

.alpt-story-gallery.is-slider .alpt-story-gallery__viewport {
  overflow-x: auto;
  padding: 0.2rem 0.2rem 0.75rem;
  scroll-padding-inline: 0.2rem;
  scroll-snap-type: x proximity;
  scrollbar-width: thin;
}

.alpt-story-gallery.is-slider .alpt-story-gallery__track {
  grid-auto-columns: minmax(11.25rem, 15rem);
  grid-auto-flow: column;
  grid-template-columns: none;
}

.alpt-story-gallery.is-slider .alpt-story-gallery__item {
  scroll-snap-align: start;
}

.alpt-story-list {
  border-bottom: 1px solid var(--color-border);
}

body.alpt-world-experiences .alpt-story-row {
  align-items: start;
  border-top: 1px solid var(--color-border);
  display: grid;
  gap: clamp(1.5rem, 3vw, 2.75rem);
  grid-template-columns: 4rem minmax(0, 1fr);
  padding: clamp(2.125rem, 3.5vw, 3rem) 0;
}

body.alpt-world-experiences .alpt-story-row__content {
  min-width: 0;
}

body.alpt-world-experiences .alpt-story-row__number {
  align-items: flex-start;
  color: var(--color-accent);
  display: flex;
  flex-direction: column;
  font-family: var(--font-handwritten);
  font-size: clamp(2rem, 2.6vw, 2.8rem);
  line-height: 1;
}

body.alpt-world-experiences .alpt-story-row__number svg {
  fill: none;
  height: 0.625rem;
  margin-top: 0.35rem;
  overflow: visible;
  stroke: currentcolor;
  stroke-linecap: round;
  stroke-width: 1.8;
  width: 3.375rem;
}

body.alpt-world-experiences .alpt-story-row__content h2 {
  font-family: Anton, var(--font-display);
  font-size: clamp(1.85rem, 2.4vw, 2.6rem) !important;
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 0.94;
  margin: 0;
  max-width: 53.125rem;
  overflow-wrap: break-word;
  text-transform: uppercase;
}

.alpt-story-row__content h2 a {
  color: var(--color-text);
  text-decoration: none;
}

.alpt-story-row__content h2 a:hover {
  color: var(--color-accent-dark);
}

.alpt-story-row__content h2 a:focus-visible {
  outline: 2px solid var(--color-focus);
  outline-offset: 4px;
}

body.alpt-world-experiences .alpt-story-row__year {
  color: var(--color-accent);
  display: block;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1.2;
  margin-bottom: 0.8rem;
}

body.alpt-world-experiences .alpt-story-row__slogan {
  color: var(--color-accent);
  font-family: var(--font-handwritten);
  font-size: clamp(1.25rem, 1.6vw, 1.65rem);
  line-height: 1.15;
  margin: 0.75rem 0 0;
  max-width: 38ch;
}

body.alpt-world-experiences .alpt-story-row__excerpt {
  color: var(--color-text);
  font-size: 1rem;
  line-height: 1.6;
  margin: 1rem 0 0;
  max-width: 45rem;
}

body.alpt-world-experiences .alpt-story-row__link {
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  line-height: 1.2;
  margin-top: 1.375rem;
  min-height: 2.75rem;
  padding-top: 0;
  text-transform: uppercase;
}

@media (min-width: 901px) {
  body.alpt-world-experiences .alpt-story-row__content h2,
  body.alpt-world-experiences .alpt-story-row__slogan {
    max-width: 80%;
  }
}

@media (max-width: 900px) {
  body.alpt-world-experiences .alpt-story-row {
    gap: 0 1rem;
    grid-template-columns: auto minmax(0, 1fr);
    padding: clamp(2.375rem, 5vw, 2.875rem) 0;
  }

  body.alpt-world-experiences .alpt-story-row__content {
    display: contents;
  }

  body.alpt-world-experiences .alpt-story-row__number {
    grid-column: 1;
    grid-row: 1;
  }

  body.alpt-world-experiences .alpt-story-row__year {
    grid-column: 2;
    grid-row: 1;
    margin: 0;
    padding-top: 0.2rem;
    place-self: start end;
  }

  body.alpt-world-experiences .alpt-story-row__content h2 {
    font-size: clamp(2rem, 9vw, 2.65rem) !important;
    grid-column: 1 / -1;
    grid-row: 2;
    line-height: 0.93;
    margin-top: clamp(1.125rem, 2.75vw, 1.375rem);
    max-width: none;
    hyphens: auto;
    overflow-wrap: normal;
    width: 100%;
  }

  body.alpt-world-experiences .alpt-story-row__slogan {
    font-size: clamp(1.25rem, 5.4vw, 1.55rem);
    grid-column: 1 / -1;
    grid-row: 3;
    margin-bottom: 1.125rem;
    max-width: 100%;
  }

  body.alpt-world-experiences .alpt-story-row__excerpt {
    font-size: 1rem;
    grid-column: 1 / -1;
    grid-row: 4;
    line-height: 1.62;
    margin-top: 1.125rem;
    max-width: none;
  }

  body.alpt-world-experiences .alpt-story-row.has-slogan .alpt-story-row__excerpt {
    margin-top: 0;
  }

  body.alpt-world-experiences .alpt-story-row.has-no-slogan .alpt-story-row__excerpt {
    grid-row: 3;
  }

  body.alpt-world-experiences .alpt-story-row__link {
    grid-column: 1 / -1;
    grid-row: 5;
    margin-top: 1.25rem;
  }

  body.alpt-world-experiences .alpt-story-row.has-no-slogan .alpt-story-row__link {
    grid-row: 4;
  }
}

.alpt-post-index .alpt-story-card {
  max-width: none;
}

.alpt-post-index .wp-block-query-pagination {
  border-top: 1px solid var(--alpt-border);
  margin-top: clamp(2.5rem, 5vw, 4rem);
  padding-top: 1.25rem;
}

.alpt-filter {
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--alpt-ink);
  border-top: 1px solid var(--alpt-ink);
  margin-bottom: clamp(2rem, 4vw, 3rem);
  padding: 1rem 0;
}

.alpt-filter__layout {
  align-items: center;
  border: 0;
  display: flex;
  gap: clamp(1.5rem, 4vw, 4rem);
  justify-content: space-between;
  margin: 0;
  min-width: 0;
  padding: 0;
}

.alpt-filter br,
.alpt-filter p:empty {
  display: none;
}

.alpt-filter__intro {
  display: grid;
  flex: 0 0 auto;
  gap: 0.15rem;
}

.alpt-filter__intro span {
  color: var(--alpt-coral-dark);
  font-family: ui-monospace, SFMono-Regular, "Cascadia Mono", "Roboto Mono", monospace;
  font-size: 0.68rem;
  font-weight: 760;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.alpt-filter__intro strong {
  color: var(--alpt-ink);
  font-size: 1rem;
  font-weight: 650;
}

.alpt-filter__options {
  align-items: center;
  background: #f2f4f0;
  border-radius: 999px;
  display: flex;
  gap: 0.3rem;
  padding: 0.3rem;
}

.alpt-filter .alpt-filter__option {
  background: transparent;
  border: 0;
  border-radius: 999px;
  color: #4f5963;
  cursor: pointer;
  font: inherit;
  font-size: 0.9rem;
  font-weight: 650;
  line-height: 1.2;
  min-height: 2.55rem;
  padding: 0.55rem 1rem;
  transition: background-color 180ms ease, box-shadow 180ms ease, color 180ms ease;
}

.alpt-filter .alpt-filter__option:hover {
  background: var(--alpt-white);
  color: var(--alpt-ink);
}

.alpt-filter .alpt-filter__option.is-active {
  background: var(--alpt-ink);
  box-shadow: 0 0.25rem 0.8rem rgb(24 35 48 / 16%);
  color: var(--alpt-white);
}

.alpt-filter .alpt-filter__option.is-active::before {
  background: var(--alpt-coral);
  border-radius: 50%;
  content: "";
  display: inline-block;
  height: 0.4rem;
  margin-right: 0.45rem;
  width: 0.4rem;
}

.alpt-filter .alpt-filter__option:focus-visible {
  box-shadow: 0 0 0 5px var(--alpt-white);
  outline: 3px solid var(--alpt-coral-dark);
  outline-offset: 3px;
}

.alpt-section-nav {
  align-items: center;
  border-bottom: 1px solid var(--alpt-ink);
  border-top: 1px solid var(--alpt-ink);
  display: flex;
  gap: clamp(1.5rem, 4vw, 4rem);
  justify-content: space-between;
  margin-bottom: clamp(2rem, 4vw, 3rem);
  padding: 1rem 0;
}

.alpt-section-nav__intro {
  display: grid;
  flex: 0 0 auto;
  gap: 0.15rem;
}

.alpt-section-nav__intro span {
  color: var(--alpt-coral-dark);
  font-family: ui-monospace, SFMono-Regular, "Cascadia Mono", "Roboto Mono", monospace;
  font-size: 0.68rem;
  font-weight: 760;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.alpt-section-nav__intro strong {
  color: var(--alpt-ink);
  font-size: 1rem;
  font-weight: 650;
}

.alpt-section-nav__options {
  align-items: center;
  background: #f2f4f0;
  border-radius: 999px;
  display: flex;
  gap: 0.3rem;
  padding: 0.3rem;
}

.alpt-section-nav__option {
  align-items: center;
  border-radius: 999px;
  color: #4f5963;
  display: inline-flex;
  font-size: 0.9rem;
  font-weight: 650;
  justify-content: center;
  line-height: 1.2;
  min-height: 2.55rem;
  padding: 0.55rem 1rem;
  text-decoration: none;
  transition: background-color 180ms ease, box-shadow 180ms ease, color 180ms ease;
}

.alpt-section-nav__option:hover {
  background: var(--alpt-white);
  color: var(--alpt-ink);
}

.alpt-section-nav__option.is-active {
  background: var(--alpt-ink);
  box-shadow: 0 0.25rem 0.8rem rgb(24 35 48 / 16%);
  color: var(--alpt-white);
}

.alpt-section-nav__option.is-active::before {
  background: var(--alpt-coral);
  border-radius: 50%;
  content: "";
  display: inline-block;
  height: 0.4rem;
  margin-right: 0.45rem;
  width: 0.4rem;
}

.alpt-section-nav__option:focus-visible {
  box-shadow: 0 0 0 5px var(--alpt-white);
  outline: 3px solid var(--alpt-coral-dark);
  outline-offset: 3px;
}

.alpt-about-filter-ready .alpt-page-hero__inner {
  padding-bottom: clamp(1.25rem, 2vw, 1.75rem);
}

.alpt-about-filter-ready .alpt-page-hero__inner::after {
  content: none;
}

.alpt-page-hero :where(.alpt-section-nav, .alpt-filter) {
  border-bottom: 0;
  border-top: 1px solid color-mix(in srgb, var(--alpt-world-accent, var(--alpt-ink)) 55%, transparent);
  margin: clamp(1.75rem, 3vw, 2.4rem) 0 0;
  max-width: none !important;
  padding: 0.8rem 0 0;
  width: 100%;
}

/* About page: quiet typographic hero and editorial section navigation. */
body.alpt-world-about .alpt-page-hero:has(.alpt-about-hero) {
  background: #fff;
}

body.alpt-world-about .alpt-page-hero__inner:has(> .alpt-about-hero) {
  padding-bottom: clamp(2.25rem, 3vw, 3rem);
  padding-top: clamp(4.5rem, 7vw, 7rem);
}

body.alpt-world-about .alpt-page-hero__inner:has(> .alpt-about-hero)::before,
body.alpt-world-about .alpt-page-hero__inner:has(> .alpt-about-hero)::after {
  display: none;
}

.alpt-about-hero {
  align-items: center;
  column-gap: clamp(4rem, 9vw, 10rem);
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(18rem, 0.8fr);
  max-width: none !important;
  width: 100%;
}

.alpt-about-hero__statement,
.alpt-about-hero__intro {
  min-width: 0;
}

.alpt-page-hero .alpt-about-hero__eyebrow {
  color: var(--color-accent-dark);
  margin: 0 0 clamp(1.25rem, 2vw, 1.75rem);
  text-transform: uppercase;
}

.alpt-page-hero .alpt-about-hero__title {
  font-family: Anton, var(--font-display);
  font-size: clamp(4rem, 6.5vw, 7rem);
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 0.92;
  max-width: 100%;
  text-transform: uppercase;
  width: max-content;
}

.alpt-about-hero__title span {
  display: block;
}

.alpt-about-hero__accent {
  color: var(--color-accent-dark);
  margin-top: clamp(1.5rem, 2.5vw, 2.25rem);
  width: fit-content;
}

.alpt-page-hero .alpt-about-hero__accent .handwritten-accent {
  font-size: clamp(1.7rem, 2.4vw, 2.7rem);
  line-height: 1.15;
  margin: 0;
  max-width: 21ch;
}

.alpt-about-hero__underline {
  display: block;
  height: auto;
  margin: 0.35rem 0 0 1.75rem;
  stroke: currentcolor;
  stroke-linecap: round;
  stroke-width: 2;
  width: clamp(6.5rem, 9vw, 9rem);
}

.alpt-about-hero__intro {
  align-self: center;
  max-width: 27.5rem;
}

.alpt-page-hero .alpt-about-hero__intro .alpt-page-hero__lead {
  font-size: 1rem !important;
  letter-spacing: 0;
  line-height: 1.6;
  margin: 0;
  max-width: 27.5rem;
}

body.alpt-world-about .alpt-section-nav--editorial {
  border: 0;
  display: block;
  margin: clamp(3.5rem, 6vw, 5.5rem) 0 0;
  padding: 0;
}

body.alpt-world-about .alpt-section-nav--editorial .alpt-section-nav__options {
  background: transparent;
  border-bottom: 1px solid var(--color-border);
  border-radius: 0;
  display: grid;
  gap: 0;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  padding: 0;
}

body.alpt-world-about .alpt-section-nav--editorial .alpt-section-nav__option {
  background: transparent;
  border-radius: 0;
  color: var(--color-text-muted);
  gap: 0.6rem;
  justify-content: flex-start;
  min-height: 3.5rem;
  padding: 0.85rem 1rem 0.95rem 0;
  position: relative;
  text-decoration: none;
}

body.alpt-world-about .alpt-section-nav--editorial .alpt-section-nav__number {
  color: var(--color-accent-dark);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

body.alpt-world-about .alpt-section-nav--editorial .alpt-section-nav__label {
  font-size: 0.85rem;
  font-weight: 650;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

body.alpt-world-about .alpt-section-nav--editorial .alpt-section-nav__option:hover,
body.alpt-world-about .alpt-section-nav--editorial .alpt-section-nav__option.is-active {
  background: transparent;
  box-shadow: none;
  color: var(--color-text);
}

body.alpt-world-about .alpt-section-nav--editorial .alpt-section-nav__option.is-active::before {
  background: var(--color-accent);
  border-radius: 0;
  bottom: -1px;
  content: "";
  height: 2px;
  left: 0;
  margin: 0;
  position: absolute;
  right: 1rem;
  width: auto;
}

body.alpt-world-about .alpt-section-nav--editorial .alpt-section-nav__option:focus-visible {
  box-shadow: none;
  outline: 3px solid var(--color-focus);
  outline-offset: -3px;
}

@media (min-width: 783px) {
  body.alpt-world-about .alpt-page-hero__inner:has(> .alpt-about-hero) {
    padding-bottom: 0;
    padding-top: clamp(3.75rem, 4.25vw, 4.75rem);
  }

  .alpt-about-hero {
    column-gap: clamp(4.375rem, 5.5vw, 6.25rem);
    grid-template-columns: minmax(0, 1fr) minmax(21.25rem, 0.7fr);
    margin-top: 0;
  }

  .alpt-page-hero .alpt-about-hero__eyebrow {
    align-items: center;
    display: flex;
    gap: 0.8rem;
    margin-bottom: 1.25rem;
  }

  .alpt-page-hero .alpt-about-hero__eyebrow::before {
    background: currentcolor;
    content: "";
    display: block;
    flex: 0 0 auto;
    height: 1px;
    width: clamp(1.75rem, 2.2vw, 2.25rem);
  }

  .alpt-page-hero .alpt-about-hero__title {
    font-size: clamp(3.5rem, 5vw, 5.6rem);
    letter-spacing: -0.02em;
    line-height: 0.93;
  }

  .alpt-about-hero__accent {
    margin-top: 1.375rem;
  }

  .alpt-page-hero .alpt-about-hero__accent .handwritten-accent {
    font-size: clamp(1.5rem, 2vw, 2.15rem);
    line-height: 1.12;
    max-width: 22.5rem;
  }

  .alpt-about-hero__intro {
    border-left: 2px solid var(--color-accent);
    max-width: 26.25rem;
    padding-left: 1.75rem;
  }

  .alpt-page-hero .alpt-about-hero__intro .alpt-page-hero__lead {
    color: var(--color-text);
    font-size: clamp(1rem, 1.15vw, 1.125rem) !important;
    font-weight: 400;
    max-width: none;
  }

  body.alpt-world-about .alpt-section-nav--editorial {
    margin-top: clamp(2rem, 2.5vw, 2.75rem);
  }

  body.alpt-world-about .alpt-section-nav--editorial .alpt-section-nav__options {
    border-left: 0;
    border-right: 0;
    border-top: 0;
  }

  body.alpt-world-about .alpt-section-nav--editorial .alpt-section-nav__option {
    border: 0;
    gap: clamp(0.75rem, 1vw, 1rem);
    justify-self: start;
    min-height: 2.75rem;
    padding: 0.7rem 0 0.9rem;
    width: fit-content;
  }

  body.alpt-world-about .alpt-section-nav--editorial .alpt-section-nav__number {
    color: var(--color-accent);
    font-size: 0.75rem;
    letter-spacing: 0.1em;
  }

  body.alpt-world-about .alpt-section-nav--editorial .alpt-section-nav__label {
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.12em;
  }

  body.alpt-world-about .alpt-section-nav--editorial .alpt-section-nav__option.is-active::before {
    left: 0;
    right: 0;
    width: auto;
  }

  body.alpt-world-about .alpt-section-nav--editorial .alpt-section-nav__option:focus-visible {
    border-radius: 2px;
    outline: 2px solid var(--color-focus);
    outline-offset: 4px;
  }
}

@media (max-width: 900px) {
  body.alpt-world-about .alpt-page-hero__inner:has(> .alpt-about-hero) {
    padding-bottom: 0;
    padding-top: clamp(3rem, 8vw, 3.75rem);
  }

  .alpt-about-hero {
    display: block;
  }

  .alpt-page-hero .alpt-about-hero__eyebrow {
    align-items: center;
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
  }

  .alpt-page-hero .alpt-about-hero__eyebrow::before {
    background: currentcolor;
    border-radius: 0;
    content: "";
    display: block;
    flex: 0 0 auto;
    height: 1px;
    width: 1.75rem;
  }

  .alpt-page-hero .alpt-about-hero__title {
    font-size: clamp(2.8rem, 12vw, 4rem);
    letter-spacing: -0.035em;
    line-height: 0.94;
  }

  .alpt-about-hero__accent {
    margin-top: 1.5rem;
  }

  .alpt-page-hero .alpt-about-hero__accent .handwritten-accent {
    font-size: clamp(1.4rem, 6vw, 1.85rem);
    line-height: 1.12;
    max-width: 18ch;
  }

  .alpt-about-hero__underline {
    margin-left: 1rem;
    width: 6.5rem;
  }

  .alpt-about-hero__intro {
    border-left: 2px solid var(--color-accent);
    margin-top: clamp(1.875rem, 5vw, 2.25rem);
    max-width: 34ch;
    padding-left: 1rem;
  }

  .alpt-page-hero .alpt-about-hero__intro .alpt-page-hero__lead {
    font-size: 1rem !important;
    line-height: 1.55;
  }

  body.alpt-world-about .alpt-section-nav--editorial {
    margin-top: clamp(2.625rem, 5vw, 2.875rem);
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    padding-bottom: 0;
    scrollbar-width: none;
  }

  body.alpt-world-about .alpt-section-nav--editorial::-webkit-scrollbar {
    display: none;
  }

  body.alpt-world-about .alpt-section-nav--editorial .alpt-section-nav__options {
    display: flex;
    min-width: max-content;
  }

  body.alpt-world-about .alpt-section-nav--editorial .alpt-section-nav__option {
    flex: 0 0 auto;
    min-height: 2.75rem;
    min-width: 8.75rem;
    padding-right: 1.5rem;
  }
}

/* About page: Verein and Geschichte follow the current editorial type system. */
body.alpt-world-about.alpt-about-filter-ready
  :is(#der-verein, #geschichte)
  > h2 {
  color: var(--color-text);
  font-family: var(--font-sans);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 0.98;
}

body.alpt-world-about.alpt-about-filter-ready
  :is(#der-verein, #geschichte)
  > p:not(.alpt-eyebrow) {
  color: var(--color-text);
  font-family: var(--font-sans);
  font-size: var(--font-size-body);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.65;
}

body.alpt-world-about.alpt-about-filter-ready
  #der-verein
  > p:not(.alpt-eyebrow) {
  margin-bottom: 0;
}

body.alpt-world-about.alpt-about-filter-ready
  #der-verein
  > p:not(.alpt-eyebrow)
  strong {
  color: var(--color-text);
  font-family: inherit;
  font-weight: 700;
}

/* About page: Team starts directly with the people in the enhanced tab interface. */
body.alpt-world-about.alpt-about-filter-ready
  #team
  > :is(h2, p) {
  display: none;
}

body.alpt-world-about.alpt-about-filter-ready
  .alpt-page-body:has(#team:not([hidden])) {
  padding-top: var(--space-md);
}

body.alpt-world-about.alpt-about-filter-ready
  #team
  .alpt-team-grid {
  margin-top: 0;
}

body.alpt-world-about.alpt-about-filter-ready
  #team
  .alpt-team-card {
  background: transparent;
  border-top: 0;
  box-shadow: none;
  transition: none;
}

body.alpt-world-about.alpt-about-filter-ready
  #team
  .alpt-team-card:is(:hover, :focus-within) {
  border-color: transparent;
  box-shadow: none;
  transform: none;
}

body.alpt-world-about.alpt-about-filter-ready
  #team
  .alpt-team-card::before {
  display: none;
}

body.alpt-world-about.alpt-about-filter-ready
  #team
  .alpt-team-card
  h2 {
  color: var(--color-text);
  font-family: var(--font-sans);
  font-size: clamp(1.25rem, 1.5vw, 1.5rem);
  font-weight: 750;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

body.alpt-world-about.alpt-about-filter-ready
  #team
  .alpt-team-card
  .alpt-card__meta {
  color: var(--color-accent);
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1.4;
  text-transform: uppercase;
}

body.alpt-world-about.alpt-about-filter-ready
  #team
  .alpt-team-card
  p:not(.alpt-card__meta) {
  color: var(--color-text);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.55;
}

/* About page: Documents remain a request flow, presented without a legacy box. */
body.alpt-world-about.alpt-about-filter-ready
  #dokumente
  .alpt-documents-request {
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  grid-column: 1 / -1;
  grid-row: 1;
  max-width: 56rem;
  padding: 0;
}

body.alpt-world-about.alpt-about-filter-ready
  #dokumente
  .alpt-documents-request
  > h2 {
  color: var(--color-text);
  font-family: var(--font-sans);
  font-size: clamp(1.65rem, 2.8vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 0.98;
  margin: 0 0 0.8rem;
}

body.alpt-world-about.alpt-about-filter-ready
  #dokumente
  .alpt-documents-request
  > p {
  color: var(--color-text);
  font-family: var(--font-sans);
  font-size: var(--font-size-body);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.65;
  max-width: 54ch;
}

body.alpt-world-about.alpt-about-filter-ready
  .alpt-page-body:has(#dokumente:not([hidden])) {
  padding-bottom: clamp(2.75rem, 4vw, 4rem);
}

body.alpt-world-about.alpt-about-filter-ready
  #dokumente
  .alpt-documents-request
  > p:last-child {
  margin-bottom: 0;
}

body.alpt-world-about.alpt-about-filter-ready
  #dokumente
  .alpt-text-link {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.2;
  min-height: 2.75rem;
  text-transform: uppercase;
}

body.alpt-world-about.alpt-about-filter-ready
  #dokumente
  .alpt-document-list {
  color: var(--color-text);
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  list-style: none;
  margin: 0 0 var(--space-lg);
  padding: 0;
  text-transform: uppercase;
}

/* About page: final compact and readable Mobile/Tablet composition. */
@media (max-width: 900px) {
  body.alpt-world-about.alpt-about-filter-ready .alpt-page-body,
  body.alpt-world-about.alpt-about-filter-ready
    .alpt-page-body:has(#team:not([hidden])),
  body.alpt-world-about.alpt-about-filter-ready
    .alpt-page-body:has(#dokumente:not([hidden])) {
    padding-bottom: clamp(4rem, 8vw, 5rem);
    padding-top: clamp(3rem, 7vw, 4rem);
  }

  body.alpt-world-about.alpt-about-filter-ready
    :is(#der-verein, #geschichte)
    > h2,
  body.alpt-world-about.alpt-about-filter-ready
    #dokumente
    .alpt-documents-request
    > h2 {
    font-size: clamp(2.1rem, 9vw, 2.8rem);
    hyphens: auto;
    line-height: 1;
    overflow-wrap: break-word;
  }

  body.alpt-world-about.alpt-about-filter-ready
    :is(#der-verein, #geschichte)
    > p:not(.alpt-eyebrow),
  body.alpt-world-about.alpt-about-filter-ready
    #dokumente
    .alpt-documents-request
    > p {
    font-size: 1rem;
    line-height: 1.6;
  }

  body.alpt-world-about.alpt-about-filter-ready
    .alpt-about-panel
    > p:not(.alpt-eyebrow)
    + p:not(.alpt-eyebrow) {
    margin-top: 1rem;
  }

  body.alpt-world-about.alpt-about-filter-ready
    #team
    .alpt-team-grid {
    gap: clamp(2.5rem, 6vw, 3.5rem);
  }

  body.alpt-world-about.alpt-about-filter-ready
    #team
    .alpt-team-card {
    justify-self: start;
    max-width: 34rem;
    padding: 0;
    width: 100%;
  }

  body.alpt-world-about.alpt-about-filter-ready
    #team
    .alpt-team-card::before {
    display: block;
    padding-bottom: 0.875rem;
  }

  body.alpt-world-about.alpt-about-filter-ready
    #team
    .alpt-team-card
    h2 {
    font-size: clamp(1.3rem, 5vw, 1.5rem);
  }
}

@media (min-width: 600px) and (max-width: 900px) {
  body.alpt-world-about.alpt-about-filter-ready
    #team
    .alpt-team-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body.alpt-world-about.alpt-about-filter-ready
    #team
    .alpt-team-card {
    max-width: none;
  }
}

@media (max-width: 480px) {
  body.alpt-world-about .alpt-page-hero__inner:has(> .alpt-about-hero),
  body.alpt-world-about.alpt-about-filter-ready .alpt-page-body {
    padding-inline: clamp(1.25rem, 5vw, 1.5rem);
  }

  body.alpt-world-about .alpt-page-hero__inner:has(> .alpt-about-hero) {
    padding-top: clamp(2.75rem, 12vw, 3.25rem);
  }

  .alpt-page-hero .alpt-about-hero__title {
    font-size: clamp(2.9rem, 12.5vw, 4rem);
  }

  .alpt-about-hero__accent {
    margin-top: clamp(1.25rem, 5.5vw, 1.375rem);
  }

  .alpt-about-hero__intro {
    margin-top: clamp(1.625rem, 7vw, 1.875rem);
  }
}

@media (max-width: 699px) {
  body.alpt-world-about .alpt-section-nav--editorial {
    margin-top: 2.5rem;
    overflow: visible;
  }

  body.alpt-world-about .alpt-section-nav--editorial .alpt-section-nav__options {
    border: 0;
    display: grid;
    gap: 1.375rem clamp(1rem, 5vw, 1.75rem);
    grid-template-columns: repeat(2, minmax(0, 1fr));
    min-width: 0;
    overflow: visible;
    padding: 0;
    width: 100%;
  }

  body.alpt-world-about .alpt-section-nav--editorial .alpt-section-nav__option {
    border: 0;
    flex: initial;
    gap: 0.45rem;
    min-height: 2.75rem;
    min-width: 0;
    padding: 0.4rem 0;
    place-self: start;
    white-space: nowrap;
    width: fit-content;
  }

  body.alpt-world-about
    .alpt-section-nav--editorial
    .alpt-section-nav__number {
    font-size: 0.65rem;
    letter-spacing: 0.1em;
  }

  body.alpt-world-about
    .alpt-section-nav--editorial
    .alpt-section-nav__label {
    font-size: 0.75rem;
    letter-spacing: 0.06em;
  }

  body.alpt-world-about
    .alpt-section-nav--editorial
    .alpt-section-nav__option.is-active::before {
    right: 0;
  }

  body.alpt-world-about
    .alpt-section-nav--editorial
    .alpt-section-nav__option:focus-visible {
    outline: 2px solid var(--color-focus);
    outline-offset: 3px;
  }
}

@media (max-width: 360px) {
  body.alpt-world-about .alpt-section-nav--editorial .alpt-section-nav__option {
    gap: 0.35rem;
  }

  body.alpt-world-about
    .alpt-section-nav--editorial
    .alpt-section-nav__number {
    font-size: 0.625rem;
  }

  body.alpt-world-about
    .alpt-section-nav--editorial
    .alpt-section-nav__label {
    font-size: 0.7rem;
    letter-spacing: 0.04em;
  }
}

/* Events overview: type-led, image-free archive shared by German and Italian. */
.alpt-events-overview-hero-shell {
  background: #fff;
  border-bottom: 1px solid var(--alpt-events-divider);
  margin: 0 !important;
}

.alpt-events-overview-hero-shell__inner {
  margin-inline: auto;
  max-width: var(--container-max);
  padding: clamp(3.5rem, 4.5vw, 4.5rem) var(--layout-gutter);
}

.alpt-events-overview-hero {
  align-items: center;
  display: grid;
  gap: clamp(3rem, 6vw, 7rem);
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
}

.alpt-events-overview-hero__statement,
.alpt-events-overview-hero__media {
  min-width: 0;
}

.alpt-events-overview-hero__eyebrow {
  color: var(--color-accent);
  font-family: var(--font-sans);
  font-size: 0.75rem !important;
  font-weight: 700;
  letter-spacing: 0.14em;
  margin: 0 0 1.5rem;
}

.alpt-events-overview-hero__eyebrow::before {
  border-radius: 0;
  flex: 0 0 2rem;
  height: 1px;
  width: 2rem;
}

.alpt-events-overview-hero__title {
  font-family: Anton, var(--font-display);
  font-size: clamp(3.6rem, 5vw, 5.5rem);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 0.94;
  margin: 0;
  overflow: visible;
  text-transform: uppercase;
}

.alpt-events-overview-hero__title span {
  display: block;
}

.alpt-events-overview-hero__accent {
  margin-top: clamp(1.5rem, 2.4vw, 2rem);
}

.alpt-events-overview-hero__accent .handwritten-accent {
  color: var(--color-accent);
  font-size: clamp(1.5rem, 2vw, 2rem);
  line-height: 1.15;
  margin: 0;
}

.alpt-events-overview-hero__underline {
  color: var(--color-accent);
  display: block;
  height: auto;
  margin: 0.25rem 0 0 clamp(1rem, 4vw, 2.75rem);
  overflow: visible;
  stroke: currentcolor;
  stroke-linecap: round;
  stroke-width: 1.8;
  width: clamp(8rem, 34%, 10.75rem);
}

.alpt-events-overview-hero__media {
  justify-self: end;
  margin: 0;
  width: clamp(26.25rem, 38vw, 42.5rem);
}

.alpt-events-overview-hero__media img {
  height: auto;
  width: 100%;
}

body.alpt-world-events .alpt-page-body {
  background: #fff;
  max-width: var(--container-max);
  padding: clamp(2.5rem, 4vw, 3.5rem) var(--layout-gutter) clamp(4rem, 6vw, 5.5rem);
}

body.alpt-world-events .alpt-filter {
  border: 0;
  margin: 0 0 clamp(1rem, 1.5vw, 1.5rem);
  padding: 0;
}

body.alpt-world-events .alpt-filter__layout {
  align-items: center;
  display: flex;
  justify-content: flex-end;
}

body.alpt-world-events .alpt-filter__intro {
  display: none;
}

body.alpt-world-events .alpt-filter__options {
  border: 0;
  display: flex;
  gap: clamp(1.25rem, 2.5vw, 2.5rem);
}

body.alpt-world-events .alpt-filter .alpt-filter__option {
  background: transparent;
  border: 0;
  border-bottom: 2px solid transparent;
  color: var(--color-text-muted);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  min-height: 2.75rem;
  padding: 0.65rem 0;
  text-transform: uppercase;
}

body.alpt-world-events .alpt-filter .alpt-filter__option + .alpt-filter__option {
  border-left: 0;
}

body.alpt-world-events .alpt-filter .alpt-filter__option:is(:hover, .is-active) {
  border-bottom-color: var(--color-accent);
  color: var(--color-text);
}

body.alpt-world-events .alpt-filter .alpt-filter__option.is-active::before {
  display: none;
}

.alpt-events-section-label {
  color: var(--color-accent);
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 1.2;
  margin: 0;
  text-transform: uppercase;
}

.alpt-events-next {
  border-bottom: 1px solid var(--color-border);
  border-top: 1px solid var(--color-border);
  padding: clamp(2rem, 3vw, 2.75rem) 0;
}

.alpt-events-next__event {
  align-items: center;
  display: grid;
  gap: clamp(2rem, 4vw, 4.5rem);
  grid-template-columns: minmax(8rem, 0.28fr) minmax(0, 1fr) auto;
  margin-top: clamp(1.75rem, 2.5vw, 2.25rem);
}

.alpt-events-date__visual {
  display: flex;
  flex-direction: column;
}

.alpt-events-date__visual strong {
  color: var(--color-text);
  font-family: Anton, var(--font-display);
  font-size: clamp(2.4rem, 3.4vw, 3.75rem);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 0.95;
  white-space: nowrap;
}

.alpt-events-date__visual > span {
  color: var(--color-accent);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  margin-top: 0.4rem;
  text-transform: uppercase;
}

.alpt-events-next__content {
  min-width: 0;
}

.alpt-events-next__location,
.alpt-events-status {
  color: var(--color-accent-dark);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1.35;
  margin: 0;
  text-transform: uppercase;
}

.alpt-events-next__content h2 {
  font-family: Anton, var(--font-display);
  font-size: clamp(2.3rem, 3vw, 3.5rem);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 0.95;
  margin: 0.5rem 0 0;
  max-width: 18ch;
  overflow: visible;
  text-transform: uppercase;
}

.alpt-events-next__content > .alpt-events-status {
  margin-top: 0.8rem;
}

.alpt-events-next__summary {
  font-size: 1rem;
  line-height: 1.6;
  margin: 1rem 0 0;
  max-width: 46ch;
}

.alpt-events-next__link,
.alpt-events-empty__link {
  align-items: center;
  display: inline-flex;
  font-size: 0.78rem;
  font-weight: 700;
  gap: 0.75rem;
  letter-spacing: 0.1em;
  min-height: 2.75rem;
  text-transform: uppercase;
  white-space: nowrap;
}

.alpt-events-next__action {
  align-self: end;
}

.alpt-events-list {
  margin-top: clamp(3.5rem, 5vw, 5rem);
}

.alpt-events-list ol {
  border-bottom: 1px solid var(--color-border);
  list-style: none;
  margin: 1.25rem 0 0;
  padding: 0;
}

.alpt-events-list li {
  border-top: 1px solid var(--color-border);
  margin: 0;
}

.alpt-events-list__link {
  align-items: center;
  color: var(--color-text);
  display: grid;
  gap: clamp(0.75rem, 2vw, 2rem);
  grid-template-columns: 2rem minmax(7rem, 0.8fr) minmax(0, 1.8fr) minmax(7rem, 0.9fr) 1.5rem;
  min-height: 4.75rem;
  padding: clamp(1.25rem, 1.8vw, 1.65rem) 0;
  text-decoration: none;
}

.alpt-events-list__number {
  color: var(--color-accent);
  font-size: 0.75rem;
  font-weight: 700;
  grid-column: 1;
  grid-row: 1;
  letter-spacing: 0.12em;
}

.alpt-events-list__date {
  grid-column: 2;
  grid-row: 1;
}

.alpt-events-list__date .alpt-events-date__visual strong {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 750;
  letter-spacing: 0.04em;
  line-height: 1.3;
  white-space: normal;
}

.alpt-events-list__date .alpt-events-date__visual > span {
  font-size: 0.7rem;
  margin-top: 0.15rem;
}

.alpt-events-list__title {
  display: block;
  font-family: var(--font-sans);
  font-size: clamp(1.2rem, 1.65vw, 1.6rem);
  font-weight: 800;
  grid-column: 3;
  grid-row: 1;
  letter-spacing: -0.025em;
  line-height: 1.08;
  margin: 0;
  text-wrap: pretty;
}

.alpt-events-list__details {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  grid-column: 4;
  grid-row: 1;
}

.alpt-events-list__location {
  color: var(--color-text);
  font-size: 0.78rem;
  font-weight: 650;
  letter-spacing: 0.08em;
  line-height: 1.35;
  text-transform: uppercase;
}

.alpt-events-list__details .alpt-events-status {
  font-size: 0.67rem;
}

.alpt-events-list__arrow {
  color: var(--color-accent);
  font-size: 1.15rem;
  grid-column: 5;
  grid-row: 1;
  transition: transform var(--transition-fast) var(--ease-standard);
}

.alpt-events-list__link:hover {
  color: var(--color-accent-dark);
}

.alpt-events-list__link:hover .alpt-events-list__arrow {
  transform: translateX(0.2rem);
}

.alpt-events-list__link:focus-visible {
  outline-offset: 0.4rem;
}

.alpt-events-empty {
  border-top: 1px solid var(--color-border);
  max-width: 45rem;
  padding: clamp(3.5rem, 6vw, 5.5rem) 0;
}

.alpt-events-empty .alpt-eyebrow {
  color: var(--color-accent);
  font-family: var(--font-sans);
  font-size: 0.75rem !important;
  font-weight: 700;
  letter-spacing: 0.14em;
  margin: 0 0 1.25rem;
}

.alpt-events-empty .alpt-eyebrow::before {
  border-radius: 0;
  flex-basis: 2rem;
  height: 1px;
  width: 2rem;
}

.alpt-events-empty h2 {
  font-family: var(--font-sans);
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1;
  margin: 0;
  max-width: 13ch;
}

.alpt-events-empty > p:not(.alpt-eyebrow) {
  font-size: 1rem;
  line-height: 1.65;
  margin: 1.5rem 0 0;
  max-width: 58ch;
}

.alpt-events-empty__link {
  margin-top: 1.75rem;
}

.alpt-events-empty--filtered {
  margin-top: 0;
}

.alpt-form input,
.alpt-form textarea,
.alpt-form select {
  background: var(--alpt-white);
  border: 1.5px solid rgb(24 35 48 / 28%);
  border-radius: 0.3rem;
  color: var(--alpt-ink);
  font: inherit;
  min-height: 3.15rem;
  padding: 0.65rem 0.85rem;
  transition: border-color var(--alpt-duration-fast) ease, box-shadow var(--alpt-duration-fast) ease;
  width: 100%;
}

.alpt-form input:focus,
.alpt-form textarea:focus,
.alpt-form select:focus {
  border-color: var(--alpt-pine);
  box-shadow: 0 0 0 3px rgb(78 99 189 / 12%);
  outline: 0;
}

.alpt-event-detail {
  background: var(--color-surface);
  scroll-margin-top: 6rem;
}

.alpt-event-detail :where([id]) {
  scroll-margin-top: 6rem;
}

.alpt-event-detail-hero {
  background: var(--color-surface);
  border-bottom: 1px solid var(--color-border);
}

.alpt-event-detail .alpt-page-hero__inner {
  padding-bottom: clamp(3rem, 4vw, 4rem);
  padding-top: clamp(3rem, 4vw, 4rem);
}

.alpt-event-detail .alpt-page-hero__inner::before,
.alpt-event-detail .alpt-page-hero__inner::after {
  content: none;
  display: none;
}

.alpt-event-detail-hero__overview .alpt-text-link,
.alpt-event-detail__back .alpt-text-link {
  font-size: 0.78rem;
  gap: 0.65rem;
  letter-spacing: 0.1em;
  min-height: 2.75rem;
  text-transform: uppercase;
}

.alpt-event-detail-hero__grid {
  align-items: center;
  display: grid;
  gap: clamp(3rem, 6vw, 7rem);
  grid-template-columns: minmax(0, 1.05fr) minmax(20rem, 0.7fr);
  margin-top: clamp(1.75rem, 2.25vw, 2.25rem);
}

.alpt-event-detail-hero__copy {
  min-width: 0;
}

.alpt-event-detail-hero__meta {
  color: var(--color-accent-dark);
  font-size: clamp(1rem, 1.4vw, 1.25rem);
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.35;
  text-transform: uppercase;
}

.alpt-event-detail-hero__meta p {
  margin: 0;
}

.alpt-event-detail-hero__location {
  margin-top: 0.35rem !important;
}

.alpt-event-detail .alpt-page-hero h1 {
  font-family: Anton, var(--font-display);
  font-size: clamp(3.2rem, 4.8vw, 5.2rem);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 0.94;
  margin: clamp(1rem, 1.3vw, 1.25rem) 0 0;
  max-width: 760px;
  overflow: visible;
  overflow-wrap: normal;
  padding-top: 0.11em;
  text-transform: uppercase;
}

.alpt-event-detail-hero__summary {
  margin-top: clamp(0.875rem, 1.2vw, 1.125rem);
  max-width: 36rem;
}

.alpt-event-detail-hero__summary p {
  color: var(--color-accent);
  font-family: var(--font-handwritten);
  font-size: clamp(1.35rem, 1.8vw, 1.75rem);
  line-height: 1.2;
  margin: 0;
}

.alpt-event-detail-hero__summary svg,
.alpt-event-facts-section__header svg {
  display: block;
  fill: none;
  margin-top: 0.35rem;
  stroke: var(--color-accent);
  stroke-linecap: round;
  stroke-width: 2;
  width: clamp(7rem, 10vw, 10rem);
}

.alpt-event-detail-hero__registration {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem clamp(1.75rem, 3vw, 3rem);
  margin-top: clamp(1.5rem, 1.8vw, 1.75rem);
}

.alpt-event-detail-hero__status {
  align-items: center;
  color: var(--color-text);
  display: inline-flex;
  font-size: 0.78rem;
  font-weight: 750;
  gap: 0.65rem;
  letter-spacing: 0.1em;
  line-height: 1.3;
  margin: 0;
  text-transform: uppercase;
}

.alpt-event-detail-hero__status i {
  background: var(--color-text-muted);
  border-radius: 50%;
  flex: 0 0 auto;
  height: 0.55rem;
  width: 0.55rem;
}

.alpt-event-detail-hero__registration--open .alpt-event-detail-hero__status i {
  background: var(--color-accent);
}

.alpt-event-detail-hero__action {
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  min-height: 2.75rem;
  text-transform: uppercase;
}

.alpt-event-detail-hero__artwork {
  place-self: center end;
  width: clamp(20rem, 28vw, 30rem);
}

.alpt-event-detail-hero__artwork img {
  display: block;
  height: auto;
  max-width: 100%;
  width: 100%;
}

.alpt-event-detail .alpt-page-body {
  align-items: start;
  display: grid;
  gap: 0 clamp(3.5rem, 6vw, 5.5rem);
  grid-template-columns: minmax(0, 1fr) minmax(21.25rem, 25rem);
  padding: 0 var(--alpt-gutter) clamp(3.5rem, 5vw, 5rem);
  width: min(100%, calc(var(--alpt-wide) + (2 * var(--alpt-gutter))));
}

.alpt-event-content {
  grid-column: 1;
  grid-row: 1;
  min-width: 0;
  padding-top: clamp(2.5rem, 3.5vw, 3.5rem);
}

.alpt-event-content .wp-block-post-content {
  color: var(--color-text);
  font-size: 1.0625rem;
  line-height: 1.65;
  max-width: 760px;
}

.alpt-event-content .wp-block-post-content > :first-child {
  margin-top: 0;
}

.alpt-event-content .wp-block-post-content > * + * {
  margin-top: 1.5rem;
}

.alpt-event-content .wp-block-post-content :where(h2, h3) {
  color: var(--color-text);
  font-family: var(--font-sans);
  font-size: clamp(1.65rem, 2vw, 2.1rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.08;
  margin-bottom: 0;
  margin-top: clamp(2.75rem, 4vw, 4rem);
}

.alpt-event-content .wp-block-post-content h3 {
  font-size: clamp(1.35rem, 1.6vw, 1.7rem);
}

.alpt-event-content .wp-block-post-content :where(ul, ol) {
  padding-left: 1.35rem;
}

.alpt-event-content .wp-block-post-content :where(img, video) {
  height: auto;
  max-width: 100%;
}

.alpt-event-details {
  display: contents;
}

.alpt-event-facts-section {
  background: var(--alpt-surface-cool);
  border: 0;
  border-radius: 0;
  box-shadow: none;
  grid-column: 2;
  grid-row: 1;
  margin-top: clamp(2.5rem, 3.5vw, 3.5rem);
  min-width: 0;
  overflow: visible;
  padding: clamp(1.75rem, 3vw, 2.25rem);
  position: static;
}

.alpt-event-facts-section__header h2 {
  color: var(--color-accent);
  font-family: var(--font-handwritten);
  font-size: clamp(1.8rem, 2.5vw, 2.5rem);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.15;
  margin: 0;
}

.alpt-event-facts-section__header svg {
  width: clamp(6.5rem, 8vw, 8.125rem);
}

.alpt-event-facts {
  display: block;
  margin: clamp(2rem, 3vw, 2.5rem) 0 0;
}

.alpt-event-facts div {
  min-width: 0;
}

.alpt-event-facts div + div {
  margin-top: clamp(1.25rem, 1.5vw, 1.5rem);
}

.alpt-event-facts dt {
  color: var(--color-accent-dark);
  font-size: 0.72rem;
  font-weight: 750;
  letter-spacing: 0.12em;
  line-height: 1.35;
  text-transform: uppercase;
}

.alpt-event-facts dd {
  color: var(--color-text);
  font-size: clamp(0.95rem, 0.93rem + 0.1vw, 1rem);
  line-height: 1.5;
  margin: 0.375rem 0 0;
  overflow-wrap: anywhere;
}

.alpt-event-details__cta {
  align-items: center;
  background: transparent;
  border-top: 1px solid var(--color-border);
  color: var(--color-text);
  display: grid;
  gap: 2rem clamp(3rem, 7vw, 7rem);
  grid-column: 1 / -1;
  grid-row: 2;
  grid-template-columns: minmax(0, 1fr) auto;
  margin-top: clamp(4.5rem, 7vw, 7rem);
  padding: clamp(2.75rem, 4vw, 4rem) 0 0;
}

.alpt-event-details__cta h2 {
  color: var(--color-accent);
  font-family: var(--font-handwritten);
  font-size: clamp(2rem, 3vw, 3.25rem);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.1;
  margin: 0;
  text-transform: none;
}

.alpt-event-details__cta-underline {
  display: block;
  fill: none;
  margin-top: 0.3rem;
  stroke: var(--color-accent);
  stroke-linecap: round;
  stroke-width: 2;
  width: clamp(7.5rem, 11vw, 9.625rem);
}

.alpt-event-details__cta p {
  line-height: 1.65;
  margin: 1rem 0 0;
  max-width: 34rem;
}

.alpt-event-details__actions {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.alpt-event-details__actions .wp-element-button {
  align-items: center;
  display: inline-flex;
  gap: 0.65rem;
  min-height: 3.25rem;
  text-decoration: none;
}

.alpt-event-details__alternative {
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  min-height: 2.75rem;
}

.alpt-event-detail__back {
  border-top: 1px solid var(--color-border);
  grid-column: 1 / -1;
  grid-row: 3;
  margin-top: clamp(2.5rem, 3vw, 3rem);
  padding-top: clamp(1.75rem, 3vw, 2.5rem);
}

@media (min-width: 901px) {
  .alpt-event-detail .alpt-page-hero__inner {
    padding-bottom: clamp(1.75rem, 2.25vw, 2.25rem);
    padding-top: clamp(1.75rem, 2.25vw, 2.25rem);
  }

  .alpt-event-detail-hero__grid {
    margin-top: clamp(1.25rem, 1.5vw, 1.5rem);
  }

  .alpt-event-detail-hero__summary {
    margin-top: clamp(0.75rem, 1vw, 0.875rem);
  }

  .alpt-event-detail-hero__registration {
    margin-top: clamp(1rem, 1.25vw, 1.25rem);
  }

  body.alpt-world-events .alpt-event-detail .alpt-page-body {
    padding-top: 0;
  }

  .alpt-event-content {
    padding-top: clamp(1.5rem, 2vw, 2rem);
  }

  .alpt-event-facts-section {
    margin-top: clamp(1.5rem, 2vw, 2rem);
  }
}

.alpt-event-registration {
  border-top: 1px solid var(--alpt-ink);
  margin-top: clamp(4rem, 7vw, 6.5rem);
  padding-top: clamp(1.5rem, 2.5vw, 2rem);
  scroll-margin-top: 7rem;
}

.alpt-registration-page {
  background: var(--color-surface);
}

.alpt-registration-page .alpt-page-body {
  max-width: var(--container-max);
  padding-bottom: clamp(4rem, 7vw, 6.5rem);
  padding-top: clamp(2.25rem, 3.5vw, 3.25rem);
}

.alpt-registration-page .alpt-event-registration {
  border-top: 0;
  margin-top: 0;
  margin-inline: auto;
  max-width: 76rem;
  padding-top: 0;
}

.alpt-registration-page .alpt-event-selection {
  border-top: 0;
  padding-top: 0;
}

.alpt-event-registration__header {
  align-items: center;
  display: grid;
  gap: clamp(2.5rem, 5vw, 5rem);
  grid-template-columns: minmax(0, 1.15fr) minmax(18rem, 0.85fr);
  padding-bottom: clamp(2rem, 3vw, 3rem);
}

.alpt-event-registration__header > * {
  min-width: 0;
}

.alpt-event-registration__headline {
  grid-column: 1;
  min-width: 0;
}

.alpt-event-registration__header h1 {
  margin: clamp(0.75rem, 1.25vw, 1.125rem) 0 0;
  overflow: visible;
}

.alpt-event-registration__title-label {
  align-items: center;
  color: var(--color-accent);
  display: flex;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 1.3;
  margin: 0;
  text-transform: uppercase;
}

.alpt-event-registration__title-label::before {
  background: currentcolor;
  content: "";
  flex: 0 0 2rem;
  height: 1px;
  margin-right: 0.8rem;
}

.alpt-event-registration__title-event {
  display: block;
  font-family: Anton, var(--font-display);
  font-size: clamp(3rem, 4.5vw, 4.8rem);
  font-weight: 400;
  hyphens: auto;
  letter-spacing: -0.02em;
  line-height: 0.94;
  max-width: 100%;
  overflow: visible;
  text-wrap: balance;
  text-transform: uppercase;
}

.alpt-event-registration__summary {
  align-items: start;
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem 0;
  list-style: none;
  margin: clamp(0.875rem, 1.5vw, 1.125rem) 0 0;
  padding: 0;
  width: 100%;
}

.alpt-event-registration__summary li {
  align-items: start;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  min-height: 0;
  padding: 0 clamp(1rem, 2vw, 1.5rem);
}

.alpt-event-registration__summary li:first-child {
  padding-left: 0;
}

.alpt-event-registration__summary li + li {
  border-left: 1px solid var(--color-border);
}

.alpt-event-registration__summary > li > br {
  display: none;
}

.alpt-event-registration__summary-term {
  color: var(--color-accent-dark);
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1.3;
  text-transform: uppercase;
}

.alpt-event-registration__summary-value {
  color: var(--color-text);
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.4;
  margin: 0;
}

.alpt-event-registration__summary-value--availability {
  align-items: center;
  color: var(--color-accent-dark);
  display: inline-flex;
  gap: 0.5rem;
}

.alpt-event-registration__summary-value--availability::before {
  background: currentcolor;
  border-radius: 50%;
  content: "";
  flex: 0 0 auto;
  height: 0.45rem;
  width: 0.45rem;
}

.alpt-event-registration__back {
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  margin: 0 0 clamp(1.5rem, 2vw, 2rem);
  text-transform: uppercase;
}

.alpt-event-registration__back a {
  min-height: 2.75rem;
}

.alpt-event-registration__media {
  justify-self: end;
  margin: 0;
  max-width: 26.25rem;
  width: min(100%, clamp(17.5rem, 25vw, 26.25rem));
}

.alpt-event-registration__media img {
  height: auto;
  width: 100%;
}

.alpt-form.alpt-registration-form {
  margin-top: 0;
  max-width: none;
  width: 100%;
}

.alpt-registration-form__intro,
.alpt-registration-form__submit {
  align-items: center;
  display: flex;
  gap: 1.5rem;
  justify-content: space-between;
}

.alpt-registration-form__intro {
  background: transparent;
  border: 0;
  border-radius: 0;
  border-left: 2px solid var(--color-accent);
  justify-content: flex-start;
  margin: clamp(1.5rem, 2.5vw, 2rem) 0 0;
  padding: 0.2rem 0 0.2rem 1rem;
}

.alpt-registration-form__intro p,
.alpt-registration-form__submit p {
  color: var(--color-text-muted);
  font-size: 0.9rem;
  line-height: 1.55;
  margin: 0;
}

.alpt-registration-form__availability strong {
  color: var(--alpt-pine);
  white-space: nowrap;
}

.alpt-registration-form .alpt-form__grid {
  gap: 1.35rem 1.75rem;
}

.alpt-registration-form--sectioned :is(label, legend) {
  color: var(--color-text);
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 700;
  hyphens: auto;
  letter-spacing: 0.035em;
  max-width: 100%;
  overflow-wrap: anywhere;
}

.alpt-registration-form--sectioned :is(input, textarea, select) {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-small);
  box-shadow: none;
  color: var(--color-text);
  font-size: 1rem;
  min-height: 3rem;
  padding: 0.75rem 0.875rem;
}

.alpt-registration-form--sectioned :is(input, textarea, select):focus {
  border-color: var(--color-accent);
  box-shadow: none;
  outline: 0;
}

.alpt-registration-form--sectioned :is(input, textarea, select):focus-visible {
  box-shadow: 0 0 0 3px var(--color-surface);
  outline: 3px solid var(--color-focus);
  outline-offset: 2px;
}

.alpt-registration-form textarea,
.alpt-registration-form--sectioned textarea {
  height: auto;
  min-height: 8.125rem;
  resize: vertical;
}

.alpt-registration-form__privacy {
  padding: 1rem;
}

.alpt-form .alpt-registration-form__privacy label {
  cursor: pointer;
  display: grid;
  gap: 0.75rem;
  grid-template-columns: auto minmax(0, 1fr);
  line-height: 1.55;
  margin: 0;
  min-height: 2.75rem;
}

.alpt-form .alpt-registration-form__privacy input[type="checkbox"] {
  accent-color: var(--color-accent-dark);
  flex: 0 0 auto;
  height: 1.4rem;
  margin-top: 0.1rem;
  min-height: 1.4rem;
  width: 1.4rem;
}

.alpt-registration-form__privacy label > span {
  display: block;
  min-width: 0;
}

.alpt-registration-form--sectioned .alpt-registration-form__privacy > .alpt-form__help,
.alpt-registration-form--sectioned .alpt-registration-form__privacy > .alpt-form__field-error {
  margin-left: 2.5rem;
}

.alpt-registration-form__submit {
  background: transparent;
  border-bottom: 0;
  border-top: 1px solid var(--color-border);
  display: grid;
  gap: clamp(3rem, 4vw, 4rem);
  grid-template-columns: minmax(0, 1fr) max-content;
  margin-top: 0;
  padding: clamp(2rem, 2.5vw, 2.5rem) 0;
}

.alpt-registration-form__submit .alpt-eyebrow {
  color: var(--color-accent-dark);
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  margin-bottom: 0.55rem;
}

.alpt-registration-form__submit h2 {
  font-family: var(--font-sans);
  font-size: clamp(2rem, 2.6vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
  margin: 0 0 0.55rem;
}

.alpt-registration-form__submit p:not(.alpt-eyebrow) {
  font-size: 1rem;
  line-height: 1.55;
  max-width: 38.75rem;
}

.alpt-registration-form__submit button {
  align-self: center;
  min-height: 3rem;
  min-width: 0;
  padding-inline: clamp(1.5rem, 2vw, 1.75rem);
}

.alpt-form.alpt-registration-form--sectioned {
  background: transparent;
  border: 0;
  padding: 0;
}

.alpt-registration-form--sectioned p:empty,
.alpt-registration-form--sectioned br {
  display: none;
}

.alpt-registration-form--sectioned .alpt-registration-form__intro {
  margin: 0;
}

.alpt-registration-form__sections {
  margin-top: clamp(1rem, 1.75vw, 1.5rem);
}

.alpt-registration-section {
  align-items: start;
  border-top: 1px solid var(--color-border);
  display: grid;
  gap: clamp(3rem, 6vw, 5rem);
  grid-template-columns: minmax(11.25rem, 15rem) minmax(0, 1fr);
  padding: clamp(2.25rem, 4vw, 3.25rem) 0;
  scroll-margin-top: 7rem;
}

.alpt-registration-section__header {
  display: block;
  min-width: 0;
}

.alpt-registration-section__header > span {
  color: var(--color-accent);
  display: block;
  font-family: var(--font-handwritten);
  font-size: clamp(1.8rem, 2vw, 2.3rem);
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1;
  margin-bottom: 1rem;
}

.alpt-registration-section__header > div {
  min-width: 0;
}

.alpt-registration-section__header h2 {
  font-family: var(--font-sans);
  font-size: clamp(1.55rem, 1.8vw, 1.9rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
  margin: 0;
  min-width: 0;
  text-wrap: balance;
}

.alpt-registration-section__header p {
  color: var(--color-text-muted);
  font-size: 0.95rem;
  line-height: 1.5;
  margin: 1rem 0 0;
  max-width: 26ch;
}

.alpt-registration-form__fields {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  justify-self: end;
  max-width: 47.5rem;
  width: 100%;
}

.alpt-registration-form__fields > * {
  min-width: 0;
}

.alpt-registration-form__fields--stacked,
.alpt-registration-form__fields--choices {
  grid-template-columns: 1fr;
}

.alpt-registration-form--sectioned .alpt-form__help,
.alpt-choice-group__help {
  color: var(--color-text-muted);
  font-size: 0.9rem;
  line-height: 1.5;
  margin: 0.2rem 0 0.75rem;
  max-width: 64ch;
}

.alpt-choice-group {
  border: 0;
  margin: 0;
  min-width: 0;
  padding: 0;
}

.alpt-choice-group legend {
  display: block;
  font-size: 0.95rem;
  margin-bottom: 0.65rem;
  padding: 0;
}

.alpt-choice-group__options {
  display: grid;
  gap: 0.5rem 1.75rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.alpt-form .alpt-choice-group__options label {
  align-items: center;
  cursor: pointer;
  display: flex;
  gap: 0.75rem;
  line-height: 1.45;
  margin: 0;
  min-height: 2.75rem;
  padding: 0.45rem 0;
  transition: background-color var(--alpt-duration-fast) ease;
}

.alpt-choice-group__options label > span {
  display: block;
  min-width: 0;
}

.alpt-choice-group__options label:hover {
  color: var(--color-accent-dark);
}

.alpt-form .alpt-choice-group input[type="radio"] {
  accent-color: var(--color-accent-dark);
  flex: 0 0 1.25rem;
  height: 1.25rem;
  margin: 0;
  min-height: 1.25rem;
  padding: 0;
  width: 1.25rem;
}

.alpt-form .alpt-choice-group input[type="radio"]:focus-visible {
  box-shadow: 0 0 0 3px var(--color-surface);
  outline: 3px solid var(--color-focus);
  outline-offset: 2px;
}

.alpt-choice-group__options label:has(input:checked) {
  color: var(--color-accent-dark);
  font-weight: 700;
}

.alpt-form .alpt-choice-group__options input[type="checkbox"] {
  accent-color: var(--color-accent-dark);
  flex: 0 0 1.3rem;
  height: 1.3rem;
  margin-top: 0.1rem;
  min-height: 1.3rem;
  width: 1.3rem;
}

.alpt-choice-group[data-alpt-invalid="true"] .alpt-choice-group__options {
  border-left: 3px solid #a63322;
  padding-left: 0.75rem;
}

.alpt-form__conditional {
  background: rgb(57 124 152 / 6%);
  border-left: 2px solid var(--color-accent);
  padding: 1rem 1.1rem;
}

.alpt-form__conditional[hidden] {
  display: none;
}

.alpt-registration-form--sectioned .alpt-registration-form__privacy {
  background: #f6f7f4;
  border: 1px solid var(--color-border);
  margin-top: 0.25rem;
  padding: 1.15rem;
}

.alpt-registration-form--sectioned .alpt-registration-form__privacy + .alpt-registration-form__privacy {
  margin-top: 0;
}

.alpt-registration-form--sectioned :is(input, textarea)[aria-invalid="true"],
.alpt-registration-form--sectioned .alpt-choice-group:has(input[aria-invalid="true"]) .alpt-choice-group__options {
  border-color: #a63322;
}

.alpt-registration-form--sectioned .alpt-registration-form__submit {
  margin-top: 0;
}

.alpt-event-registration > .alpt-notice,
.alpt-event-registration > .alpt-form__errors,
.alpt-event-registration__closed {
  margin-top: 2rem;
  max-width: 52rem;
}

.alpt-event-registration__closed {
  background: var(--alpt-paper);
  border-bottom: 1px solid var(--alpt-ink);
  border-top: 1px solid var(--alpt-ink);
  padding: clamp(1.5rem, 3vw, 2.25rem);
}

.alpt-event-registration__closed h2,
.alpt-event-registration .alpt-notice h2 {
  margin: 0 0 0.6rem;
}

.alpt-notice--warning {
  background: #fff7dd;
  border-color: #9a6500;
}

.alpt-event-selection {
  border-top: 1px solid var(--alpt-ink);
  padding-top: clamp(1.5rem, 2.5vw, 2rem);
}

.alpt-event-selection > header {
  display: grid;
  gap: 1rem clamp(2rem, 6vw, 6rem);
  grid-template-columns: minmax(0, 1.15fr) minmax(18rem, 0.85fr);
}

.alpt-event-selection > header .alpt-eyebrow {
  grid-column: 1;
}

.alpt-event-selection > header h1 {
  font-size: clamp(2.25rem, 4.5vw, 4.4rem);
  grid-column: 1;
  letter-spacing: -0.055em;
  line-height: 0.98;
  margin: 0;
  max-width: 12ch;
}

.alpt-event-selection > header > p:last-child {
  align-self: end;
  color: #56606a;
  grid-column: 2;
  grid-row: 1 / span 2;
  line-height: 1.65;
  margin: 0;
}

.alpt-event-selection__list {
  border-bottom: 1px solid var(--alpt-ink);
  margin-top: clamp(2.5rem, 5vw, 4rem);
}

.alpt-event-selection__list article {
  align-items: center;
  border-top: 1px solid #b7b5b0;
  display: grid;
  gap: 1.5rem;
  grid-template-columns: minmax(0, 1fr) auto;
  padding: 1.4rem 0;
}

.alpt-event-selection__list article p {
  color: var(--alpt-muted);
  font-size: 0.8rem;
  font-weight: 680;
  margin: 0 0 0.35rem;
}

.alpt-event-selection__list article h2 {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  letter-spacing: -0.035em;
  margin: 0;
}

.alpt-event-back {
  border-top: 1px solid var(--alpt-ink);
  margin-top: clamp(3rem, 5vw, 5rem);
  padding-top: 1rem;
}

.alpt-form {
  background: #f8f4ec;
  border: 0;
  border-bottom: 1px solid var(--alpt-ink);
  border-radius: 0;
  border-top: 1px solid var(--alpt-ink);
  box-shadow: none;
  max-width: 52rem;
  padding: clamp(1.4rem, 2.7vw, 2.15rem);
}

.alpt-form > br,
.alpt-form > p:empty {
  display: none;
}

.alpt-form__grid {
  display: grid;
  gap: 1.2rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.alpt-form__field--full {
  grid-column: 1 / -1;
}

.alpt-form textarea {
  height: 10rem;
  resize: vertical;
}

.alpt-form input[type="checkbox"] {
  height: 1.2rem;
  min-height: 0;
  padding: 0;
  width: 1.2rem;
}

.alpt-form label,
.alpt-form legend {
  display: inline-block;
  font-size: 0.9rem;
  font-weight: 720;
  margin-bottom: 0.35rem;
}

.alpt-form__required,
.alpt-form__field-error {
  color: #a63322;
}

.alpt-form__help {
  color: var(--alpt-muted);
  display: block;
  font-size: 0.85rem;
}

.alpt-form__field-error {
  display: block;
  font-weight: 700;
  margin-top: 0.35rem;
}

.alpt-form__errors,
.alpt-notice {
  background: #fff1ed;
  border-left: 5px solid #a63322;
  border-radius: 0.5rem;
  margin-bottom: 1.5rem;
  padding: 1rem 1.2rem;
}

.alpt-notice--success {
  background: #e2f4eb;
  border-color: var(--alpt-pine);
}

.alpt-honeypot {
  left: -9999px;
  position: absolute;
}

.alpt-empty {
  background: var(--alpt-white);
  border: 1px dashed rgb(18 59 54 / 36%);
  border-radius: var(--alpt-radius-sm);
  padding: clamp(1.5rem, 4vw, 2.5rem);
}

.alpt-empty--action {
  border-style: solid;
  max-width: 56rem;
}

.alpt-empty--action h2 {
  font-size: clamp(1.65rem, 2.8vw, 2.5rem);
  letter-spacing: -0.04em;
  margin: 0 0 0.8rem;
}

.alpt-empty--action > p:not(.alpt-eyebrow) {
  line-height: 1.55;
  max-width: 54ch;
}

/* Footer */
.site-footer {
  background: var(--color-surface);
  color: var(--color-text-muted);
  margin-top: 0;
  padding: 3rem var(--layout-gutter) 1rem;
}

.site-footer::before {
  content: none;
}

.site-footer__main {
  align-items: flex-start;
  display: grid !important;
  gap: clamp(1.5rem, 2vw, 2.25rem);
  grid-template-columns: minmax(16rem, 1.28fr) minmax(8.5rem, 0.72fr) minmax(12rem, 0.96fr) minmax(12rem, 1.04fr);
  margin: 0 auto;
  max-width: var(--container-max);
}

.site-footer__brand {
  margin: 0 !important;
  max-width: 24rem;
}

.site-footer__brand > * {
  margin-inline: 0 !important;
}

.site-footer__logo {
  display: block;
  margin-bottom: 1rem;
  width: 8rem;
}

.site-footer__eyebrow {
  color: var(--color-accent-dark);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  margin: 0;
  text-transform: uppercase;
}

.site-footer__brand h2 {
  color: var(--color-text);
  font-size: clamp(1.9rem, 2.5vw, 2.75rem);
  font-weight: 650;
  letter-spacing: -0.045em;
  line-height: 1.02;
  margin: 0.875rem 0 1.125rem;
  max-width: 12ch;
}

.site-footer__brand > p:not(.site-footer__eyebrow) {
  font-size: 0.975rem;
  line-height: 1.6;
  margin: 0;
  max-width: 34ch;
}

.site-footer__group {
  margin: 0 !important;
  min-width: 0;
}

.site-footer__accordion-trigger {
  display: none;
}

.site-footer__accordion-panel {
  margin: 1rem 0 0 !important;
}

.site-footer__accordion-panel > :first-child {
  margin-top: 0;
}

.site-footer h3 {
  color: var(--color-text);
  font-size: 0.72rem !important;
  font-weight: 700;
  letter-spacing: 0.14em;
  margin: 0;
  text-transform: uppercase;
}

.site-footer__contact p {
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 0;
}

.site-footer__navigation li > a,
.site-footer__legal a {
  align-items: center;
  display: inline-flex;
  min-height: 2.75rem;
}

.site-footer__navigation li > a {
  font-size: 0.925rem;
  line-height: 1.4;
}

.site-footer a:not(.wp-element-button) {
  color: var(--color-text);
  text-decoration-color: rgb(40 94 117 / 35%);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
  transition: color var(--transition-fast) var(--ease-standard), text-decoration-color var(--transition-fast) var(--ease-standard);
}

.site-footer a:not(.wp-element-button):hover {
  color: var(--color-accent-dark);
  text-decoration-color: currentcolor;
}

.site-footer__support .wp-block-buttons {
  margin: 0;
}

.site-footer__support .wp-element-button {
  font-size: 0.8rem;
  min-height: 2.75rem;
  padding: 0.65rem 1.125rem;
  white-space: nowrap;
}

.site-footer :is(ul, .wp-block-list) {
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-footer li + li {
  margin-top: 0;
}

.site-footer__meta {
  align-items: center;
  border-top: 1px solid var(--color-border);
  color: var(--color-text-muted);
  display: flex !important;
  font-size: 0.78rem;
  gap: 1rem 2rem;
  margin: 1.5rem auto 0;
  max-width: var(--container-max);
  padding-top: 0.5rem;
}

.site-footer__meta-copy {
  align-items: center;
  display: flex;
  gap: 0.5rem 1.25rem;
  margin: 0 !important;
}

.site-footer__meta :is(p, ul) {
  margin: 0;
}

.site-footer__legal {
  display: flex;
  flex-wrap: wrap;
  gap: 0 1.5rem;
  margin-left: auto !important;
}

/* Editorial system refinements */
body.alpt-world-about {
  --alpt-world-accent: var(--alpt-pine);
}

body.alpt-world-offers {
  --alpt-world-accent: #596f77;
}

body.alpt-world-events {
  --alpt-events-divider: rgb(16 24 32 / 10%);
  --alpt-world-accent: #726453;
}

body.alpt-world-experiences {
  --alpt-world-accent: #75647f;
}

body.alpt-world-support {
  --alpt-world-accent: #526b57;
}

body.alpt-world-contact,
body.alpt-world-legal {
  --alpt-world-accent: var(--alpt-coral-dark);
}

.alpt-page-hero__inner:has(.alpt-section-nav, .alpt-filter) {
  padding-bottom: 1.2rem;
}

.alpt-page-hero__inner:has(.alpt-section-nav, .alpt-filter)::after {
  content: none;
}

.alpt-section-nav,
.alpt-filter__layout {
  gap: var(--alpt-space-md);
}

.alpt-section-nav__options,
.alpt-filter__options {
  background: transparent;
  border-left: 1px solid var(--alpt-border);
  border-radius: 0;
  gap: 0;
  padding: 0;
}

.alpt-section-nav__option,
.alpt-filter .alpt-filter__option {
  border-radius: 0;
  min-height: 2.4rem;
  padding: 0.5rem 0.95rem;
}

.alpt-section-nav__option + .alpt-section-nav__option,
.alpt-filter .alpt-filter__option + .alpt-filter__option {
  border-left: 1px solid var(--alpt-border);
}

.alpt-section-nav__option.is-active,
.alpt-filter .alpt-filter__option.is-active {
  box-shadow: none;
}

.alpt-page-body .alpt-team-card,
.alpt-page-body .alpt-team-card:nth-child(3n + 2),
.alpt-page-body .alpt-team-card:nth-child(3n) {
  background: var(--alpt-surface-soft);
  border-top: 1px solid var(--alpt-ink);
}

body.alpt-world-offers .alpt-page-body .alpt-grid {
  counter-reset: alpt-offer;
  gap: 0;
  grid-template-columns: 1fr;
}

body.alpt-world-offers .alpt-card--offer {
  align-items: center;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--color-border);
  border-radius: 0;
  box-shadow: none;
  column-gap: clamp(0.875rem, 1.8vw, 1.75rem);
  counter-increment: alpt-offer;
  display: grid;
  grid-template-columns: minmax(4rem, 0.28fr) minmax(0, 1.12fr) minmax(0, 0.9fr) minmax(15rem, 1.15fr);
  min-height: 0;
  padding: clamp(3rem, 5vw, 4.5rem) 0;
}

body.alpt-world-offers .alpt-card--offer:first-child {
  border-top: 1px solid var(--color-border);
}

body.alpt-world-offers .alpt-card--offer:last-child {
  border-bottom: 0;
}

body.alpt-world-offers .alpt-offer-card__title-group {
  display: contents;
}

body.alpt-world-offers .alpt-offer-card__meta {
  align-self: stretch;
  display: flex;
  gap: clamp(0.75rem, 1.5vw, 1.25rem);
  min-width: 0;
  padding-top: 0.25rem;
}

body.alpt-world-offers .alpt-offer-card__number {
  color: var(--color-accent);
  display: block;
  flex: 0 0 auto;
}

body.alpt-world-offers .alpt-offer-card__number::before {
  content: "0" counter(alpt-offer);
  font-family: Anton, var(--font-display);
  font-size: clamp(2.6rem, 3.5vw, 4rem);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1;
}

body.alpt-world-offers .alpt-offer-card__divider {
  background: var(--color-border);
  display: block;
  height: 100%;
  margin-left: auto;
  min-height: 10rem;
  width: 1px;
}

body.alpt-world-offers .alpt-offer-card__copy {
  max-width: 22.5rem;
}

body.alpt-world-offers .alpt-offer-entry__link {
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  line-height: 1.2;
  margin-top: clamp(1.75rem, 2.5vw, 2.25rem);
  min-height: 2.75rem;
  text-transform: uppercase;
}

body.alpt-world-offers .alpt-card--offer h2 {
  color: var(--color-text);
  font-family: Anton, var(--font-display);
  font-size: clamp(2.45rem, 3.05vw, 3.29rem);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 0.96;
  margin: 0;
  max-width: 100%;
  text-transform: uppercase;
  text-wrap: balance;
}

body.alpt-world-offers .alpt-offer-card__accent {
  color: var(--color-accent-dark);
  margin-top: clamp(1.25rem, 2vw, 1.75rem);
  width: fit-content;
}

body.alpt-world-offers .alpt-offer-card__accent .handwritten-accent {
  font-size: clamp(1.25rem, 1.7vw, 1.8rem);
  line-height: 1.1;
  margin: 0;
  max-width: 16ch;
}

body.alpt-world-offers .alpt-offer-card__accent svg {
  display: block;
  height: auto;
  margin: 0.25rem 0 0 0.75rem;
  stroke: currentcolor;
  stroke-linecap: round;
  stroke-width: 1.7;
  width: clamp(4.75rem, 7vw, 7rem);
}

body.alpt-world-offers .alpt-card--offer p {
  color: var(--color-text);
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.6;
  margin: 0;
  max-width: 22.5rem;
}

body.alpt-world-offers .alpt-offer-card__media {
  aspect-ratio: 7 / 5;
  margin: -0.75rem 0;
  min-width: 0;
  position: relative;
  width: 100%;
}

body.alpt-world-offers .alpt-offer-card__image {
  inset: 6% 5%;
  overflow: hidden;
  position: absolute;
}

body.alpt-world-offers .alpt-card--offer:nth-child(1) .alpt-offer-card__image {
  --alpt-offer-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100' preserveAspectRatio='none'%3E%3Cpath fill='black' d='M8 48C7 23 24 6 51 8C73 4 95 19 93 45C98 68 78 94 49 91C24 96 5 74 8 48Z'/%3E%3C/svg%3E");
}

body.alpt-world-offers .alpt-card--offer:nth-child(2) .alpt-offer-card__image {
  --alpt-offer-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100' preserveAspectRatio='none'%3E%3Cpath fill='black' d='M10 39C16 13 40 5 66 10C91 14 98 34 91 57C89 84 64 96 37 89C13 85 3 64 10 39Z'/%3E%3C/svg%3E");
}

body.alpt-world-offers .alpt-card--offer:nth-child(3) .alpt-offer-card__image {
  --alpt-offer-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100' preserveAspectRatio='none'%3E%3Cpath fill='black' d='M6 54C3 28 25 10 47 7C75 3 97 19 94 46C99 68 82 88 57 94C31 98 10 82 6 54Z'/%3E%3C/svg%3E");
}

body.alpt-world-offers .alpt-offer-card__image img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

body.alpt-world-offers .alpt-offer-card__sketch,
body.alpt-world-offers .alpt-offer-card__sketch-mark {
  color: var(--color-accent);
  pointer-events: none;
  position: absolute;
  stroke: currentcolor;
  stroke-linecap: round;
  stroke-linejoin: round;
}

body.alpt-world-offers .alpt-offer-card__sketch {
  height: 100%;
  inset: 0;
  opacity: 0.82;
  stroke-width: 1.5;
  width: 100%;
}

body.alpt-world-offers .alpt-offer-card__sketch-mark {
  bottom: 0;
  height: auto;
  left: 7%;
  stroke-width: 1.8;
  width: clamp(2.75rem, 4vw, 3.75rem);
}

body.alpt-world-offers .alpt-card--offer:nth-child(2) .alpt-offer-card__sketch-mark {
  bottom: 4%;
  left: auto;
  right: 5%;
  transform: rotate(12deg);
}

body.alpt-world-offers .alpt-card--offer:nth-child(3) .alpt-offer-card__sketch-mark {
  bottom: auto;
  left: 1%;
  top: 4%;
  transform: rotate(-8deg);
}

@media (min-width: 901px) {
  body.alpt-world-offers .alpt-card--offer {
    border-bottom-color: rgb(16 24 32 / 10%);
    column-gap: 0;
    grid-template-columns: minmax(4rem, 0.25fr) minmax(0, 1.16fr) minmax(0, 0.9fr) minmax(15rem, 1.16fr);
    padding-block: clamp(2rem, 3.2vw, 2.875rem);
  }

  body.alpt-world-offers .alpt-card--offer:first-child {
    border-top-color: rgb(16 24 32 / 10%);
  }

  body.alpt-world-offers .alpt-offer-card__meta {
    gap: clamp(0.625rem, 1vw, 0.875rem);
    padding-right: clamp(0.75rem, 1.2vw, 1.125rem);
  }

  body.alpt-world-offers .alpt-offer-card__number::before {
    font-size: clamp(2.3rem, 3vw, 3.4rem);
  }

  body.alpt-world-offers .alpt-offer-card__divider {
    align-self: flex-start;
    height: 76%;
    max-height: 13.75rem;
    min-height: 0;
  }

  body.alpt-world-offers .alpt-offer-card__heading {
    align-self: start;
    padding-top: 0.25rem;
    padding-right: clamp(0.75rem, 1.25vw, 1.25rem);
  }

  body.alpt-world-offers .alpt-card--offer h2 {
    font-size: clamp(2.5rem, 3.05vw, 3.29rem);
    line-height: 0.94;
  }

  body.alpt-world-offers .alpt-offer-card__accent {
    color: var(--color-accent);
    margin-top: 1rem;
  }

  body.alpt-world-offers .alpt-offer-card__accent .handwritten-accent {
    color: var(--color-accent);
    font-family: var(--font-handwritten);
    font-size: clamp(1.2rem, 1.55vw, 1.6rem);
    font-weight: 600;
    letter-spacing: 0;
    line-height: 1.15;
  }

  body.alpt-world-offers .alpt-offer-card__accent svg {
    color: var(--color-accent);
    margin-top: 0.5rem;
    stroke-width: 1.5;
    width: clamp(5.625rem, 7vw, 8.125rem);
  }

  body.alpt-world-offers .alpt-offer-card__copy {
    align-self: center;
    max-width: 21.25rem;
    padding-left: 0.25rem;
    padding-right: clamp(1.75rem, 3vw, 3rem);
  }

  body.alpt-world-offers .alpt-offer-entry__link {
    margin-top: 1.5rem;
  }

  body.alpt-world-offers .alpt-card--offer p {
    line-height: 1.6;
    max-width: 21.25rem;
  }

  body.alpt-world-offers .alpt-offer-card__media {
    margin-left: -0.5rem;
    transform: translateX(-0.25rem);
  }

  body.alpt-world-offers .alpt-offer-card__image {
    mask-image: var(--alpt-offer-mask);
    mask-position: center;
    mask-repeat: no-repeat;
    mask-size: 100% 100%;
  }

  body.alpt-world-offers .alpt-offer-card__sketch {
    opacity: 0.8;
    stroke-dasharray: 360 18 190 30 220;
    stroke-width: 1.7;
  }

  body.alpt-world-offers .alpt-card--offer:nth-child(2) .alpt-offer-card__sketch {
    stroke-dasharray: 250 24 330 16 170;
    stroke-dashoffset: 17;
  }

  body.alpt-world-offers .alpt-card--offer:nth-child(3) .alpt-offer-card__sketch {
    stroke-dasharray: 410 28 150 18 190;
    stroke-dashoffset: -23;
  }

  body.alpt-world-offers .alpt-offer-card__sketch-mark {
    display: none;
  }

  body.alpt-world-offers .alpt-card--offer:nth-child(2) .alpt-offer-card__sketch-mark {
    display: block;
  }
}

@media (min-width: 1101px) {
  body.alpt-world-offers .alpt-offer-card__title-group {
    align-self: center;
    display: grid;
    grid-column: 1 / 3;
    grid-template-columns: minmax(4rem, 0.25fr) minmax(0, 1.16fr);
  }

  body.alpt-world-offers .alpt-offer-card__copy {
    grid-column: 3;
    transform: translateX(-1.5rem);
  }

  body.alpt-world-offers .alpt-offer-card__media {
    grid-column: 4;
  }
}

@media (min-width: 901px) and (max-width: 1100px) {
  body.alpt-world-offers .alpt-card--offer {
    align-items: start;
    grid-template-columns: minmax(3.5rem, 0.2fr) minmax(0, 1.05fr) minmax(15rem, 1fr);
  }

  body.alpt-world-offers .alpt-offer-card__meta,
  body.alpt-world-offers .alpt-offer-card__media {
    grid-row: 1 / 3;
  }

  body.alpt-world-offers .alpt-offer-card__copy {
    grid-column: 2;
    grid-row: 2;
    margin-top: 1.25rem;
  }

  body.alpt-world-offers .alpt-offer-card__media {
    align-self: center;
    grid-column: 3;
  }

  body.alpt-world-offers .alpt-card--offer h2 {
    font-size: clamp(2.35rem, 4vw, 2.75rem);
    max-width: 100%;
  }
}

@media (max-width: 900px) {
  body.alpt-world-offers .alpt-page-body {
    padding-left: 0;
    padding-right: 0;
  }

  body.alpt-world-offers .alpt-card--offer {
    align-items: start;
    column-gap: 0.875rem;
    display: grid;
    grid-template-columns: 2.75rem minmax(0, 1fr);
    padding: 3rem 0 3.5rem;
  }

  body.alpt-world-offers .alpt-offer-card__meta {
    align-items: center;
    align-self: stretch;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    grid-column: 1;
    grid-row: 1;
    margin: 0;
    padding: 0;
    width: 2.75rem;
  }

  body.alpt-world-offers .alpt-offer-card__divider {
    flex: 1 1 auto;
    height: auto;
    margin: 0 auto;
    min-height: 3rem;
    width: 1px;
  }

  body.alpt-world-offers .alpt-offer-card__heading {
    grid-column: 2;
    grid-row: 1;
  }

  body.alpt-world-offers .alpt-card--offer h2 {
    font-size: clamp(1.9rem, 9.5vw, 3rem);
    hyphens: none;
    line-height: 0.92;
    max-width: 100%;
  }

  body.alpt-world-offers .alpt-offer-card__accent {
    color: var(--color-accent);
    margin-top: 1rem;
  }

  body.alpt-world-offers .alpt-offer-card__accent .handwritten-accent {
    color: var(--color-accent);
    font-family: var(--font-handwritten);
    font-size: clamp(1.2rem, 5.3vw, 1.55rem);
    font-weight: 600;
    letter-spacing: 0;
    line-height: 1.12;
  }

  body.alpt-world-offers .alpt-offer-card__accent svg {
    color: var(--color-accent);
  }

  body.alpt-world-offers .alpt-offer-card__copy {
    grid-column: 2;
    grid-row: 2;
    margin-top: 1.75rem;
    max-width: 34ch;
  }

  body.alpt-world-offers .alpt-card--offer p {
    max-width: 34ch;
  }

  body.alpt-world-offers .alpt-offer-entry__link {
    margin-top: 1.375rem;
  }

  body.alpt-world-offers .alpt-offer-card__media {
    grid-column: 1 / -1;
    grid-row: 3;
    justify-self: center;
    margin: 2rem 0 0;
    max-width: 26.875rem;
  }

  body.alpt-world-offers .alpt-offer-card__image {
    border-radius: 0;
    mask-image: var(--alpt-offer-mask);
    mask-position: center;
    mask-repeat: no-repeat;
    mask-size: 100% 100%;
  }
}

@media (min-width: 700px) and (max-width: 900px) {
  body.alpt-world-offers .alpt-card--offer {
    grid-template-columns: 2.75rem minmax(0, 1fr) minmax(16rem, 0.95fr);
  }

  body.alpt-world-offers .alpt-offer-card__copy {
    grid-column: 2;
    grid-row: 2;
  }

  body.alpt-world-offers .alpt-offer-card__media {
    align-self: center;
    grid-column: 3;
    grid-row: 1 / 3;
    margin: 0;
    max-width: none;
  }

  body.alpt-world-offers .alpt-card--offer h2 {
    font-size: clamp(2rem, 5.5vw, 2.65rem);
  }
}

body.alpt-world-offers .alpt-guides-callout {
	align-items: start;
	background: #fff;
	border-radius: 0;
	border-top: 1px solid var(--color-border);
	box-shadow: none;
	color: var(--color-text);
	display: grid;
	gap: 0 clamp(6.25rem, 10vw, 11.25rem);
	grid-template-columns: minmax(18.75rem, 0.8fr) minmax(26.25rem, 1fr);
	grid-template-rows: auto auto auto;
	margin-top: clamp(2rem, 3vw, 2.75rem);
	padding: clamp(4rem, 6vw, 5.25rem) 0;
}

body.alpt-world-offers .alpt-guides-callout > div {
	display: contents;
}

body.alpt-world-offers .alpt-guides-callout .alpt-eyebrow {
	color: var(--color-accent);
	font-size: 0.75rem !important;
	font-weight: 700;
	grid-column: 1 / -1;
	grid-row: 1;
	letter-spacing: 0.14em;
	margin: 0 0 clamp(2.25rem, 3vw, 3.25rem);
}

body.alpt-world-offers .alpt-guides-callout .alpt-eyebrow::before {
	border-radius: 0;
	flex: 0 0 2rem;
	height: 1px;
	width: 2rem;
}

body.alpt-world-offers .alpt-guides-callout h2 {
	color: var(--color-text);
	font-family: var(--font-sans);
	font-size: clamp(2.4rem, 3.4vw, 3.25rem);
	font-weight: 800;
	grid-column: 1;
	grid-row: 2 / 4;
	letter-spacing: -0.035em;
	line-height: 0.98;
	margin: 0;
	max-width: 100%;
	padding-bottom: 2.25rem;
	position: relative;
	text-transform: uppercase;
}

body.alpt-world-offers .alpt-guides-callout h2::before {
	background: var(--color-accent);
	bottom: 0;
	content: "";
	height: 0.875rem;
	left: 0.25rem;
	mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 140 14'%3E%3Cpath d='M2 8c18-4 29 3 45 0 20-4 33-6 50-2 14 3 24 1 41-1' fill='none' stroke='black' stroke-linecap='round' stroke-width='2'/%3E%3C/svg%3E");
	mask-position: center;
	mask-repeat: no-repeat;
	mask-size: 100% 100%;
	position: absolute;
	width: clamp(6.25rem, 9vw, 9.375rem);
}

body.alpt-world-offers .alpt-guides-callout h2::after {
	content: ".";
}

body.alpt-world-offers .alpt-guides-callout p:last-child {
	color: var(--color-text);
	font-family: var(--font-sans);
	font-size: 1rem;
	font-weight: 400;
	grid-column: 2;
	grid-row: 2;
	letter-spacing: 0;
	line-height: 1.65;
	margin: 0;
	max-width: 32.5rem;
}

body.alpt-world-offers .alpt-guides-callout .alpt-text-link {
	align-self: start;
	border-top: 0;
	color: var(--color-accent-dark);
	font-size: 0.78rem;
	grid-column: 2;
	grid-row: 3;
	justify-content: flex-start;
	letter-spacing: 0.1em;
	line-height: 1.2;
	margin-top: 1.75rem;
	min-height: 2.75rem;
	padding-top: 0;
	text-transform: uppercase;
	width: fit-content;
}

@media (min-width: 1024px) and (max-width: 1100px) {
	body.alpt-world-offers .alpt-guides-callout {
		gap: 0 clamp(3rem, 7vw, 4.5rem);
		grid-template-columns: minmax(22rem, 0.86fr) minmax(0, 1fr);
	}

}

@media (max-width: 1023px) {
	body.alpt-world-offers .alpt-guides-callout {
		gap: 0;
		grid-template-columns: minmax(0, 1fr);
		padding: clamp(3.5rem, 8vw, 4.5rem) 0 clamp(4rem, 9vw, 5rem);
	}

	body.alpt-world-offers .alpt-guides-callout h2 {
		font-size: clamp(2.1rem, 5vw, 2.8rem);
		grid-column: 1;
		grid-row: 2;
	}

	body.alpt-world-offers .alpt-guides-callout p:last-child {
		grid-column: 1;
		grid-row: 3;
		line-height: 1.6;
		margin-top: 1.875rem;
	}

	body.alpt-world-offers .alpt-guides-callout .alpt-text-link {
		grid-column: 1;
		grid-row: 4;
	}
}

@media (max-width: 430px) {
	body.alpt-world-offers .alpt-guides-callout h2 {
		font-size: clamp(1.8rem, 9vw, 2.8rem);
	}
}

@media (max-width: 360px) {
  body.alpt-world-offers .alpt-card--offer {
    column-gap: 0.625rem;
    grid-template-columns: 2.375rem minmax(0, 1fr);
  }

  body.alpt-world-offers .alpt-offer-card__meta {
    width: 2.375rem;
  }
}

body.alpt-world-contact .wp-block-post-content {
  display: block;
}

body.alpt-world-contact .alpt-contact-note {
  display: none;
}

body.alpt-world-contact .alpt-page-body {
  padding-bottom: clamp(3.5rem, 6vw, 5.5rem);
  padding-top: 0;
}

body.alpt-world-contact .alpt-breadcrumbs {
  display: none;
}

body.alpt-world-contact .wp-block-shortcode {
  margin: 0;
  max-width: none;
  min-width: 0;
  width: 100%;
}

.alpt-contact-page-content {
  width: 100%;
}

.alpt-contact-compose {
  border-bottom: 1px solid var(--color-border);
  padding-bottom: clamp(3rem, 5vw, 4.25rem);
  padding-top: clamp(2rem, 2.5vw, 2.5rem);
}

.alpt-contact-compose > :where(.alpt-notice, .alpt-form__errors) {
  margin-bottom: clamp(2rem, 4vw, 3rem);
  max-width: 48rem;
}

body.alpt-world-contact .alpt-form.alpt-contact-form {
  background: transparent;
  border: 0;
  display: grid;
  gap: 0 clamp(4rem, 8vw, 8rem);
  grid-template-columns: minmax(14rem, 0.42fr) minmax(0, 1fr);
  margin-left: 0;
  max-width: none;
  padding: 0;
  width: 100%;
}

.alpt-contact-form__header {
  align-self: start;
  border-left: 2px solid var(--color-accent);
  grid-column: 1;
  margin: 0;
  padding: 0 0 0 1.25rem;
}

.alpt-contact-form__header .alpt-eyebrow {
  color: var(--color-accent-dark);
  margin: 0 0 1rem;
  text-transform: uppercase;
}

.alpt-contact-form__header h2 {
  font-family: var(--font-sans);
  font-size: clamp(1.8rem, 2.2vw, 2.3rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1;
  margin: 0;
  max-width: 12ch;
}

.alpt-contact-form__header > p:last-child {
  color: var(--color-text-muted);
  font-size: 0.9375rem;
  line-height: 1.6;
  margin: 1.25rem 0 0;
  max-width: 30ch;
}

.alpt-contact-form .alpt-form__grid {
  gap: 1.5rem 1.25rem;
  grid-column: 2;
}

.alpt-contact-form__field {
  min-width: 0;
}

.alpt-contact-form__field label {
  color: var(--color-text);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.35;
  margin-bottom: 0.55rem;
  text-transform: uppercase;
}

.alpt-contact-form :is(input:not([type="checkbox"]), textarea) {
  background: #fff;
  border: 1px solid rgb(16 24 32 / 14%);
  border-radius: 0;
  color: var(--color-text);
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.5;
  min-height: 3rem;
  padding: 0.75rem 0.875rem;
  width: 100%;
}

.alpt-contact-form :is(input:not([type="checkbox"]), textarea):focus-visible {
  border-color: var(--color-accent);
  box-shadow: none;
  outline: 3px solid var(--color-focus);
  outline-offset: 2px;
}

.alpt-contact-form__field--message {
  margin-top: 0;
}

.alpt-contact-form__field--message textarea {
  min-height: 9.375rem;
  resize: vertical;
}

.alpt-contact-form__privacy {
  border-top: 1px solid var(--color-border);
  margin-top: 0;
  padding: 1.25rem 0 0;
}

.alpt-contact-form__privacy label {
  align-items: flex-start;
  cursor: pointer;
  display: grid;
  gap: 0.75rem;
  font-size: 0.9375rem;
  font-weight: 400;
  grid-template-columns: auto minmax(0, 1fr);
  letter-spacing: 0;
  line-height: 1.6;
  margin: 0;
  min-height: 2.75rem;
  text-transform: none;
}

.alpt-contact-form__privacy input[type="checkbox"] {
  accent-color: var(--color-accent-dark);
  flex: 0 0 1.35rem;
  height: 1.35rem;
  margin-top: 0.08rem;
  width: 1.35rem;
}

.alpt-contact-form__submit {
  align-items: start;
  display: flex;
  flex-direction: column;
  grid-column: 2;
  padding: clamp(1.5rem, 3vw, 2rem) 0 0;
}

.alpt-contact-form__submit button {
  align-items: center;
  background: transparent;
  border: 0;
  border-bottom: 1px solid currentcolor;
  border-radius: 0;
  color: var(--color-accent-dark);
  display: inline-flex;
  font-size: 0.78rem;
  font-weight: 700;
  gap: 0.65rem;
  justify-content: flex-start;
  letter-spacing: 0.1em;
  line-height: 1.2;
  min-height: 2.75rem;
  padding: 0;
  text-transform: uppercase;
  width: fit-content;
}

.alpt-contact-form__submit button:hover {
  background: transparent;
  border-color: var(--color-accent);
  color: var(--color-accent);
}

.alpt-contact-form__submit button span:last-child {
  transition: transform var(--transition-fast) var(--ease-standard);
}

.alpt-contact-form__submit button:hover span:last-child {
  transform: translateX(0.25rem);
}

@media (max-width: 900px) {
  body.alpt-world-contact .alpt-page-body {
    padding-bottom: 0;
  }

  .alpt-contact-compose {
    padding-bottom: clamp(3.5rem, 8vw, 4.5rem);
    padding-top: 0;
  }

  body.alpt-world-contact .alpt-form.alpt-contact-form {
    display: block;
  }

  .alpt-contact-form__header {
    margin-bottom: clamp(2rem, 5vw, 2.5rem);
    max-width: 34rem;
    padding-left: clamp(1rem, 2.5vw, 1.125rem);
  }

  .alpt-contact-form__header h2 {
    font-size: clamp(2rem, 9vw, 2.6rem);
    max-width: 18ch;
  }

  .alpt-contact-form__header > p:last-child {
    max-width: 38ch;
  }

  .alpt-contact-form .alpt-form__grid {
    gap: clamp(1.25rem, 3vw, 1.5rem);
    grid-template-columns: minmax(0, 1fr);
  }

  .alpt-contact-form__submit {
    padding-top: clamp(1.5rem, 4vw, 2rem);
  }

  .alpt-contact-form__submit button {
    margin-left: -0.25rem;
    padding-inline: 0.25rem;
  }
}

@media (max-width: 600px) {
  .alpt-contact-form__submit button {
    min-width: 0;
  }
}

/* Legal documents: one quiet, shared system for Imprint and Privacy. */
body.alpt-legal-page {
  --alpt-world-accent: var(--color-accent);
}

body.alpt-legal-page .alpt-page-hero {
  background: #fff;
}

body.alpt-legal-page .alpt-page-hero__inner:has(> .alpt-legal-header) {
  padding-bottom: clamp(2.25rem, 3vw, 3rem);
  padding-top: clamp(3rem, 5vw, 4.5rem);
  width: min(100%, calc(73.75rem + (2 * var(--alpt-gutter))));
}

body.alpt-legal-page .alpt-page-hero__inner:has(> .alpt-legal-header)::before {
  content: none;
  display: none;
}

body.alpt-legal-page .alpt-page-hero__inner:has(> .alpt-legal-header)::after {
  background: var(--color-border);
}

.alpt-legal-header {
  max-width: 48.75rem;
}

.alpt-legal-header__back {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  min-height: 2.75rem;
  text-transform: uppercase;
}

.alpt-legal-header__eyebrow {
  color: var(--color-accent-dark);
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  margin: clamp(2rem, 3vw, 2.75rem) 0 0.9rem;
  text-transform: uppercase;
}

.alpt-page-hero .alpt-legal-header__title {
  color: var(--color-text);
  font-family: var(--font-sans);
  font-size: clamp(2.8rem, 4vw, 4rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1;
  max-width: none;
  text-wrap: balance;
}

.alpt-legal-header > .alpt-page-hero__lead {
  color: var(--color-text);
  font-family: var(--font-sans);
  font-size: 1.05rem !important;
  letter-spacing: 0;
  line-height: 1.6;
  margin-top: 1.25rem;
  max-width: 38.75rem;
}

body.alpt-legal-page .alpt-page-body {
  padding-bottom: clamp(4rem, 7vw, 6.5rem);
  padding-top: clamp(2.75rem, 5vw, 4.5rem);
  width: min(100%, calc(73.75rem + (2 * var(--alpt-gutter))));
}

body.alpt-legal-page .alpt-page-body > .wp-block-post-featured-image {
  display: none;
}

body.alpt-legal-page .wp-block-post-content {
  max-width: none;
}

body.alpt-legal-page .wp-block-post-content :is(p, li, dd) {
  color: var(--color-text);
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.7;
}

body.alpt-legal-page .wp-block-post-content a {
  color: var(--color-accent-dark);
  font-weight: 650;
  overflow-wrap: anywhere;
  text-decoration-line: underline;
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.2em;
}

body.alpt-legal-page .wp-block-post-content a:focus-visible,
.alpt-legal-header__back:focus-visible,
.alpt-legal-toc a:focus-visible {
  outline: 3px solid var(--color-focus);
  outline-offset: 3px;
}

body.alpt-legal-page--imprint .wp-block-post-content {
  max-width: 47.5rem;
}

body.alpt-legal-page--imprint .wp-block-post-content > .alpt-review-note {
  background: transparent;
  border: 0;
  color: var(--color-text-muted) !important;
  font-size: 0.875rem;
  line-height: 1.6;
  margin: 0;
  max-width: none;
  padding: 0 0 clamp(1.5rem, 3vw, 2rem);
}

.alpt-imprint-list {
  margin: 0;
  max-width: 47.5rem;
}

.alpt-imprint-list__item {
  border-top: 1px solid var(--color-border);
  display: grid;
  gap: clamp(2.5rem, 5vw, 4rem);
  grid-template-columns: minmax(8.75rem, 11.25rem) minmax(0, 1fr);
  padding: clamp(1.25rem, 2.2vw, 1.75rem) 0;
}

.alpt-imprint-list dt {
  color: var(--color-accent-dark);
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.5;
  text-transform: uppercase;
}

.alpt-imprint-list dd {
  margin: 0;
  max-width: 47.5rem;
}

.alpt-legal-layout {
  align-items: start;
  display: grid;
  gap: clamp(3.5rem, 7vw, 6rem);
  grid-template-columns: minmax(13rem, 16.25rem) minmax(0, 1fr);
}

.alpt-legal-toc {
  background: var(--alpt-surface-cool);
  padding: clamp(1.5rem, 2vw, 1.75rem);
}

.alpt-legal-toc__title {
  color: var(--color-accent-dark) !important;
  font-size: 0.75rem !important;
  font-weight: 700;
  letter-spacing: 0.14em;
  margin: 0 0 1.25rem;
  text-transform: uppercase;
}

.alpt-legal-toc ol {
  display: grid;
  gap: 0.75rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.alpt-legal-toc a {
  color: var(--color-text);
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.45;
  text-decoration-line: underline;
  text-decoration-thickness: 0.06em;
  text-underline-offset: 0.2em;
}

.alpt-legal {
  display: block;
  max-width: none;
  min-width: 0;
}

.alpt-legal__updated {
  color: var(--color-text-muted) !important;
  font-size: 0.8125rem !important;
  line-height: 1.5 !important;
  margin: 0 0 1.5rem;
}

.alpt-legal section {
  border-top: 1px solid var(--color-border);
  display: block;
  padding: clamp(1.75rem, 3vw, 2.25rem) 0;
  scroll-margin-top: 6rem;
}

.alpt-legal section > h2 {
  color: var(--color-text);
  font-family: var(--font-sans);
  font-size: clamp(1.45rem, 1.8vw, 1.8rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.15;
  margin: 0 0 1rem;
  max-width: 42rem;
}

.alpt-legal section > :is(p, ul, ol) {
  grid-column: auto;
  margin: 0;
  max-width: 48.75rem;
}

.alpt-legal section > :is(p, ul, ol) + :is(p, ul, ol) {
  margin-top: 1rem;
}

.alpt-legal section :is(ul, ol) {
  padding-left: 1.35rem;
}

@media (max-width: 900px) {
  .alpt-legal-layout {
    display: block;
  }

  .alpt-legal-toc {
    margin-bottom: clamp(2.75rem, 7vw, 4rem);
    max-width: 35rem;
  }
}

@media (max-width: 600px) {
  body.alpt-legal-page .alpt-page-hero__inner:has(> .alpt-legal-header) {
    padding-bottom: 2rem;
    padding-top: 2.5rem;
  }

  .alpt-legal-header__eyebrow {
    margin-top: 1.5rem;
  }

  .alpt-page-hero .alpt-legal-header__title {
    font-size: clamp(2.35rem, 12vw, 3.2rem);
  }

  body.alpt-legal-page .alpt-page-body {
    padding-bottom: 4rem;
    padding-top: 2.25rem;
  }

  .alpt-legal-toc {
    padding: 1.25rem;
  }

  .alpt-legal section {
    padding-block: 1.65rem;
  }

  .alpt-imprint-list__item {
    gap: 0.55rem;
    grid-template-columns: minmax(0, 1fr);
  }
}

@keyframes alpt-panel-in {
  from {
    transform: translateY(0.35rem);
  }

  to {
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: no-preference) {
  .alpt-page-hero__inner > :where(.wp-block-post-title, h1, .alpt-page-hero__lead, .alpt-section-nav, .alpt-filter) {
    animation: alpt-panel-in 520ms var(--alpt-ease-out) both;
  }

  .alpt-page-hero__inner > :where(.alpt-page-hero__lead, .alpt-section-nav, .alpt-filter) {
    animation-delay: 80ms;
  }
}

@media (prefers-reduced-motion: reduce) {
  .alpt-editorial-hero__primary,
  .alpt-editorial-hero__arrow {
    transition-duration: 0.01ms;
  }

  .alpt-editorial-hero__primary:hover,
  .alpt-editorial-hero__primary:hover .alpt-editorial-hero__arrow {
    transform: none;
  }

  .alpt-events-list__link:hover .alpt-events-list__arrow {
    transform: none;
  }
}

@media (min-width: 901px) {
  .alpt-events-overview-hero-shell {
    border-bottom-color: var(--alpt-events-divider);
  }

  .alpt-events-next {
    border-bottom-color: var(--alpt-events-divider);
    border-top: 0;
    padding-block: clamp(1.5rem, 2.25vw, 2.125rem);
  }

  .alpt-events-next__event {
    gap: 0;
    column-gap: clamp(2.5rem, 5vw, 4.5rem);
    grid-template-columns: minmax(6.875rem, 9.375rem) minmax(0, 1fr) auto;
    margin-top: clamp(1.25rem, 1.75vw, 1.5rem);
    max-width: 66rem;
  }

  .alpt-events-next__content h2 {
    margin-top: 0.45rem;
  }

  .alpt-events-next__content > .alpt-events-status {
    margin-top: 0.7rem;
  }

  .alpt-events-next__summary {
    margin-top: 0.9rem;
  }

  .alpt-events-list {
    margin-top: clamp(2rem, 2.5vw, 2.5rem);
  }

  .alpt-events-list ol {
    border-bottom: 0;
    margin-top: clamp(0.75rem, 1.1vw, 1.25rem);
  }

  .alpt-events-list li {
    border-top: 0;
  }

  .alpt-events-list li + li {
    border-top: 1px solid var(--alpt-events-divider);
  }

  .alpt-events-list__link {
    gap: 0;
    column-gap: clamp(1.75rem, 3vw, 3rem);
    grid-template-columns:
      40px
      minmax(120px, 150px)
      minmax(300px, 1fr)
      minmax(150px, 180px)
      28px;
    min-height: 0;
    padding-block: clamp(1.375rem, 1.65vw, 1.75rem);
  }

  .alpt-events-list__number,
  .alpt-events-list__date,
  .alpt-events-list__title,
  .alpt-events-list__details,
  .alpt-events-list__arrow {
    align-self: center;
  }

  .alpt-events-list__title {
    font-size: clamp(1.15rem, 1.4vw, 1.4rem);
    line-height: 1.15;
  }

  .alpt-events-list__details {
    gap: 0.3rem;
  }

  .alpt-events-list__arrow {
    justify-self: end;
  }
}

@media (max-width: 900px) {
  .alpt-events-overview-hero-shell__inner {
    padding-block: clamp(3.5rem, 9vw, 4.75rem);
  }

  .alpt-events-overview-hero {
    align-items: start;
    gap: clamp(2rem, 7vw, 3.5rem);
    grid-template-columns: 1fr;
  }

  .alpt-events-overview-hero__statement {
    max-width: 34rem;
  }

  .alpt-events-overview-hero__title {
    font-size: clamp(3rem, 13vw, 4.1rem);
    line-height: 0.94;
  }

  .alpt-events-overview-hero__accent .handwritten-accent {
    font-size: clamp(1.35rem, 6vw, 1.7rem);
    line-height: 1.15;
  }

  .alpt-events-overview-hero__media {
    justify-self: end;
    width: min(88%, 21.25rem);
  }

  body.alpt-world-events .alpt-page-body {
    padding-top: clamp(2rem, 5vw, 2.75rem);
  }

  body.alpt-world-events .alpt-filter {
    margin-bottom: 0;
  }

  .alpt-events-next {
    border-bottom-color: var(--alpt-events-divider);
    border-top: 0;
  }

  .alpt-events-next__event {
    align-items: start;
    gap: 0;
    grid-template-columns: 1fr;
    margin-top: 1.25rem;
  }

  .alpt-events-next__date .alpt-events-date__visual strong {
    font-size: clamp(2rem, 9vw, 2.8rem);
    line-height: 0.95;
    white-space: normal;
  }

  .alpt-events-next__content {
    margin-top: 1.5rem;
  }

  .alpt-events-next__content h2 {
    font-size: clamp(2rem, 9vw, 2.8rem);
    line-height: 0.95;
    max-width: 100%;
  }

  .alpt-events-next__action {
    align-self: start;
    margin-top: 1.5rem;
  }

  .alpt-events-list {
    margin-top: 2.5rem;
  }

  .alpt-events-list ol {
    border-bottom: 0;
  }

  .alpt-events-list li {
    border-top: 0;
  }

  .alpt-events-list li + li {
    border-top: 1px solid var(--alpt-events-divider);
  }

  .alpt-events-list__link {
    gap: 1rem 1.5rem;
    grid-template-columns: minmax(0, 1fr) auto;
    padding-block: clamp(1.75rem, 4vw, 2.25rem);
  }

  .alpt-events-list__number {
    grid-column: 1;
    grid-row: 1;
  }

  .alpt-events-list__date {
    grid-column: 2;
    grid-row: 1;
    text-align: right;
  }

  .alpt-events-list__title {
    font-size: clamp(1.25rem, 6vw, 1.55rem);
    grid-column: 1 / -1;
    grid-row: 2;
    line-height: 1.15;
  }

  .alpt-events-list__details {
    align-self: center;
    gap: 0.3rem;
    grid-column: 1;
    grid-row: 3;
  }

  .alpt-events-list__arrow {
    align-self: center;
    grid-column: 2;
    grid-row: 3;
  }
}

@media (max-width: 480px) {
  .alpt-events-overview-hero-shell__inner,
  body.alpt-world-events .alpt-page-body {
    padding-inline: clamp(1.25rem, 5vw, 1.5rem);
  }

  .alpt-events-overview-hero-shell__inner {
    padding-block: 3.5rem 3rem;
  }

  .alpt-events-overview-hero {
    gap: 1.75rem;
  }

  .alpt-events-overview-hero__eyebrow {
    margin-bottom: 1.25rem;
  }

  .alpt-events-overview-hero__title {
    font-size: clamp(3rem, 13vw, 4.1rem);
    line-height: 0.94;
  }

  .alpt-events-overview-hero__accent {
    margin-top: 1.375rem;
  }

  .alpt-events-overview-hero__accent .handwritten-accent {
    font-size: clamp(1.35rem, 6vw, 1.7rem);
  }

  .alpt-events-overview-hero__media {
    width: min(88%, 21.25rem);
  }

  body.alpt-world-events .alpt-filter {
    margin-bottom: 0;
  }

  body.alpt-world-events .alpt-filter__layout {
    display: block;
  }

  body.alpt-world-events .alpt-filter__options {
    border: 0;
    gap: clamp(0.85rem, 5vw, 1.5rem);
    justify-content: flex-start;
    width: 100%;
  }

  body.alpt-world-events .alpt-filter .alpt-filter__option {
    flex: 0 1 auto;
    font-size: 0.7rem;
    padding-inline: 0;
  }

  .alpt-events-next {
    padding-block: 2rem;
  }

  .alpt-events-next__event {
    gap: 0;
    margin-top: 1.25rem;
  }

  .alpt-events-date__visual strong {
    font-size: clamp(2rem, 9vw, 2.8rem);
  }

  .alpt-events-next__content h2 {
    font-size: clamp(2rem, 9vw, 2.8rem);
    max-width: 100%;
  }

  .alpt-events-next__summary {
    line-height: 1.6;
  }

  .alpt-events-list {
    margin-top: 2.5rem;
  }

  .alpt-events-list__link {
    gap: 1rem;
  }

  .alpt-events-list__date .alpt-events-date__visual strong {
    white-space: normal;
  }

  .alpt-events-empty {
    padding-block: 3.5rem;
  }
}

@media (max-width: 1180px) {
  body.home {
    --alpt-home-header-height: 4.5rem;
  }

  .site-header__inner {
    gap: var(--space-sm);
    min-height: 4.5rem;
  }

  body.home .site-header__inner {
    min-height: 4.5rem;
  }

  .site-brand__logo {
    width: 7rem;
  }

  .site-header__actions {
    gap: 0.5rem;
  }

  .site-header .wp-block-navigation__responsive-container:not(.is-menu-open) {
    display: none;
  }

  .site-header .wp-block-navigation__responsive-container-open:not(.always-shown) {
    display: flex;
  }

  .site-header .wp-block-navigation__responsive-container.is-menu-open {
    background: var(--color-surface);
    color: var(--color-text);
    overflow-y: auto;
    padding: 0;
  }

  .site-header .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content {
    align-items: stretch;
    gap: 0;
    margin-inline: auto;
    max-width: 44rem;
    padding: clamp(5.75rem, 13vw, 7.5rem) var(--layout-gutter) var(--space-lg);
    width: 100%;
  }

  .site-header .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__container {
    align-items: stretch;
    border-top: 1px solid var(--color-border);
    gap: 0;
    width: 100%;
  }

  .site-header .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation-item {
    align-items: stretch;
    border-bottom: 1px solid var(--color-border);
    width: 100%;
  }

  .site-header .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation-item > a {
    align-items: center;
    color: var(--color-text);
    display: flex;
    font-size: clamp(1.45rem, 5.8vw, 2.15rem);
    font-weight: 720;
    letter-spacing: -0.035em;
    line-height: 1.05;
    min-height: 4rem;
    padding: 0.75rem 0.15rem;
    width: 100%;
  }

  .site-header .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation-item > a::after {
    display: none;
  }

  .site-header .wp-block-navigation__responsive-container.is-menu-open .site-header__donate > a.wp-block-navigation-item__content {
    background: transparent;
    border: 0;
    border-radius: 0;
    color: var(--color-text);
    font-size: clamp(1.45rem, 5.8vw, 2.15rem);
    font-weight: 720;
    justify-content: flex-start;
    letter-spacing: -0.035em;
    margin: 0;
    min-height: 4rem;
    padding: 0.75rem 0.15rem;
    text-transform: none;
    width: 100%;
  }

  .site-header .wp-block-navigation__responsive-container.is-menu-open .site-header__donate > a.wp-block-navigation-item__content:hover {
    background: transparent;
    color: var(--color-accent-dark);
    transform: none;
  }

  .site-header .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation-item > a:hover,
  .site-header .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation-item.is-current > a {
    box-shadow: inset 0 -2px var(--color-accent);
    color: var(--color-accent-dark);
  }

  .site-header .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation-item > a:focus-visible {
    background: var(--color-accent-light);
    box-shadow: none;
    outline: 3px solid var(--color-focus);
    outline-offset: -3px;
  }

  .site-header .wp-block-navigation__responsive-container.is-menu-open .alpt-language-switcher {
    border-top: 1px solid var(--color-border);
    gap: var(--space-xs);
    margin-top: var(--space-lg);
    padding-top: var(--space-md);
  }

  .site-header .wp-block-navigation__responsive-container.is-menu-open .alpt-language-switcher a,
  .site-header .wp-block-navigation__responsive-container.is-menu-open .alpt-language-switcher span {
    height: 2.75rem;
    min-width: 2.75rem;
  }

  .site-header .wp-block-navigation__responsive-container-close {
    min-height: 3rem;
    min-width: 3rem;
    right: var(--layout-gutter);
    top: 0.75rem;
  }
}

@media (max-width: 1060px) {
  .alpt-event-card {
    grid-template:
      "title date action" auto
      "summary status action" auto /
      minmax(0, 2.3fr) minmax(9rem, 0.95fr) minmax(10.5rem, 1fr);
  }

  .alpt-page-body .alpt-grid,
  .alpt-page-body .alpt-team-grid,
  .alpt-post-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .alpt-editorial-hero {
    min-height: clamp(44rem, 84vh, 52rem);
  }

  .alpt-editorial-hero__media img {
    object-position: 60% 50%;
  }

  .alpt-editorial-hero__veil {
    background:
      linear-gradient(180deg, rgb(247 246 242 / 8%) 0%, transparent 40%),
      linear-gradient(90deg, rgb(247 246 242 / 96%) 0%, rgb(247 246 242 / 80%) 30%, rgb(247 246 242 / 44%) 46%, rgb(247 246 242 / 10%) 60%, transparent 70%);
  }

  .alpt-editorial-hero__copy {
    width: min(56%, 38rem);
  }

  .alpt-editorial-hero h1 {
    font-size: clamp(4rem, 7vw, 5.5rem);
  }
}

@media (max-width: 782px) {
  .admin-bar header.wp-block-template-part {
    top: 46px;
  }

  .site-header__inner {
    min-height: 4.5rem;
    padding-inline: var(--layout-gutter);
  }

  body.home .site-brand__logo {
    width: 7rem;
  }

  .alpt-editorial-hero {
    grid-template-rows: 1fr;
    height: auto;
    min-height: min(66.6667svh, 37.5rem);
  }

  .alpt-editorial-hero__media {
    aspect-ratio: auto;
    grid-row: 1;
    height: 100%;
    inset: 0;
    position: absolute;
  }

  .alpt-editorial-hero__media img {
    filter: brightness(1.02) contrast(1.01) saturate(0.94);
    object-position: 60% 50%;
    transform: none;
  }

  .alpt-editorial-hero__veil {
    background:
      linear-gradient(180deg, rgb(247 246 242 / 24%) 0%, rgb(247 246 242 / 10%) 56%, transparent 100%),
      linear-gradient(90deg, rgb(247 246 242 / 86%) 0%, rgb(247 246 242 / 64%) 42%, rgb(247 246 242 / 14%) 76%, transparent 100%);
    display: block;
  }

  .alpt-editorial-hero__inner {
    align-items: center;
    grid-row: 1;
    height: auto;
    min-height: inherit;
    padding: calc(var(--alpt-home-header-height) + 1rem) clamp(1.25rem, 6.15vw, 1.5rem) 1rem;
    width: 100%;
  }

  .alpt-editorial-hero__inner,
  .alpt-editorial-hero__copy,
  .alpt-editorial-hero__actions {
    min-width: 0;
  }

  .alpt-editorial-hero__copy {
    margin-inline: 0;
    max-width: 19rem;
    text-align: left;
    transform: none;
    width: 100%;
  }

  .alpt-editorial-hero__kicker {
    font-size: 0.65rem;
    margin-inline: 0;
    margin-bottom: 0.625rem;
  }

  .alpt-editorial-hero__kicker::before {
    display: none;
  }

  .alpt-editorial-hero h1 {
    font-size: clamp(3rem, 13.5vw, 3.75rem);
    letter-spacing: 0;
    line-height: 1.06;
    max-width: 5em;
    text-wrap: wrap;
  }

  .alpt-editorial-hero h1 span {
    display: inline;
  }

  .alpt-editorial-hero__accent {
    margin-top: 0.625rem;
    width: clamp(4rem, 16vw, 5rem);
  }

  .alpt-editorial-hero__intro {
    font-size: 0.9rem;
    line-height: 1.45;
    margin-inline: 0;
    margin-top: 0.875rem;
    max-width: 14rem;
  }

  .alpt-editorial-hero__actions {
    margin-top: 0.875rem;
  }

  .alpt-editorial-hero__primary {
    font-size: 0.85rem;
    min-height: 3.125rem;
    padding-inline: 1.25rem;
  }

  .alpt-page-hero__inner {
    padding-bottom: 2.35rem;
    padding-top: 2.4rem;
  }

  .alpt-page-hero h1,
  .alpt-page-hero .wp-block-post-title {
    font-size: clamp(2.5rem, 11vw, 3.45rem);
    max-width: 13ch;
  }

  .alpt-offer-detail .alpt-page-hero h1,
  .alpt-story-detail .alpt-page-hero h1 {
    font-size: clamp(2.35rem, 10vw, 2.75rem);
    max-width: 100%;
    overflow-wrap: normal;
  }

  .alpt-page-body {
    padding-bottom: 3.5rem;
    padding-top: 3.5rem;
  }

  .alpt-event-selection > header {
    grid-template-columns: 1fr;
  }

  .alpt-event-selection > header > p:last-child {
    grid-column: 1;
    grid-row: auto;
  }

  .alpt-event-selection__list article {
    align-items: stretch;
    grid-template-columns: 1fr;
  }

  .alpt-event-selection__list .wp-element-button {
    text-align: center;
    width: 100%;
  }

  .alpt-event-content > h2 {
    font-size: clamp(1.85rem, 9vw, 2.4rem);
  }

  .alpt-event-facts {
    gap: 1rem;
  }

  .alpt-filter__layout {
    align-items: stretch;
    flex-direction: column;
    gap: 1rem;
  }

  .alpt-filter__options {
    border: 1px solid var(--alpt-border);
    width: 100%;
  }

  .alpt-filter .alpt-filter__option {
    flex: 1 1 0;
    font-size: 0.82rem;
    padding-inline: 0.55rem;
  }

  .alpt-section-nav {
    align-items: stretch;
    flex-direction: column;
    gap: 1rem;
  }

  .alpt-page-hero :where(.alpt-section-nav, .alpt-filter) {
    gap: 0.8rem;
    margin-top: 2rem;
  }

  .alpt-section-nav__options {
    border: 1px solid var(--alpt-border);
    border-radius: 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
  }

  .alpt-section-nav__option {
    font-size: 0.82rem;
    padding-inline: 0.55rem;
  }

  .alpt-section-nav__option:nth-child(odd) {
    border-left: 0;
  }

  .alpt-event-card {
    gap: 0.65rem 1rem;
    grid-template:
      "title" auto
      "summary" auto
      "date" auto
      "status" auto
      "action" auto /
      minmax(0, 1fr);
    min-height: 0;
    padding: 1rem 0.65rem 1.15rem;
  }

  .alpt-event-card::before {
    bottom: 1.15rem;
    top: 1rem;
  }

  .alpt-event-card .alpt-card__meta {
    align-self: start;
    max-width: none;
    padding: 0;
  }

  .alpt-event-card .alpt-status {
    place-self: start;
  }

  .alpt-event-card h2 {
    font-size: clamp(1.4rem, 6.5vw, 1.8rem);
    max-width: 21ch;
  }

  .alpt-event-card__summary {
    max-width: 42ch;
  }

  .alpt-event-card .alpt-event-card__action {
    border-top: 0;
    margin-top: 0.25rem;
    padding-top: 0;
  }

  .alpt-page-body .alpt-grid,
  .alpt-page-body .alpt-team-grid,
  .alpt-post-grid {
    grid-template-columns: 1fr;
  }

  .alpt-page-body .alpt-card,
  .alpt-page-body .alpt-team-card {
    min-height: 0;
  }

  .alpt-card {
    min-height: 0;
  }

  .alpt-card__accent {
    margin-bottom: 0.9rem;
  }

  .alpt-card p {
    margin-bottom: 0.7rem;
    margin-top: 0.5rem;
  }

  .alpt-card__link {
    padding-top: 0.5rem;
  }

  .alpt-form__grid {
    grid-template-columns: 1fr;
  }

}

@media (max-width: 1023px) {
  .site-footer {
    padding: 3rem clamp(1.375rem, 4vw, 1.5rem) 1.5rem;
  }

  .site-footer__main {
    display: block !important;
  }

  .site-footer__brand {
    margin-bottom: 1.75rem !important;
    max-width: 34ch;
  }

  .site-footer__logo {
    margin-bottom: 1.25rem;
    width: 7.25rem;
  }

  .site-footer__brand h2 {
    font-size: clamp(2rem, 8vw, 2.6rem);
    line-height: 1.02;
    margin-block: 0.75rem 1rem;
  }

  .site-footer__brand > p:not(.site-footer__eyebrow) {
    font-size: 0.975rem;
    line-height: 1.55;
    max-width: 34ch;
  }

  .site-footer__group {
    border-top: 1px solid var(--color-border);
  }

  .site-footer__support {
    border-bottom: 1px solid var(--color-border);
  }

  .has-js .site-footer__desktop-label {
    display: none;
  }

  .site-footer__accordion-trigger {
    align-items: center;
    appearance: none;
    background: transparent;
    border: 0;
    color: var(--color-text);
    cursor: pointer;
    font-family: inherit;
    font-size: 0.78rem;
    font-weight: 700;
    justify-content: space-between;
    letter-spacing: 0.16em;
    margin: 0 !important;
    min-height: 3rem;
    padding: 0;
    text-align: left;
    text-transform: uppercase;
    width: 100%;
  }

  .has-js .site-footer__accordion-trigger {
    display: flex;
  }

  .site-footer__accordion-trigger:focus-visible {
    box-shadow: none;
    outline: 3px solid var(--color-focus);
    outline-offset: 3px;
  }

  .site-footer__accordion-icon {
    height: 0.875rem;
    position: relative;
    width: 0.875rem;
  }

  .site-footer__accordion-icon::before,
  .site-footer__accordion-icon::after {
    background: currentcolor;
    content: "";
    height: 1px;
    left: 0;
    position: absolute;
    top: 50%;
    transition: transform var(--transition-fast) var(--ease-standard);
    width: 100%;
  }

  .site-footer__accordion-icon::after {
    transform: rotate(90deg);
  }

  .site-footer__accordion-trigger[aria-expanded="true"] .site-footer__accordion-icon::after {
    transform: rotate(0deg);
  }

  .site-footer__accordion-panel {
    margin: 0 !important;
    padding: 0 0 1rem;
  }

  .site-footer__navigation li > a {
    font-size: 1rem;
    line-height: 1.4;
    min-height: 2.75rem;
  }

  .site-footer__contact p {
    line-height: 1.55;
    margin: 0;
  }

  .site-footer__support .wp-block-buttons {
    margin: 0;
  }

  .site-footer__support .wp-element-button {
    min-height: 3rem;
    padding-inline: 1.125rem;
    white-space: normal;
    width: auto;
  }

  .site-footer__meta {
    align-items: flex-start;
    flex-direction: column;
    font-size: 0.85rem;
    gap: 0.75rem;
    line-height: 1.45;
    margin-top: 1.75rem;
    padding-top: 1rem;
  }

  .site-footer__meta-copy {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.375rem;
  }

  .site-footer__legal {
    gap: 0 1.5rem;
    margin-left: 0 !important;
  }
}

@media (max-width: 600px) {
  .alpt-events-overview-hero__media,
  .alpt-support-hero__route,
  .alpt-contact-hero__media {
    display: none;
  }
}

@media (max-width: 360px) {
  .site-footer {
    padding-inline: 1.25rem;
  }

  .site-footer__support .wp-element-button {
    width: 100%;
  }
}

@media (max-width: 782px) and (max-height: 650px) {
  .alpt-editorial-hero__inner {
    padding-bottom: 0.5rem;
    padding-top: calc(var(--alpt-home-header-height) + 0.5rem);
  }

  .alpt-editorial-hero__kicker {
    margin-bottom: 0.375rem;
  }

  .alpt-editorial-hero h1 {
    font-size: 2.625rem;
  }

  .alpt-editorial-hero__accent {
    margin-top: 0.25rem;
    width: 2.5rem;
  }

  .alpt-editorial-hero__intro {
    font-size: 0.8rem;
    line-height: 1.35;
    margin-top: 0.5rem;
    max-width: 13rem;
  }

  .alpt-editorial-hero__actions {
    margin-top: 0.375rem;
  }

  .alpt-editorial-hero__primary {
    min-height: 2.75rem;
  }
}

@media (max-width: 480px) {
  .site-brand__logo {
    width: 6.25rem;
  }

  .site-header__actions {
    gap: 0.4rem;
  }

  body.home .site-brand__logo {
    width: 6.875rem;
  }

  .alpt-section {
    padding-bottom: 3rem;
    padding-top: 3rem;
  }

  .alpt-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .alpt-actions .wp-element-button {
    width: 100%;
  }

  .alpt-editorial-hero__primary {
    padding: 0 1.25rem;
  }

  .alpt-editorial-hero__media img {
    object-position: 60% 50%;
  }

}

@media (max-width: 380px) {
  body.home .site-brand__logo {
    width: 6rem;
  }

  body.home .site-header__actions {
    gap: 0.3rem;
  }

  .alpt-editorial-hero__media img {
    object-position: 62% 50%;
  }

  .alpt-editorial-hero h1 {
    letter-spacing: 0;
  }

  .alpt-offer-detail .alpt-page-hero h1,
  .alpt-story-detail .alpt-page-hero h1 {
    font-size: clamp(1.85rem, 9.25vw, 2.2rem);
  }

  .alpt-story-detail .wp-block-post-content > h2 {
    font-size: 1.45rem;
  }
}

@media (max-width: 900px) {
  .alpt-story-detail .alpt-page-hero__inner {
    padding-bottom: clamp(2.25rem, 5vw, 2.75rem);
    padding-top: clamp(3rem, 7vw, 4rem);
  }

  .alpt-story-detail .alpt-page-hero h1 {
    font-size: clamp(2.35rem, 10vw, 3.25rem);
    letter-spacing: -0.04em;
    line-height: 1.02;
    max-width: none;
  }

  .alpt-story-detail__slogan p {
    font-size: clamp(1.3rem, 5.8vw, 1.65rem);
    line-height: 1.15;
  }

  .alpt-story-detail__header,
  .alpt-story-detail__slogan,
  .alpt-story-detail__content > *,
  .alpt-story-detail__content :where(.wp-block-columns, .wp-block-table, .alignwide),
  .alpt-story-detail .alpt-page-body .alpt-story-detail__content > .is-style-alpt-editorial-intro,
  .alpt-story-detail__content .is-style-alpt-numbered-section,
  .alpt-story-detail__content ol.is-style-alpt-editorial-numbered,
  .alpt-story-detail__content .is-style-alpt-editorial-split,
  .alpt-story-detail__content .is-style-alpt-editorial-cta,
  .alpt-story-detail__back {
    max-width: none;
    width: 100%;
  }

  .alpt-story-detail__content .is-style-alpt-editorial-quote {
    margin-left: 0 !important;
    max-width: none;
    padding: 0.5rem clamp(1rem, 3vw, 1.5rem);
    width: 100%;
  }

  .alpt-story-detail__content .is-style-alpt-editorial-quote p {
    font-size: clamp(1.35rem, 6vw, 1.7rem);
    line-height: 1.35;
  }

  .alpt-story-detail__back {
    margin-left: 0 !important;
  }

  .alpt-story-detail .alpt-page-body {
    padding-bottom: clamp(3.5rem, 8vw, 5rem);
    padding-top: 0;
  }

  .alpt-story-detail .alpt-page-body .alpt-story-detail__content > .is-style-alpt-editorial-intro {
    font-size: 1.0625rem;
    line-height: 1.65;
    width: 100%;
  }

  .alpt-story-detail__content :where(p, li, td, th),
  .alpt-story-detail__content .is-style-alpt-editorial-cta > p {
    font-size: 1rem;
    line-height: 1.65;
  }

  .alpt-story-detail__content .alpt-editorial-section__number {
    font-size: 1.25rem;
  }

  .alpt-story-detail__content .is-style-alpt-numbered-section > h2 {
    font-size: clamp(1.6rem, 7vw, 2rem);
    line-height: 1.08;
  }

  .alpt-story-detail__content .is-style-alpt-editorial-intro + .is-style-alpt-numbered-section {
    margin-top: clamp(3rem, 7vw, 3.5rem);
  }

  .alpt-story-detail__content .is-style-alpt-numbered-section + .is-style-alpt-numbered-section,
  .alpt-story-detail__content .is-style-alpt-numbered-section + .is-style-alpt-editorial-cta {
    margin-top: clamp(2.75rem, 7vw, 3.5rem);
  }

  .alpt-story-detail__content .is-style-alpt-numbered-section + .is-style-alpt-editorial-quote {
    margin-top: clamp(2.5rem, 7vw, 3.25rem) !important;
  }

  .alpt-story-detail__content .is-style-alpt-editorial-quote + .is-style-alpt-numbered-section {
    margin-top: clamp(2.75rem, 7vw, 3.5rem) !important;
  }

  .alpt-story-gallery:not(.is-slider) .alpt-story-gallery__track {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .alpt-story-gallery.is-single .alpt-story-gallery__track {
    grid-template-columns: minmax(0, 28rem);
  }

  .alpt-story-gallery.is-slider .alpt-story-gallery__track {
    grid-auto-columns: minmax(11.25rem, 42%);
  }

  .alpt-story-detail__content .is-style-alpt-editorial-cta a {
    position: relative;
  }

  .alpt-story-detail__content .is-style-alpt-editorial-cta a::before {
    content: "";
    inset: -0.875rem -0.25rem;
    position: absolute;
  }

  .alpt-story-detail__back .alpt-text-link {
    flex-wrap: wrap;
    max-width: 100%;
    white-space: normal;
  }
}

@media (max-width: 699px) {
  .alpt-story-detail .alpt-page-hero__inner {
    padding-bottom: clamp(2.25rem, 5vw, 2.75rem);
    padding-top: 3rem;
  }

  .alpt-story-detail__date {
    margin-top: 1.75rem;
  }

  .alpt-story-detail .alpt-page-hero h1 {
    font-size: clamp(2.35rem, 10vw, 3.25rem);
    letter-spacing: -0.04em;
    line-height: 1.02;
    max-width: 100%;
  }

  .alpt-story-detail__slogan p {
    font-size: clamp(1.3rem, 5.8vw, 1.65rem);
    line-height: 1.15;
  }

  .alpt-story-detail__content > * {
    max-width: none;
  }

  .alpt-story-detail__content > * + * {
    margin-top: 1.5rem;
  }

  .alpt-story-detail__content h2 {
    font-size: clamp(1.6rem, 7vw, 2rem);
  }

  .alpt-story-detail__content .is-style-alpt-numbered-section {
    padding-top: 0;
  }

  .alpt-story-detail__content .is-style-alpt-numbered-section > h2 {
    font-size: clamp(1.6rem, 7vw, 2rem);
    max-width: none;
  }

  .alpt-story-detail__content .alpt-editorial-section__body {
    margin-top: 1rem;
  }

  .alpt-story-detail__content :where(p, li, td, th),
  .alpt-story-detail__content .is-style-alpt-editorial-cta > p {
    font-size: 1rem;
    line-height: 1.65;
  }

  .alpt-story-detail__content .is-style-alpt-editorial-quote {
    padding: 0.5rem 0.75rem;
  }

  .alpt-story-detail__content .is-style-alpt-editorial-quote::before {
    left: -0.25rem;
  }

  .alpt-story-detail__content .is-style-alpt-editorial-split {
    gap: 1.75rem;
  }

  .alpt-story-detail__back {
    margin-top: clamp(2.75rem, 10vw, 3.5rem) !important;
  }

  .alpt-story-gallery.is-slider .alpt-story-gallery__track {
    grid-auto-columns: 85%;
  }
}

@media (max-width: 480px) {
  .alpt-story-gallery:not(.is-slider) .alpt-story-gallery__track,
  .alpt-story-gallery.is-single .alpt-story-gallery__track {
    grid-template-columns: minmax(0, 1fr);
  }
}

/* Event detail: one linear editorial system for DE and IT. */
@media (max-width: 1023px) {
  .alpt-event-detail .alpt-page-body {
    display: block;
  }

  .alpt-event-details {
    display: block;
  }

  .alpt-event-facts-section {
    margin-top: clamp(2.75rem, 5vw, 3.5rem);
  }

  .alpt-event-detail-hero__grid {
    gap: clamp(2.5rem, 5vw, 4rem);
    grid-template-columns: minmax(0, 1fr) minmax(18rem, 0.68fr);
  }

  .alpt-event-detail-hero__artwork {
    width: min(100%, 30rem);
  }
}

@media (max-width: 900px) {
  .alpt-event-detail .alpt-page-hero__inner {
    padding-bottom: clamp(3rem, 7vw, 3.75rem);
    padding-inline: clamp(1.25rem, 3vw, 1.5rem);
    padding-top: clamp(2.25rem, 5vw, 3rem);
  }

  .alpt-event-detail-hero__grid {
    align-items: start;
    gap: clamp(2.5rem, 7vw, 4rem);
    grid-template-columns: minmax(0, 1fr);
    margin-top: clamp(1.75rem, 5vw, 2.75rem);
  }

  .alpt-event-detail .alpt-page-hero h1 {
    font-size: clamp(2.8rem, 12vw, 4rem);
    hyphens: auto;
    max-width: 100%;
    overflow-wrap: break-word;
  }

  .alpt-event-detail-hero__summary {
    max-width: 34rem;
  }

  .alpt-event-detail-hero__summary p {
    font-size: clamp(1.3rem, 6vw, 1.65rem);
    line-height: 1.15;
  }

  .alpt-event-detail-hero__registration {
    align-items: flex-start;
    flex-direction: column;
  }

  .alpt-event-detail-hero__artwork {
    justify-self: end;
    width: min(86%, 20rem);
  }

  .alpt-event-detail .alpt-page-body {
    padding-bottom: clamp(4rem, 9vw, 5.5rem);
    padding-inline: clamp(1.25rem, 3vw, 1.5rem);
  }

  .alpt-event-content {
    padding-top: clamp(3.25rem, 8vw, 4.5rem);
  }

  .alpt-event-content .wp-block-post-content {
    font-size: 1rem;
    line-height: 1.65;
    max-width: none;
  }

  .alpt-event-content .wp-block-post-content :where(h2, h3) {
    font-size: clamp(1.6rem, 7vw, 2rem);
    line-height: 1.08;
    margin-top: clamp(2.75rem, 6vw, 3.5rem);
  }

  .alpt-event-content .wp-block-post-content :where(h2, h3) + * {
    margin-top: clamp(0.875rem, 2vw, 1.125rem);
  }

  .alpt-event-facts-section {
    padding: 1.5rem;
    width: 100%;
  }

  .alpt-event-details__cta {
    align-items: start;
    grid-template-columns: minmax(0, 1fr);
    margin-top: clamp(2.75rem, 6vw, 3.5rem);
    padding-top: clamp(2rem, 5vw, 2.75rem);
  }
}

@media (max-width: 600px) {
  .alpt-event-detail .alpt-page-hero__inner {
    padding-bottom: 2.75rem;
    padding-top: 1.875rem;
  }

  .alpt-event-detail-hero__overview .alpt-text-link,
  .alpt-event-detail__back .alpt-text-link {
    white-space: normal;
  }

  .alpt-event-detail .alpt-page-hero h1 {
    font-size: clamp(2.25rem, 11vw, 3.25rem);
    hyphens: auto;
    max-width: 100%;
    overflow-wrap: break-word;
  }

  .alpt-event-detail-hero__summary p {
    font-size: clamp(1.3rem, 6vw, 1.65rem);
  }

  .alpt-event-detail-hero__registration {
    margin-top: clamp(1.5rem, 6vw, 1.75rem);
  }

  .alpt-event-detail-hero__artwork {
    width: min(82%, 22rem);
  }

  .alpt-event-content .wp-block-post-content,
  .alpt-event-facts dd,
  .alpt-event-details__cta p {
    font-size: 1rem;
  }

  .alpt-event-facts-section,
  .alpt-event-details__cta,
  .alpt-event-detail__back {
    margin-top: 3rem;
  }

  .alpt-event-details__actions .wp-element-button {
    justify-content: center;
    width: auto;
  }
}

@media (max-width: 480px) {
  .alpt-event-detail .alpt-page-hero__inner {
    padding-bottom: 1.75rem;
  }

  .alpt-event-detail-hero__artwork {
    display: none;
  }

  .alpt-event-detail-hero__grid {
    gap: 0;
  }

  body.alpt-world-events .alpt-event-detail .alpt-page-body {
    padding-top: 0;
  }

  .alpt-event-content {
    padding-top: 2rem;
  }
}

body.home :is(
  .alpt-editorial-hero__primary,
  .alpt-home-event__link.alpt-home-cta--primary,
  .site-footer__support .wp-element-button
) {
  border-radius: var(--radius-small);
  font-size: 0.875rem;
  font-weight: 700;
  gap: 0.65em;
  justify-content: center;
  letter-spacing: 0.045em;
  line-height: 1.2;
  min-height: 3.25rem;
  padding: 0 1.5rem;
  transition:
    background-color var(--transition-fast) var(--ease-standard),
    border-color var(--transition-fast) var(--ease-standard),
    color var(--transition-fast) var(--ease-standard),
    transform var(--transition-fast) var(--ease-standard);
}

body.home :is(
  .alpt-editorial-hero__primary,
  .alpt-home-event__link.alpt-home-cta--primary,
  .site-footer__support .wp-element-button
):hover {
  transform: translateY(-1px);
}

body.home :is(
  .alpt-editorial-hero__primary,
  .alpt-home-event__link.alpt-home-cta--primary,
  .site-footer__support .wp-element-button
):active {
  transform: translateY(0);
}

/* Event registration reflow: keep the form linear until a true desktop width. */
@media (max-width: 900px) {
  .alpt-registration-page .alpt-page-body {
    padding-bottom: clamp(3rem, 8vw, 4.5rem);
    padding-top: clamp(2.25rem, 6vw, 2.75rem);
  }

  .alpt-registration-page .alpt-event-registration {
    max-width: 46rem;
  }

  .alpt-event-registration__back {
    margin-bottom: 1.5rem;
  }

  .alpt-event-registration__header {
    gap: clamp(1.25rem, 4vw, 2rem);
    grid-template-columns: minmax(0, 1fr);
    padding-bottom: clamp(1.75rem, 5vw, 2.25rem);
  }

  .alpt-event-registration__headline,
  .alpt-event-registration__media {
    grid-column: 1;
  }

  .alpt-event-registration__header h1 {
    margin-top: 1.1rem;
  }

  .alpt-event-registration__title-event {
    font-size: clamp(2.75rem, 10vw, 4rem);
    line-height: 0.94;
    max-width: 100%;
    white-space: normal;
  }

  .alpt-event-registration__summary {
    border-top: 0;
    display: flex;
    gap: 0.8rem 0;
    margin-top: 1rem;
  }

  .alpt-event-registration__summary li,
  .alpt-event-registration__summary li:first-child {
    align-items: start;
    border-bottom: 0;
    display: flex;
    gap: 0.25rem;
    grid-template-columns: none;
    padding: 0 clamp(1rem, 2vw, 1.5rem);
  }

  .alpt-event-registration__summary li:first-child {
    padding-left: 0;
  }

  .alpt-event-registration__media {
    justify-self: end;
    max-width: 17.5rem;
    width: min(72%, 17.5rem);
  }

  .alpt-registration-form__intro {
    margin-top: 0;
  }

  .alpt-registration-form__sections {
    margin-top: 1rem;
  }

  .alpt-registration-section {
    gap: 2rem;
    grid-template-columns: minmax(0, 1fr);
    padding: clamp(2.25rem, 7vw, 3.25rem) 0;
  }

  .alpt-registration-section__header p {
    max-width: 42ch;
  }

  .alpt-registration-form__fields {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    justify-self: stretch;
    max-width: none;
  }

  .alpt-registration-form__fields--stacked,
  .alpt-registration-form__fields--choices {
    grid-template-columns: minmax(0, 1fr);
  }

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

  .alpt-registration-form__submit {
    gap: 1.5rem;
    grid-template-columns: minmax(0, 1fr);
    justify-content: stretch;
  }

  .alpt-registration-form__submit button {
    justify-self: start;
  }
}

@media (max-width: 600px) {
  .alpt-event-registration__header {
    gap: 1rem;
    padding-bottom: 1.5rem;
  }

  .alpt-event-registration__title-label::before {
    flex-basis: 1.75rem;
  }

  .alpt-event-registration__title-event {
    font-size: clamp(2.6rem, 12vw, 3.55rem);
  }

  .alpt-event-registration__summary {
    display: grid;
    gap: 0.75rem;
    grid-template-columns: minmax(0, 1fr);
  }

  .alpt-event-registration__summary li,
  .alpt-event-registration__summary li:first-child {
    border-left: 2px solid var(--color-border);
    border-bottom: 0;
    padding: 0 0 0 0.85rem;
  }

  .alpt-event-registration__media {
    width: min(68%, 16rem);
  }

  .alpt-registration-form__fields,
  .alpt-choice-group__options {
    grid-template-columns: minmax(0, 1fr);
  }

  .alpt-registration-form--sectioned :is(input, textarea, select) {
    font-size: 1rem;
  }

  .alpt-registration-section__header > span {
    font-size: clamp(1.75rem, 8vw, 2.15rem);
  }

  .alpt-registration-section__header h2 {
    font-size: clamp(1.6rem, 8vw, 2rem);
  }

  .alpt-registration-form--sectioned .alpt-registration-form__privacy > .alpt-form__help,
  .alpt-registration-form--sectioned .alpt-registration-form__privacy > .alpt-form__field-error {
    margin-left: 0;
  }

  .alpt-registration-form__submit {
    padding: 2rem 0;
  }

  .alpt-registration-form__submit button {
    justify-self: start;
    min-width: 0;
    width: auto;
  }
}

@media (max-width: 360px) {
  .alpt-event-registration__media {
    display: none;
  }
}

@media (max-width: 782px) and (max-height: 650px) {
  body.home .alpt-editorial-hero__actions .alpt-editorial-hero__primary {
    min-height: 2.75rem;
    padding-inline: 1.25rem;
  }
}

/* 404: a compact editorial wayfinding page without search or recommendations. */
.alpt-not-found .alpt-page-hero {
  background: #fff;
}

.alpt-not-found .alpt-page-hero__inner {
  padding-bottom: clamp(4rem, 7vw, 6rem);
  padding-top: clamp(4rem, 7vw, 6rem);
}

.alpt-not-found .alpt-page-hero__inner::before,
.alpt-not-found .alpt-page-hero__inner::after {
  content: none;
  display: none;
}

.alpt-not-found__grid {
  align-items: center;
  column-gap: clamp(4rem, 8vw, 7.5rem);
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(26.25rem, 1.15fr);
  max-width: none !important;
  width: 100%;
}

.alpt-not-found__content,
.alpt-not-found__artwork {
  min-width: 0;
}

.alpt-not-found__code {
  color: var(--color-accent-dark);
  font-family: var(--font-handwritten);
  font-size: clamp(2.5rem, 3.5vw, 3.6rem);
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1;
  margin: 0 0 1.5rem;
}

.alpt-page-hero .alpt-not-found__title {
  font-family: Anton, var(--font-display);
  font-size: clamp(3.6rem, 5vw, 5.4rem);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 0.94;
  margin: 0;
  max-width: 10.5ch;
  overflow: visible;
  text-transform: uppercase;
  width: fit-content;
}

.alpt-not-found__title span,
.alpt-not-found__copy span {
  display: block;
}

.alpt-not-found__sketch {
  color: var(--color-accent);
  display: block;
  margin-top: 1.125rem;
  width: clamp(5.25rem, 8vw, 7.5rem);
}

.alpt-not-found__sketch svg {
  display: block;
  height: auto;
  stroke: currentcolor;
  stroke-linecap: round;
  stroke-width: 2;
  width: 100%;
}

.alpt-not-found__copy {
  color: var(--color-text);
  font-size: clamp(1rem, 1.3vw, 1.15rem);
  line-height: 1.6;
  margin: 1.75rem 0 0;
  max-width: 42ch;
}

.alpt-not-found__actions {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  margin-top: 1.75rem;
}

.alpt-not-found__home-action {
  max-width: 100%;
  white-space: normal;
}

.alpt-not-found__events-link {
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  min-height: 2.75rem;
  text-transform: uppercase;
}

.alpt-not-found__artwork {
  justify-self: end;
  margin: 0;
  width: clamp(30rem, 42vw, 45rem);
}

.alpt-not-found__artwork img {
  height: auto;
  width: 100%;
}

@media (max-width: 1024px) {
  .alpt-not-found__grid {
    column-gap: clamp(2.5rem, 5vw, 4rem);
    grid-template-columns: minmax(0, 0.92fr) minmax(22rem, 1.08fr);
  }

  .alpt-not-found__artwork {
    width: min(100%, 34rem);
  }
}

@media (max-width: 900px) {
  .alpt-not-found .alpt-page-hero__inner {
    padding-bottom: clamp(3.5rem, 9vw, 4.5rem);
    padding-top: clamp(3rem, 8vw, 3.75rem);
  }

  .alpt-not-found__grid {
    display: block;
  }

  .alpt-page-hero .alpt-not-found__title {
    font-size: clamp(2.8rem, 12vw, 4rem);
    line-height: 0.94;
    max-width: 100%;
  }

  .alpt-not-found__artwork {
    margin: clamp(2.5rem, 7vw, 3.75rem) auto 0;
    width: min(88%, 32rem);
  }
}

@media (max-width: 600px) {
  .alpt-not-found .alpt-page-hero__inner {
    padding-inline: clamp(1.25rem, 6vw, 1.5rem);
  }

  .alpt-not-found__code {
    margin-bottom: 1.25rem;
  }

  .alpt-not-found__copy {
    margin-top: 1.5rem;
  }

  .alpt-not-found__actions {
    margin-top: 1.5rem;
  }

  .alpt-not-found__artwork {
    margin-left: auto;
    margin-right: auto;
    width: min(92%, 22.5rem);
  }
}

@media (max-width: 280px) {
  .alpt-not-found__artwork {
    display: none;
  }
}

@media (forced-colors: active) {
  .alpt-card,
  .alpt-form input,
  .alpt-form textarea,
  .alpt-form select,
  .alpt-empty {
    border: 2px solid CanvasText;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

@media print {
  .site-header,
  .site-footer,
  .alpt-filter,
  .alpt-section-nav,
  .alpt-legal-header__back,
  .alpt-legal-toc,
  .skip-link {
    display: none !important;
  }

  .alpt-about-panel[hidden] {
    display: block !important;
  }

  a::after {
    content: " (" attr(href) ")";
    font-size: 0.8em;
  }
}
