:root {
  --bg: #07090f;
  --bg-soft: #0d1420;
  --surface: rgba(11, 17, 27, 0.84);
  --surface-strong: rgba(9, 13, 20, 0.94);
  --surface-quiet: rgba(18, 28, 42, 0.78);
  --line: rgba(255, 255, 255, 0.10);
  --line-strong: rgba(216, 165, 94, 0.36);
  --text: #f2ede3;
  --muted: #b9c1cf;
  --electric: #3995e8;
  --rose: #f05a90;
  --gold: #d8a45e;
  --smoke: #6d7788;
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.34);
  --radius-xl: 34px;
  --radius-lg: 28px;
  --radius-md: 22px;
  --radius-sm: 16px;
  --container: 1220px;
  --font-body: "Trebuchet MS", "Segoe UI", Tahoma, sans-serif;
  --font-display: "Arial Narrow", "Franklin Gothic Medium", Impact, sans-serif;
  --img-stage-photo: url("https://bluescrew.pages.dev/assets/stage-photo.webp?v=20260419b");
  --img-portrait-photo: url("https://bluescrew.pages.dev/assets/portrait-photo.webp?v=20260419b");
  --img-shadeplay-cover: url("https://bluescrew.pages.dev/assets/shadeplay-cover.webp?v=20260419b");
  --img-mess-cover: url("https://bluescrew.pages.dev/assets/mess-cover.webp?v=20260419b");
  --img-question-cover: url("https://bluescrew.pages.dev/assets/question-cover.webp?v=20260419b");
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--text);
  font: 16px/1.6 var(--font-body);
  background:
    radial-gradient(circle at 16% 0%, rgba(57, 149, 232, 0.16), transparent 26%),
    radial-gradient(circle at 84% 12%, rgba(240, 90, 144, 0.14), transparent 20%),
    radial-gradient(circle at 55% 100%, rgba(216, 164, 94, 0.12), transparent 30%),
    linear-gradient(180deg, #07090f 0%, #0a1018 48%, #06080d 100%);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.14;
  background:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.9), transparent 96%);
}

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

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  padding: 0.85rem 1rem;
  background: var(--gold);
  color: #111;
  z-index: 1000;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

.ambient {
  position: fixed;
  inset: auto;
  width: 34rem;
  height: 34rem;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(80px);
  opacity: 0.18;
  z-index: 0;
}

.ambient-blue {
  top: -10rem;
  left: -8rem;
  background: rgba(57, 149, 232, 0.46);
}

.ambient-rose {
  top: 12rem;
  right: -10rem;
  background: rgba(240, 90, 144, 0.28);
}

.ambient-gold {
  bottom: 2rem;
  left: 38%;
  background: rgba(216, 164, 94, 0.24);
}

.page-shell {
  position: relative;
  z-index: 1;
  width: min(100% - 32px, var(--container));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 14px;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 14px;
  padding: 14px 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(10, 15, 23, 0.72);
  backdrop-filter: blur(16px);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.16);
}

.brand,
h1,
h2,
h3,
.link-tile strong {
  margin: 0;
  font-family: var(--font-display);
  letter-spacing: 0.04em;
}

.brand {
  font-size: 1.9rem;
  line-height: 1;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem 1.35rem;
  color: var(--muted);
  font-size: 0.94rem;
}

.site-nav a {
  transition:
    color 0.25s ease,
    background-color 0.25s ease,
    border-color 0.25s ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--text);
}

.header-cta,
.button,
.release-body a,
.live-card a {
  transition:
    transform 0.25s ease,
    background-color 0.25s ease,
    border-color 0.25s ease,
    color 0.25s ease;
}

.header-cta {
  padding: 0.74rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(216, 164, 94, 0.5);
  color: var(--gold);
  font-weight: 600;
}

.header-cta:hover,
.header-cta:focus-visible,
.button:hover,
.button:focus-visible,
.release-body a:hover,
.release-body a:focus-visible,
.live-card a:hover,
.live-card a:focus-visible,
.link-tile:hover,
.link-tile:focus-visible {
  transform: translateY(-2px);
}

.section {
  padding: 4.8rem 0;
}

main section[id] {
  scroll-margin-top: 112px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 2rem;
  align-items: center;
  min-height: calc(100vh - 112px);
  padding-top: 3rem;
}

.eyebrow,
.section-kicker,
.panel-kicker,
.release-meta,
.live-tag,
.palette-chip {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.74rem;
}

.eyebrow,
.section-kicker,
.panel-kicker,
.release-meta,
.live-tag {
  color: var(--gold);
}

.hero h1 {
  margin-top: 0.45rem;
  font-size: clamp(5rem, 10vw, 9.2rem);
  line-height: 0.86;
}

.hero-lead {
  max-width: 40rem;
  margin: 1.25rem 0 0;
  color: var(--muted);
  font-size: clamp(1.08rem, 1.8vw, 1.24rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.85rem 1.35rem;
  border-radius: 999px;
  font-weight: 600;
}

.button-primary {
  background: linear-gradient(135deg, #e1a859, #f3bd72);
  color: #1a1208;
}

.button-secondary {
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.03);
}

.hero-signals {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.8rem;
}

.hero-signals span {
  padding: 0.52rem 0.82rem;
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 999px;
  background: rgba(12, 20, 31, 0.55);
  color: #d8dfeb;
  font-size: 0.9rem;
}

.hero-quote {
  position: relative;
  max-width: 30rem;
  margin-top: 2.1rem;
  padding: 1.05rem 1.1rem 1rem 1.35rem;
  border-left: 2px solid var(--gold);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  background: linear-gradient(135deg, rgba(216, 164, 94, 0.10), rgba(57, 149, 232, 0.04));
}

.hero-quote p {
  margin: 0;
  font-size: 1.06rem;
}

.quote-mark {
  position: absolute;
  top: -0.35rem;
  left: 0.45rem;
  color: rgba(216, 164, 94, 0.26);
  font-size: 3rem;
}

.hero-visual {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 290px;
  gap: 1.2rem;
  align-items: end;
}

.hero-stage-card,
.portrait-card,
.release-callout,
.statement-card,
.photo-panel,
.gallery-card,
.release-card,
.live-card,
.link-tile,
.notice {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.hero-stage-card {
  min-height: 690px;
  border-radius: var(--radius-xl);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 18%),
    rgba(9, 15, 24, 0.88);
}

.hero-stage-card::after,
.photo-panel::after,
.gallery-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(9, 13, 20, 0.06), rgba(7, 9, 15, 0.54) 74%, rgba(7, 9, 15, 0.94) 100%);
  pointer-events: none;
}

.stage-card-copy,
.gallery-copy {
  position: absolute;
  z-index: 2;
  left: 1.35rem;
  right: 1.35rem;
  bottom: 1.2rem;
}

.stage-card-copy strong,
.gallery-copy p,
.portrait-copy p,
.release-callout-copy p,
.statement-card p,
.release-body p,
.live-card p,
.link-tile span,
.notice,
.hero-lead {
  color: var(--muted);
}

.stage-card-copy strong {
  display: block;
  margin-top: 0.45rem;
  max-width: 18rem;
  font-size: 1rem;
  line-height: 1.45;
  color: #edf2fb;
}

.hero-stack {
  display: grid;
  gap: 1rem;
}

.portrait-card {
  min-height: 374px;
  background: rgba(10, 16, 24, 0.92);
}

.portrait-copy {
  position: absolute;
  z-index: 2;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  padding: 0.9rem 1rem;
  border-radius: 18px;
  background: rgba(8, 12, 19, 0.72);
  backdrop-filter: blur(14px);
}

.portrait-copy p {
  margin: 0.45rem 0 0;
}

.release-callout {
  padding: 1rem;
  background:
    radial-gradient(circle at top left, rgba(57, 149, 232, 0.12), transparent 30%),
    rgba(9, 15, 23, 0.94);
}

.release-callout-row {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 1rem;
  margin-top: 0.7rem;
  align-items: center;
}

.release-callout-copy strong {
  display: block;
  font-size: 1.56rem;
  line-height: 0.95;
  font-family: "Bebas Neue", sans-serif;
  letter-spacing: 0.04em;
}

.release-callout-copy p {
  margin: 0.4rem 0 0.45rem;
}

.release-callout-copy a,
.release-body a,
.live-card a {
  color: #efc17d;
  font-weight: 600;
}

.photo-layer,
.cover-layer {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  will-change: transform;
}

.photo-layer {
  position: absolute;
  inset: -5%;
  transform: translate3d(0, var(--parallax-y, 0px), 0) scale(1.06);
  filter: saturate(1.04) contrast(1.02);
}

.cover-layer {
  display: block;
  transform: translate3d(0, var(--parallax-y, 0px), 0);
}

.photo-stage-main {
  background-image:
    linear-gradient(140deg, rgba(8, 20, 36, 0.55), rgba(240, 90, 144, 0.14) 52%, rgba(216, 164, 94, 0.12)),
    var(--img-stage-photo);
  background-position: center 26%;
}

.photo-stage-wide {
  background-image:
    linear-gradient(140deg, rgba(8, 20, 36, 0.38), rgba(57, 149, 232, 0.08) 45%, rgba(240, 90, 144, 0.14)),
    var(--img-stage-photo);
  background-position: center 18%;
}

.photo-stage-crowd {
  background-image:
    linear-gradient(135deg, rgba(8, 20, 36, 0.28), rgba(240, 90, 144, 0.16) 58%, rgba(216, 164, 94, 0.12)),
    var(--img-stage-photo);
  background-position: center 12%;
}

.photo-portrait {
  background-image:
    linear-gradient(180deg, rgba(7, 9, 15, 0.14), rgba(7, 9, 15, 0.60)),
    var(--img-portrait-photo);
  background-position: 56% 25%;
}

.photo-portrait-alt {
  background-image:
    linear-gradient(180deg, rgba(8, 12, 20, 0.22), rgba(8, 12, 20, 0.72)),
    var(--img-portrait-photo);
  background-position: 60% 22%;
}

.cover-shadeplay {
  background-image: var(--img-shadeplay-cover);
}

.cover-mess {
  background-image: var(--img-mess-cover);
}

.cover-question {
  background-image: var(--img-question-cover);
}

.cover-mini {
  width: 92px;
  aspect-ratio: 1;
  border-radius: 18px;
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.28);
}

.ticker {
  overflow: hidden;
  margin: 0 -16px;
  padding: 0.95rem 0;
  border-block: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(57, 149, 232, 0.08), rgba(240, 90, 144, 0.08), rgba(216, 164, 94, 0.08)),
    rgba(6, 10, 16, 0.76);
}

.ticker-track {
  display: inline-flex;
  gap: 2rem;
  min-width: max-content;
  padding-left: 2rem;
  color: #dde4ef;
  animation: ticker 28s linear infinite;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.84rem;
}

.ticker-track span::before {
  content: "•";
  display: inline-block;
  margin-right: 2rem;
  color: var(--gold);
}

.section-heading {
  display: grid;
  gap: 0.45rem;
  margin-bottom: 2rem;
}

.section-heading h2 {
  font-size: clamp(2.7rem, 4vw, 4.4rem);
  line-height: 0.94;
}

.manifesto-grid,
.gallery-grid,
.release-grid,
.live-grid,
.link-grid {
  display: grid;
  gap: 1.25rem;
}

.manifesto-grid {
  grid-template-columns: minmax(0, 0.94fr) minmax(0, 1.18fr) minmax(0, 0.94fr);
  align-items: stretch;
}

.statement-card,
.live-card,
.notice {
  padding: 1.45rem;
}

.statement-card {
  background:
    radial-gradient(circle at top right, rgba(57, 149, 232, 0.10), transparent 34%),
    rgba(14, 25, 39, 0.84);
}

.statement-card p,
.release-body p,
.live-card p,
.link-tile span,
.gallery-copy p {
  margin: 0.6rem 0 0;
}

.photo-panel {
  min-height: 460px;
  background: rgba(10, 15, 24, 0.90);
}

.panel-float {
  position: absolute;
  z-index: 2;
  top: 1rem;
  right: 1rem;
  padding: 0.55rem 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 999px;
  background: rgba(8, 12, 19, 0.68);
  color: #edf2fb;
  font-size: 0.86rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.palette-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.3rem;
}

.palette-chip {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0.65rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #edf2fb;
}

.palette-chip-blue {
  background: rgba(57, 149, 232, 0.18);
}

.palette-chip-rose {
  background: rgba(240, 90, 144, 0.18);
}

.palette-chip-gold {
  background: rgba(216, 164, 94, 0.18);
}

.palette-chip-smoke {
  background: rgba(109, 119, 136, 0.22);
}

.gallery-grid {
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.12fr) minmax(0, 0.96fr);
  grid-template-areas:
    "tall wide wide"
    "tall stack stack";
}

.gallery-card {
  min-height: 360px;
  background: var(--surface-strong);
}

.gallery-card-tall {
  grid-area: tall;
  min-height: 760px;
}

.gallery-card-wide {
  grid-area: wide;
}

.gallery-card-stack {
  grid-area: stack;
  padding: 1.2rem;
  background:
    radial-gradient(circle at top left, rgba(57, 149, 232, 0.10), transparent 28%),
    rgba(10, 14, 22, 0.94);
}

.gallery-copy-inline {
  bottom: 1rem;
  padding: 1rem 1.1rem;
  border-radius: 18px;
  background: rgba(8, 12, 19, 0.68);
  backdrop-filter: blur(12px);
}

.cover-cluster {
  position: relative;
  min-height: 320px;
}

.cover-cluster .cover-layer {
  position: absolute;
  border-radius: 24px;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.30);
}

.cover-cluster .cover-shadeplay {
  inset: 0 48% 16% 0;
  transform: translate3d(0, var(--parallax-y, 0px), 0) rotate(-7deg);
}

.cover-cluster .cover-mess {
  inset: 8% 22% 8% 26%;
  transform: translate3d(0, var(--parallax-y, 0px), 0) rotate(5deg);
}

.cover-cluster .cover-question {
  inset: 14% 0 0 56%;
  transform: translate3d(0, var(--parallax-y, 0px), 0) rotate(9deg);
}

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

.release-card {
  display: flex;
  flex-direction: column;
  background: rgba(9, 13, 20, 0.94);
}

.release-visual {
  position: relative;
  min-height: 272px;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.release-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 12, 18, 0.08), rgba(8, 12, 18, 0.60));
  pointer-events: none;
}

.release-visual .cover-layer {
  position: absolute;
  inset: 22px;
  border-radius: 26px;
  box-shadow: 0 22px 44px rgba(0, 0, 0, 0.28);
}

.release-visual-shadeplay {
  background:
    radial-gradient(circle at top right, rgba(57, 149, 232, 0.16), transparent 26%),
    rgba(12, 24, 38, 0.92);
}

.release-visual-mess {
  background:
    radial-gradient(circle at top left, rgba(240, 90, 144, 0.22), transparent 24%),
    rgba(18, 10, 18, 0.92);
}

.release-visual-question {
  background:
    radial-gradient(circle at top right, rgba(216, 164, 94, 0.16), transparent 24%),
    rgba(10, 17, 25, 0.92);
}

.release-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 0.8rem;
  padding: 1.25rem;
}

.release-body h3,
.live-card h3 {
  font-size: 2.1rem;
  line-height: 0.96;
}

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

.live-card {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  background:
    radial-gradient(circle at top right, rgba(57, 149, 232, 0.12), transparent 32%),
    radial-gradient(circle at bottom left, rgba(240, 90, 144, 0.10), transparent 28%),
    rgba(13, 21, 32, 0.86);
}

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

.link-tile {
  display: flex;
  min-height: 164px;
  flex-direction: column;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 1.2rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0) 34%),
    rgba(12, 18, 29, 0.88);
}

.link-tile strong {
  font-size: 2rem;
}

.notice {
  margin-top: 1.25rem;
  background: linear-gradient(135deg, rgba(216, 164, 94, 0.14), rgba(57, 149, 232, 0.08));
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.8rem;
  padding: 1.5rem 0 2.4rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(185, 193, 207, 0.74);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

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

.js-enhanced .reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
  transition-delay: var(--delay, 0ms);
}

.js-enhanced .reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

@keyframes ticker {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 1180px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-visual {
    grid-template-columns: minmax(0, 1fr);
  }

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

  .manifesto-grid,
  .gallery-grid,
  .release-grid,
  .live-grid,
  .link-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gallery-grid {
    grid-template-areas:
      "wide wide"
      "tall stack";
  }
}

@media (max-width: 860px) {
  .page-shell {
    width: min(100% - 20px, var(--container));
  }

  .site-header {
    position: static;
    top: auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 0.9rem;
    padding: 14px;
    border-radius: 24px;
  }

  .site-nav {
    grid-column: 1 / -1;
    justify-content: flex-start;
    flex-wrap: nowrap;
    gap: 0.65rem;
    width: 100%;
    overflow-x: auto;
    padding-bottom: 0.2rem;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .site-nav::-webkit-scrollbar {
    display: none;
  }

  .site-nav a {
    flex: 0 0 auto;
    padding: 0.56rem 0.84rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.03);
    white-space: nowrap;
  }

  .header-cta {
    justify-self: end;
  }

  main section[id] {
    scroll-margin-top: 28px;
  }

  .hero {
    gap: 1.55rem;
    padding-top: 1.5rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .button {
    width: 100%;
  }

  .hero-stage-card {
    min-height: 520px;
  }

  .hero-stack {
    grid-template-columns: 1fr;
  }

  .manifesto-grid,
  .gallery-grid,
  .release-grid,
  .live-grid,
  .link-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-areas:
      "wide"
      "tall"
      "stack";
  }

  .gallery-card-tall {
    min-height: 560px;
  }

  .site-footer {
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  .site-header {
    grid-template-columns: 1fr;
    gap: 0.75rem;
    margin-top: 10px;
    padding: 12px;
  }

  .brand {
    font-size: 1.65rem;
  }

  .header-cta {
    justify-self: stretch;
    text-align: center;
  }

  .site-nav {
    gap: 0.55rem;
    padding-bottom: 0.1rem;
  }

  .site-nav a {
    padding: 0.5rem 0.72rem;
    font-size: 0.84rem;
  }

  .section {
    padding: 3.2rem 0;
  }

  .hero {
    gap: 1.2rem;
    padding-top: 1.2rem;
  }

  .hero h1 {
    font-size: clamp(3.4rem, 22vw, 5rem);
  }

  .hero-lead {
    font-size: 1rem;
  }

  .hero-stage-card {
    min-height: 340px;
  }

  .portrait-card {
    min-height: 320px;
  }

  .stage-card-copy,
  .gallery-copy {
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
  }

  .section-heading h2 {
    font-size: clamp(2.15rem, 11vw, 3rem);
  }

  .hero-signals {
    gap: 0.55rem;
  }

  .hero-signals span {
    padding: 0.46rem 0.68rem;
    font-size: 0.82rem;
  }

  .ticker {
    margin-inline: -10px;
  }

  .release-callout-row {
    grid-template-columns: 76px 1fr;
  }

  .cover-mini {
    width: 76px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .ticker-track {
    animation: none;
  }

  .js-enhanced .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .photo-layer,
  .cover-layer {
    transform: none !important;
  }

  .header-cta,
  .button,
  .release-body a,
  .live-card a,
  .link-tile {
    transition: none;
  }
}
