* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body,
h1,
h2,
h3,
p {
  margin: 0;
}

a {
  color: inherit;
}

.steam-blueprint-page {
  --bp-ink: #050b1d;
  --bp-muted: #5f6c7e;
  --bp-blue: #c9f8ff;
  --bp-blue-strong: #2f73ff;
  --bp-paper: #f7fbff;
  --bp-card: rgba(255, 255, 255, 0.88);
  --bp-line: rgba(5, 11, 29, 0.1);
  --bp-dark: #030b20;
  --bp-accent: #c9f8ff;
  min-height: 100vh;
  background:
    radial-gradient(circle at 15% 2%, rgba(194, 247, 255, 0.58), transparent 25rem),
    linear-gradient(135deg, #edfaff 0%, #f2f6fb 48%, #fbfcfd 100%);
  color: var(--bp-ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.steam-blueprint-header {
  position: sticky;
  top: 0;
  z-index: 30;
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 12px max(18px, calc((100vw - 1180px) / 2));
  background: rgba(255, 255, 255, 0.72);
  border-bottom: 1px solid rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(18px);
}

.steam-blueprint-brand,
.steam-blueprint-header nav a {
  color: var(--bp-ink);
  font-weight: 950;
  text-decoration: none;
}

.steam-blueprint-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 20px;
}

.steam-blueprint-brand span {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 24%, #fff, #8af3ff 32%, #2f73ff 68%, #050b1d);
  box-shadow: 0 12px 30px rgba(47, 115, 255, 0.22);
}

.steam-blueprint-header nav {
  display: flex;
  gap: 8px;
  max-width: 100%;
  overflow-x: auto;
  scrollbar-width: none;
}

.steam-blueprint-header nav::-webkit-scrollbar {
  display: none;
}

.steam-blueprint-header nav a {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  padding: 0 13px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: inset 0 0 0 1px rgba(5, 11, 29, 0.08);
  color: #445065;
  font-size: 12px;
  white-space: nowrap;
}

.steam-blueprint-phone,
.steam-blueprint-menu-toggle,
.steam-blueprint-menu-drawer button {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: inset 0 0 0 1px rgba(5, 11, 29, 0.08);
  color: #445065;
  font: inherit;
  font-size: 12px;
  font-weight: 950;
  text-decoration: none;
}

.steam-blueprint-phone {
  margin-left: auto;
  padding: 0 13px;
}

.steam-blueprint-menu-toggle {
  gap: 10px;
  padding: 0 14px;
  cursor: pointer;
}

.steam-blueprint-menu-toggle span {
  position: relative;
  width: 16px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

.steam-blueprint-menu-toggle span::before,
.steam-blueprint-menu-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 16px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

.steam-blueprint-menu-toggle span::before {
  top: -5px;
}

.steam-blueprint-menu-toggle span::after {
  top: 5px;
}

.steam-blueprint-menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 70;
  pointer-events: none;
  opacity: 0;
  background: rgba(3, 11, 32, 0.52);
  backdrop-filter: blur(4px);
  transition: opacity 180ms ease;
}

.steam-blueprint-menu-drawer {
  position: fixed;
  inset: 0 0 0 auto;
  z-index: 80;
  width: min(440px, calc(100vw - 24px));
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  overflow: hidden;
  transform: translateX(102%);
  transition: transform 220ms ease;
  background:
    radial-gradient(circle at 8% 0%, rgba(201, 248, 255, 0.34), transparent 18rem),
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(239, 248, 255, 0.96));
  box-shadow: -30px 0 80px rgba(3, 11, 32, 0.28);
}

.steam-menu-is-open .steam-blueprint-menu-overlay {
  pointer-events: auto;
  opacity: 1;
}

.steam-menu-is-open .steam-blueprint-menu-drawer {
  transform: translateX(0);
}

.steam-blueprint-menu-drawer__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 20px;
  border-bottom: 1px solid rgba(5, 11, 29, 0.08);
}

.steam-blueprint-menu-drawer__top strong {
  display: block;
  color: var(--bp-ink);
  font-size: 22px;
  font-weight: 950;
}

.steam-blueprint-menu-drawer__top small,
.steam-blueprint-menu-drawer__section p,
.steam-blueprint-menu-drawer__cards small,
.steam-blueprint-menu-drawer__cards span {
  color: var(--bp-muted);
}

.steam-blueprint-menu-drawer__top button {
  padding: 0 14px;
  cursor: pointer;
}

.steam-blueprint-menu-drawer__scroll {
  overflow-y: auto;
  padding: 18px 20px 24px;
}

.steam-blueprint-menu-drawer__actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-bottom: 18px;
}

.steam-blueprint-menu-drawer__actions a {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--bp-dark);
  color: #fff;
  font-size: 13px;
  font-weight: 950;
  text-decoration: none;
}

.steam-blueprint-menu-drawer__actions a:first-child {
  background: var(--bp-blue);
  color: var(--bp-ink);
}

.steam-blueprint-menu-drawer__main {
  display: grid;
  gap: 8px;
}

.steam-blueprint-menu-drawer__main a {
  min-height: 52px;
  display: grid;
  grid-template-columns: 34px 1fr;
  align-items: center;
  gap: 12px;
  padding: 8px 12px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--bp-ink);
  font-size: 15px;
  font-weight: 950;
  text-decoration: none;
  box-shadow: inset 0 0 0 1px rgba(5, 11, 29, 0.08);
}

.steam-blueprint-menu-drawer__main a[aria-current="page"],
.steam-blueprint-menu-drawer__mini-links a[aria-current="page"] {
  background: var(--bp-dark);
  color: #fff;
}

.steam-blueprint-menu-drawer__main span {
  width: 34px;
  height: 34px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  background: var(--bp-blue);
  color: var(--bp-ink);
  font-size: 12px;
}

.steam-blueprint-menu-drawer__section {
  margin-top: 22px;
}

.steam-blueprint-menu-drawer__section p {
  margin-bottom: 10px;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.steam-blueprint-menu-drawer__cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.steam-blueprint-menu-drawer__cards a {
  min-height: 102px;
  display: grid;
  align-content: center;
  gap: 4px;
  padding: 14px;
  border-radius: 18px;
  background: #fff;
  color: var(--bp-ink);
  text-decoration: none;
  box-shadow: inset 0 0 0 1px rgba(5, 11, 29, 0.08);
}

.steam-blueprint-menu-drawer__cards strong {
  font-size: 16px;
}

.steam-blueprint-menu-drawer__mini-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.steam-blueprint-menu-drawer__mini-links a {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.76);
  color: #445065;
  font-size: 12px;
  font-weight: 950;
  text-decoration: none;
  box-shadow: inset 0 0 0 1px rgba(5, 11, 29, 0.08);
}

.steam-blueprint-hero,
.steam-blueprint-logistics,
.steam-blueprint-events,
.steam-blueprint-facilities,
.steam-blueprint-first,
.steam-blueprint-faqs,
.steam-blueprint-trust,
.steam-blueprint-club,
.steam-blueprint-venues,
.steam-blueprint-footer {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
}

.steam-blueprint-hero {
  min-height: min(820px, calc(100vh - 74px));
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(300px, 360px);
  gap: clamp(28px, 5vw, 78px);
  align-items: center;
  padding: clamp(58px, 7vw, 96px) 0 clamp(40px, 6vw, 72px);
}

.steam-blueprint-copy {
  max-width: 900px;
}

.steam-blueprint-kicker {
  margin-bottom: 12px;
  color: var(--bp-blue-strong);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.steam-blueprint-copy h1 {
  max-width: 780px;
  font-size: clamp(48px, 5.9vw, 82px);
  line-height: 0.93;
  font-weight: 930;
}

.steam-blueprint-copy > p:last-of-type,
.steam-blueprint-logistics p,
.steam-blueprint-facility-grid p,
.steam-blueprint-first p,
.steam-blueprint-checklist li,
.steam-blueprint-faqs p,
.steam-blueprint-trust p,
.steam-blueprint-club p,
.steam-blueprint-venues p {
  color: var(--bp-muted);
  line-height: 1.5;
}

.steam-blueprint-copy > p:last-of-type {
  max-width: 650px;
  margin-top: 20px;
  font-size: clamp(17px, 1.25vw, 20px);
}

.steam-blueprint-actions,
.steam-blueprint-logistics-actions,
.steam-blueprint-text-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.steam-blueprint-actions {
  margin-top: 26px;
}

.steam-blueprint-actions a,
.steam-blueprint-logistics-actions a,
.steam-blueprint-section-button,
.steam-blueprint-trust a,
.steam-blueprint-form button,
.steam-blueprint-venue-grid a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 17px;
  border: 0;
  border-radius: 999px;
  background: var(--bp-dark);
  color: #fff;
  font-size: 13px;
  font-weight: 950;
  text-decoration: none;
}

.steam-blueprint-actions a:first-child,
.steam-blueprint-section-button,
.steam-blueprint-trust a,
.steam-blueprint-form button {
  background: var(--bp-blue);
  color: var(--bp-ink);
}

.steam-blueprint-price {
  align-self: center;
  padding: clamp(24px, 3vw, 34px);
  border-radius: 24px;
  background: var(--bp-dark);
  color: #fff;
  box-shadow: 0 30px 84px rgba(5, 11, 29, 0.14);
}

.steam-blueprint-price span {
  color: var(--bp-blue);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.steam-blueprint-price strong {
  display: block;
  margin: 10px 0 14px;
  font-size: clamp(58px, 6vw, 86px);
  line-height: 0.86;
}

.steam-blueprint-price p {
  color: rgba(255, 255, 255, 0.76);
  font-size: 15px;
  line-height: 1.45;
}

.steam-blueprint-pillars {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.steam-blueprint-pillars article,
.steam-blueprint-logistics,
.steam-blueprint-event-grid article,
.steam-blueprint-event-card,
.steam-blueprint-facility-grid article,
.steam-blueprint-reassurance,
.steam-blueprint-checklist,
.steam-blueprint-faqs,
.steam-blueprint-club,
.steam-blueprint-venues {
  background: var(--bp-card);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.78), 0 18px 50px rgba(5, 11, 29, 0.06);
}

.steam-blueprint-pillars article {
  min-height: 106px;
  display: grid;
  align-content: center;
  gap: 8px;
  padding: 20px;
  border-radius: 18px;
}

.steam-blueprint-pillars strong {
  font-size: clamp(24px, 2.5vw, 34px);
  line-height: 0.92;
}

.steam-blueprint-pillars span,
.steam-blueprint-event-grid p,
.steam-blueprint-event-grid article > a,
.steam-blueprint-event-card strong {
  color: var(--bp-muted);
}

.steam-blueprint-logistics,
.steam-blueprint-events,
.steam-blueprint-facilities,
.steam-blueprint-first,
.steam-blueprint-faqs,
.steam-blueprint-trust,
.steam-blueprint-club,
.steam-blueprint-venues {
  margin-bottom: clamp(18px, 3vw, 34px);
}

.steam-blueprint-logistics {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(260px, 0.28fr);
  gap: 28px;
  align-items: center;
  padding: clamp(22px, 3.2vw, 34px);
  border-radius: 24px;
}

.steam-blueprint-logistics h2,
.steam-blueprint-events h2,
.steam-blueprint-facilities h2,
.steam-blueprint-first h2,
.steam-blueprint-faqs h2,
.steam-blueprint-trust h2,
.steam-blueprint-club h2,
.steam-blueprint-venues h2 {
  max-width: 760px;
  font-size: clamp(32px, 3.8vw, 54px);
  line-height: 1;
  font-weight: 920;
}

.steam-blueprint-logistics h2 {
  max-width: 560px;
  font-size: clamp(30px, 3.2vw, 46px);
}

.steam-blueprint-reassurance h2 {
  font-size: clamp(30px, 3.4vw, 46px);
}

.steam-blueprint-events,
.steam-blueprint-facilities,
.steam-blueprint-first,
.steam-blueprint-faqs,
.steam-blueprint-trust,
.steam-blueprint-club,
.steam-blueprint-venues {
  padding: clamp(48px, 6vw, 78px) 0;
}

.steam-blueprint-event-grid,
.steam-blueprint-facility-grid {
  display: grid;
  gap: 12px;
}

.steam-blueprint-event-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 24px;
}

.steam-blueprint-event-grid article,
.steam-blueprint-event-card,
.steam-blueprint-facility-grid article {
  min-height: 190px;
  padding: 22px;
  border-radius: 20px;
}

.steam-blueprint-event-card {
  display: block;
  color: var(--bp-ink);
  text-decoration: none;
}

.steam-blueprint-event-grid span {
  color: var(--bp-blue-strong);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.steam-blueprint-event-grid h3,
.steam-blueprint-facility-grid h3,
.steam-blueprint-checklist h3,
.steam-blueprint-trust h3,
.steam-blueprint-club h3,
.steam-blueprint-venues h3 {
  margin: 14px 0 10px;
  font-size: clamp(22px, 2vw, 29px);
  line-height: 1.05;
}

.steam-blueprint-event-grid p,
.steam-blueprint-facility-grid p {
  font-size: 14px;
}

.steam-blueprint-event-grid article > a,
.steam-blueprint-event-card strong {
  margin-top: 18px;
  font-weight: 950;
}

.steam-blueprint-event-card strong {
  display: inline-block;
  text-decoration: underline;
}

.steam-blueprint-event-cta {
  background: var(--bp-dark) !important;
  color: #fff;
}

.steam-blueprint-event-cta p {
  color: rgba(255, 255, 255, 0.72);
}

.steam-blueprint-event-cta a,
.steam-blueprint-event-cta strong {
  color: var(--bp-blue);
}

.steam-blueprint-facilities,
.steam-blueprint-first,
.steam-blueprint-club,
.steam-blueprint-venues {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(28px, 4.5vw, 62px);
  align-items: center;
}

.steam-blueprint-photo {
  min-height: 470px;
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(5, 11, 29, 0.18)),
    url("../img/steam-hero.jpg") center / cover;
  filter: saturate(0.82) contrast(1.02);
  box-shadow: 0 34px 90px rgba(5, 11, 29, 0.13);
}

.steam-blueprint-facility-grid {
  margin-top: 24px;
}

.steam-blueprint-section-button {
  width: fit-content;
  margin-top: 22px;
}

.steam-blueprint-reassurance,
.steam-blueprint-checklist {
  min-height: 0;
  padding: clamp(24px, 3.2vw, 34px);
  border-radius: 24px;
}

.steam-blueprint-reassurance {
  background: var(--bp-dark);
  color: #fff;
}

.steam-blueprint-reassurance .steam-blueprint-kicker {
  color: var(--bp-blue);
}

.steam-blueprint-reassurance p {
  color: rgba(255, 255, 255, 0.76);
  font-size: 15px;
}

.steam-blueprint-text-links {
  margin-top: 26px;
}

.steam-blueprint-text-links a {
  color: var(--bp-blue);
  font-weight: 950;
}

.steam-blueprint-checklist ul {
  display: grid;
  gap: 12px;
  padding-left: 22px;
  font-size: 15px;
}

.steam-blueprint-faqs {
  padding: clamp(40px, 5vw, 64px) clamp(22px, 4vw, 48px);
  border-radius: 24px;
}

.steam-blueprint-faqs details {
  padding: 19px 0;
  border-top: 1px solid var(--bp-line);
}

.steam-blueprint-faqs summary {
  cursor: pointer;
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 950;
}

.steam-blueprint-faqs details p {
  max-width: 760px;
  margin-top: 12px;
  font-size: 18px;
}

.steam-blueprint-faqs--home-v4 {
  display: grid;
  gap: clamp(24px, 4vw, 38px);
  background:
    radial-gradient(circle at 14% 0%, rgba(173, 246, 255, 0.16), transparent 34%),
    linear-gradient(135deg, #07132c 0%, #101c38 58%, #071026 100%);
  color: #fff;
  box-shadow: 0 34px 90px rgba(5, 11, 29, 0.16);
}

.steam-blueprint-faqs--home-v4 .steam-blueprint-faqs__head {
  max-width: 760px;
}

.steam-blueprint-faqs--home-v4 .steam-blueprint-kicker,
.steam-blueprint-faqs--home-v4 h2 {
  color: #fff;
}

.steam-blueprint-faqs--home-v4 .steam-blueprint-faqs__head p:last-child {
  max-width: 680px;
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.76);
}

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

.steam-blueprint-faqs--home-v4 details {
  display: grid;
  align-content: start;
  min-width: 0;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.07);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.steam-blueprint-faqs--home-v4 summary {
  color: #fff;
  font-size: clamp(18px, 1.45vw, 22px);
  line-height: 1.12;
}

.steam-blueprint-faqs--home-v4 details p {
  max-width: none;
  color: rgba(255, 255, 255, 0.72);
  font-size: 16px;
  line-height: 1.6;
}

.steam-blueprint-faqs--home-v4 details a {
  color: var(--bp-blue);
  font-weight: 900;
}

.steam-blueprint-faqs--home-v4 > .steam-blueprint-section-button {
  min-height: 50px;
  margin-top: 0;
  padding: 0 22px;
  border: 1px solid rgba(173, 246, 255, 0.42);
  background: var(--bp-blue);
  color: var(--bp-ink);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.2);
}

@media (max-width: 760px) {
  .steam-blueprint-faqs--home-v4 {
    padding-bottom: 48px;
  }

  .steam-blueprint-faq-grid {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .steam-blueprint-faqs--home-v4 details {
    padding: 12px 14px;
  }

  .steam-blueprint-faqs--home-v4 summary {
    font-size: 17px;
    line-height: 1.08;
  }

  .steam-blueprint-faqs--home-v4 details p {
    margin-top: 9px;
    font-size: 15px;
    line-height: 1.5;
  }

  .steam-blueprint-faqs--home-v4 > .steam-blueprint-section-button {
    width: min(100%, calc(100% - 138px));
    min-height: 52px;
    margin-top: 8px;
    font-size: 13px;
  }
}

.steam-blueprint-trust {
  width: 100%;
  max-width: none;
  padding-inline: max(18px, calc((100vw - 1160px) / 2));
  background: var(--bp-dark);
  color: #fff;
}

.steam-blueprint-trust .steam-blueprint-kicker {
  color: var(--bp-blue);
}

.steam-blueprint-trust a {
  color: var(--bp-ink);
}

.steam-blueprint-trust h3,
.steam-blueprint-trust p {
  max-width: 760px;
}

.steam-blueprint-trust p {
  color: rgba(255, 255, 255, 0.76);
  font-size: 17px;
}

.steam-blueprint-trust a {
  width: fit-content;
  margin-top: 24px;
}

.steam-blueprint-club,
.steam-blueprint-venues {
  padding: clamp(28px, 3.8vw, 44px);
  border-radius: 24px;
}

.steam-blueprint-form {
  display: grid;
  gap: 13px;
  padding: 18px;
  border-radius: 24px;
  background: var(--bp-dark);
  color: #fff;
}

.steam-blueprint-form label {
  display: grid;
  gap: 8px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.steam-blueprint-form input[type="email"] {
  width: 100%;
  min-height: 54px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  padding: 0 18px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font: inherit;
}

.steam-blueprint-page.steam-home-v4 .steam-blueprint-form label {
  color: #fff;
}

.steam-blueprint-page.steam-home-v4 .steam-blueprint-form input[type="email"]::placeholder {
  color: #fff;
  opacity: 1;
}

.steam-blueprint-page.steam-home-v4 .steam-blueprint-club {
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.92fr);
  align-items: stretch;
}

.steam-blueprint-page.steam-home-v4 .steam-blueprint-club .steam-blueprint-form {
  margin-top: 22px;
}

.steam-blueprint-checkbox {
  grid-template-columns: auto 1fr;
  align-items: center;
  letter-spacing: 0 !important;
  text-transform: none !important;
}

.steam-blueprint-checkbox input {
  width: 20px;
  height: 20px;
  accent-color: var(--bp-blue);
}

.steam-blueprint-page.steam-home-v4 .steam-blueprint-club-step {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 24px 0 12px;
}

.steam-blueprint-page.steam-home-v4 .steam-blueprint-club-step span {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 34px;
  border-radius: 999px;
  background: var(--bp-dark);
  color: #fff;
  font-size: 16px;
  font-weight: 950;
  line-height: 1;
}

.steam-blueprint-page.steam-home-v4 .steam-blueprint-club-step h4 {
  margin: 0;
  color: var(--bp-ink);
  font-size: clamp(24px, 2.4vw, 36px);
  line-height: 1;
  font-weight: 920;
}

.steam-blueprint-page.steam-home-v4 .steam-blueprint-whatsapp {
  display: grid;
  gap: 14px;
}

.steam-blueprint-page.steam-home-v4 .steam-blueprint-whatsapp-media {
  overflow: hidden;
  height: 144px;
  border-radius: 24px;
}

.steam-blueprint-page.steam-home-v4 .steam-blueprint-whatsapp-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 18px;
}

.steam-blueprint-page.steam-home-v4 .steam-blueprint-whatsapp .steam-blueprint-club-step {
  margin-bottom: 0;
}

.steam-blueprint-page.steam-home-v4 .steam-blueprint-whatsapp-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.steam-blueprint-page.steam-home-v4 .steam-blueprint-whatsapp-list li {
  min-height: 76px;
  padding: 14px;
  border-radius: 18px;
  background: #fff;
  box-shadow: inset 0 0 0 1px rgba(5, 11, 29, 0.08);
}

.steam-blueprint-page.steam-home-v4 .steam-blueprint-whatsapp-list strong {
  display: block;
  margin-bottom: 5px;
  color: var(--bp-ink);
  font-size: 16px;
  font-weight: 930;
  line-height: 1.05;
}

.steam-blueprint-page.steam-home-v4 .steam-blueprint-whatsapp-list p {
  font-size: 14px;
}

.steam-blueprint-page.steam-home-v4 .steam-blueprint-whatsapp-list span {
  display: block;
  color: var(--bp-muted);
  font-size: 14px;
}

.steam-blueprint-page.steam-home-v4 .steam-blueprint-whatsapp-button {
  min-height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 0 24px;
  border-radius: 999px;
  background: #25d366;
  color: #fff;
  font-size: 14px;
  font-weight: 950;
  letter-spacing: 0.02em;
  text-decoration: none;
  text-transform: uppercase;
}

.steam-blueprint-page.steam-home-v4 .steam-blueprint-facilities {
  width: min(1160px, calc(100% - 32px));
  max-width: 1160px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.92fr);
  column-gap: clamp(28px, 4.5vw, 62px);
  row-gap: 22px;
  align-items: start;
  margin: 0 auto clamp(18px, 3vw, 34px);
  padding: clamp(28px, 3.8vw, 44px);
  overflow: visible;
  isolation: auto;
  border-radius: 24px;
  background: var(--bp-card);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.78), 0 18px 50px rgba(5, 11, 29, 0.06);
  color: var(--bp-ink);
}

.steam-blueprint-page.steam-home-v4 .steam-blueprint-facilities__content {
  display: grid;
  align-content: start;
  width: auto;
}

.steam-blueprint-page.steam-home-v4 .steam-blueprint-facilities h2 {
  color: var(--bp-ink);
}

.steam-blueprint-page.steam-home-v4 .steam-blueprint-facilities .steam-blueprint-kicker {
  color: var(--bp-ink);
}

.steam-blueprint-page.steam-home-v4 .steam-blueprint-facilities__intro {
  max-width: 620px;
  margin-top: 10px;
  color: var(--bp-muted);
  font-size: clamp(18px, 1.6vw, 25px);
  font-weight: 850;
  line-height: 1.08;
}

.steam-blueprint-page.steam-home-v4 .steam-blueprint-facilities__side {
  display: grid;
  gap: 14px;
}

.steam-blueprint-page.steam-home-v4 .steam-blueprint-facilities__list-card {
  min-height: 0;
  margin-top: 24px;
  padding: 18px;
  border-radius: 18px;
  background: #fff;
  box-shadow: inset 0 0 0 1px rgba(5, 11, 29, 0.08);
}

.steam-blueprint-page.steam-home-v4 .steam-blueprint-facilities__side .steam-blueprint-facilities__list-card {
  margin-top: 0;
}

.steam-blueprint-page.steam-home-v4 .steam-blueprint-facilities__list-card h3 {
  margin: 0 0 12px;
  color: var(--bp-ink);
  font-size: 17px;
  font-weight: 930;
  line-height: 1.05;
}

.steam-blueprint-page.steam-home-v4 .steam-blueprint-facilities__list-card ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.steam-blueprint-page.steam-home-v4 .steam-blueprint-facilities__list-card li {
  color: var(--bp-muted);
  font-size: 15px;
  font-weight: 820;
  line-height: 1.18;
}

.steam-blueprint-page.steam-home-v4 .steam-blueprint-facilities .steam-blueprint-section-button {
  grid-column: 1 / -1;
  min-height: 56px;
  width: fit-content;
  margin-top: 0;
  padding: 0 24px;
  background: var(--bp-dark);
  color: #fff;
  text-transform: uppercase;
}

.steam-blueprint-page.steam-home-v4 .steam-blueprint-facilities__media {
  overflow: hidden;
  height: 214px;
  border-radius: 24px;
}

.steam-blueprint-page.steam-home-v4 .steam-blueprint-facilities__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 18px;
}

.steam-blueprint-page.steam-home-v4 .steam-blueprint-venue-grid .steam-blueprint-view-all {
  background: var(--bp-dark);
  color: #fff;
  box-shadow: inset 0 0 0 1px var(--bp-dark);
}

.steam-blueprint-page.steam-home-v4 .steam-blueprint-venue-grid strong {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 32px;
  margin-top: auto;
  padding: 0 12px;
  border-radius: 999px;
  background: var(--bp-dark);
  color: #fff;
  font-size: 12px;
  font-weight: 950;
  text-decoration: none;
}

.steam-blueprint-page.steam-home-v4 .steam-blueprint-events > header .steam-blueprint-kicker,
.steam-blueprint-page.steam-home-v4 .steam-blueprint-event-grid span {
  color: var(--bp-dark);
}

.steam-blueprint-page.steam-home-v4 .steam-blueprint-passes {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto clamp(18px, 3vw, 34px);
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
  gap: 18px;
  align-items: center;
  padding: 24px;
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(3, 11, 32, 0.98), rgba(7, 17, 38, 0.94)),
    linear-gradient(90deg, rgba(201, 248, 255, 0.12), rgba(255, 255, 255, 0));
  color: #fff;
  box-shadow: 0 24px 70px rgba(5, 11, 29, 0.18);
}

.steam-blueprint-page.steam-home-v4 .steam-blueprint-passes .steam-blueprint-kicker {
  color: var(--bp-blue);
}

.steam-blueprint-page.steam-home-v4 .steam-blueprint-passes h2 {
  max-width: 640px;
  font-size: 42px;
  line-height: 1;
  font-weight: 920;
}

.steam-blueprint-page.steam-home-v4 .steam-blueprint-passes__intro {
  display: grid;
  align-content: start;
  gap: 16px;
}

.steam-blueprint-page.steam-home-v4 .steam-blueprint-passes__intro > p:not(.steam-blueprint-kicker) {
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.5;
}

.steam-blueprint-page.steam-home-v4 .steam-blueprint-passes--guided {
  grid-template-columns: minmax(360px, 0.88fr) minmax(0, 1.12fr);
  gap: 24px;
  background:
    radial-gradient(circle at 82% 12%, rgba(201, 248, 255, 0.18), transparent 22rem),
    linear-gradient(135deg, rgba(3, 11, 32, 0.98), rgba(7, 17, 38, 0.96));
}

.steam-blueprint-page.steam-home-v4 .steam-blueprint-passes--guided .steam-blueprint-passes__intro {
  align-content: center;
}

.steam-blueprint-page.steam-home-v4 .steam-blueprint-included-line {
  margin: 0;
  padding: 14px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.72);
  font-size: 15px;
  line-height: 1.55;
}

.steam-blueprint-page.steam-home-v4 .steam-blueprint-included-line strong {
  display: block;
  margin-bottom: 4px;
  color: #fff;
  font-size: 13px;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.steam-blueprint-page.steam-home-v4 .steam-blueprint-pass-label {
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.steam-blueprint-page.steam-home-v4 .steam-blueprint-pass-stack {
  align-self: center;
  display: grid;
  gap: 12px;
}

.steam-blueprint-page.steam-home-v4 .steam-blueprint-pass-choice-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  overflow: hidden;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.95);
  color: var(--bp-ink);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.82);
}

.steam-blueprint-page.steam-home-v4 .steam-blueprint-pass-choice-grid header {
  grid-column: 1 / -1;
  padding: 16px 18px;
  border-bottom: 1px solid rgba(5, 11, 29, 0.08);
  background: rgba(255, 255, 255, 0.66);
}

.steam-blueprint-page.steam-home-v4 .steam-blueprint-pass-choice-grid article {
  position: relative;
  display: grid;
  min-height: 188px;
  align-content: space-between;
  gap: 10px;
  padding: 22px;
  background: transparent;
  border-right: 1px solid rgba(5, 11, 29, 0.08);
  border-bottom: 1px solid rgba(5, 11, 29, 0.08);
}

.steam-blueprint-page.steam-home-v4 .steam-blueprint-pass-choice-grid article:last-of-type {
  border-right: 0;
}

.steam-blueprint-page.steam-home-v4 .steam-blueprint-pass-choice-grid article.is-featured {
  background: rgba(201, 248, 255, 0.42);
}

.steam-blueprint-page.steam-home-v4 .steam-blueprint-pass-choice-grid article.is-best-value {
  background: rgba(201, 248, 255, 0.24);
}

.steam-blueprint-page.steam-home-v4 .steam-blueprint-pass-choice-grid article span {
  color: var(--bp-muted);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.steam-blueprint-page.steam-home-v4 .steam-blueprint-pass-choice-grid h3 {
  margin: 0;
  font-size: 24px;
  line-height: 1.02;
}

.steam-blueprint-page.steam-home-v4 .steam-blueprint-pass-choice-grid strong {
  margin-top: auto;
  font-size: 48px;
  line-height: 0.9;
}

.steam-blueprint-page.steam-home-v4 .steam-blueprint-ultimate-pass {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px 18px;
  align-items: end;
  padding: 18px 20px;
  border-radius: 22px;
  background: var(--bp-blue);
  color: var(--bp-ink);
}

.steam-blueprint-page.steam-home-v4 .steam-blueprint-ultimate-pass span {
  grid-column: 1 / -1;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.steam-blueprint-page.steam-home-v4 .steam-blueprint-ultimate-pass h3 {
  margin: 0;
  font-size: 26px;
  line-height: 1;
}

.steam-blueprint-page.steam-home-v4 .steam-blueprint-ultimate-pass strong {
  grid-row: 2 / span 2;
  grid-column: 2;
  font-size: 56px;
  line-height: 0.88;
}

.steam-blueprint-page.steam-home-v4 .steam-blueprint-ultimate-pass p {
  margin: 0;
  color: rgba(5, 11, 29, 0.72);
  font-size: 14px;
  line-height: 1.35;
}

.steam-blueprint-page.steam-home-v4 .steam-blueprint-pass-footnote {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px 18px;
  margin: 0;
  padding: 14px 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  line-height: 1.4;
}

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

.steam-blueprint-venue-grid a {
  min-height: 92px;
  flex-direction: column;
  align-items: flex-start;
  border-radius: 22px;
  background: #fff;
  color: var(--bp-ink);
  box-shadow: inset 0 0 0 1px rgba(5, 11, 29, 0.08);
}

.steam-blueprint-venue-grid span {
  margin-top: 6px;
  color: var(--bp-muted);
  font-size: 13px;
}

.steam-blueprint-venue-grid .steam-blueprint-view-all {
  grid-column: 1 / -1;
  min-height: 52px;
  align-items: center;
  background: var(--bp-blue);
  color: var(--bp-ink);
}

.steam-blueprint-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: space-between;
  padding: 34px 0 44px;
  color: var(--bp-muted);
  font-size: 13px;
}

.steam-blueprint-footer a {
  color: var(--bp-ink);
  font-weight: 950;
  text-decoration: none;
}

.steam-photo-page .steam-blueprint-hero {
  position: relative;
  width: 100%;
  min-height: calc(100vh - 74px);
  overflow: hidden;
  grid-template-columns: minmax(0, 760px) minmax(280px, 360px);
  column-gap: clamp(34px, 6vw, 96px);
  align-items: center;
  margin: 0;
  padding: clamp(76px, 9vw, 132px) max(18px, calc((100vw - 1160px) / 2)) 0;
  background:
    linear-gradient(90deg, rgba(3, 11, 32, 0.9) 0%, rgba(3, 11, 32, 0.62) 46%, rgba(3, 11, 32, 0.2) 100%),
    linear-gradient(180deg, rgba(3, 11, 32, 0.28) 0%, rgba(3, 11, 32, 0.05) 54%, rgba(3, 11, 32, 0.92) 100%),
    url("../img/steam-live-hero-clean.jpg") center / cover;
  color: #fff;
}

.steam-photo-page main {
  background:
    radial-gradient(circle at 14% 0%, rgba(154, 243, 255, 0.9), transparent 31rem),
    radial-gradient(circle at 88% 6%, rgba(186, 205, 255, 0.86), transparent 36rem),
    radial-gradient(circle at 50% 52%, rgba(255, 255, 255, 0.88), transparent 32rem),
    linear-gradient(135deg, #e8fbff 0%, #f1f6ff 52%, #fff 100%);
}

.steam-photo-page .steam-blueprint-copy {
  position: relative;
  z-index: 1;
  align-self: center;
}

.steam-photo-page .steam-blueprint-copy h1,
.steam-photo-page .steam-blueprint-copy > p:last-of-type {
  color: #fff;
}

.steam-photo-page .steam-blueprint-copy > p:last-of-type {
  color: rgba(255, 255, 255, 0.78);
}

.steam-photo-page .steam-blueprint-price {
  position: relative;
  z-index: 1;
  grid-column: 2;
  grid-row: 1;
  width: 100%;
  justify-self: end;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(18px);
}

.steam-photo-page .steam-blueprint-pillars {
  position: relative;
  z-index: 1;
  grid-column: 1 / -1;
  align-self: end;
  width: calc(100% + max(36px, calc(100vw - 1160px)));
  margin: clamp(62px, 9vw, 108px) calc(-1 * max(18px, calc((100vw - 1160px) / 2))) 0;
  gap: 0;
  background: rgba(3, 11, 32, 0.82);
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.steam-photo-page .steam-blueprint-pillars article {
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  color: #fff;
  border-right: 1px solid rgba(255, 255, 255, 0.14);
  justify-items: center;
  text-align: center;
}

.steam-photo-page .steam-blueprint-pillars article:last-child {
  border-right: 0;
}

.steam-photo-page .steam-blueprint-pillars strong {
  color: var(--bp-accent);
}

.steam-photo-page .steam-blueprint-pillars span {
  color: rgba(255, 255, 255, 0.72);
}

.steam-photo-page .steam-blueprint-actions a {
  width: 158px;
}

.steam-blueprint-page.steam-home-v4 .steam-template-page-hero .steam-blueprint-copy > p:last-of-type {
  display: block;
  margin: clamp(24px, 3vw, 34px) 0 4px;
  max-height: none;
  overflow: visible;
  font-weight: 800;
  -webkit-line-clamp: unset;
}

.steam-photo-page .steam-blueprint-logistics-actions {
  align-items: stretch;
}

.steam-photo-page .steam-blueprint-logistics-actions a {
  width: 280px;
}

.steam-template-family .steam-template-page-hero {
  min-height: 100svh;
  height: auto;
  align-items: end;
  padding-top: 128px;
  background:
    linear-gradient(90deg, rgba(3, 11, 32, 0.94) 0%, rgba(3, 11, 32, 0.68) 46%, rgba(3, 11, 32, 0.18) 100%),
    linear-gradient(180deg, rgba(3, 11, 32, 0.14) 0%, rgba(3, 11, 32, 0.05) 56%, rgba(3, 11, 32, 0.92) 100%),
    url("../img/steam-live-hero-clean.jpg") center top / cover;
}

.steam-template-family .steam-template-page-hero .steam-blueprint-copy,
.steam-template-family .steam-template-page-hero .steam-blueprint-price {
  align-self: end;
  transform: translateY(clamp(132px, 18vh, 200px));
}

.steam-template-family .steam-template-page-hero .steam-blueprint-copy h1 {
  display: -webkit-box;
  max-height: calc(2 * 0.93em);
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.steam-template-family .steam-blueprint-header {
  position: fixed;
  top: 18px;
  left: 50%;
  z-index: 90;
  width: min(1048px, calc(100% - 72px));
  min-height: 58px;
  flex-direction: row;
  align-items: center;
  transform: translateX(-50%);
  padding: 7px 8px 7px 24px;
  border: 1px solid rgba(201, 248, 255, 0.22);
  border-radius: 999px;
  background: rgba(3, 11, 32, 0.84);
  color: #fff;
  box-shadow: 0 24px 70px rgba(3, 11, 32, 0.24);
  backdrop-filter: blur(18px);
}

.steam-template-family .steam-blueprint-brand {
  color: var(--bp-blue);
  font-size: 20px;
}

.steam-template-family .steam-blueprint-brand span {
  display: none;
}

.steam-template-family .steam-blueprint-phone {
  display: none;
}

.steam-template-family .steam-blueprint-menu-toggle {
  min-height: 46px;
  gap: 12px;
  margin-left: auto;
  padding: 8px 10px 8px 18px;
  border: 1px solid rgba(255, 255, 255, 0.78);
  background: rgba(255, 255, 255, 0.66);
  color: var(--bp-ink);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0.02em;
  line-height: 1;
  text-transform: uppercase;
  box-shadow: 12px 12px 34px rgba(0, 0, 0, 0.18), -12px -12px 34px rgba(255, 255, 255, 0.08);
}

.steam-template-family .steam-blueprint-menu-toggle > span {
  position: static;
  width: auto;
  height: auto;
  display: inline;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.steam-template-family .steam-blueprint-menu-toggle > span::before,
.steam-template-family .steam-blueprint-menu-toggle > span::after {
  content: none;
}

.steam-template-family .steam-blueprint-menu-toggle i {
  position: relative;
  width: 34px;
  height: 34px;
  display: block;
  border-radius: 50%;
  background: var(--bp-ink);
  box-shadow: 0 16px 30px rgba(7, 17, 38, 0.2);
}

.steam-template-family .steam-blueprint-menu-toggle i::before,
.steam-template-family .steam-blueprint-menu-toggle i::after {
  content: "";
  position: absolute;
  left: 9px;
  right: 9px;
  height: 2px;
  border-radius: 999px;
  background: var(--bp-blue);
}

.steam-template-family .steam-blueprint-menu-toggle i::before {
  top: 12px;
}

.steam-template-family .steam-blueprint-menu-toggle i::after {
  bottom: 12px;
}

.steam-home-v3-mobile-menu {
  display: none;
}

.steam-template-family.steam-menu-is-open .steam-blueprint-menu-toggle i::before {
  top: 16px;
  transform: rotate(45deg);
}

.steam-template-family.steam-menu-is-open .steam-blueprint-menu-toggle i::after {
  bottom: 16px;
  transform: rotate(-45deg);
}

.steam-template-family .steam-blueprint-pillars {
  width: calc(100% + max(36px, calc(100vw - 1160px)));
  margin: clamp(62px, 9vw, 108px) calc(-1 * max(18px, calc((100vw - 1160px) / 2))) 0;
  gap: 0;
  background: rgba(3, 11, 32, 0.84);
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.steam-template-family .steam-blueprint-pillars article {
  min-height: 108px;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  color: #fff;
  border-right: 1px solid rgba(255, 255, 255, 0.14);
  justify-items: center;
  text-align: center;
}

.steam-template-family .steam-blueprint-pillars article:last-child {
  border-right: 0;
}

.steam-template-family .steam-blueprint-pillars strong {
  color: var(--bp-blue);
}

.steam-template-family .steam-blueprint-pillars span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-weight: 800;
}

.steam-template-family .steam-blueprint-menu-overlay {
  z-index: 70;
  background: rgba(0, 0, 0, 0.2);
  backdrop-filter: none;
}

.steam-template-family .steam-blueprint-menu-drawer {
  z-index: 80;
  width: min(88vw, 560px);
  max-height: 100dvh;
  display: flex;
  flex-direction: column;
  padding: 96px 18px 18px;
  background: #030b20;
  color: #fff;
  box-shadow: -24px 0 80px rgba(0, 0, 0, 0.42);
}

.steam-template-family .steam-blueprint-menu-drawer__top {
  display: none;
}

.steam-template-family .steam-blueprint-menu-drawer__top strong {
  color: #fff;
  font-size: 22px;
  line-height: 1;
}

.steam-template-family .steam-blueprint-menu-drawer__top small {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 13px;
  font-weight: 900;
}

.steam-template-family .steam-blueprint-menu-drawer__top button {
  display: none;
  min-height: 34px;
  padding: 0 12px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.steam-template-family .steam-blueprint-menu-drawer__scroll {
  min-height: 0;
  overflow-y: auto;
  padding: 18px 0 0;
}

.steam-template-family .steam-blueprint-menu-drawer__actions {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 20px;
}

.steam-template-family .steam-blueprint-menu-drawer__actions a {
  min-height: 46px;
  gap: 10px;
  border: 1px solid rgba(201, 248, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0;
}

.steam-template-family .steam-blueprint-menu-drawer__actions a:first-child {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.steam-template-family .steam-blueprint-menu-drawer__actions a::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #46d66e;
  box-shadow: 0 0 0 5px rgba(70, 214, 110, 0.13);
}

.steam-template-family .steam-blueprint-menu-drawer__actions a.steam-blueprint-menu-drawer__action--directions::before {
  background: #f5a524;
  box-shadow: 0 0 0 5px rgba(245, 165, 36, 0.13);
}

.steam-template-family .steam-blueprint-menu-drawer__main {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 18px;
  margin-bottom: 24px;
}

.steam-template-family .steam-blueprint-menu-drawer__main a {
  min-height: 40px;
  grid-template-columns: 30px 1fr;
  gap: 12px;
  padding: 0;
  border-radius: 0;
  background: transparent;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0;
  box-shadow: none;
}

.steam-template-family .steam-blueprint-menu-drawer__main a[aria-current="page"] {
  background: transparent;
  color: #fff;
}

.steam-template-family .steam-blueprint-menu-drawer__main span {
  border: 1px solid rgba(201, 248, 255, 0.18);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.09);
  color: #fff;
  width: 30px;
  height: 30px;
  font-size: 11px;
  font-weight: 600;
}

.steam-template-family .steam-blueprint-menu-drawer__main a[aria-current="page"] span {
  background: var(--bp-blue);
  color: var(--bp-ink);
}

.steam-template-family .steam-blueprint-menu-drawer__section p {
  color: rgba(255, 255, 255, 0.72);
  font-weight: 700;
  letter-spacing: 0.08em;
}

.steam-template-family .steam-blueprint-menu-drawer__cards {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}

.steam-template-family .steam-blueprint-menu-drawer__cards a {
  min-height: 62px;
  display: grid;
  align-content: center;
  justify-items: start;
  gap: 3px;
  padding: 8px;
  border: 1px solid rgba(201, 248, 255, 0.18);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
  text-align: left;
}

.steam-template-family .steam-blueprint-menu-drawer__cards a:hover,
.steam-template-family .steam-blueprint-menu-drawer__cards a:focus-visible {
  border-color: var(--bp-blue);
}

.steam-template-family .steam-blueprint-menu-drawer__cards strong {
  color: #fff;
  max-width: 100%;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  text-transform: none;
  overflow-wrap: anywhere;
}

.steam-template-family .steam-blueprint-menu-drawer__cards span,
.steam-template-family .steam-blueprint-menu-drawer__cards small {
  display: block;
  max-width: 100%;
  color: rgba(255, 255, 255, 0.72);
  font-size: 11px;
  font-weight: 500;
  line-height: 1;
  overflow-wrap: anywhere;
}

.steam-template-family .drawer-events {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.steam-template-family .drawer-event-icon-list {
  align-items: start;
  padding: 4px 2px 2px;
}

.steam-template-family .drawer-event-icon {
  display: grid;
  justify-items: center;
  gap: 8px;
  min-width: 0;
  color: #fff !important;
  text-align: center;
  text-decoration: none;
}

.steam-template-family .drawer-event-icon img {
  display: block;
  width: clamp(58px, 7vw, 76px);
  height: clamp(58px, 7vw, 76px);
  object-fit: contain;
  border: 0;
  border-radius: 0;
  background: transparent !important;
  box-shadow: none;
}

.steam-template-family .drawer-event-icon span {
  max-width: 100%;
  color: #fff !important;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.12;
  overflow-wrap: anywhere;
}

.steam-template-family .drawer-event-icon:hover,
.steam-template-family .drawer-event-icon:focus-visible {
  outline: none;
}

.steam-template-family .drawer-event-icon:hover img,
.steam-template-family .drawer-event-icon:focus-visible img {
  box-shadow: none;
}

.steam-template-family .steam-blueprint-menu-drawer__mini-links a {
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.78);
  box-shadow: inset 0 0 0 1px rgba(201, 248, 255, 0.14);
}

.steam-template-family .steam-blueprint-menu-drawer__mini-links a[aria-current="page"] {
  background: var(--bp-blue);
  color: var(--bp-ink);
}

.back-to-top {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 45;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 50%;
  padding: 10px 20px;
  color: #fff !important;
  background: #071126;
  box-shadow: 0 18px 42px rgba(7, 17, 38, 0.22), inset 1px 1px 0 rgba(255, 255, 255, 0.16) !important;
  opacity: 0;
  transform: translateY(12px) scale(0.96);
  pointer-events: none;
  transition: opacity 0.18s ease, transform 0.18s ease;
  cursor: pointer;
}

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

.back-to-top span {
  display: block;
  font-size: 24px;
  font-weight: 950;
  line-height: 48px;
}

.back-to-top:focus-visible {
  outline: 3px solid rgba(47, 115, 255, 0.34);
  outline-offset: 3px;
}

.steam-template-switcher,
.steam-template-panel,
.steam-template-article,
.steam-template-schedule {
  width: min(1160px, calc(100% - 32px));
  margin: clamp(18px, 3vw, 34px) auto;
}

.steam-template-switcher {
  display: grid;
  grid-template-columns: minmax(230px, 0.3fr) minmax(0, 0.7fr);
  gap: 20px;
  align-items: start;
  padding: 24px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.78), 0 18px 50px rgba(5, 11, 29, 0.06);
}

.steam-template-switcher h2 {
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1;
}

.steam-template-switcher__links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.steam-template-switcher__links a {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  border-radius: 999px;
  background: #fff;
  color: #445065;
  font-size: 12px;
  font-weight: 950;
  text-decoration: none;
  box-shadow: inset 0 0 0 1px rgba(5, 11, 29, 0.08);
}

.steam-template-switcher__links a[aria-current="page"] {
  background: var(--bp-dark);
  color: #fff;
}

.steam-template-gallery {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: 12px;
  margin-top: 24px;
}

.steam-template-gallery div {
  min-height: 280px;
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(3, 11, 32, 0.08), rgba(3, 11, 32, 0.28)),
    url("../img/steam-hero.jpg") center / cover;
  box-shadow: 0 20px 50px rgba(5, 11, 29, 0.1);
}

.steam-template-gallery div:first-child {
  min-height: 420px;
  grid-row: span 2;
  background:
    linear-gradient(180deg, rgba(3, 11, 32, 0.08), rgba(3, 11, 32, 0.28)),
    url("../img/steam-live-hero-clean.jpg") center / cover;
}

.steam-template-contact {
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 1fr);
}

.steam-template-article article,
.steam-template-schedule article {
  padding: 22px 0;
  border-top: 1px solid var(--bp-line);
}

.steam-template-article article:first-of-type,
.steam-template-schedule article:first-of-type {
  margin-top: 22px;
}

.steam-template-article h3,
.steam-template-schedule h3 {
  margin: 0 0 8px;
  color: var(--bp-ink);
}

.steam-template-article p,
.steam-template-schedule p {
  max-width: 760px;
}

.steam-template-schedule strong {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  margin-bottom: 10px;
  padding: 0 10px;
  border-radius: 999px;
  background: var(--bp-blue);
  color: var(--bp-ink);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

@media (min-width: 981px) {
  .steam-photo-page .steam-blueprint-hero {
    align-items: end;
    padding-top: clamp(128px, 16vh, 190px);
  }

  .steam-photo-page .steam-blueprint-copy,
  .steam-photo-page .steam-blueprint-price {
    align-self: end;
    transform: translateY(38px);
  }
}

.steam-photo-page .steam-blueprint-facilities {
  position: relative;
  width: 100%;
  max-width: none;
  overflow: hidden;
  isolation: isolate;
  grid-template-columns: 1fr;
  margin-bottom: 0;
  padding: clamp(64px, 7vw, 96px) max(18px, calc((100vw - 1160px) / 2));
  border-radius: 0;
  background:
    linear-gradient(90deg, rgba(3, 11, 32, 0.86), rgba(3, 11, 32, 0.58) 47%, rgba(237, 250, 255, 0.7) 100%),
    url("../img/steam-hero.jpg") center / cover;
  box-shadow: none;
  color: #fff;
}

.steam-photo-page .steam-blueprint-facilities .steam-blueprint-photo {
  display: none;
}

.steam-photo-page .steam-blueprint-facilities > div:not(.steam-blueprint-photo) {
  position: relative;
  z-index: 1;
  width: min(980px, 100%);
}

.steam-photo-page .steam-blueprint-facilities .steam-blueprint-kicker {
  color: var(--bp-accent);
}

.steam-photo-page .steam-blueprint-facilities h2 {
  color: #fff;
}

.steam-photo-page .steam-blueprint-facility-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.steam-photo-page .steam-blueprint-facility-grid article {
  min-height: 190px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.72), 0 18px 42px rgba(5, 11, 29, 0.14);
}

.steam-photo-page .steam-blueprint-facility-grid h3 {
  color: var(--bp-ink);
}

.steam-photo-page .steam-blueprint-facility-grid p {
  color: #667085;
}

@media (max-width: 980px) {
  .steam-blueprint-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .steam-template-family .steam-blueprint-header {
    align-items: center;
    flex-direction: row;
  }

  .steam-blueprint-phone {
    display: none;
  }

  .steam-blueprint-hero,
  .steam-blueprint-logistics,
  .steam-blueprint-facilities,
  .steam-blueprint-first,
  .steam-blueprint-club,
  .steam-blueprint-venues {
    grid-template-columns: 1fr;
  }

  .steam-blueprint-page.steam-home-v4 .steam-blueprint-club {
    grid-template-columns: 1fr;
  }

  .steam-blueprint-page.steam-home-v4 .steam-blueprint-facilities {
    grid-template-columns: 1fr;
  }

  .steam-blueprint-page.steam-home-v4 .steam-blueprint-facilities__content {
    display: contents;
  }

  .steam-blueprint-page.steam-home-v4 .steam-blueprint-facilities .steam-blueprint-kicker {
    order: 1;
  }

  .steam-blueprint-page.steam-home-v4 .steam-blueprint-facilities h2 {
    order: 2;
  }

  .steam-blueprint-page.steam-home-v4 .steam-blueprint-facilities__intro {
    order: 3;
  }

  .steam-blueprint-page.steam-home-v4 .steam-blueprint-facilities__side {
    display: contents;
  }

  .steam-blueprint-page.steam-home-v4 .steam-blueprint-facilities__media {
    height: auto;
    order: 4;
  }

  .steam-blueprint-page.steam-home-v4 .steam-blueprint-facilities__media img {
    height: auto;
  }

  .steam-blueprint-page.steam-home-v4 .steam-blueprint-facilities__content .steam-blueprint-facilities__list-card {
    order: 5;
  }

  .steam-blueprint-page.steam-home-v4 .steam-blueprint-facilities__side .steam-blueprint-facilities__list-card {
    order: 6;
  }

  .steam-blueprint-page.steam-home-v4 .steam-blueprint-facilities .steam-blueprint-section-button {
    order: 7;
  }

  .steam-blueprint-page.steam-home-v4 .steam-blueprint-passes {
    grid-template-columns: 1fr;
  }

  .steam-blueprint-page.steam-home-v4 .steam-blueprint-passes--guided {
    grid-template-columns: 1fr;
  }

  .steam-blueprint-page.steam-home-v4 .steam-blueprint-pass-choice-grid {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr) minmax(0, 0.9fr);
  }

  .steam-blueprint-page.steam-home-v4 .steam-blueprint-whatsapp {
    margin-top: 24px;
  }

  .steam-blueprint-page.steam-home-v4 .steam-blueprint-whatsapp-media {
    height: auto;
  }

  .steam-blueprint-page.steam-home-v4 .steam-blueprint-whatsapp-media img {
    height: auto;
  }

  .steam-blueprint-page.steam-home-v4 .steam-blueprint-whatsapp-list {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .steam-blueprint-page.steam-home-v4 .steam-blueprint-whatsapp-list li {
    position: relative;
    min-height: 0;
    padding: 0 0 0 18px;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .steam-blueprint-page.steam-home-v4 .steam-blueprint-whatsapp-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.58em;
    width: 7px;
    height: 7px;
    border-radius: 999px;
    background: var(--bp-dark);
  }

  .steam-blueprint-page.steam-home-v4 .steam-blueprint-whatsapp-list strong {
    display: inline;
    margin: 0;
    font-size: 16px;
  }

  .steam-blueprint-page.steam-home-v4 .steam-blueprint-whatsapp-list span {
    display: inline;
    font-size: 15px;
  }

  .steam-blueprint-pillars,
  .steam-blueprint-event-grid,
  .steam-blueprint-venue-grid {
    grid-template-columns: 1fr;
  }

  .steam-blueprint-logistics-actions {
    justify-content: flex-start;
  }

  .steam-blueprint-photo {
    min-height: 390px;
  }

  .steam-photo-page .steam-blueprint-hero {
    grid-template-columns: 1fr;
    padding-bottom: 0;
    background-position: center top;
  }

  .steam-photo-page .steam-blueprint-price {
    grid-column: auto;
    grid-row: auto;
    width: min(100%, 360px);
    justify-self: start;
  }

  .steam-photo-page .steam-blueprint-pillars {
    width: calc(100% + 36px);
    margin: 54px -18px 0;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .steam-photo-page .steam-blueprint-facilities {
    grid-template-columns: 1fr;
    width: 100%;
    padding: clamp(46px, 8vw, 64px) 18px;
    background:
      linear-gradient(180deg, rgba(3, 11, 32, 0.78), rgba(3, 11, 32, 0.5) 52%, rgba(237, 250, 255, 0.72)),
      url("../img/steam-hero.jpg") center / cover;
  }

  .steam-photo-page .steam-blueprint-facility-grid {
    grid-template-columns: 1fr;
  }

  .steam-template-family .steam-template-page-hero {
    height: 690px;
    min-height: 690px;
    padding-top: 72px;
  }

  .steam-template-switcher,
  .steam-template-contact {
    grid-template-columns: 1fr;
  }

  .steam-template-gallery {
    grid-template-columns: 1fr;
  }

  .steam-template-gallery div,
  .steam-template-gallery div:first-child {
    min-height: 280px;
    grid-row: auto;
  }
}

@media (max-width: 560px) {
  .steam-blueprint-hero,
  .steam-blueprint-logistics,
  .steam-blueprint-events,
  .steam-blueprint-facilities,
  .steam-blueprint-first,
  .steam-blueprint-faqs,
  .steam-blueprint-club,
  .steam-blueprint-venues,
  .steam-blueprint-footer {
    width: min(100% - 20px, 1160px);
  }

  .steam-blueprint-page.steam-home-v4 .steam-blueprint-facilities {
    width: min(100% - 20px, 1160px);
    padding-bottom: 96px;
  }

  .steam-blueprint-page.steam-home-v4 .steam-blueprint-facilities__list-card ul {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 14px;
  }

  .steam-blueprint-brand {
    font-size: 16px;
  }

  .steam-blueprint-copy h1 {
    font-size: 40px;
    line-height: 0.98;
  }

  .steam-blueprint-logistics h2,
  .steam-blueprint-events h2,
  .steam-blueprint-facilities h2,
  .steam-blueprint-first h2,
  .steam-blueprint-faqs h2,
  .steam-blueprint-trust h2,
  .steam-blueprint-club h2,
  .steam-blueprint-venues h2 {
    font-size: 32px;
  }

  .steam-blueprint-reassurance h2 {
    font-size: 31px;
  }

  .steam-blueprint-actions a,
  .steam-blueprint-logistics-actions a,
  .steam-blueprint-section-button,
  .steam-blueprint-trust a,
  .steam-blueprint-form button,
  .steam-blueprint-venue-grid a,
  .steam-blueprint-page.steam-home-v4 .steam-blueprint-whatsapp-button {
    width: 100%;
  }

  .steam-blueprint-page.steam-home-v4 .steam-blueprint-facilities .steam-blueprint-section-button {
    width: 100%;
  }

  .steam-blueprint-price strong {
    font-size: 80px;
  }

  .steam-blueprint-logistics,
  .steam-blueprint-event-grid article,
  .steam-blueprint-event-card,
  .steam-blueprint-page.steam-home-v4 .steam-blueprint-passes,
  .steam-blueprint-facility-grid article,
  .steam-blueprint-reassurance,
  .steam-blueprint-checklist,
  .steam-blueprint-faqs,
  .steam-blueprint-club,
  .steam-blueprint-venues {
    border-radius: 22px;
  }

  .steam-blueprint-page.steam-home-v4 .steam-blueprint-first .steam-blueprint-checklist li:last-child {
    max-width: calc(100% - 98px);
  }

  .steam-blueprint-photo {
    min-height: 300px;
  }

  .steam-photo-page .steam-blueprint-hero {
    min-height: auto;
    padding-top: 54px;
    background:
      linear-gradient(180deg, rgba(3, 11, 32, 0.74) 0%, rgba(3, 11, 32, 0.58) 36%, rgba(3, 11, 32, 0.94) 100%),
      url("../img/steam-live-hero-clean.jpg") center top / cover;
  }

  .steam-photo-page .steam-blueprint-pillars {
    grid-template-columns: 1fr;
  }

  .steam-photo-page .steam-blueprint-pillars article {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .steam-photo-page .steam-blueprint-actions a,
  .steam-photo-page .steam-blueprint-logistics-actions a {
    width: 100%;
  }

  .steam-photo-page .steam-blueprint-facilities {
    width: 100%;
    padding: 34px 10px;
    border-radius: 0;
    background:
      linear-gradient(180deg, rgba(3, 11, 32, 0.82), rgba(3, 11, 32, 0.58) 58%, rgba(237, 250, 255, 0.78)),
      url("../img/steam-hero.jpg") center / cover;
  }

  .steam-blueprint-header {
    padding-inline: 18px;
  }

  .steam-blueprint-menu-drawer {
    width: min(390px, calc(100vw - 14px));
  }

  .steam-blueprint-menu-drawer__cards {
    grid-template-columns: 1fr;
  }

  .steam-template-family .steam-template-page-hero {
    height: 720px;
    min-height: 720px;
    padding-top: 58px;
  }

  .steam-template-family .steam-template-page-hero .steam-blueprint-copy,
  .steam-template-family .steam-template-page-hero .steam-blueprint-price {
    transform: translateY(66px);
  }

  .steam-template-switcher,
  .steam-template-panel,
  .steam-template-article,
  .steam-template-schedule {
    width: min(100% - 20px, 1160px);
  }

  .steam-template-switcher {
    padding: 18px;
  }
}

/* Page-family live-site parity fixes: keep these after responsive rules. */
.steam-template-family .steam-blueprint-header {
  position: fixed;
  top: 18px;
  left: 50%;
  width: min(1048px, calc(100% - 72px));
  min-height: 58px;
  flex-direction: row;
  align-items: center;
  transform: translateX(-50%);
  padding: 7px 8px 7px 24px;
  border: 1px solid rgba(201, 248, 255, 0.22);
  border-radius: 999px;
  background: rgba(3, 11, 32, 0.84);
  color: #fff;
}

.steam-template-family .steam-blueprint-kicker,
.steam-template-family .steam-blueprint-price span {
  color: var(--bp-blue);
}

.steam-home-v2-hero-image {
  display: none;
}

.steam-home-v4-hero-overlay {
  display: none;
}

@media (max-width: 560px) {
  .steam-blueprint-page.steam-home-v2 {
    --steam-home-v2-mobile-bg:
      radial-gradient(circle at 14% 0%, rgba(154, 243, 255, 0.9), transparent 31rem),
      radial-gradient(circle at 88% 6%, rgba(186, 205, 255, 0.86), transparent 36rem),
      radial-gradient(circle at 50% 52%, rgba(255, 255, 255, 0.88), transparent 32rem),
      linear-gradient(135deg, #e8fbff 0%, #f1f6ff 52%, #fff 100%);
    background: var(--steam-home-v2-mobile-bg) fixed;
  }

  .steam-blueprint-page.steam-home-v2 main {
    background: transparent;
  }

  .steam-blueprint-page.steam-home-v2 .steam-blueprint-header {
    background: transparent;
    border-color: transparent;
    box-shadow: none;
    backdrop-filter: none;
  }

  .steam-blueprint-page.steam-home-v2.steam-header-is-scrolled .steam-blueprint-header {
    background: var(--steam-home-v2-mobile-bg) fixed;
    border-color: rgba(5, 11, 29, 0.12);
    box-shadow: 0 18px 48px rgba(5, 11, 29, 0.16);
  }

  .steam-blueprint-page.steam-home-v2 .steam-blueprint-brand {
    color: var(--bp-ink);
  }

  .steam-blueprint-page.steam-home-v2 .steam-template-page-hero {
    position: relative;
    width: min(100% - 20px, 1160px);
    height: auto;
    min-height: auto;
    max-height: none;
    gap: 18px;
    margin: 118px auto 0;
    padding: 16px 0 34px;
    overflow: visible;
    background: transparent;
    color: var(--bp-ink);
  }

  .steam-blueprint-page.steam-home-v2 .steam-home-v2-hero-image {
    display: block;
    overflow: hidden;
    border-radius: 22px;
    background: var(--bp-dark);
    box-shadow: 0 18px 50px rgba(5, 11, 29, 0.16);
  }

  .steam-blueprint-page.steam-home-v2 .steam-home-v2-hero-image img {
    display: block;
    width: 100%;
    height: auto;
  }

  .steam-blueprint-page.steam-home-v2 .steam-template-page-hero .steam-blueprint-copy,
  .steam-blueprint-page.steam-home-v2 .steam-template-page-hero .steam-blueprint-price {
    transform: none;
  }

  .steam-blueprint-page.steam-home-v2 .steam-template-page-hero .steam-blueprint-copy h1,
  .steam-blueprint-page.steam-home-v2 .steam-template-page-hero .steam-blueprint-copy > p:last-of-type {
    color: var(--bp-ink);
  }

  .steam-blueprint-page.steam-home-v2 .steam-template-page-hero .steam-blueprint-kicker {
    color: var(--bp-ink);
  }

  .steam-blueprint-page.steam-home-v2 .steam-template-page-hero .steam-blueprint-copy > p:last-of-type {
    color: var(--bp-muted);
  }

  .steam-blueprint-page.steam-home-v2 .steam-template-page-hero .steam-blueprint-actions a {
    border: 1px solid var(--bp-blue);
  }

  .steam-blueprint-page.steam-home-v2 .steam-template-page-hero .steam-blueprint-actions a:first-child {
    border-color: var(--bp-dark);
  }

  .steam-blueprint-page.steam-home-v2 .steam-template-page-hero .steam-blueprint-price {
    position: absolute;
    top: clamp(86px, 28vw, 108px);
    right: 12px;
    z-index: 2;
    width: min(132px, 38vw);
    padding: 10px;
    background: var(--bp-dark);
    border: 0;
    border-radius: 14px;
    color: #fff;
    backdrop-filter: none;
  }

  .steam-blueprint-page.steam-home-v2 .steam-template-page-hero .steam-blueprint-price strong {
    margin: 5px 0 0;
    font-size: clamp(34px, 12vw, 46px);
  }

  .steam-blueprint-page.steam-home-v2 .steam-template-page-hero .steam-blueprint-price span {
    font-size: 10px;
  }

  .steam-blueprint-page.steam-home-v2 .steam-template-page-hero .steam-blueprint-price p {
    display: none;
  }

  .steam-blueprint-page.steam-home-v3 .steam-blueprint-header {
    display: none;
  }

  .steam-blueprint-page.steam-home-v3 .steam-template-page-hero {
    width: min(100% - 32px, 1160px);
    margin-top: 0;
    padding-top: 0;
  }

  .steam-blueprint-page.steam-home-v3 .steam-home-v2-hero-image {
    position: relative;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    border-radius: 0;
  }

  .steam-blueprint-page.steam-home-v3 .steam-home-v2-hero-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(3, 11, 32, 0.58) 0%, rgba(3, 11, 32, 0.42) 36%, rgba(3, 11, 32, 0.78) 100%);
    pointer-events: none;
  }

  .steam-blueprint-page.steam-home-v3 .steam-template-page-hero .steam-blueprint-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .steam-blueprint-page.steam-home-v3 .steam-template-page-hero .steam-blueprint-actions a {
    width: 100%;
    min-height: 48px;
    padding: 0 10px;
    text-align: center;
  }

  .steam-blueprint-page.steam-home-v3 .steam-template-page-hero .steam-blueprint-actions a:nth-child(n + 2) {
    border-color: var(--bp-dark);
    background: var(--bp-dark);
    color: #fff;
  }

  .steam-blueprint-page.steam-home-v3 .steam-template-page-hero .steam-blueprint-price {
    display: none;
  }

  .steam-blueprint-page.steam-home-v3 .steam-home-v3-mobile-menu {
    position: fixed;
    right: 14px;
    bottom: 14px;
    z-index: 95;
    display: inline-flex;
  }

  .steam-blueprint-page.steam-home-v3.steam-menu-is-open .steam-home-v3-mobile-menu {
    bottom: 14px;
  }

  .steam-blueprint-page.steam-home-v3.steam-menu-is-open .steam-blueprint-menu-drawer {
    padding-top: 10px;
    padding-bottom: 92px;
  }

  .steam-blueprint-page.steam-home-v3.steam-home-v3-menu-hidden .steam-home-v3-mobile-menu {
    opacity: 0;
    pointer-events: none;
    transform: translateY(12px) scale(0.96);
  }

  .steam-blueprint-page.steam-home-v3.steam-menu-is-open.steam-home-v3-menu-hidden .steam-home-v3-mobile-menu {
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .steam-blueprint-page.steam-home-v4 .steam-template-page-hero {
    gap: 4px;
    padding-bottom: 14px;
  }

  .steam-blueprint-page.steam-home-v4 .steam-home-v2-hero-image {
    min-height: calc((100vw * 0.525) + 50px);
  }

  .steam-blueprint-page.steam-home-v4 .steam-home-v2-hero-image img {
    width: 100%;
    height: calc((100vw * 0.525) + 50px);
    object-fit: cover;
    object-position: center top;
  }

  .steam-blueprint-page.steam-home-v4 .steam-template-page-hero > .steam-blueprint-copy .steam-blueprint-kicker,
  .steam-blueprint-page.steam-home-v4 .steam-template-page-hero > .steam-blueprint-copy h1 {
    display: none;
  }

  .steam-blueprint-page.steam-home-v4 .steam-home-v4-hero-overlay {
    position: absolute;
    left: 16px;
    right: 16px;
    bottom: 18px;
    z-index: 2;
    display: block;
    max-width: none;
    color: #fff;
    text-shadow: 0 2px 18px rgba(3, 11, 32, 0.82);
  }

  .steam-blueprint-page.steam-home-v4 .steam-home-v4-hero-overlay .steam-blueprint-kicker {
    margin: 10px 0 0;
    color: #fff;
  }

  .steam-blueprint-page.steam-home-v4 .steam-home-v4-hero-overlay h1 {
    color: #fff;
    font-size: clamp(0.95rem, 4.1vw, 1.1rem);
    line-height: 1.18;
    font-weight: 930;
    white-space: nowrap;
  }

  .steam-blueprint-page.steam-home-v4 .steam-template-page-hero .steam-blueprint-copy > p:last-of-type {
    margin: 12px 0 10px;
    font-weight: 800;
  }

  .steam-blueprint-page.steam-home-v4 .steam-template-page-hero .steam-blueprint-actions {
    margin-top: 8px;
  }

  .steam-blueprint-page.steam-home-v4 .steam-template-page-hero .steam-blueprint-pillars {
    margin-top: 6px;
  }

  .steam-blueprint-page.steam-home-v4 .steam-blueprint-event-grid,
  .steam-blueprint-page.steam-home-v4 .steam-blueprint-venue-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .steam-blueprint-page.steam-home-v4 .steam-blueprint-passes {
    width: min(100% - 20px, 1160px);
    padding: 18px 18px 72px;
  }

  .steam-blueprint-page.steam-home-v4 .steam-blueprint-passes h2 {
    font-size: 32px;
  }

  .steam-blueprint-page.steam-home-v4 .steam-blueprint-included-line {
    font-size: 14px;
    line-height: 1.45;
  }

  .steam-blueprint-page.steam-home-v4 .steam-blueprint-pass-choice-grid {
    grid-template-columns: 1fr;
  }

  .steam-blueprint-page.steam-home-v4 .steam-blueprint-pass-choice-grid article,
  .steam-blueprint-page.steam-home-v4 .steam-blueprint-pass-choice-grid article.is-featured {
    min-height: 0;
    transform: none;
  }

  .steam-blueprint-page.steam-home-v4 .steam-blueprint-pass-choice-grid article {
    grid-template-columns: 1fr;
    align-items: center;
    gap: 8px;
    border-right: 0;
  }

  .steam-blueprint-page.steam-home-v4 .steam-blueprint-pass-label,
  .steam-blueprint-page.steam-home-v4 .steam-blueprint-pass-choice-grid article span {
    grid-column: 1;
  }

  .steam-blueprint-page.steam-home-v4 .steam-blueprint-pass-choice-grid h3 {
    grid-column: 1;
    font-size: 22px;
  }

  .steam-blueprint-page.steam-home-v4 .steam-blueprint-pass-choice-grid strong {
    grid-row: auto;
    grid-column: 1;
    font-size: 38px;
  }

  .steam-blueprint-page.steam-home-v4 .steam-blueprint-ultimate-pass {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 18px 116px 18px 18px;
  }

  .steam-blueprint-page.steam-home-v4 .steam-blueprint-ultimate-pass span,
  .steam-blueprint-page.steam-home-v4 .steam-blueprint-ultimate-pass strong {
    grid-row: auto;
    grid-column: 1;
  }

  .steam-blueprint-page.steam-home-v4 .steam-blueprint-ultimate-pass h3 {
    font-size: 24px;
  }

  .steam-blueprint-page.steam-home-v4 .steam-blueprint-ultimate-pass strong {
    font-size: 44px;
  }

  .steam-blueprint-page.steam-home-v4 .steam-blueprint-pass-footnote {
    align-items: flex-start;
  }

  .steam-blueprint-page.steam-home-v4 .steam-blueprint-event-card {
    display: flex;
    flex-direction: column;
    min-height: 172px;
    padding: 14px;
  }

  .steam-blueprint-page.steam-home-v4 .steam-blueprint-event-card h3 {
    margin: 10px 0 8px;
    font-size: 18px;
    line-height: 1.08;
  }

  .steam-blueprint-page.steam-home-v4 .steam-blueprint-event-card p {
    font-size: 12px;
    line-height: 1.35;
  }

  .steam-blueprint-page.steam-home-v4 .steam-blueprint-event-card strong {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    min-height: 34px;
    margin-top: auto;
    padding: 0 12px;
    border-radius: 999px;
    background: var(--bp-dark);
    color: #fff;
    font-size: 11px;
    text-decoration: none;
  }

  .steam-blueprint-page.steam-home-v4 .steam-blueprint-venue-grid a {
    min-height: 144px;
    padding: 14px;
    justify-content: center;
    border: 1px solid rgba(5, 11, 29, 0.12);
  }

  .steam-blueprint-page.steam-home-v4 .steam-blueprint-venue-grid span {
    font-size: 12px;
    line-height: 1.25;
  }

  .steam-blueprint-page.steam-home-v4 .steam-blueprint-venue-grid strong {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 32px;
    margin-top: auto;
    padding: 0 12px;
    border-radius: 999px;
    background: var(--bp-dark);
    color: #fff;
    font-size: 12px;
    font-weight: 950;
    text-decoration: none;
  }

  .steam-blueprint-page.steam-home-v4 .steam-blueprint-venue-grid .steam-blueprint-view-all {
    grid-column: 1 / -1;
    min-height: 52px;
  }

  .steam-blueprint-page.steam-home-v4 .steam-blueprint-whatsapp-list {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .steam-blueprint-page.steam-home-v4 .steam-blueprint-whatsapp-list li {
    position: relative;
    min-height: 0;
    padding: 0 0 0 18px;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .steam-blueprint-page.steam-home-v4 .steam-blueprint-whatsapp-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.58em;
    width: 7px;
    height: 7px;
    border-radius: 999px;
    background: var(--bp-dark);
  }

  .steam-blueprint-page.steam-home-v4 .steam-blueprint-whatsapp-list strong {
    display: inline;
    margin: 0;
    font-size: 16px;
  }

  .steam-blueprint-page.steam-home-v4 .steam-blueprint-whatsapp {
    padding-bottom: 0;
  }

  .steam-blueprint-page.steam-home-v4 .steam-blueprint-whatsapp-button {
    width: 100%;
  }
}

.design-pack-demo-shell {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
  padding: 104px 0 70px;
}

.design-pack-demo-intro {
  max-width: 860px;
  margin-bottom: 28px;
}

.design-pack-demo-intro h1 {
  font-size: clamp(42px, 5.4vw, 76px);
  line-height: 0.95;
}

.design-pack-demo-intro p {
  margin-top: 14px;
  color: var(--bp-muted);
  font-size: 17px;
}

.component-code {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 30px;
  margin-bottom: 14px;
  padding: 0 10px;
  border-radius: 999px;
  background: var(--bp-dark);
  color: #fff;
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.design-pack-demo-card {
  margin-bottom: 22px;
  padding: clamp(22px, 3vw, 34px);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.78), 0 18px 50px rgba(5, 11, 29, 0.06);
}

.design-pack-demo-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.design-pack-demo-swatch {
  min-height: 120px;
  display: grid;
  align-content: end;
  gap: 8px;
  padding: 16px;
  border-radius: 18px;
  font-weight: 950;
}

.design-pack-demo-swatch small {
  opacity: 0.78;
}

.steam-component-coverage {
  width: min(1160px, calc(100% - 32px));
  margin: clamp(18px, 3vw, 34px) auto;
}

.steam-component-coverage h2 {
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1;
}

.steam-component-coverage > p:last-of-type {
  max-width: 760px;
  margin-top: 12px;
  color: var(--bp-muted);
  line-height: 1.5;
}

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

.steam-component-coverage__grid a {
  min-height: 118px;
  display: grid;
  align-content: start;
  gap: 10px;
  padding: 16px;
  border-radius: 18px;
  background: #fff;
  color: var(--bp-ink);
  font-size: 13px;
  font-weight: 850;
  line-height: 1.25;
  text-decoration: none;
  box-shadow: inset 0 0 0 1px rgba(5, 11, 29, 0.08);
}

.steam-component-gallery {
  width: min(1380px, calc(100% - 32px));
  margin: 0 auto;
  padding: clamp(22px, 4vw, 52px) 0;
}

.steam-component-gallery__intro {
  width: min(980px, 100%);
}

.steam-component-gallery__intro h1 {
  max-width: 760px;
  font-size: clamp(44px, 7vw, 86px);
  line-height: 0.9;
}

.steam-component-gallery__intro p:not(.steam-blueprint-kicker) {
  max-width: 760px;
  margin-top: 14px;
  color: var(--bp-muted);
  font-size: clamp(17px, 2vw, 22px);
  line-height: 1.5;
}

.steam-component-example {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.34fr);
  gap: clamp(16px, 2vw, 28px);
  align-items: start;
  margin: clamp(22px, 3vw, 38px) 0;
  scroll-margin-top: 96px;
}

.steam-component-example__visual,
.steam-component-example__code {
  min-width: 0;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.78), 0 18px 50px rgba(5, 11, 29, 0.06);
}

.steam-component-example__visual {
  overflow: hidden;
}

.steam-component-example__visual > .steam-blueprint-header {
  position: relative;
}

.steam-component-example__visual > .steam-blueprint-menu-drawer {
  position: relative;
  inset: auto;
  width: 100%;
  max-width: none;
  height: auto;
  max-height: 720px;
  border-radius: 24px;
  opacity: 1;
  transform: none;
  pointer-events: auto;
}

.steam-component-example__visual .steam-template-page-hero,
.steam-component-example__visual .steam-template-switcher,
.steam-component-example__visual .steam-template-panel,
.steam-component-example__visual .steam-template-article,
.steam-component-example__visual .steam-template-schedule,
.steam-component-example__visual .steam-blueprint-logistics,
.steam-component-example__visual .steam-blueprint-events,
.steam-component-example__visual .steam-blueprint-facilities,
.steam-component-example__visual .steam-blueprint-first,
.steam-component-example__visual .steam-blueprint-faqs,
.steam-component-example__visual .steam-blueprint-trust,
.steam-component-example__visual .steam-blueprint-club,
.steam-component-example__visual .steam-blueprint-venues,
.steam-component-example__visual .steam-blueprint-footer {
  width: 100%;
  margin: 0;
}

.steam-component-example__visual .steam-template-page-hero {
  min-height: 720px;
  height: 720px;
  max-height: 720px;
}

.steam-component-example__visual .steam-template-page-hero .steam-blueprint-copy,
.steam-component-example__visual .steam-template-page-hero .steam-blueprint-price {
  transform: translateY(86px);
}

.steam-component-example__visual--utility {
  min-height: 170px;
  display: grid;
  place-items: center;
}

.steam-component-example__visual--utility .back-to-top {
  position: static;
  opacity: 1;
  transform: none;
  pointer-events: auto;
}

.steam-component-example__code {
  position: sticky;
  top: 96px;
  padding: clamp(18px, 2vw, 26px);
}

.steam-component-example__code h2 {
  margin-bottom: 14px;
  font-size: clamp(24px, 2.4vw, 36px);
  line-height: 1;
}

.steam-component-example__code pre {
  overflow-x: auto;
  margin: 0;
  padding: 16px;
  border-radius: 16px;
  background: var(--bp-dark);
  color: #fff;
  font-size: 13px;
  line-height: 1.55;
  white-space: pre-wrap;
}

@media (max-width: 760px) {
  .design-pack-demo-grid,
  .steam-component-coverage__grid {
    grid-template-columns: 1fr;
  }

  .steam-component-example {
    grid-template-columns: 1fr;
  }

  .steam-component-example__code {
    position: static;
  }

  .steam-component-example__visual .steam-template-page-hero {
    min-height: 720px;
    height: 720px;
    max-height: 720px;
  }
}

.steam-template-family .steam-blueprint-actions a:first-child {
  background: var(--bp-blue);
  color: var(--bp-ink);
}

.steam-blueprint-page.steam-home-v2 .steam-template-page-hero .steam-blueprint-actions a {
  border: 1px solid var(--bp-blue);
}

.steam-blueprint-page.steam-home-v2 .steam-template-page-hero .steam-blueprint-actions a:first-child {
  border-color: var(--bp-dark);
}

.steam-template-family .steam-blueprint-price strong {
  color: var(--bp-blue);
}

.steam-blueprint-page.steam-template-family {
  overflow-x: clip;
}

.steam-template-family .steam-template-panel,
.steam-template-family .steam-blueprint-facility-grid article {
  min-width: 0;
}

.steam-template-family .steam-template-panel p,
.steam-template-family .steam-template-panel a,
.steam-template-family .steam-blueprint-facility-grid p {
  overflow-wrap: anywhere;
}

.steam-template-family .steam-template-panel img {
  max-width: 100%;
  height: auto;
}

.steam-template-family .steam-template-page-hero {
  width: 100%;
  height: 100svh;
  min-height: 100svh;
  max-height: 100svh;
  grid-template-columns: minmax(0, 760px) minmax(280px, 360px);
  align-items: end;
  overflow: hidden;
  padding-top: clamp(128px, 16vh, 190px);
  background:
    linear-gradient(90deg, rgba(3, 11, 32, 0.94) 0%, rgba(3, 11, 32, 0.68) 46%, rgba(3, 11, 32, 0.18) 100%),
    linear-gradient(180deg, rgba(3, 11, 32, 0.14) 0%, rgba(3, 11, 32, 0.05) 56%, rgba(3, 11, 32, 0.92) 100%),
    url("../img/steam-live-hero-clean.jpg") center top / cover;
}

.steam-template-family .steam-template-page-hero .steam-blueprint-copy,
.steam-template-family .steam-template-page-hero .steam-blueprint-price {
  align-self: end;
  transform: translateY(clamp(132px, 18vh, 200px));
}

.steam-template-family .steam-template-page-hero .steam-blueprint-copy {
  width: 100%;
  min-width: 0;
  max-width: 100%;
}

.steam-template-family .steam-template-page-hero .steam-blueprint-copy h1 {
  display: -webkit-box;
  min-width: 0;
  max-width: min(780px, 100%);
  max-height: calc(2 * 0.93em);
  overflow: hidden;
  overflow-wrap: anywhere;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.steam-template-family .steam-template-page-hero .steam-blueprint-copy > p:last-of-type {
  display: -webkit-box;
  min-width: 0;
  max-width: min(650px, 100%);
  overflow: hidden;
  overflow-wrap: anywhere;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.steam-template-family .steam-blueprint-pillars {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

@media (max-width: 980px) {
  .steam-template-family .steam-blueprint-header {
    top: 10px;
    width: min(100% - 20px, 1048px);
    padding: 10px;
  }

  .steam-template-family .steam-template-page-hero {
    height: 940px;
    min-height: 940px;
    max-height: 940px;
    grid-template-columns: minmax(0, 1fr);
    padding-top: 118px;
  }

  .steam-template-family .steam-template-page-hero .steam-blueprint-copy,
  .steam-template-family .steam-template-page-hero .steam-blueprint-price {
    transform: translateY(78px);
  }

  .steam-template-family .steam-blueprint-pillars {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .steam-template-family .steam-template-page-hero {
    height: 1056px;
    min-height: 1056px;
    max-height: 1056px;
    background:
      linear-gradient(180deg, rgba(3, 11, 32, 0.78) 0%, rgba(3, 11, 32, 0.62) 36%, rgba(3, 11, 32, 0.96) 100%),
      url("../img/steam-live-hero-clean.jpg") center top / cover;
  }

  .steam-template-family .steam-template-page-hero .steam-blueprint-copy,
  .steam-template-family .steam-template-page-hero .steam-blueprint-price {
    transform: translateY(66px);
  }

  .steam-template-family .steam-template-page-hero .steam-blueprint-copy h1 {
    max-height: calc(2 * 0.98em);
  }

  .steam-template-family .steam-blueprint-pillars {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .steam-template-family .steam-blueprint-menu-toggle {
    min-height: 46px;
    padding: 8px 10px 8px 18px;
  }

  .steam-template-family .steam-blueprint-menu-toggle i {
    width: 34px;
    height: 34px;
  }

  .steam-template-family .steam-blueprint-pillars article {
    border-right: 1px solid rgba(255, 255, 255, 0.14);
  }

  .steam-template-family .steam-blueprint-pillars article:nth-child(2n) {
    border-right: 0;
  }

  .steam-template-family .steam-blueprint-menu-drawer__main,
  .steam-template-family .steam-blueprint-menu-drawer__actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .steam-template-family .steam-blueprint-menu-drawer__cards {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 6px;
  }

  .steam-template-family .steam-blueprint-menu-drawer {
    width: min(calc(100vw - 30px), 560px);
    padding: 96px 18px 18px;
  }

  .steam-template-family .steam-blueprint-menu-drawer__main a {
    grid-template-columns: 30px minmax(0, 1fr);
    font-size: 13px;
  }

  .steam-template-family .steam-blueprint-menu-drawer__cards a {
    min-height: 62px;
    padding: 7px;
  }

  .steam-template-family .steam-blueprint-menu-drawer__cards strong {
    font-size: 11px;
  }

  .steam-template-family .steam-blueprint-menu-drawer__cards span,
  .steam-template-family .steam-blueprint-menu-drawer__cards small {
    font-size: 9px;
  }

  .steam-template-family .drawer-events {
    gap: 8px;
  }

  .steam-template-family .drawer-event-icon img {
    width: clamp(50px, 13vw, 58px);
    height: clamp(50px, 13vw, 58px);
  }

  .steam-template-family .drawer-event-icon span {
    font-size: 10px;
  }

  .back-to-top {
    right: 14px;
    bottom: 14px;
    width: 44px;
    height: 44px;
  }

  .back-to-top span {
    font-size: 22px;
    line-height: 44px;
  }

  .steam-home-v4 .back-to-top {
    display: none;
  }
}

.steam-template-family .steam-template-switcher .steam-blueprint-kicker,
.steam-template-family .steam-blueprint-logistics .steam-blueprint-kicker,
.steam-template-family .steam-template-panel .steam-blueprint-kicker,
.steam-template-family .steam-blueprint-events > header .steam-blueprint-kicker,
.steam-template-family .steam-blueprint-faqs .steam-blueprint-kicker,
.steam-template-family .steam-blueprint-club .steam-blueprint-kicker,
.steam-template-family .steam-blueprint-venues .steam-blueprint-kicker {
  color: var(--bp-ink);
}

.steam-template-family .steam-template-page-hero .steam-blueprint-kicker,
.steam-template-family .steam-blueprint-facilities .steam-blueprint-kicker,
.steam-template-family .steam-blueprint-trust .steam-blueprint-kicker,
.steam-template-family .steam-blueprint-reassurance .steam-blueprint-kicker,
.steam-template-family .steam-blueprint-price span {
  color: var(--bp-blue);
}

.steam-template-family .steam-blueprint-faqs--home-v4 .steam-blueprint-kicker {
  color: rgba(255, 255, 255, 0.74);
}

.steam-blueprint-page.steam-home-v5 .steam-template-page-hero {
  grid-template-columns: minmax(0, 760px);
}

.steam-blueprint-page.steam-home-v5 .steam-hours-prices-panel {
  width: min(1160px, calc(100% - 32px));
  max-width: 1160px;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.92fr);
  gap: clamp(24px, 4vw, 54px);
  align-items: start;
  margin: 0 auto clamp(22px, 4vw, 42px);
  padding: clamp(28px, 3.8vw, 44px);
  overflow: hidden;
  border-radius: 24px;
  background: var(--bp-card);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.78), 0 18px 50px rgba(5, 11, 29, 0.06);
  color: var(--bp-ink);
}

.steam-blueprint-page.steam-home-v5 .steam-hours-prices-panel .steam-blueprint-kicker {
  color: var(--bp-ink);
}

.steam-blueprint-page.steam-home-v5 .steam-hours-prices-panel__intro {
  display: grid;
  gap: 20px;
}

.steam-blueprint-page.steam-home-v5 .steam-hours-prices-panel h2 {
  max-width: 640px;
  color: var(--bp-ink);
  font-size: clamp(42px, 5.6vw, 70px);
  font-weight: 930;
  line-height: 0.96;
}

.steam-blueprint-page.steam-home-v5 .steam-hours-prices-panel__price-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.steam-blueprint-page.steam-home-v5 .steam-hours-prices-panel__price-grid article,
.steam-blueprint-page.steam-home-v5 .steam-hours-prices-panel__hours {
  min-width: 0;
  border: 1px solid rgba(5, 11, 29, 0.09);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
}

.steam-blueprint-page.steam-home-v5 .steam-hours-prices-panel__price-grid article {
  display: grid;
  align-content: start;
  gap: 6px;
  min-height: 144px;
  padding: 18px;
}

.steam-blueprint-page.steam-home-v5 .steam-hours-prices-panel__price-grid article.is-featured {
  background: #e6fbff;
}

.steam-blueprint-page.steam-home-v5 .steam-hours-prices-panel__price-grid span {
  color: var(--bp-muted);
  font-size: 11px;
  font-weight: 950;
  line-height: 1.1;
  text-transform: uppercase;
}

.steam-blueprint-page.steam-home-v5 .steam-hours-prices-panel__price-grid strong {
  color: var(--bp-ink);
  font-size: clamp(30px, 4vw, 46px);
  font-weight: 940;
  line-height: 0.92;
  text-transform: uppercase;
}

.steam-blueprint-page.steam-home-v5 .steam-hours-prices-panel__price-grid p {
  color: var(--bp-muted);
  font-size: 14px;
  font-weight: 760;
  line-height: 1.25;
}

.steam-blueprint-page.steam-home-v5 .steam-hours-prices-panel__side {
  display: grid;
  gap: 18px;
}

.steam-blueprint-page.steam-home-v5 .steam-hours-prices-panel__media {
  overflow: hidden;
  border-radius: 18px;
  background: var(--bp-dark);
}

.steam-blueprint-page.steam-home-v5 .steam-hours-prices-panel__mobile-media {
  display: none;
  overflow: hidden;
  border-radius: 18px;
  background: var(--bp-dark);
}

.steam-blueprint-page.steam-home-v5 .steam-hours-prices-panel__mobile-media img,
.steam-blueprint-page.steam-home-v5 .steam-hours-prices-panel__media img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  height: auto;
  object-fit: cover;
}

.steam-blueprint-page.steam-home-v5 .steam-hours-prices-panel__hours {
  display: grid;
  gap: 14px;
  padding: 20px;
}

.steam-blueprint-page.steam-home-v5 .steam-hours-prices-panel__hours h3 {
  color: var(--bp-ink);
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 920;
  line-height: 1;
}

.steam-blueprint-page.steam-home-v5 .steam-hours-prices-panel__hours-columns,
.steam-blueprint-page.steam-home-v5 .steam-hours-prices-panel__hours dl {
  display: grid;
  gap: 0;
}

.steam-blueprint-page.steam-home-v5 .steam-hours-prices-panel__hours dl div {
  display: grid;
  grid-template-columns: minmax(84px, 0.7fr) minmax(0, 1fr);
  gap: 12px;
  padding: 10px 0;
  border-top: 1px solid rgba(5, 11, 29, 0.08);
}

.steam-blueprint-page.steam-home-v5 .steam-hours-prices-panel__hours dt,
.steam-blueprint-page.steam-home-v5 .steam-hours-prices-panel__hours dd {
  color: var(--bp-muted);
  font-size: 14px;
  font-weight: 850;
  line-height: 1.25;
}

.steam-blueprint-page.steam-home-v5 .steam-hours-prices-panel__hours dt {
  color: var(--bp-ink);
}

.steam-blueprint-page.steam-home-v5 .steam-hours-prices-panel__hours dd span {
  display: inline-block;
  color: var(--bp-blue);
}

.steam-blueprint-page.steam-home-v5 .steam-hours-prices-panel__note {
  grid-column: 1 / -1;
  margin: 0;
  padding: 18px 20px;
  border-radius: 18px;
  background: var(--bp-dark);
  color: rgba(255, 255, 255, 0.84);
  font-size: 15px;
  font-weight: 760;
  line-height: 1.35;
}

.steam-blueprint-page.steam-home-v5 .steam-address-directions-panel {
  width: min(1160px, calc(100% - 32px));
  max-width: 1160px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.94fr);
  gap: clamp(20px, 3vw, 34px);
  align-items: start;
  margin: 0 auto clamp(22px, 4vw, 42px);
  padding: clamp(28px, 3.8vw, 44px);
  overflow: hidden;
  border-radius: 24px;
  background: var(--bp-card);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.78), 0 18px 50px rgba(5, 11, 29, 0.06);
  color: var(--bp-ink);
}

.steam-blueprint-page.steam-home-v5 .steam-address-directions-panel .steam-blueprint-kicker {
  color: var(--bp-ink);
}

.steam-blueprint-page.steam-home-v5 .steam-address-directions-panel__intro,
.steam-blueprint-page.steam-home-v5 .steam-address-directions-panel__side,
.steam-blueprint-page.steam-home-v5 .steam-address-directions-panel__card {
  display: grid;
  gap: 16px;
}

.steam-blueprint-page.steam-home-v5 .steam-address-directions-panel h2 {
  max-width: 660px;
  color: var(--bp-ink);
  font-size: clamp(42px, 5vw, 64px);
  font-weight: 930;
  line-height: 0.96;
}

.steam-blueprint-page.steam-home-v5 .steam-address-directions-panel__lead {
  max-width: 600px;
  color: var(--bp-muted);
  font-size: clamp(16px, 1.8vw, 20px);
  font-weight: 760;
  line-height: 1.28;
}

.steam-blueprint-page.steam-home-v5 .steam-address-directions-panel h3 {
  color: var(--bp-ink);
  font-size: clamp(24px, 2.8vw, 32px);
  font-weight: 920;
  line-height: 1;
}

.steam-blueprint-page.steam-home-v5 .steam-address-directions-panel__fact-grid {
  display: grid;
  gap: 10px;
}

.steam-blueprint-page.steam-home-v5 .steam-address-directions-panel__mini-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.steam-blueprint-page.steam-home-v5 .steam-address-directions-panel__fact-grid article,
.steam-blueprint-page.steam-home-v5 .steam-address-directions-panel__mini-grid article,
.steam-blueprint-page.steam-home-v5 .steam-address-directions-panel__card,
.steam-blueprint-page.steam-home-v5 .steam-address-directions-panel__travel,
.steam-blueprint-page.steam-home-v5 .steam-address-directions-panel__note-grid article {
  min-width: 0;
  border: 1px solid rgba(5, 11, 29, 0.09);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
}

.steam-blueprint-page.steam-home-v5 .steam-address-directions-panel__fact-grid article,
.steam-blueprint-page.steam-home-v5 .steam-address-directions-panel__mini-grid article {
  display: grid;
  align-content: start;
  gap: 6px;
  padding: 16px;
}

.steam-blueprint-page.steam-home-v5 .steam-address-directions-panel__mini-grid article {
  min-height: 126px;
}

.steam-blueprint-page.steam-home-v5 .steam-address-directions-panel__fact-grid article.is-featured,
.steam-blueprint-page.steam-home-v5 .steam-address-directions-panel__mini-grid article.is-featured {
  background: #e6fbff;
}

.steam-blueprint-page.steam-home-v5 .steam-address-directions-panel__fact-grid span,
.steam-blueprint-page.steam-home-v5 .steam-address-directions-panel__mini-grid span,
.steam-blueprint-page.steam-home-v5 .steam-address-directions-panel__note-grid span {
  color: var(--bp-muted);
  font-size: 11px;
  font-weight: 950;
  line-height: 1.1;
  text-transform: uppercase;
}

.steam-blueprint-page.steam-home-v5 .steam-address-directions-panel__fact-grid strong,
.steam-blueprint-page.steam-home-v5 .steam-address-directions-panel__mini-grid strong {
  color: var(--bp-ink);
  font-size: clamp(24px, 2.8vw, 34px);
  font-weight: 940;
  line-height: 0.98;
}

.steam-blueprint-page.steam-home-v5 .steam-address-directions-panel__fact-grid p,
.steam-blueprint-page.steam-home-v5 .steam-address-directions-panel__mini-grid p,
.steam-blueprint-page.steam-home-v5 .steam-address-directions-panel__card p,
.steam-blueprint-page.steam-home-v5 .steam-address-directions-panel__route-list dd,
.steam-blueprint-page.steam-home-v5 .steam-address-directions-panel__note,
.steam-blueprint-page.steam-home-v5 .steam-address-directions-panel__note-grid p {
  color: var(--bp-muted);
  font-size: 14px;
  font-weight: 760;
  line-height: 1.3;
}

.steam-blueprint-page.steam-home-v5 .steam-address-directions-panel__card {
  padding: 18px;
}

.steam-blueprint-page.steam-home-v5 .steam-address-directions-panel__card--primary {
  background: var(--bp-dark);
}

.steam-blueprint-page.steam-home-v5 .steam-address-directions-panel__card--primary .steam-blueprint-kicker,
.steam-blueprint-page.steam-home-v5 .steam-address-directions-panel__card--primary h3,
.steam-blueprint-page.steam-home-v5 .steam-address-directions-panel__card--primary p {
  color: #fff;
}

.steam-blueprint-page.steam-home-v5 .steam-address-directions-panel__card--primary p {
  color: rgba(255, 255, 255, 0.78);
}

.steam-blueprint-page.steam-home-v5 .steam-address-directions-panel__button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.steam-blueprint-page.steam-home-v5 .steam-address-directions-panel__button {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  justify-self: start;
  border-radius: 999px;
  padding: 0 16px;
  background: #e6fbff;
  color: var(--bp-ink);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0;
  text-decoration: none;
  text-transform: uppercase;
}

.steam-blueprint-page.steam-home-v5 .steam-address-directions-panel__button--ghost {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.22);
}

.steam-blueprint-page.steam-home-v5 .steam-address-directions-panel__route-list {
  display: grid;
  gap: 0;
}

.steam-blueprint-page.steam-home-v5 .steam-address-directions-panel__route-list dt,
.steam-blueprint-page.steam-home-v5 .steam-address-directions-panel__route-list dd {
  margin: 0;
}

.steam-blueprint-page.steam-home-v5 .steam-address-directions-panel__route-list div {
  display: grid;
  grid-template-columns: minmax(58px, 0.28fr) minmax(0, 1fr);
  gap: 12px;
  padding: 9px 0;
  border-top: 1px solid rgba(5, 11, 29, 0.08);
}

.steam-blueprint-page.steam-home-v5 .steam-address-directions-panel__route-list dt {
  color: var(--bp-ink);
  font-size: 13px;
  font-weight: 900;
  line-height: 1.25;
}

.steam-blueprint-page.steam-home-v5 .steam-address-directions-panel__travel {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(220px, 0.34fr) minmax(0, 1fr);
  gap: 18px;
  padding: 20px;
}

.steam-blueprint-page.steam-home-v5 .steam-address-directions-panel__travel-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.steam-blueprint-page.steam-home-v5 .steam-address-directions-panel__travel-grid span {
  min-width: 0;
  border-radius: 12px;
  padding: 10px 12px;
  background: rgba(230, 251, 255, 0.72);
  color: var(--bp-muted);
  font-size: 13px;
  font-weight: 820;
  line-height: 1.2;
}

.steam-blueprint-page.steam-home-v5 .steam-address-directions-panel__note {
  grid-column: 1 / -1;
  margin: 0;
  padding: 16px 18px;
  border-radius: 18px;
  background: #e6fbff;
}

.steam-blueprint-page.steam-home-v5 .steam-address-directions-panel__note-grid {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.steam-blueprint-page.steam-home-v5 .steam-address-directions-panel__note-grid article {
  display: grid;
  align-content: start;
  gap: 8px;
  padding: 18px;
}

@media (min-width: 981px) {
  .steam-blueprint-page.steam-home-v5 .steam-template-page-hero .steam-blueprint-pillars {
    width: 100vw;
  }
}

@media (max-width: 900px) {
  .steam-blueprint-page.steam-home-v5 .steam-hours-prices-panel,
  .steam-blueprint-page.steam-home-v5 .steam-address-directions-panel {
    grid-template-columns: minmax(0, 1fr);
  }

  .steam-blueprint-page.steam-home-v5 .steam-address-directions-panel__mini-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .steam-blueprint-page.steam-home-v5 .steam-address-directions-panel__travel,
  .steam-blueprint-page.steam-home-v5 .steam-address-directions-panel__note-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .steam-blueprint-page.steam-home-v5 .steam-address-directions-panel__travel-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .steam-blueprint-page.steam-home-v5 .steam-hours-prices-panel,
  .steam-blueprint-page.steam-home-v5 .steam-address-directions-panel {
    padding: 28px 20px 24px;
    border-radius: 18px;
  }

  .steam-blueprint-page.steam-home-v5 .steam-hours-prices-panel__price-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 9px;
  }

  .steam-blueprint-page.steam-home-v5 .steam-address-directions-panel__mini-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 9px;
  }

  .steam-blueprint-page.steam-home-v5 .steam-hours-prices-panel__mobile-media {
    display: block;
  }

  .steam-blueprint-page.steam-home-v5 .steam-hours-prices-panel__side .steam-hours-prices-panel__media {
    display: none;
  }

  .steam-blueprint-page.steam-home-v5 .steam-hours-prices-panel__price-grid article,
  .steam-blueprint-page.steam-home-v5 .steam-address-directions-panel__fact-grid article,
  .steam-blueprint-page.steam-home-v5 .steam-address-directions-panel__mini-grid article {
    min-height: 0;
    padding: 14px;
  }

  .steam-blueprint-page.steam-home-v5 .steam-hours-prices-panel__price-grid span,
  .steam-blueprint-page.steam-home-v5 .steam-address-directions-panel__fact-grid span,
  .steam-blueprint-page.steam-home-v5 .steam-address-directions-panel__mini-grid span,
  .steam-blueprint-page.steam-home-v5 .steam-address-directions-panel__note-grid span {
    font-size: 9px;
  }

  .steam-blueprint-page.steam-home-v5 .steam-hours-prices-panel__price-grid strong,
  .steam-blueprint-page.steam-home-v5 .steam-address-directions-panel__fact-grid strong,
  .steam-blueprint-page.steam-home-v5 .steam-address-directions-panel__mini-grid strong {
    font-size: clamp(25px, 7.4vw, 30px);
  }

  .steam-blueprint-page.steam-home-v5 .steam-hours-prices-panel__price-grid p,
  .steam-blueprint-page.steam-home-v5 .steam-address-directions-panel__fact-grid p,
  .steam-blueprint-page.steam-home-v5 .steam-address-directions-panel__mini-grid p,
  .steam-blueprint-page.steam-home-v5 .steam-address-directions-panel__card p,
  .steam-blueprint-page.steam-home-v5 .steam-address-directions-panel__route-list dd,
  .steam-blueprint-page.steam-home-v5 .steam-address-directions-panel__note,
  .steam-blueprint-page.steam-home-v5 .steam-address-directions-panel__note-grid p {
    font-size: 12px;
  }

  .steam-blueprint-page.steam-home-v5 .steam-hours-prices-panel__hours-columns {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    align-items: start;
    max-width: 100%;
  }

  .steam-blueprint-page.steam-home-v5 .steam-hours-prices-panel__hours dl {
    align-content: start;
  }

  .steam-blueprint-page.steam-home-v5 .steam-hours-prices-panel__hours dl div {
    grid-template-columns: 36px minmax(0, 1fr);
    gap: 8px;
    align-items: baseline;
    padding: 8px 0;
  }

  .steam-blueprint-page.steam-home-v5 .steam-hours-prices-panel__hours h3 {
    max-width: 100%;
    font-size: 23px;
  }

  .steam-blueprint-page.steam-home-v5 .steam-hours-prices-panel__hours dt,
  .steam-blueprint-page.steam-home-v5 .steam-hours-prices-panel__hours dd {
    font-size: 14px;
    line-height: 1.15;
    white-space: nowrap;
  }

  .steam-blueprint-page.steam-home-v5 .steam-hours-prices-panel__hours dd span {
    display: none;
  }

  .steam-blueprint-page.steam-home-v5 .steam-address-directions-panel__route-list div {
    grid-template-columns: minmax(0, 1fr);
    gap: 4px;
    padding: 10px 0;
  }

  .steam-blueprint-page.steam-home-v5 .steam-address-directions-panel__route-list dt,
  .steam-blueprint-page.steam-home-v5 .steam-address-directions-panel__route-list dd {
    padding-right: 76px;
  }

  .steam-blueprint-page.steam-home-v5 .steam-address-directions-panel__travel-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .steam-blueprint-page.steam-home-v5 .steam-blueprint-passes {
    padding-bottom: 28px;
  }

  .steam-blueprint-page.steam-home-v5 .steam-blueprint-facilities {
    padding-bottom: 28px;
  }
}

.steam-event-template .steam-event-detail-strip,
.steam-event-template .steam-event-section,
.steam-event-template .steam-event-final-cta {
  width: 100%;
  margin: 0 auto;
  background: #030712;
  color: #fff;
}

.steam-events-v4 .steam-template-page-hero .steam-blueprint-copy h1 span {
  display: block;
}

.steam-events-v4 .steam-event-section h2 {
  font-size: clamp(32px, 4.4vw, 56px);
  line-height: 0.98;
}

.steam-event-template .steam-event-detail-strip {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1px;
  background: rgba(255, 255, 255, 0.08);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.steam-event-template .steam-event-detail-strip article {
  display: grid;
  align-content: start;
  gap: 8px;
  min-height: 164px;
  padding: clamp(18px, 2.5vw, 28px);
  background: #030712;
}

.steam-event-template .steam-event-detail-strip span,
.steam-event-template .steam-event-card-grid span,
.steam-event-template .steam-blueprint-kicker {
  color: #8ee9ff;
}

.steam-event-template .steam-event-detail-strip span,
.steam-event-template .steam-event-card-grid span {
  font-size: 11px;
  font-weight: 950;
  line-height: 1.1;
  text-transform: uppercase;
}

.steam-event-template .steam-event-detail-strip strong {
  color: #fff;
  font-size: clamp(26px, 3.2vw, 40px);
  font-weight: 940;
  line-height: 0.96;
}

.steam-event-template .steam-event-detail-strip p,
.steam-event-template .steam-event-section p,
.steam-event-template .steam-event-note-list dd,
.steam-event-template .steam-event-venue-grid p,
.steam-event-template .steam-event-faq-grid p,
.steam-event-template .steam-event-final-cta p {
  color: rgba(255, 255, 255, 0.74);
  font-weight: 760;
  line-height: 1.35;
}

.steam-event-template .steam-event-section {
  padding: clamp(42px, 7vw, 96px) 0;
}

.steam-event-template .steam-event-section + .steam-event-section {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.steam-event-template .steam-event-section__inner,
.steam-event-template .steam-event-final-cta {
  width: min(1160px, calc(100% - 32px));
  max-width: 1160px;
}

.steam-event-template .steam-event-section__inner {
  display: grid;
  gap: clamp(20px, 3vw, 34px);
  margin: 0 auto;
}

.steam-event-template .steam-event-section__inner--split {
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1.08fr);
  align-items: start;
}

.steam-event-template .steam-event-section h2,
.steam-event-template .steam-event-final-cta h2 {
  max-width: 840px;
  color: #fff;
  font-size: clamp(44px, 6vw, 82px);
  font-weight: 940;
  line-height: 0.94;
}

.steam-event-template .steam-event-section h3 {
  color: #fff;
  font-size: clamp(24px, 2.8vw, 34px);
  font-weight: 920;
  line-height: 0.98;
}

.steam-event-template .steam-event-section__inner > p,
.steam-event-template .steam-event-section__inner > div > p,
.steam-event-template .steam-event-final-cta > div > p {
  max-width: 720px;
  font-size: clamp(17px, 1.8vw, 22px);
}

.steam-event-template .steam-event-card-grid,
.steam-event-template .steam-event-venue-grid,
.steam-event-template .steam-event-faq-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.steam-event-template .steam-event-card-grid article,
.steam-event-template .steam-event-venue-grid article,
.steam-event-template .steam-event-faq-grid details,
.steam-event-template .steam-event-note-list div {
  min-width: 0;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.055);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.steam-event-template .steam-event-card-grid article,
.steam-event-template .steam-event-venue-grid article {
  display: grid;
  align-content: start;
  gap: 12px;
  min-height: 230px;
  padding: clamp(20px, 2.6vw, 28px);
}

.steam-event-template .steam-event-note-list {
  display: grid;
  gap: 10px;
  margin: 0;
}

.steam-event-template .steam-event-note-list div {
  display: grid;
  grid-template-columns: minmax(160px, 0.36fr) minmax(0, 1fr);
  gap: 16px;
  padding: 18px;
}

.steam-event-template .steam-event-note-list dt {
  color: #fff;
  font-size: 14px;
  font-weight: 930;
  line-height: 1.15;
}

.steam-event-template .steam-event-note-list dd {
  margin: 0;
  font-size: 14px;
}

.steam-event-template .steam-event-venue-grid strong {
  color: #fff;
  font-size: clamp(24px, 3vw, 38px);
  font-weight: 930;
  line-height: 0.98;
}

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

.steam-event-template .steam-event-faq-grid details {
  padding: 20px;
}

.steam-event-template .steam-event-faq-grid summary {
  cursor: pointer;
  color: #fff;
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 920;
  line-height: 1.08;
}

.steam-event-template .steam-event-faq-grid p {
  margin-top: 12px;
  font-size: 15px;
}

.steam-event-template .steam-event-final-cta {
  width: 100%;
  max-width: none;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: end;
  padding: clamp(42px, 7vw, 88px) max(16px, calc((100vw - 1160px) / 2)) clamp(54px, 7vw, 96px);
}

.steam-event-template .steam-event-final-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.steam-event-template .steam-event-final-cta__actions a {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0 20px;
  background: #8ee9ff;
  color: #06111f;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0;
  text-decoration: none;
  text-transform: uppercase;
}

.steam-event-template .steam-event-final-cta__actions a:last-child {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.2);
}

@media (max-width: 900px) {
  .steam-event-template .steam-event-detail-strip,
  .steam-event-template .steam-event-card-grid,
  .steam-event-template .steam-event-venue-grid,
  .steam-event-template .steam-event-faq-grid,
  .steam-event-template .steam-event-section__inner--split,
  .steam-event-template .steam-event-final-cta {
    grid-template-columns: minmax(0, 1fr);
  }

  .steam-event-template .steam-event-detail-strip {
    width: min(100% - 24px, 1160px);
    gap: 10px;
    padding: 12px 0;
    background: transparent;
    border: 0;
  }

  .steam-event-template .steam-event-detail-strip article {
    min-height: 0;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.1);
  }

  .steam-event-template .steam-event-final-cta__actions {
    justify-content: flex-start;
  }
}

@media (max-width: 560px) {
  .steam-blueprint-page.steam-event-template .steam-home-v4-hero-overlay {
    bottom: 22px;
  }

  .steam-blueprint-page.steam-event-template .steam-home-v4-hero-overlay h1 {
    max-width: 330px;
    font-size: clamp(3rem, 15vw, 4.5rem);
    line-height: 0.88;
    white-space: normal;
  }

  .steam-blueprint-page.steam-event-template .steam-home-v4-hero-overlay .steam-blueprint-kicker {
    max-width: 280px;
    font-size: 11px;
    line-height: 1.15;
  }

  .steam-event-template .steam-event-final-cta h2 {
    font-size: clamp(36px, 10.8vw, 46px);
  }

  .steam-event-template .steam-event-section {
    padding: 40px 0;
  }

  .steam-event-template .steam-event-card-grid article,
  .steam-event-template .steam-event-venue-grid article {
    min-height: 0;
  }

  .steam-event-template .steam-event-note-list div {
    grid-template-columns: minmax(0, 1fr);
    gap: 6px;
  }
}

.steam-event-template .steam-event-detail-strip {
  width: min(1160px, calc(100% - 32px));
  max-width: 1160px;
  gap: 10px;
  margin: clamp(20px, 4vw, 42px) auto;
  padding: 10px;
  border: 1px solid rgba(5, 11, 29, 0.08);
  border-radius: 24px;
  background: var(--bp-card);
  box-shadow: 0 18px 50px rgba(5, 11, 29, 0.06);
}

.steam-event-template .steam-event-detail-strip article {
  min-height: 154px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.78);
}

.steam-event-template .steam-event-detail-strip span,
.steam-event-template .steam-event-card-grid span {
  color: var(--bp-muted);
}

.steam-event-template .steam-event-detail-strip strong {
  color: var(--bp-ink);
}

.steam-event-template .steam-event-detail-strip p {
  color: var(--bp-muted);
}

.steam-event-template .steam-event-section {
  background: #f4f7fb;
  color: var(--bp-ink);
}

.steam-event-template .steam-event-section + .steam-event-section {
  border-top: 0;
}

.steam-event-template .steam-event-section--light {
  background: #f4f7fb;
}

.steam-event-template .steam-event-section--blue {
  background: #e6fbff;
}

.steam-event-template .steam-event-section--dark {
  background: #030712;
  color: #fff;
}

.steam-event-template .steam-event-section h2,
.steam-event-template .steam-event-section h3 {
  color: var(--bp-ink);
}

.steam-event-template .steam-event-section p,
.steam-event-template .steam-event-note-list dd,
.steam-event-template .steam-event-venue-grid p,
.steam-event-template .steam-event-faq-grid p {
  color: var(--bp-muted);
}

.steam-event-template .steam-event-section--dark h2,
.steam-event-template .steam-event-section--dark h3,
.steam-event-template .steam-event-section--dark .steam-event-note-list dt,
.steam-event-template .steam-event-section--dark .steam-event-venue-grid strong,
.steam-event-template .steam-event-section--dark .steam-event-faq-grid summary {
  color: #fff;
}

.steam-event-template .steam-event-section--dark p,
.steam-event-template .steam-event-section--dark .steam-event-note-list dd,
.steam-event-template .steam-event-section--dark .steam-event-venue-grid p,
.steam-event-template .steam-event-section--dark .steam-event-faq-grid p {
  color: rgba(255, 255, 255, 0.74);
}

.steam-event-template .steam-event-section--dark .steam-blueprint-kicker {
  color: #8ee9ff;
}

.steam-event-template .steam-event-section--light .steam-blueprint-kicker,
.steam-event-template .steam-event-section--blue .steam-blueprint-kicker {
  color: var(--bp-ink);
}

.steam-event-template .steam-event-card-grid article,
.steam-event-template .steam-event-venue-grid article,
.steam-event-template .steam-event-faq-grid details,
.steam-event-template .steam-event-note-list div {
  border-color: rgba(5, 11, 29, 0.08);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72), 0 12px 30px rgba(5, 11, 29, 0.04);
}

.steam-event-template .steam-event-section--dark .steam-event-card-grid article,
.steam-event-template .steam-event-section--dark .steam-event-venue-grid article,
.steam-event-template .steam-event-section--dark .steam-event-faq-grid details,
.steam-event-template .steam-event-section--dark .steam-event-note-list div {
  border-color: rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.055);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.steam-event-template .steam-event-section--blue .steam-event-venue-grid article {
  background: rgba(255, 255, 255, 0.72);
}

.steam-event-template .steam-event-venue-grid strong {
  color: var(--bp-ink);
}

.steam-event-template .steam-event-final-cta {
  background: #e6fbff;
  color: var(--bp-ink);
}

.steam-event-template .steam-event-final-cta h2 {
  color: var(--bp-ink);
}

.steam-event-template .steam-event-final-cta p {
  color: var(--bp-muted);
}

.steam-event-template .steam-event-final-cta .steam-blueprint-kicker {
  color: var(--bp-ink);
}

.steam-event-template .steam-event-final-cta__actions a:last-child {
  background: var(--bp-dark);
  color: #fff;
  box-shadow: none;
}

@media (max-width: 900px) {
  .steam-event-template .steam-event-detail-strip {
    width: min(100% - 24px, 1160px);
    padding: 0;
    background: transparent;
    box-shadow: none;
  }
}

.steam-membership-review-page main {
  display: grid;
  gap: clamp(22px, 4vw, 42px);
  padding-bottom: clamp(44px, 6vw, 80px);
}

.steam-membership-review-back {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 0 16px;
  background: var(--bp-dark);
  color: #fff;
  font-size: 12px;
  font-weight: 950;
  text-decoration: none;
}

.steam-membership-review-intro {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  gap: 14px;
  padding: clamp(34px, 5vw, 58px) 0 0;
}

.steam-membership-review-intro h1 {
  max-width: 860px;
  color: var(--bp-ink);
  font-size: clamp(46px, 7vw, 86px);
  line-height: 0.95;
}

.steam-membership-review-intro p:not(.steam-blueprint-kicker) {
  max-width: 680px;
  color: var(--bp-muted);
  font-size: clamp(18px, 2vw, 23px);
  font-weight: 760;
  line-height: 1.3;
}

.steam-membership-panel {
  width: min(1160px, calc(100% - 32px));
  max-width: 1160px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.92fr);
  column-gap: clamp(28px, 4.5vw, 62px);
  row-gap: 22px;
  align-items: start;
  margin: 0 auto clamp(18px, 3vw, 34px);
  padding: clamp(28px, 3.8vw, 44px);
  overflow: visible;
  border-radius: 24px;
  background: var(--bp-card);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.78), 0 18px 50px rgba(5, 11, 29, 0.06);
  color: var(--bp-ink);
}

.steam-membership-panel__content {
  display: grid;
  align-content: start;
  gap: 16px;
}

.steam-membership-panel h2 {
  max-width: 680px;
  color: var(--bp-ink);
  font-size: clamp(44px, 6vw, 74px);
  font-weight: 930;
  line-height: 0.96;
}

.steam-membership-panel .steam-blueprint-kicker {
  color: var(--bp-ink);
}

.steam-membership-panel__lead {
  max-width: 640px;
  color: var(--bp-muted);
  font-size: clamp(18px, 1.6vw, 25px);
  font-weight: 850;
  line-height: 1.12;
}

.steam-membership-panel__side {
  display: grid;
  gap: 14px;
}

.steam-membership-panel__media {
  overflow: hidden;
  min-height: 472px;
  height: 100%;
  border-radius: 24px;
}

.steam-membership-panel__media picture {
  display: block;
  height: 100%;
}

.steam-membership-panel__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 18px;
}

.steam-membership-panel__plans {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  overflow: hidden;
  border-radius: 24px;
  background: #fff;
  box-shadow: inset 0 0 0 1px rgba(5, 11, 29, 0.08);
}

.steam-membership-panel__plans article {
  display: grid;
  gap: 14px;
  align-content: start;
  min-height: 276px;
  padding: clamp(22px, 3vw, 36px);
  border-right: 1px solid rgba(5, 11, 29, 0.08);
}

.steam-membership-panel__plans article:last-child {
  border-right: 0;
}

.steam-membership-panel__plans article.is-featured {
  background: rgba(201, 248, 255, 0.42);
}

.steam-membership-panel__plans span {
  color: var(--bp-muted);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.08em;
  line-height: 1.15;
  text-transform: uppercase;
}

.steam-membership-panel__plans strong {
  color: var(--bp-ink);
  font-size: clamp(56px, 7vw, 84px);
  line-height: 0.86;
}

.steam-membership-panel__plans h3 {
  color: var(--bp-ink);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 930;
  line-height: 0.96;
}

.steam-membership-panel__plans p {
  color: var(--bp-muted);
  max-width: 420px;
  font-size: clamp(16px, 1.5vw, 19px);
  font-weight: 820;
  line-height: 1.32;
}

.steam-about-event-panel__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  justify-self: start;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  background: var(--bp-ink);
  color: #fff;
  font-weight: 920;
  text-decoration: none;
}

.steam-about-event-panel__source-note {
  max-width: 600px;
  color: var(--bp-muted);
  font-size: clamp(16px, 1.2vw, 18px);
  font-weight: 780;
  line-height: 1.36;
}

.steam-about-event-panel .steam-membership-panel__plans article:nth-child(even) {
  border-right: 0;
}

.steam-about-event-panel .steam-membership-panel__plans article:nth-child(-n + 2) {
  border-bottom: 1px solid rgba(5, 11, 29, 0.08);
}

.steam-about-event-panel__reasons {
  grid-column: 1 / -1;
  display: grid;
  gap: clamp(18px, 3vw, 28px);
  padding: clamp(22px, 3vw, 34px);
  border-radius: 24px;
  background: #030712;
  color: #fff;
}

.steam-about-event-panel__reasons-head {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(320px, 0.64fr);
  gap: clamp(18px, 3vw, 38px);
  align-items: end;
}

.steam-about-event-panel__reasons-head .steam-blueprint-kicker {
  grid-column: 1 / -1;
  color: #9ff5ff;
}

.steam-about-event-panel__reasons-head h3 {
  max-width: 720px;
  color: #fff;
  font-size: clamp(34px, 4.2vw, 58px);
  font-weight: 930;
  line-height: 0.96;
}

.steam-about-event-panel__reasons-head p:not(.steam-blueprint-kicker) {
  max-width: 520px;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(16px, 1.4vw, 20px);
  font-weight: 780;
  line-height: 1.36;
}

.steam-about-event-panel__reason-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.steam-about-event-panel__reason-grid article {
  display: grid;
  gap: 10px;
  align-content: start;
  min-height: 176px;
  padding: clamp(18px, 2vw, 24px);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.12);
}

.steam-about-event-panel__reason-grid span {
  color: #9ff5ff;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
}

.steam-about-event-panel__reason-grid h4 {
  color: #fff;
  font-size: clamp(24px, 2.4vw, 36px);
  font-weight: 930;
  line-height: 0.98;
}

.steam-about-event-panel__reason-grid p {
  color: rgba(255, 255, 255, 0.76);
  font-size: 15px;
  font-weight: 760;
  line-height: 1.34;
}

@media (max-width: 820px) {
  .steam-membership-panel {
    grid-template-columns: 1fr;
  }

  .steam-about-event-panel__reasons-head,
  .steam-about-event-panel__reason-grid {
    grid-template-columns: 1fr 1fr;
  }

}

@media (max-width: 560px) {
  .steam-membership-panel {
    width: min(100% - 24px, 1160px);
    padding: 22px;
  }

  .steam-membership-panel__plans {
    grid-template-columns: 1fr;
  }

  .steam-membership-panel__media {
    min-height: 260px;
    height: 260px;
  }

  .steam-membership-panel__plans article {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid rgba(5, 11, 29, 0.08);
  }

  .steam-about-event-panel__reasons {
    padding: 20px;
  }

  .steam-about-event-panel__reasons-head,
  .steam-about-event-panel__reason-grid {
    grid-template-columns: 1fr;
  }

  .steam-about-event-panel__reason-grid article {
    min-height: 0;
  }

.steam-membership-panel__plans article:last-child {
  border-bottom: 0;
  }
}

.steam-included-review-page main {
  display: grid;
  gap: clamp(22px, 4vw, 42px);
  padding-bottom: clamp(44px, 6vw, 80px);
}

.steam-included-panel {
  width: min(1160px, calc(100% - 32px));
  max-width: 1160px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.92fr);
  column-gap: clamp(28px, 4.5vw, 62px);
  row-gap: 22px;
  align-items: start;
  margin: 0 auto clamp(18px, 3vw, 34px);
  padding: clamp(28px, 3.8vw, 44px);
  overflow: visible;
  border-radius: 24px;
  background: var(--bp-card);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.78), 0 18px 50px rgba(5, 11, 29, 0.06);
  color: var(--bp-ink);
}

.steam-included-panel__content {
  display: grid;
  align-content: start;
  gap: 16px;
}

.steam-included-panel h2 {
  max-width: 680px;
  color: var(--bp-ink);
  font-size: clamp(48px, 7vw, 82px);
  font-weight: 930;
  line-height: 0.94;
}

.steam-included-panel .steam-blueprint-kicker {
  color: var(--bp-ink);
}

.steam-included-panel__strapline {
  max-width: 620px;
  color: var(--bp-ink);
  font-size: clamp(25px, 3vw, 39px);
  font-weight: 930;
  line-height: 1;
}

.steam-included-panel__lead {
  max-width: 640px;
  color: var(--bp-muted);
  font-size: clamp(18px, 1.6vw, 25px);
  font-weight: 850;
  line-height: 1.12;
}

.steam-included-panel__side {
  display: grid;
  gap: 14px;
}

.steam-included-panel__media {
  overflow: hidden;
  min-height: 472px;
  height: 100%;
  border-radius: 24px;
}

.steam-included-panel__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 18px;
}

.steam-included-panel__plans {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  overflow: hidden;
  border-radius: 24px;
  background: #fff;
  box-shadow: inset 0 0 0 1px rgba(5, 11, 29, 0.08);
}

.steam-included-panel__plans article {
  display: grid;
  gap: 14px;
  align-content: start;
  min-height: 248px;
  padding: clamp(22px, 3vw, 34px);
  border-right: 1px solid rgba(5, 11, 29, 0.08);
}

.steam-included-panel__plans article:last-child {
  border-right: 0;
}

.steam-included-panel__plans article.is-featured {
  background: rgba(201, 248, 255, 0.42);
}

.steam-included-panel__plans span {
  color: var(--bp-muted);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.08em;
  line-height: 1.15;
  text-transform: uppercase;
}

.steam-included-panel__plans h3 {
  color: var(--bp-ink);
  font-size: clamp(28px, 3.2vw, 42px);
  font-weight: 930;
  line-height: 0.96;
}

.steam-included-panel__plans p {
  color: var(--bp-muted);
  max-width: 360px;
  font-size: clamp(16px, 1.4vw, 18px);
  font-weight: 820;
  line-height: 1.32;
}

@media (max-width: 900px) {
  .steam-included-panel {
    grid-template-columns: 1fr;
  }

  .steam-included-panel__media {
    min-height: 360px;
  }

  .steam-included-panel__plans {
    grid-template-columns: 1fr;
  }

  .steam-included-panel__plans article {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid rgba(5, 11, 29, 0.08);
  }

  .steam-included-panel__plans article:last-child {
    border-bottom: 0;
  }
}

@media (max-width: 560px) {
  .steam-included-panel {
    width: min(100% - 24px, 1160px);
    padding: 22px;
  }

  .steam-included-panel__media {
    min-height: 260px;
    height: 260px;
  }
}

.steam-event-v2 main {
  display: grid;
  gap: clamp(18px, 3vw, 34px);
  padding-bottom: clamp(36px, 6vw, 80px);
}

.steam-event-v2-hero {
  position: relative;
  min-height: min(760px, 96svh);
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: clamp(116px, 15vh, 180px) max(18px, calc((100vw - 1160px) / 2)) clamp(44px, 7vw, 84px);
  background: #030b20;
  color: #fff;
}

.steam-event-v2-hero__media {
  position: absolute;
  inset: 0;
}

.steam-event-v2-hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(3, 11, 32, 0.96) 0%, rgba(3, 11, 32, 0.7) 48%, rgba(3, 11, 32, 0.12) 100%),
    linear-gradient(180deg, rgba(3, 11, 32, 0.04) 0%, rgba(3, 11, 32, 0.14) 48%, rgba(3, 11, 32, 0.94) 100%);
}

.steam-event-v2-hero__media picture {
  display: block;
  width: 100%;
  height: 100%;
}

.steam-event-v2-hero__media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

.steam-event-v2-hero__copy {
  position: relative;
  z-index: 1;
  width: min(780px, 100%);
  display: grid;
  gap: 16px;
}

.steam-event-v2-hero .steam-blueprint-kicker {
  color: var(--bp-blue);
}

.steam-event-v2-hero h1 {
  max-width: 780px;
  color: #fff;
  font-size: clamp(52px, 7.2vw, 96px);
  font-weight: 950;
  letter-spacing: 0;
  line-height: 0.9;
}

.steam-event-v2-hero h1 span {
  display: block;
}

.steam-event-v2-hero__time {
  color: var(--bp-blue);
  font-size: clamp(25px, 3.1vw, 42px);
  font-weight: 920;
  line-height: 1;
}

.steam-event-v2-hero__copy > p:not(.steam-blueprint-kicker):not(.steam-event-v2-hero__time) {
  max-width: 690px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(18px, 1.65vw, 24px);
  font-weight: 750;
  line-height: 1.28;
}

.steam-event-v2-hero__notes {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.steam-event-v2-hero__notes li {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 0 15px;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.92);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

.steam-event-v2-hero .steam-event-v2-hero__pillars {
  position: relative;
  z-index: 1;
  width: min(1160px, 100%);
  margin: clamp(22px, 4vw, 42px) 0 0;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.14);
}

.steam-event-v2-hero .steam-event-v2-hero__pillars article {
  min-height: 118px;
}

.steam-event-v2-hero .steam-event-v2-hero__pillars strong {
  font-size: clamp(28px, 3.2vw, 44px);
}

.steam-event-v2-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.steam-event-v2-actions a,
.steam-event-v2-community > a {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0 20px;
  background: var(--bp-blue);
  color: #06111f;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0;
  text-decoration: none;
  text-transform: uppercase;
}

.steam-event-v2-actions a:nth-child(2),
.steam-event-v2-community > a {
  background: #fff;
  box-shadow: inset 0 0 0 1px rgba(5, 11, 29, 0.1);
}

.steam-event-v2-glance,
.steam-event-v2-overview,
.steam-event-v2-visit-panel,
.steam-event-v2-suits,
.steam-event-v2-reassurance,
.steam-event-v2-included,
.steam-event-v2-community,
.steam-event-v2-faq-section,
.steam-event-v2-final {
  width: min(1160px, calc(100% - 32px));
  max-width: 1160px;
  margin: 0 auto;
}

.steam-event-v2-glance {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(22px, 3.8vw, 44px);
  align-items: start;
  margin-top: clamp(24px, 4vw, 46px);
  padding: clamp(28px, 4vw, 46px);
  border-radius: 24px;
  background: var(--bp-card);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.78), 0 18px 50px rgba(5, 11, 29, 0.06);
  color: var(--bp-ink);
}

.steam-event-v2-glance__intro,
.steam-event-v2-overview__copy,
.steam-event-v2-visit-panel > div:first-child,
.steam-event-v2-included__copy,
.steam-event-v2-community > div,
.steam-event-v2-reassurance > div:first-child,
.steam-event-v2-faq-section__head,
.steam-event-v2-final > div:first-child {
  display: grid;
  gap: 14px;
  align-content: start;
}

.steam-event-v2-glance .steam-blueprint-kicker,
.steam-event-v2-overview .steam-blueprint-kicker,
.steam-event-v2-visit-panel .steam-blueprint-kicker,
.steam-event-v2-included .steam-blueprint-kicker,
.steam-event-v2-community .steam-blueprint-kicker,
.steam-event-v2-reassurance .steam-blueprint-kicker,
.steam-event-v2-faq-section .steam-blueprint-kicker {
  color: var(--bp-ink);
}

.steam-event-v2-glance h2,
.steam-event-v2-overview h2,
.steam-event-v2-visit-panel h2,
.steam-event-v2-suits h2,
.steam-event-v2-reassurance h2,
.steam-event-v2-included h2,
.steam-event-v2-community h2,
.steam-event-v2-faq-section h2,
.steam-event-v2-final h2 {
  max-width: 780px;
  color: var(--bp-ink);
  font-size: clamp(31px, 3.7vw, 54px);
  font-weight: 940;
  letter-spacing: 0;
  line-height: 1.02;
}

.steam-event-v2-glance p,
.steam-event-v2-overview p,
.steam-event-v2-visit-panel p,
.steam-event-v2-suits p,
.steam-event-v2-reassurance p,
.steam-event-v2-included p,
.steam-event-v2-community p,
.steam-event-v2-faq-section p,
.steam-event-v2-final p,
.steam-event-v2-final li {
  color: var(--bp-muted);
  font-size: clamp(17px, 1.5vw, 20px);
  font-weight: 750;
  line-height: 1.42;
}

.steam-event-v2-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.steam-event-v2-facts article {
  min-height: 174px;
  display: grid;
  align-content: start;
  gap: 10px;
  border-radius: 18px;
  padding: 20px;
  background: #fff;
  box-shadow: inset 0 0 0 1px rgba(5, 11, 29, 0.08);
}

.steam-event-v2-facts article.is-featured {
  background: rgba(201, 248, 255, 0.48);
}

.steam-event-v2-facts span {
  color: var(--bp-blue-strong);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.08em;
  line-height: 1.1;
  text-transform: uppercase;
}

.steam-event-v2-facts strong {
  color: var(--bp-ink);
  font-size: clamp(22px, 2.4vw, 30px);
  font-weight: 940;
  line-height: 1;
}

.steam-event-v2-facts p {
  font-size: 16px;
  line-height: 1.2;
}

.steam-event-v2-overview {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.86fr);
  gap: clamp(24px, 4vw, 56px);
  align-items: start;
  padding: clamp(28px, 4vw, 46px);
  border-radius: 24px;
  background: #fff;
  box-shadow: inset 0 0 0 1px rgba(5, 11, 29, 0.06), 0 14px 42px rgba(5, 11, 29, 0.045);
}

.steam-event-v2-overview__cards {
  display: grid;
  gap: 10px;
}

.steam-event-v2-overview__cards article {
  min-height: 132px;
  display: grid;
  align-content: end;
  gap: 8px;
  border-radius: 18px;
  padding: 18px;
  background: rgba(201, 248, 255, 0.36);
  box-shadow: inset 0 0 0 1px rgba(5, 11, 29, 0.08);
}

.steam-event-v2-overview__cards span {
  color: var(--bp-ink);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.steam-event-v2-overview__cards p {
  color: var(--bp-muted);
  font-size: 16px;
  font-weight: 780;
  line-height: 1.25;
}

.steam-event-v2-visit-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(22px, 3.5vw, 44px);
  align-items: end;
  padding: clamp(28px, 4vw, 46px);
  border-radius: 24px;
  background: rgba(201, 248, 255, 0.48);
}

.steam-event-v2-visit-panel__cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.steam-event-v2-visit-panel__cards article {
  min-height: 190px;
  display: grid;
  align-content: start;
  gap: 10px;
  border-radius: 18px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: inset 0 0 0 1px rgba(5, 11, 29, 0.08);
}

.steam-event-v2-visit-panel__cards article.is-featured {
  background: #fff;
}

.steam-event-v2-visit-panel__cards span,
.steam-event-v2-suits__grid span {
  color: var(--bp-blue-strong);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.08em;
  line-height: 1.1;
  text-transform: uppercase;
}

.steam-event-v2-visit-panel__cards strong {
  color: var(--bp-ink);
  font-size: clamp(21px, 1.8vw, 27px);
  font-weight: 950;
  line-height: 1;
}

.steam-event-v2-visit-panel__cards p {
  font-size: 15px;
  line-height: 1.22;
}

.steam-event-v2-visit-panel > .steam-event-v2-actions {
  grid-column: 1 / -1;
}

.steam-event-v2-suits {
  display: grid;
  gap: clamp(22px, 3.5vw, 42px);
  padding: clamp(30px, 5vw, 58px);
  border-radius: 24px;
  background: #030b20;
  color: #fff;
}

.steam-event-v2-suits h2,
.steam-event-v2-suits h3 {
  color: #fff;
}

.steam-event-v2-suits .steam-blueprint-kicker,
.steam-event-v2-final .steam-blueprint-kicker {
  color: var(--bp-blue);
}

.steam-event-v2-suits__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.steam-event-v2-suits__grid article {
  min-height: 246px;
  display: grid;
  align-content: end;
  gap: 12px;
  border-radius: 18px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.06);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.11);
}

.steam-event-v2-suits__grid span {
  color: var(--bp-blue);
}

.steam-event-v2-suits__grid h3 {
  font-size: clamp(25px, 3vw, 36px);
  font-weight: 930;
  line-height: 0.98;
}

.steam-event-v2-suits__grid p {
  color: rgba(255, 255, 255, 0.76);
  font-size: 16px;
  font-weight: 720;
  line-height: 1.32;
}

.steam-event-v2-reassurance {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(22px, 3.5vw, 44px);
  align-items: start;
  padding: clamp(28px, 4vw, 46px);
  border-radius: 24px;
  background: var(--bp-card);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.78), 0 18px 50px rgba(5, 11, 29, 0.06);
}

.steam-event-v2-reassurance__cards {
  display: grid;
  gap: 10px;
}

.steam-event-v2-reassurance__cards article {
  min-height: 112px;
  display: grid;
  align-content: start;
  gap: 8px;
  border-radius: 18px;
  padding: 18px;
  background: #fff;
  box-shadow: inset 0 0 0 1px rgba(5, 11, 29, 0.08);
}

.steam-event-v2-reassurance__cards span {
  color: var(--bp-blue-strong);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.steam-event-v2-reassurance__cards p {
  font-size: 16px;
  line-height: 1.28;
}

.steam-event-v2-included {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(22px, 4vw, 52px);
  align-items: start;
  padding: clamp(28px, 4vw, 46px);
  border-radius: 24px;
  background: #fff;
  box-shadow: inset 0 0 0 1px rgba(5, 11, 29, 0.06), 0 14px 42px rgba(5, 11, 29, 0.045);
}

.steam-event-v2-facilities {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 0;
  list-style: none;
}

.steam-event-v2-facilities li {
  min-height: 52px;
  display: flex;
  align-items: center;
  border-radius: 14px;
  padding: 12px 14px;
  background: #fff;
  box-shadow: inset 0 0 0 1px rgba(5, 11, 29, 0.08);
  color: var(--bp-ink);
  font-size: 15px;
  font-weight: 900;
  line-height: 1.15;
}

.steam-event-v2-community,
.steam-event-v2-final {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(20px, 3vw, 40px);
  padding: clamp(28px, 4vw, 46px);
  border-radius: 24px;
  background: rgba(201, 248, 255, 0.56);
}

.steam-event-v2-faq-section {
  display: grid;
  gap: 22px;
  padding: clamp(28px, 4vw, 46px);
  border-radius: 24px;
  background: var(--bp-card);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.78), 0 18px 50px rgba(5, 11, 29, 0.06);
}

.steam-event-v2-faqs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.steam-event-v2-faqs details {
  border-radius: 18px;
  background: #fff;
  box-shadow: inset 0 0 0 1px rgba(5, 11, 29, 0.08);
}

.steam-event-v2-faqs summary {
  min-height: 68px;
  display: flex;
  align-items: center;
  cursor: pointer;
  padding: 18px 20px;
  color: var(--bp-ink);
  font-size: clamp(18px, 1.6vw, 22px);
  font-weight: 930;
  line-height: 1.14;
}

.steam-event-v2-faqs p {
  padding: 0 20px 20px;
}

.steam-event-v2-final {
  background: #030b20;
  color: #fff;
}

.steam-event-v2-final h2,
.steam-event-v2-final p,
.steam-event-v2-final li {
  color: #fff;
}

@media (max-width: 900px) {
  .steam-event-v2-hero {
    min-height: 760px;
  }

  .steam-event-v2-facts,
  .steam-event-v2-glance,
  .steam-event-v2-overview,
  .steam-event-v2-visit-panel,
  .steam-event-v2-visit-panel__cards,
  .steam-event-v2-suits__grid,
  .steam-event-v2-reassurance,
  .steam-event-v2-included,
  .steam-event-v2-facilities,
  .steam-event-v2-faqs,
  .steam-event-v2-community,
  .steam-event-v2-final {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 560px) {
  .steam-event-v2 main {
    gap: 16px;
  }

  .steam-event-v2-hero {
    min-height: 720px;
    padding: 106px 18px 34px;
  }

  .steam-event-v2-hero__media::after {
    background:
      linear-gradient(180deg, rgba(3, 11, 32, 0.44) 0%, rgba(3, 11, 32, 0.28) 34%, rgba(3, 11, 32, 0.98) 100%);
  }

  .steam-event-v2-hero__media img {
    object-position: 56% center;
  }

  .steam-event-v2-hero h1 {
    font-size: clamp(38px, 10vw, 44px);
  }

  .steam-event-v2-hero .steam-event-v2-hero__pillars {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .steam-event-v2-hero .steam-event-v2-hero__pillars article {
    min-height: 98px;
  }

  .steam-event-v2-hero__notes {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
  }

  .steam-event-v2-hero__notes li,
  .steam-event-v2-actions a,
  .steam-event-v2-community > a {
    width: 100%;
  }

  .steam-event-v2-glance,
  .steam-event-v2-overview,
  .steam-event-v2-visit-panel,
  .steam-event-v2-suits,
  .steam-event-v2-reassurance,
  .steam-event-v2-included,
  .steam-event-v2-community,
  .steam-event-v2-faq-section,
  .steam-event-v2-final {
    width: min(100% - 24px, 1160px);
    padding: 24px;
    border-radius: 20px;
  }

  .steam-event-v2-glance h2,
  .steam-event-v2-overview h2,
  .steam-event-v2-visit-panel h2,
  .steam-event-v2-suits h2,
  .steam-event-v2-reassurance h2,
  .steam-event-v2-included h2,
  .steam-event-v2-community h2,
  .steam-event-v2-faq-section h2,
  .steam-event-v2-final h2 {
    font-size: clamp(30px, 8vw, 40px);
  }

  .steam-event-v2-facts article {
    min-height: 0;
  }

  .steam-event-v2-suits__grid article {
    min-height: 188px;
  }
}

/* v6 canonical typography standard. Keep after legacy responsive rules. */
.steam-blueprint-page {
  --v6-hero-title: 64px;
  --v6-h1: 48px;
  --v6-h2: 38px;
  --v6-h3: 30px;
  --v6-h4: 24px;
  --v6-body: 18px;
  --v6-small: 16px;
  --v6-caption: 14px;
  --v6-button: 17px;
  --v6-nav: 17px;
}

.steam-template-family .steam-template-page-hero .steam-blueprint-copy h1,
.steam-blueprint-page.steam-home-v4 .steam-home-v4-hero-overlay h1,
.steam-event-v2-hero h1 {
  font-size: var(--v6-hero-title);
}

.steam-membership-review-intro h1,
.design-pack-demo-intro h1,
.steam-component-gallery__intro h1 {
  font-size: var(--v6-h1);
}

.steam-template-family .steam-template-switcher h2,
.steam-template-family .steam-blueprint-logistics h2,
.steam-template-family .steam-blueprint-events h2,
.steam-template-family .steam-blueprint-facilities h2,
.steam-template-family .steam-blueprint-first h2,
.steam-template-family .steam-blueprint-faqs h2,
.steam-template-family .steam-blueprint-trust h2,
.steam-template-family .steam-blueprint-club h2,
.steam-template-family .steam-blueprint-venues h2,
.steam-blueprint-page.steam-home-v5 .steam-hours-prices-panel h2,
.steam-blueprint-page.steam-home-v5 .steam-address-directions-panel h2,
.steam-event-template .steam-event-section h2,
.steam-event-template .steam-event-final-cta h2,
.steam-membership-panel h2,
.steam-included-panel h2,
.steam-event-v2-glance h2,
.steam-event-v2-overview h2,
.steam-event-v2-visit-panel h2,
.steam-event-v2-suits h2,
.steam-event-v2-reassurance h2,
.steam-event-v2-included h2,
.steam-event-v2-community h2,
.steam-event-v2-faq-section h2,
.steam-event-v2-final h2,
.steam-component-coverage h2,
.steam-component-example__code h2 {
  font-size: var(--v6-h2);
}

.steam-template-family .steam-blueprint-event-grid h3,
.steam-template-family .steam-blueprint-facility-grid h3,
.steam-template-family .steam-blueprint-checklist h3,
.steam-template-family .steam-blueprint-trust h3,
.steam-template-family .steam-blueprint-club h3,
.steam-template-family .steam-blueprint-venues h3,
.steam-template-family .steam-blueprint-reassurance h2,
.steam-template-family .steam-blueprint-faqs summary,
.steam-blueprint-page.steam-home-v4 .steam-blueprint-club-step h4,
.steam-blueprint-page.steam-home-v5 .steam-hours-prices-panel__hours h3,
.steam-blueprint-page.steam-home-v5 .steam-address-directions-panel h3,
.steam-event-template .steam-event-section h3,
.steam-event-template .steam-event-faq-grid summary,
.steam-membership-panel__plans h3,
.steam-included-panel__strapline,
.steam-included-panel__plans h3,
.steam-about-event-panel__reasons-head h3,
.steam-event-v2-hero__time,
.steam-event-v2 h3 {
  font-size: var(--v6-h3);
}

.steam-about-event-panel__reason-grid h4 {
  font-size: var(--v6-h4);
}

.steam-template-family .steam-blueprint-menu-drawer__top strong {
  font-size: var(--v6-h4);
}

.steam-template-family .steam-blueprint-pillars strong,
.steam-template-family .steam-blueprint-price strong,
.steam-blueprint-page.steam-home-v4 .steam-blueprint-pass-choice-grid strong,
.steam-blueprint-page.steam-home-v4 .steam-blueprint-ultimate-pass strong,
.steam-blueprint-page.steam-home-v5 .steam-hours-prices-panel__price-grid strong,
.steam-blueprint-page.steam-home-v5 .steam-address-directions-panel__fact-grid strong,
.steam-blueprint-page.steam-home-v5 .steam-address-directions-panel__mini-grid strong,
.steam-event-template .steam-event-detail-strip strong,
.steam-event-template .steam-event-venue-grid strong,
.steam-membership-panel__plans strong,
.steam-event-v2-hero .steam-event-v2-hero__pillars strong,
.steam-event-v2-facts strong {
  font-size: var(--v6-h3);
}

.steam-template-family .steam-blueprint-copy > p:last-of-type,
.steam-template-family .steam-blueprint-logistics p,
.steam-template-family .steam-blueprint-facility-grid p,
.steam-template-family .steam-blueprint-first p,
.steam-template-family .steam-blueprint-checklist li,
.steam-template-family .steam-blueprint-faqs p,
.steam-template-family .steam-blueprint-trust p,
.steam-template-family .steam-blueprint-club p,
.steam-template-family .steam-blueprint-venues p,
.steam-blueprint-page.steam-home-v4 .steam-blueprint-facilities__intro,
.steam-blueprint-page.steam-home-v5 .steam-hours-prices-panel__note,
.steam-blueprint-page.steam-home-v5 .steam-address-directions-panel__lead,
.steam-event-template .steam-event-section p,
.steam-event-template .steam-event-final-cta p,
.steam-membership-review-intro p:not(.steam-blueprint-kicker),
.steam-membership-panel__lead,
.steam-membership-panel__plans p,
.steam-about-event-panel__reasons-head p:not(.steam-blueprint-kicker),
.steam-about-event-panel__reason-grid p,
.steam-included-panel__lead,
.steam-included-panel__plans p,
.steam-event-v2-hero__copy > p:not(.steam-blueprint-kicker):not(.steam-event-v2-hero__time),
.steam-event-v2 p {
  font-size: var(--v6-body);
}

.steam-blueprint-page.steam-home-v4 .steam-blueprint-whatsapp-list strong,
.steam-blueprint-page.steam-home-v4 .steam-blueprint-whatsapp-list span,
.steam-blueprint-page.steam-home-v4 .steam-blueprint-facilities__list-card h3,
.steam-blueprint-page.steam-home-v4 .steam-blueprint-facilities__list-card li,
.steam-blueprint-page.steam-home-v4 .steam-blueprint-included-line,
.steam-blueprint-page.steam-home-v5 .steam-hours-prices-panel__hours dt,
.steam-blueprint-page.steam-home-v5 .steam-hours-prices-panel__hours dd,
.steam-blueprint-page.steam-home-v5 .steam-address-directions-panel__route-list dt,
.steam-blueprint-page.steam-home-v5 .steam-address-directions-panel__route-list dd,
.steam-blueprint-page.steam-home-v5 .steam-address-directions-panel__travel-grid span,
.steam-blueprint-page.steam-home-v5 .steam-address-directions-panel__fact-grid p,
.steam-blueprint-page.steam-home-v5 .steam-address-directions-panel__mini-grid p,
.steam-blueprint-page.steam-home-v5 .steam-address-directions-panel__card p,
.steam-blueprint-page.steam-home-v5 .steam-address-directions-panel__note,
.steam-blueprint-page.steam-home-v5 .steam-address-directions-panel__note-grid p,
.steam-event-template .steam-event-note-list dt,
.steam-event-template .steam-event-note-list dd,
.steam-event-template .steam-event-venue-grid p,
.steam-event-template .steam-event-faq-grid p,
.steam-about-event-panel__source-note,
.steam-included-panel__plans p,
.steam-component-coverage__grid a {
  font-size: var(--v6-small);
}

.steam-blueprint-kicker,
.steam-template-family .steam-blueprint-pillars span,
.steam-template-family .steam-blueprint-price span,
.steam-blueprint-page.steam-home-v4 .steam-blueprint-pass-label,
.steam-blueprint-page.steam-home-v4 .steam-blueprint-pass-choice-grid article span,
.steam-blueprint-page.steam-home-v4 .steam-blueprint-included-line strong,
.steam-blueprint-page.steam-home-v4 .steam-blueprint-venue-grid span,
.steam-blueprint-page.steam-home-v5 .steam-hours-prices-panel__price-grid span,
.steam-blueprint-page.steam-home-v5 .steam-hours-prices-panel__price-grid p,
.steam-blueprint-page.steam-home-v5 .steam-address-directions-panel__fact-grid span,
.steam-blueprint-page.steam-home-v5 .steam-address-directions-panel__mini-grid span,
.steam-blueprint-page.steam-home-v5 .steam-address-directions-panel__note-grid span,
.steam-event-template .steam-event-detail-strip span,
.steam-event-template .steam-event-card-grid span,
.steam-event-v2-hero__notes li,
.steam-event-v2-hero .steam-event-v2-hero__pillars span,
.steam-membership-panel__plans span,
.steam-included-panel__plans span,
.steam-about-event-panel__reason-grid span,
.steam-membership-review-back,
.component-code {
  font-size: var(--v6-caption);
}

.steam-blueprint-brand,
.steam-blueprint-header nav a,
.steam-template-family .steam-blueprint-brand,
.steam-template-family .steam-blueprint-menu-drawer__top strong,
.steam-template-family .steam-blueprint-menu-drawer__main a,
.steam-template-family .steam-blueprint-menu-drawer__cards strong,
.steam-template-family .drawer-event-icon span {
  font-size: var(--v6-nav);
}

.steam-template-family .steam-blueprint-menu-drawer__main span,
.steam-template-family .steam-blueprint-menu-drawer__top small,
.steam-template-family .steam-blueprint-menu-drawer__section p,
.steam-template-family .steam-blueprint-menu-drawer__cards span,
.steam-template-family .steam-blueprint-menu-drawer__cards small {
  font-size: var(--v6-caption);
}

.steam-blueprint-phone,
.steam-blueprint-menu-toggle,
.steam-blueprint-menu-drawer button,
.steam-blueprint-actions a,
.steam-blueprint-logistics-actions a,
.steam-blueprint-section-button,
.steam-blueprint-trust a,
.steam-blueprint-form button,
.steam-blueprint-venue-grid a,
.steam-template-switcher__links a,
.steam-blueprint-menu-drawer__actions a,
.steam-blueprint-page.steam-home-v4 .steam-blueprint-whatsapp-button,
.steam-blueprint-page.steam-home-v5 .steam-address-directions-panel__button,
.steam-event-template .steam-event-final-cta__actions a,
.steam-about-event-panel__cta,
.steam-event-v2-actions a,
.steam-event-v2-community > a {
  font-size: var(--v6-button);
  font-weight: 600;
}

@media (max-width: 560px) {
  .steam-blueprint-page {
    --v6-hero-title: 42px;
    --v6-h1: 36px;
    --v6-h2: 30px;
    --v6-h3: 24px;
    --v6-h4: 20px;
    --v6-body: 16px;
    --v6-small: 15px;
    --v6-caption: 14px;
    --v6-button: 17px;
    --v6-nav: 16px;
  }
}

/* v6 typography standard: targeted legacy override residue. */
.steam-template-family .steam-blueprint-menu-toggle,
.steam-template-family .steam-blueprint-menu-toggle > span,
.steam-blueprint-page.steam-home-v3 .steam-home-v3-mobile-menu,
.steam-blueprint-page.steam-home-v3 .steam-home-v3-mobile-menu > span,
.steam-template-family .steam-blueprint-menu-drawer__actions a,
.steam-blueprint-page.steam-home-v4 .steam-blueprint-event-card strong,
.steam-blueprint-page.steam-home-v4 .steam-blueprint-venue-grid strong,
.steam-blueprint-page.steam-home-v4 .steam-blueprint-whatsapp-button,
.steam-blueprint-page.steam-home-v4 .steam-blueprint-faqs--home-v4 > .steam-blueprint-section-button {
  font-size: var(--v6-button);
  font-weight: 600;
}

.steam-blueprint-page.steam-home-v4 .steam-blueprint-event-card h3,
.steam-blueprint-page.steam-home-v4 .steam-blueprint-pass-choice-grid h3,
.steam-blueprint-page.steam-home-v4 .steam-blueprint-ultimate-pass h3 {
  font-size: var(--v6-h3);
}

.steam-blueprint-page.steam-home-v4 .steam-blueprint-passes h2 {
  font-size: var(--v6-h2);
}

.steam-blueprint-page.steam-home-v4 .steam-blueprint-club-step h4 {
  font-size: var(--v6-h4);
}

.steam-blueprint-page.steam-home-v4 .steam-blueprint-facilities__list-card h3 {
  font-size: var(--v6-h3);
}

.steam-blueprint-page.steam-home-v4 .steam-blueprint-first h2 {
  font-size: var(--v6-h2);
}

.steam-blueprint-page.steam-home-v4 .steam-blueprint-event-card p {
  font-size: var(--v6-body);
}

.steam-blueprint-page.steam-home-v4 .steam-blueprint-event-card span,
.steam-blueprint-page.steam-home-v4 .steam-blueprint-pass-label,
.steam-blueprint-page.steam-home-v4 .steam-blueprint-pass-choice-grid span,
.steam-blueprint-page.steam-home-v4 .steam-blueprint-ultimate-pass span,
.steam-blueprint-form label,
.steam-blueprint-checkbox span,
.steam-blueprint-footer,
.steam-blueprint-footer p,
.steam-blueprint-footer a {
  font-size: var(--v6-caption);
}

.steam-template-family .steam-blueprint-menu-drawer__cards strong {
  font-size: var(--v6-small);
}

.steam-template-family .drawer-event-icon span {
  font-size: var(--v6-caption);
}
