body {
  --go-home-bg: #f5f7fa;
  --go-home-surface: #ffffff;
  --go-home-surface-2: #f8fafc;
  --go-home-border: #e5e7eb;
  --go-home-title: #111111;
  --go-home-text: #374151;
  --go-home-soft: #6b7280;
  --go-home-accent: #c7f000;
  --go-home-link: #2800f0;
  --go-home-hover: var(--go-home-link);
  --go-home-pop: #ff4f7a;
  --go-home-playstation: #006fcd;
  --go-home-xbox: #107c10;
  --go-home-nintendo: #e60012;
  --go-home-pc: #42c8ff;
  --go-home-mobile: #ff8a00;
  --go-home-shadow: 0 20px 40px rgba(15, 23, 42, 0.08);
  background: var(--go-home-bg);
  color: var(--go-home-text);
}

html.dark body,
html[class*="dark"] body,
body.dark,
body.dark-mode,
body.is-dark-theme,
body.newsx-dark-mode,
body[class*="dark"],
[data-theme="dark"] body,
body[data-theme="dark"] {
  --go-home-bg: #05070b;
  --go-home-surface: #0f0f12;
  --go-home-surface-2: #111318;
  --go-home-border: #1f2937;
  --go-home-title: #f5f7fa;
  --go-home-text: #d1d5db;
  --go-home-soft: #a8b0bd;
  --go-home-accent: #c7f000;
  --go-home-link: #2800f0;
  --go-home-hover: var(--go-home-accent);
  --go-home-pop: #ff5d86;
  --go-home-playstation: #4ea6ff;
  --go-home-xbox: #44c54a;
  --go-home-nintendo: #ff445c;
  --go-home-pc: #73d9ff;
  --go-home-mobile: #ff9b43;
  --go-home-shadow: 0 22px 44px rgba(0, 0, 0, 0.24);
}

body,
body #page,
body .site-content {
  background: var(--go-home-bg);
}

.go-home-page,
.go-home-page * {
  box-sizing: border-box;
}

.go-home-page {
  color: var(--go-home-text);
  padding: 0 0 clamp(4rem, 6vw, 5rem);
}

.go-home-shell {
  width: min(92rem, calc(100% - 2rem));
  margin: 0 auto;
}

@media (min-width: 1200px) {
  .go-home-shell {
    width: min(calc(100% - (var(--go-main-padding) * 2)), calc(var(--go-shell-current-wide) + 2rem));
    max-width: calc(var(--go-shell-current-wide) + 2rem);
    margin-right: auto;
    margin-left: max(0px, calc(((100% - (var(--go-shell-current-wide) + 2rem)) / 2) - 0.9rem));
  }

  body.has-offcanvas-open .go-home-shell {
    width: min(calc(100% - (var(--go-main-padding) * 2)), calc(var(--go-shell-current-wide) + 1rem));
    max-width: calc(var(--go-shell-current-wide) + 1rem);
    margin-left: max(0px, calc(((100% - (var(--go-shell-current-wide) + 1rem)) / 2) - 0.5rem));
  }

  .go-home-hero {
    width: calc(100% + var(--go-main-gutter));
    margin-left: calc(-1 * var(--go-main-gutter));
  }

  .go-home-hero-copy {
    max-width: 54rem;
  }
}

.go-home-shell > * + * {
  margin-top: clamp(2.5rem, 4vw, 4rem);
}

.go-home-page a {
  color: inherit;
  text-decoration: none;
  transition: color 0.18s ease, border-color 0.18s ease, background-color 0.18s ease, transform 0.18s ease,
    opacity 0.18s ease;
}

.go-home-page a:hover {
  color: var(--go-home-hover);
}

.go-home-page a:focus-visible,
.go-home-page button:focus-visible {
  outline: 2px solid var(--go-home-link);
  outline-offset: 3px;
}

.go-home-page button {
  font: inherit;
}

.go-home-hero,
.go-home-section {
  scroll-margin-top: 2rem;
}

.go-home-shell > .go-home-section {
  position: relative;
}

.go-home-shell > .go-home-section + .go-home-section {
  padding-top: clamp(1.35rem, 1.9vw, 1.75rem);
}

.go-home-shell > .go-home-section + .go-home-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    rgba(148, 163, 184, 0),
    rgba(148, 163, 184, 0.16) 12%,
    rgba(148, 163, 184, 0.32) 50%,
    rgba(148, 163, 184, 0.16) 88%,
    rgba(148, 163, 184, 0)
  );
}

html.dark .go-home-shell > .go-home-section + .go-home-section::before,
html[class*="dark"] .go-home-shell > .go-home-section + .go-home-section::before,
body.dark .go-home-shell > .go-home-section + .go-home-section::before,
body.dark-mode .go-home-shell > .go-home-section + .go-home-section::before,
body.newsx-dark-mode .go-home-shell > .go-home-section + .go-home-section::before,
body[class*="dark"] .go-home-shell > .go-home-section + .go-home-section::before {
  background: linear-gradient(
    90deg,
    rgba(148, 163, 184, 0),
    rgba(148, 163, 184, 0.22) 12%,
    rgba(148, 163, 184, 0.38) 50%,
    rgba(148, 163, 184, 0.22) 88%,
    rgba(148, 163, 184, 0)
  );
}

.go-home-label,
.go-home-badge,
.go-home-platform-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2rem;
  padding: 0.28rem 0.72rem;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1;
  white-space: nowrap;
}

.go-home-label {
  background: rgba(148, 163, 184, 0.16);
  color: var(--go-home-title);
}

.go-home-badge,
.go-home-platform-pill {
  color: #111111;
  background: var(--go-home-accent);
}

.go-home-badge:hover,
.go-home-platform-pill:hover {
  color: inherit;
  opacity: 0.94;
}

.go-home-label--lime,
.go-home-badge--lime {
  background: var(--go-home-accent);
  color: #111111;
}

.go-home-page a.go-home-badge--lime,
.go-home-page a.go-home-badge--lime:hover,
.go-home-label--lime:hover,
.go-home-badge--lime:hover {
  color: #111111;
}

.go-home-label--blue,
.go-home-badge--blue {
  background: var(--go-home-link);
  color: #ffffff;
}

html.dark .go-home-badge--lime,
html[class*="dark"] .go-home-badge--lime,
body.dark .go-home-badge--lime,
body.dark-mode .go-home-badge--lime,
body.newsx-dark-mode .go-home-badge--lime,
body[class*="dark"] .go-home-badge--lime {
  color: #ffffff;
}

html.dark .go-home-page a.go-home-badge--lime,
html.dark .go-home-page a.go-home-badge--lime:hover,
html[class*="dark"] .go-home-page a.go-home-badge--lime,
html[class*="dark"] .go-home-page a.go-home-badge--lime:hover,
body.dark .go-home-page a.go-home-badge--lime,
body.dark .go-home-page a.go-home-badge--lime:hover,
body.dark-mode .go-home-page a.go-home-badge--lime,
body.dark-mode .go-home-page a.go-home-badge--lime:hover,
body.newsx-dark-mode .go-home-page a.go-home-badge--lime,
body.newsx-dark-mode .go-home-page a.go-home-badge--lime:hover,
body[class*="dark"] .go-home-page a.go-home-badge--lime,
body[class*="dark"] .go-home-page a.go-home-badge--lime:hover {
  color: #ffffff;
}

.go-home-label--pop,
.go-home-badge--pop {
  background: var(--go-home-pop);
  color: #ffffff;
}

.go-home-badge--playstation,
.go-home-label--playstation,
.go-home-platform-pill--playstation {
  background: var(--go-home-playstation);
  color: #ffffff;
}

.go-home-badge--xbox,
.go-home-label--xbox,
.go-home-platform-pill--xbox {
  background: var(--go-home-xbox);
  color: #ffffff;
}

.go-home-badge--nintendo,
.go-home-label--nintendo,
.go-home-platform-pill--nintendo {
  background: var(--go-home-nintendo);
  color: #ffffff;
}

.go-home-badge--pc,
.go-home-label--pc,
.go-home-platform-pill--pc {
  background: var(--go-home-pc);
  color: #111111;
}

.go-home-badge--mobile,
.go-home-label--mobile,
.go-home-platform-pill--mobile {
  background: var(--go-home-mobile);
  color: #111111;
}

.go-home-badge--default,
.go-home-label--default {
  background: rgba(148, 163, 184, 0.16);
  color: var(--go-home-title);
}

.go-home-hero .go-home-badge--lime,
.go-home-hero a.go-home-badge--lime,
.go-home-hero a.go-home-badge--lime:hover {
  color: #111111 !important;
}

.go-home-section--hero-strip .go-home-badge--lime,
.go-home-section--hero-strip a.go-home-badge--lime,
.go-home-section--hero-strip a.go-home-badge--lime:hover {
  color: #ffffff;
}

.go-home-section--hero-strip .go-home-badge--default,
.go-home-section--hero-strip .go-home-badge--pop,
.go-home-section--hero-strip .go-home-badge--playstation,
.go-home-section--hero-strip .go-home-badge--xbox,
.go-home-section--hero-strip .go-home-badge--nintendo,
.go-home-section--hero-strip .go-home-badge--pc,
.go-home-section--hero-strip .go-home-badge--mobile,
.go-home-section--hero-strip .go-home-badge--blue {
  color: #ffffff;
}

.go-home-section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.go-home-section-copy {
  display: grid;
  gap: 0.55rem;
}

.go-home-section-title {
  margin: 0;
  color: var(--go-home-title);
  font-size: clamp(1.55rem, 1.8vw, 2rem);
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: -0.03em;
}

.go-home-section-title-link {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
}

.go-home-section-title-link::after {
  content: "";
  width: 0.62rem;
  height: 0.62rem;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(45deg);
  margin-top: 0.08rem;
  flex: 0 0 auto;
}

.go-home-section-actions {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  position: relative;
  z-index: 3;
}

.go-home-carousel-nav {
  display: none;
  align-items: center;
  gap: 0.35rem;
  position: relative;
  z-index: 4;
}

html.go-home-enhanced .go-home-carousel-nav {
  display: inline-flex;
}

.go-home-arrow {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.2rem;
  height: 2.2rem;
  padding: 0;
  border: 1px solid var(--go-home-border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--go-home-title);
  cursor: pointer;
  flex: 0 0 auto;
  pointer-events: auto;
  z-index: 4;
}

html.dark .go-home-arrow,
html[class*="dark"] .go-home-arrow,
body.dark .go-home-arrow,
body.dark-mode .go-home-arrow,
body.newsx-dark-mode .go-home-arrow,
body[class*="dark"] .go-home-arrow {
  background: rgba(15, 15, 18, 0.9);
}

.go-home-arrow-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 0.95rem;
  height: 0.95rem;
  line-height: 1;
}

.go-home-arrow-icon .newsx-svg-icon {
  display: inline-flex;
  width: 100%;
  height: 100%;
}

.go-home-arrow-icon svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}

.go-home-arrow:hover {
  border-color: var(--go-home-link);
  color: var(--go-home-link);
}

.go-home-arrow.is-disabled,
.go-home-arrow:disabled {
  opacity: 0.34;
  cursor: default;
  border-color: var(--go-home-border);
  color: var(--go-home-soft);
}

.go-home-arrow.is-disabled:hover,
.go-home-arrow:disabled:hover {
  border-color: var(--go-home-border);
  color: var(--go-home-soft);
}

.go-home-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.75rem 1.2rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.go-home-button.is-hidden,
.go-home-player-meta.is-hidden {
  display: none;
}

.go-home-button--primary {
  background: var(--go-home-accent);
  color: #111111;
}

.go-home-page a.go-home-button--primary,
.go-home-button--primary:hover {
  color: #111111;
  opacity: 0.92;
}

.go-home-button--secondary {
  border-color: var(--go-home-border);
  background: rgba(255, 255, 255, 0.4);
  color: var(--go-home-title);
}

html.dark .go-home-button--secondary,
html[class*="dark"] .go-home-button--secondary,
body.dark .go-home-button--secondary,
body.dark-mode .go-home-button--secondary,
body.newsx-dark-mode .go-home-button--secondary,
body[class*="dark"] .go-home-button--secondary {
  background: rgba(17, 19, 24, 0.85);
}

.go-home-button--secondary:hover {
  border-color: var(--go-home-link);
  color: var(--go-home-link);
}

.go-home-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.65rem;
  color: var(--go-home-soft);
  font-size: 0.82rem;
}

.go-home-meta a {
  color: inherit;
}

.go-home-meta {
  gap: 0;
}

.go-home-meta > :not(.go-home-meta-separator) {
  display: inline-flex;
  align-items: center;
}

.go-home-meta > * + *::before {
  content: none;
}

.go-home-meta .go-home-meta-separator {
  display: inline-flex;
  flex: 0 0 auto;
  width: 0.3rem;
  height: 0.3rem;
  margin: 0 0.65rem;
  border-radius: 999px;
  background: currentColor;
  opacity: 0.72;
}

.go-home-meta > * + *::before {
  content: "•";
  margin-right: 0.65rem;
  color: var(--go-home-soft);
}

.go-home-meta {
  gap: 0;
}

.go-home-meta > :not(.go-home-meta-separator) {
  display: inline-flex;
  align-items: center;
}

.go-home-meta > * + *::before {
  content: none;
}

.go-home-meta .go-home-meta-separator {
  display: inline-flex;
  flex: 0 0 auto;
  width: 0.3rem;
  height: 0.3rem;
  margin: 0 0.65rem;
  border-radius: 999px;
  background: currentColor;
  opacity: 0.72;
}

.go-home-story-topline {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.55rem;
  color: var(--go-home-soft);
  font-size: 0.77rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.go-home-story-topline .go-home-badge {
  min-height: 1.72rem;
  padding: 0.22rem 0.62rem;
  font-size: 0.62rem;
}

.go-home-story-topline time {
  font-size: 0.72rem;
}

.go-home-hero {
  position: relative;
  margin-bottom: 0;
}

.go-home-hero-bleed {
  position: relative;
  min-height: clamp(43.5rem, 72vh, 52.5rem);
  overflow: clip;
  touch-action: pan-y;
}

.go-home-hero-bleed::after {
  content: none;
}

.go-home-hero-backdrop,
.go-home-hero-overlay {
  position: absolute;
  inset: 0;
}

.go-home-hero-backdrop {
  overflow: hidden;
  opacity: 0.92;
  -webkit-mask-image: linear-gradient(0deg, rgba(0, 0, 0, 0.74) 0%, rgba(0, 0, 0, 0.88) 34%, #000 76%);
  mask-image: linear-gradient(0deg, rgba(0, 0, 0, 0.74) 0%, rgba(0, 0, 0, 0.88) 34%, #000 76%);
}

.go-home-hero-backdrop-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transform: scale(1.025);
}

.go-home-hero-overlay {
  background:
    linear-gradient(
      0deg,
      rgba(5, 5, 5, 0.64) 0%,
      rgba(5, 5, 5, 0.48) 34%,
      rgba(5, 5, 5, 0.24) 70%,
      rgba(5, 5, 5, 0.12) 100%
    ),
    linear-gradient(90deg, rgba(5, 5, 5, 0.46) 0%, rgba(5, 5, 5, 0.18) 42%, rgba(5, 5, 5, 0.08) 100%);
}

.go-home-hero-hitarea {
  position: absolute;
  inset: 0;
  display: block;
  z-index: 2;
}

.go-home-hero-inner {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  min-height: inherit;
  padding: clamp(4.45rem, 7.8vw, 7.45rem) 0 clamp(6.5rem, 9.6vw, 8.9rem);
}

.go-home-hero-inner .go-home-shell {
  display: block;
}

.go-home-hero-copy {
  display: flex;
  flex-direction: column;
  gap: 1.28rem;
  max-width: 54rem;
  min-height: clamp(24.5rem, 50vh, 32.5rem);
  color: #ffffff;
  pointer-events: none;
}

.go-home-hero-copy > :not(.go-home-hero-switcher) {
  transform: translateY(clamp(1rem, 1.4vw, 1.8rem));
}

.go-home-hero-copy a,
.go-home-hero-copy button,
.go-home-hero-copy [role="button"],
.go-home-hero-switcher,
.go-home-hero-switcher * {
  pointer-events: auto;
}

.go-home-hero-topline {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  align-items: center;
}

.go-home-hero-topline .go-home-badge {
  min-height: 2.12rem !important;
  padding: 0.42rem 0.92rem !important;
  border: 1px solid rgba(255, 255, 255, 0.52) !important;
  border-radius: 0.68rem !important;
  background: transparent !important;
  color: #ffffff !important;
  font-size: 0.72rem !important;
  font-weight: 800 !important;
  letter-spacing: 0.13em !important;
  line-height: 1 !important;
}

.go-home-hero .go-home-hero-topline .go-home-badge,
.go-home-hero .go-home-hero-topline a.go-home-badge,
.go-home-hero .go-home-hero-topline a.go-home-badge:hover,
.go-home-hero .go-home-hero-topline a.go-home-badge:focus-visible {
  color: #ffffff !important;
}

.go-home-hero-title {
  margin: 0;
  color: #ffffff;
  font-family: "Sora", sans-serif;
  font-size: clamp(3.56rem, 6.75vw, 6.5rem);
  font-weight: 900;
  letter-spacing: -0.054em;
  line-height: 0.92;
  max-width: 12.8ch;
  text-wrap: balance;
  text-shadow: 0 8px 34px rgba(0, 0, 0, 0.34);
}

.go-home-hero-title a,
.go-home-hero-title a:hover {
  color: #ffffff;
}

.go-home-hero-dek {
  max-width: 43rem;
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-family: "Inter", "Sora", sans-serif;
  font-size: clamp(0.92rem, 1vw, 1.02rem);
  font-weight: 480;
  letter-spacing: -0.008em;
  line-height: 1.58;
  text-wrap: pretty;
  text-shadow: 0 1px 18px rgba(0, 0, 0, 0.18);
}

.go-home-hero .go-home-meta {
  gap: 0;
  color: rgba(243, 244, 246, 0.82);
  font-size: 0.94rem;
  font-weight: 680;
  letter-spacing: -0.01em;
  text-shadow: 0 1px 14px rgba(0, 0, 0, 0.16);
}

.go-home-hero .go-home-meta > * + *::before {
  content: none;
}

.go-home-hero .go-home-meta > :not(.go-home-meta-separator) {
  display: inline-flex;
  align-items: center;
  min-height: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.go-home-hero .go-home-meta .go-home-meta-separator {
  display: inline-flex;
  width: 0.32rem;
  height: 0.32rem;
  margin: 0 0.7rem;
  border-radius: 999px;
  background: currentColor;
  opacity: 0.72;
}

.go-home-hero .go-home-meta a:hover {
  color: #ffffff;
}

.go-home-hero .go-home-meta .go-home-meta-link {
  font-weight: 800;
}

.go-home-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.go-home-hero-dek.is-empty {
  display: none;
}

.go-home-hero-switcher {
  position: absolute;
  left: 50%;
  bottom: clamp(1.4rem, 2.65vw, 2.15rem);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.78rem;
  width: max-content;
  margin: 0;
  padding: 0;
  transform: translateX(-50%);
  z-index: 3;
}

.go-home-hero-switcher-button {
  width: 0.88rem;
  height: 0.88rem;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.34);
  cursor: pointer;
  transition:
    transform 0.18s ease,
    background-color 0.18s ease,
    opacity 0.18s ease;
}

.go-home-hero-switcher-button.is-active {
  background: #ffffff;
  transform: scale(1.18);
}

.go-home-hero-switcher-button:hover,
.go-home-hero-switcher-button:focus-visible {
  background: rgba(255, 255, 255, 0.74);
}

.go-home-hero-switcher-button:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.92);
  outline-offset: 0.18rem;
}

.go-home-section--hero-strip {
  position: relative;
  z-index: 2;
  margin-top: clamp(1.35rem, 2.4vw, 2rem);
}

@media (min-width: 1081px) {
  .go-home-hero-copy {
    max-width: 55rem;
  }

  .go-home-hero-topline .go-home-badge {
    min-height: 2.22rem !important;
    padding: 0.46rem 1rem !important;
    font-size: 0.74rem !important;
  }

  .go-home-hero-title {
    font-size: clamp(4.18rem, 5.7vw, 7.15rem);
  }

  .go-home-hero-dek {
    max-width: 47rem;
    font-size: clamp(1.08rem, 1.14vw, 1.24rem);
    line-height: 1.56;
  }

  .go-home-hero .go-home-meta {
    font-size: 1rem;
  }
}

@media (min-width: 1440px) {
  .go-home-hero-copy {
    gap: 1.42rem;
    max-width: 58rem;
    min-height: clamp(25.5rem, 52vh, 34rem);
  }

  .go-home-hero-topline .go-home-badge {
    min-height: 2.36rem !important;
    padding: 0.5rem 1.08rem !important;
    font-size: 0.8rem !important;
  }

  .go-home-hero h1.go-home-hero-title {
    max-width: 13.5ch;
    font-size: clamp(2.92rem, 3.25vw, 3.8rem) !important;
    font-weight: 900 !important;
    letter-spacing: -0.035em !important;
    line-height: 0.96 !important;
  }

  .go-home-hero-dek {
    max-width: 50rem;
    font-size: clamp(1.14rem, 1.22vw, 1.32rem);
  }

  .go-home-hero .go-home-meta {
    font-size: 1.06rem;
  }

  .go-home-hero-switcher {
    gap: 0.86rem;
  }

  .go-home-hero-switcher-button {
    width: 0.96rem;
    height: 0.96rem;
  }
}

html.dark .go-home-hero-bleed::after,
html[class*="dark"] .go-home-hero-bleed::after,
body.dark .go-home-hero-bleed::after,
body.dark-mode .go-home-hero-bleed::after,
body.is-dark-theme .go-home-hero-bleed::after,
body.newsx-dark-mode .go-home-hero-bleed::after,
body[class*="dark"] .go-home-hero-bleed::after,
[data-theme="dark"] .go-home-hero-bleed::after,
body[data-theme="dark"] .go-home-hero-bleed::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    rgba(5, 7, 11, 0.02) 0%,
    rgba(5, 7, 11, 0.08) 22%,
    rgba(5, 7, 11, 0.22) 44%,
    rgba(5, 7, 11, 0.48) 68%,
    rgba(5, 7, 11, 0.76) 86%,
    rgba(5, 7, 11, 0.94) 100%
  );
  opacity: 1;
}

html.dark .go-home-hero::after,
html[class*="dark"] .go-home-hero::after,
body.dark .go-home-hero::after,
body.dark-mode .go-home-hero::after,
body.is-dark-theme .go-home-hero::after,
body.newsx-dark-mode .go-home-hero::after,
body[class*="dark"] .go-home-hero::after,
[data-theme="dark"] .go-home-hero::after,
body[data-theme="dark"] .go-home-hero::after {
  content: none;
}

html.dark .go-home-hero,
html[class*="dark"] .go-home-hero,
body.dark .go-home-hero,
body.dark-mode .go-home-hero,
body.is-dark-theme .go-home-hero,
body.newsx-dark-mode .go-home-hero,
body[class*="dark"] .go-home-hero,
[data-theme="dark"] .go-home-hero,
body[data-theme="dark"] .go-home-hero {
  margin-bottom: 0;
}

html.dark .go-home-hero-backdrop,
html[class*="dark"] .go-home-hero-backdrop,
body.dark .go-home-hero-backdrop,
body.dark-mode .go-home-hero-backdrop,
body.is-dark-theme .go-home-hero-backdrop,
body.newsx-dark-mode .go-home-hero-backdrop,
body[class*="dark"] .go-home-hero-backdrop,
[data-theme="dark"] .go-home-hero-backdrop,
body[data-theme="dark"] .go-home-hero-backdrop {
  opacity: 0.88;
  -webkit-mask-image: linear-gradient(0deg, rgba(0, 0, 0, 0.01) 0%, rgba(0, 0, 0, 0.18) 16%, rgba(0, 0, 0, 0.56) 42%, rgba(0, 0, 0, 0.84) 66%, #000 82%);
  mask-image: linear-gradient(0deg, rgba(0, 0, 0, 0.01) 0%, rgba(0, 0, 0, 0.18) 16%, rgba(0, 0, 0, 0.56) 42%, rgba(0, 0, 0, 0.84) 66%, #000 82%);
}

html.dark .go-home-section--hero-strip,
html[class*="dark"] .go-home-section--hero-strip,
body.dark .go-home-section--hero-strip,
body.dark-mode .go-home-section--hero-strip,
body.is-dark-theme .go-home-section--hero-strip,
body.newsx-dark-mode .go-home-section--hero-strip,
body[class*="dark"] .go-home-section--hero-strip,
[data-theme="dark"] .go-home-section--hero-strip,
body[data-theme="dark"] .go-home-section--hero-strip {
  margin-top: clamp(1.35rem, 2.4vw, 2rem);
  background: transparent;
}

.go-home-section--hero-strip .go-home-swiper.swiper-initialized {
  touch-action: pan-y;
}

.go-home-section--hero-strip .go-home-swiper:not(.swiper-initialized) {
  touch-action: auto;
}

.go-home-carousel-shell {
  position: relative;
}

.go-home-swiper {
  overflow: visible;
}

.go-home-swiper .swiper-wrapper {
  display: flex;
  align-items: stretch;
  gap: 1.2rem;
  overflow-x: auto;
  padding-bottom: 0.4rem;
  scroll-snap-type: x proximity;
  scrollbar-width: none;
}

.go-home-swiper .swiper-wrapper::-webkit-scrollbar {
  display: none;
}

.go-home-swiper .swiper-slide {
  flex: 0 0 auto;
  width: min(21rem, 84vw);
  height: auto;
  display: flex;
  scroll-snap-align: start;
}

.go-home-swiper.swiper-initialized {
  overflow: hidden;
}

.go-home-swiper.swiper-initialized .swiper-wrapper {
  gap: 0;
  overflow: visible;
  padding-bottom: 0;
}

.go-home-swiper.swiper-initialized .swiper-slide {
  width: auto;
}

.go-home-story,
.go-home-player-stage,
.go-home-agenda-card,
.go-home-platform-hub,
.go-home-platform-feature,
.go-home-channel-card,
.go-home-latest-card {
  min-width: 0;
}

.go-home-story {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  height: 100%;
}

.go-home-story,
.go-home-player-item,
.go-home-agenda-card,
.go-home-platform-hub,
.go-home-platform-feature,
.go-home-platform-story,
.go-home-channel-card,
.go-home-latest-card {
  transition: transform 0.18s ease, border-color 0.18s ease, background-color 0.18s ease;
}

.go-home-story:hover,
.go-home-player-item:hover,
.go-home-agenda-card:hover,
.go-home-platform-hub:hover,
.go-home-platform-feature:hover,
.go-home-platform-story:hover,
.go-home-channel-card:hover,
.go-home-latest-card:hover {
  transform: translateY(-2px);
}

.go-home-story-media,
.go-home-agenda-media,
.go-home-platform-feature-media,
.go-home-platform-story-media,
.go-home-latest-media,
.go-home-player-item-media,
.go-home-channel-card-media {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 1.4rem;
  background: var(--go-home-surface-2);
}

.go-home-story-media {
  aspect-ratio: 16 / 10;
}

.go-home-story-media img,
.go-home-agenda-media img,
.go-home-platform-feature-media img,
.go-home-platform-story-media img,
.go-home-latest-media img,
.go-home-player-item-media img,
.go-home-channel-card-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.28s ease;
}

.go-home-story:hover .go-home-story-media img,
.go-home-agenda-card:hover .go-home-agenda-media img,
.go-home-platform-feature:hover .go-home-platform-feature-media img,
.go-home-platform-story:hover .go-home-platform-story-media img,
.go-home-latest-card:hover .go-home-latest-media img,
.go-home-player-item:hover .go-home-player-item-media img,
.go-home-channel-card:hover .go-home-channel-card-media img {
  transform: scale(1.035);
}

.go-home-story-score,
.go-home-duration {
  position: absolute;
  right: 0.85rem;
  bottom: 0.85rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2rem;
  padding: 0.35rem 0.6rem;
  border-radius: 999px;
  background: var(--go-home-accent);
  color: #111111;
  font-size: 0.82rem;
  font-weight: 900;
  line-height: 1;
}

.go-home-duration {
  min-height: 1.7rem;
  padding: 0.3rem 0.55rem;
  font-size: 0.72rem;
}

.go-home-story-body {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  gap: 0.7rem;
}

.go-home-story-body .go-home-meta {
  margin-top: auto;
}

.go-home-story-title,
.go-home-player-title,
.go-home-agenda-title,
.go-home-platform-title,
.go-home-platform-story-title,
.go-home-channel-card-title,
.go-home-latest-title {
  margin: 0;
  color: var(--go-home-title);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.12;
}

.go-home-story-title {
  font-size: clamp(1.08rem, 1.42vw, 1.36rem);
}

.go-home-platform-story-title,
.go-home-channel-card-title,
.go-home-latest-title,
.go-home-agenda-title {
  font-size: clamp(1rem, 1.08vw, 1.18rem);
}

.go-home-story-title a,
.go-home-player-title a,
.go-home-agenda-title a,
.go-home-platform-title a,
.go-home-platform-story-title a,
.go-home-channel-card-title a,
.go-home-latest-title a {
  color: inherit;
}

.go-home-story-dek,
.go-home-player-dek,
.go-home-latest-dek {
  margin: 0;
  color: var(--go-home-text);
  line-height: 1.6;
}

.go-home-player-dek.is-empty {
  display: none;
}

.go-home-story-title a,
.go-home-platform-story-title a,
.go-home-channel-card-title,
.go-home-latest-title a,
.go-home-agenda-title a {
  display: block;
  overflow: visible;
  -webkit-line-clamp: unset;
  -webkit-box-orient: initial;
  text-wrap: pretty;
}

.go-home-section--highlights .go-home-story-media,
.go-home-section--hero-strip .go-home-story-media {
  aspect-ratio: 1 / 1.06;
  border-radius: 1.55rem;
}

.go-home-section--highlights .go-home-story-title,
.go-home-section--hero-strip .go-home-story-title {
  font-size: clamp(1.22rem, 1.6vw, 1.52rem);
}

.go-home-section--reviews .go-home-story {
  gap: 1.1rem;
}

.go-home-section--reviews .go-home-story-media {
  aspect-ratio: 1 / 1.06;
}

.go-home-section--reviews .go-home-story.is-featured .go-home-story-media {
  aspect-ratio: 1 / 1.06;
}

.go-home-section--reviews .go-home-story.is-featured .go-home-story-score {
  min-height: 2.4rem;
  padding-inline: 0.85rem;
  font-size: 1rem;
}

.go-home-section--reviews .go-home-story.is-featured .go-home-story-title {
  font-size: clamp(1.22rem, 1.58vw, 1.52rem);
}

.go-home-section--reviews .go-home-swiper .swiper-slide > .go-home-story {
  width: 100%;
}

.go-home-section--games .go-home-story-media {
  aspect-ratio: 16 / 11;
}

.go-home-section--entertainment .go-home-story-media {
  aspect-ratio: 3 / 4;
}

.go-home-section--technology .go-home-story {
  padding-top: 0;
  border-top: 0;
}

.go-home-section--technology .go-home-section-head {
  align-items: flex-start;
}

.go-home-section--technology .go-home-story-topline {
  padding-bottom: 0.45rem;
  border-bottom: 0;
}

.go-home-section--guides .go-home-story {
  padding: 0.85rem;
  border: 0;
  border-radius: 1.2rem;
  background: transparent;
  box-shadow: none;
}

.go-home-section--guides :is(.go-home-story-title, .go-home-story-title a) {
  color: #111111;
}

.go-home-section--latest .go-home-label,
.go-home-section--latest .go-home-label--default {
  min-height: 0;
  padding: 0;
  border-radius: 0;
  background: transparent;
  color: var(--go-home-soft);
}

.go-home-section--latest .go-home-latest-card {
  background: transparent !important;
  box-shadow: none !important;
}

html.dark .go-home-section--guides .go-home-story,
html[class*="dark"] .go-home-section--guides .go-home-story,
body.dark .go-home-section--guides .go-home-story,
body.dark-mode .go-home-section--guides .go-home-story,
body.newsx-dark-mode .go-home-section--guides .go-home-story,
body[class*="dark"] .go-home-section--guides .go-home-story {
  background: transparent;
}

html.dark .go-home-section--guides :is(.go-home-story-title, .go-home-story-title a),
html[class*="dark"] .go-home-section--guides :is(.go-home-story-title, .go-home-story-title a),
body.dark .go-home-section--guides :is(.go-home-story-title, .go-home-story-title a),
body.dark-mode .go-home-section--guides :is(.go-home-story-title, .go-home-story-title a),
body.newsx-dark-mode .go-home-section--guides :is(.go-home-story-title, .go-home-story-title a),
body[class*="dark"] .go-home-section--guides :is(.go-home-story-title, .go-home-story-title a) {
  color: #ffffff;
}

.go-home-ranking-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.4rem;
}

.go-home-ranking-item {
  border-bottom: 1px solid rgba(31, 41, 55, 0.12);
}

.go-home-ranking-link {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 1rem;
  align-items: center;
  padding: 0.9rem 0;
}

.go-home-ranking-index {
  color: var(--go-home-title);
  font-size: 1.65rem;
  font-weight: 900;
  letter-spacing: -0.05em;
}

.go-home-ranking-copy {
  display: grid;
  gap: 0.3rem;
  min-width: 0;
}

.go-home-ranking-category {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.go-home-ranking-category--lime {
  color: var(--go-home-accent);
}

.go-home-section--trending-bottom .go-home-ranking-category--lime {
  color: #2800f0;
}

.go-home-ranking-category--blue {
  color: var(--go-home-link);
}

.go-home-ranking-category--pop {
  color: var(--go-home-pop);
}

.go-home-ranking-category--playstation {
  color: var(--go-home-playstation);
}

.go-home-ranking-category--xbox {
  color: var(--go-home-xbox);
}

.go-home-ranking-category--nintendo {
  color: var(--go-home-nintendo);
}

.go-home-ranking-category--pc {
  color: var(--go-home-pc);
}

.go-home-ranking-category--mobile {
  color: var(--go-home-mobile);
}

html.dark .go-home-section--trending-bottom .go-home-ranking-category--lime,
html[class*="dark"] .go-home-section--trending-bottom .go-home-ranking-category--lime,
body.dark .go-home-section--trending-bottom .go-home-ranking-category--lime,
body.dark-mode .go-home-section--trending-bottom .go-home-ranking-category--lime,
body.is-dark-theme .go-home-section--trending-bottom .go-home-ranking-category--lime,
body.newsx-dark-mode .go-home-section--trending-bottom .go-home-ranking-category--lime,
body[class*="dark"] .go-home-section--trending-bottom .go-home-ranking-category--lime,
[data-theme="dark"] .go-home-section--trending-bottom .go-home-ranking-category--lime,
body[data-theme="dark"] .go-home-section--trending-bottom .go-home-ranking-category--lime {
  color: #c7f000;
}

.go-home-ranking-title {
  display: block;
  color: var(--go-home-title);
  font-size: clamp(1rem, 1.1vw, 1.12rem);
  line-height: 1.28;
  overflow: visible;
  -webkit-line-clamp: unset;
  -webkit-box-orient: initial;
  text-wrap: pretty;
}

.go-home-ranking-time {
  color: var(--go-home-soft);
  font-size: 0.78rem;
  font-weight: 700;
  white-space: nowrap;
}

.go-home-ranking-link:hover {
  transform: translateX(0.15rem);
}

.go-home-section--video-player,
.go-home-section--channels {
  padding-top: 0.15rem;
}

.go-home-player-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(21rem, 0.9fr);
  gap: 0.7rem;
  align-items: start;
}

.go-home-player-stage {
  display: grid;
  gap: 1rem;
  padding: 1.2rem;
  border: 1px solid rgba(31, 41, 55, 0.14);
  border-radius: 1.7rem;
  background: rgba(255, 255, 255, 0.42);
  box-shadow: var(--go-home-shadow);
  align-content: start;
}

.go-home-section--video-player .go-home-player-stage,
.go-home-section--channels .go-home-player-stage {
  gap: 0.65rem;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

html.dark .go-home-section--video-player .go-home-player-stage,
html.dark .go-home-section--channels .go-home-player-stage,
html[class*="dark"] .go-home-section--video-player .go-home-player-stage,
html[class*="dark"] .go-home-section--channels .go-home-player-stage,
body.dark .go-home-section--video-player .go-home-player-stage,
body.dark .go-home-section--channels .go-home-player-stage,
body.dark-mode .go-home-section--video-player .go-home-player-stage,
body.dark-mode .go-home-section--channels .go-home-player-stage,
body.newsx-dark-mode .go-home-section--video-player .go-home-player-stage,
body.newsx-dark-mode .go-home-section--channels .go-home-player-stage,
body[class*="dark"] .go-home-section--video-player .go-home-player-stage,
body[class*="dark"] .go-home-section--channels .go-home-player-stage {
  background: transparent;
  border-color: transparent;
  box-shadow: none;
}

html.dark .go-home-player-stage,
html[class*="dark"] .go-home-player-stage,
body.dark .go-home-player-stage,
body.dark-mode .go-home-player-stage,
body.newsx-dark-mode .go-home-player-stage,
body[class*="dark"] .go-home-player-stage {
  background: rgba(17, 19, 24, 0.78);
}

.go-home-player-stage--channels {
  margin-bottom: 1.35rem;
}

.go-home-section--channels .go-home-player-stage {
  width: min(100%, 48rem);
  margin-inline: auto;
  margin-bottom: 1rem;
  justify-self: center;
}

.go-home-player-frame {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9.45;
  border-radius: 1.45rem;
  background: #000000;
}

.go-home-player-frame iframe,
.go-home-player-frame video,
.go-home-player-frame object,
.go-home-player-frame embed,
.go-home-player-frame > div,
.go-home-player-frame > section {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.go-home-player-trigger {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  background: #05070d;
  color: #ffffff;
  text-align: left;
  cursor: pointer;
}

.go-home-player-trigger img,
.go-home-player-trigger-fill {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.go-home-player-trigger img {
  transition: transform 0.32s ease;
}

.go-home-player-trigger:hover img {
  transform: scale(1.025);
}

.go-home-player-trigger-fill {
  background:
    radial-gradient(circle at top right, rgba(78, 166, 255, 0.26), transparent 42%),
    linear-gradient(135deg, rgba(5, 111, 205, 0.22), rgba(5, 5, 5, 0.88));
}

.go-home-player-trigger-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(4, 7, 13, 0.12) 0%, rgba(4, 7, 13, 0.74) 100%);
}

.go-home-play--frame {
  left: 1.15rem;
  bottom: 1.15rem;
  width: 3rem;
  height: 3rem;
  z-index: 2;
}

.go-home-play--frame::before {
  border-top-width: 0.46rem;
  border-bottom-width: 0.46rem;
  border-left-width: 0.78rem;
}

.go-home-player-trigger-copy {
  position: absolute;
  left: 1.15rem;
  right: 1.15rem;
  bottom: 1.05rem;
  z-index: 2;
  display: grid;
  gap: 0.2rem;
  padding-left: 4.05rem;
}

.go-home-player-trigger-copy strong {
  display: block;
  font-size: clamp(1rem, 1.45vw, 1.18rem);
  font-weight: 800;
  letter-spacing: -0.02em;
}

.go-home-player-trigger-copy span {
  display: block;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.go-home-player-trigger:focus-visible {
  outline: 2px solid rgba(199, 240, 0, 0.82);
  outline-offset: -4px;
}

.go-home-player-trigger.is-empty .go-home-player-trigger-copy {
  padding-left: 0;
}

.go-home-player-body {
  display: grid;
  gap: 0.4rem;
  align-content: start;
}

.go-home-player-title {
  font-size: clamp(1.45rem, 2vw, 2rem);
}

.go-home-player-meta {
  color: var(--go-home-soft);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.go-home-player-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.go-home-section--video-player .go-home-story-topline .go-home-badge,
.go-home-section--channels .go-home-story-topline .go-home-badge {
  min-height: 1.55rem;
  padding: 0.2rem 0.52rem;
  font-size: 0.58rem;
}

.go-home-section--video-player .go-home-button,
.go-home-section--channels .go-home-button {
  min-height: 1.85rem;
  padding: 0.4rem 0.72rem;
  border-radius: 0.95rem;
  font-size: 0.66rem;
  letter-spacing: 0.03em;
}

.go-home-section--video-player .go-home-player-title,
.go-home-section--channels .go-home-player-title {
  font-size: clamp(1.2rem, 1.65vw, 1.58rem);
}

.go-home-section--video-player .go-home-player-title {
  font-size: clamp(1.65rem, 2.35vw, 2.35rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.go-home-section--video-player .go-home-player-meta {
  font-size: 0.82rem;
}

.go-home-section--video-player .go-home-story-topline .go-home-badge {
  min-height: 1.75rem;
  padding: 0.26rem 0.68rem;
  font-size: 0.66rem;
}

.go-home-player-rail {
  display: grid;
  gap: 0.7rem;
  align-content: start;
}

.go-home-carousel-shell--channels {
  position: relative;
  padding-inline: 2.7rem;
}

.go-home-carousel-nav--channels-inline {
  position: absolute;
  inset: 50% 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transform: translateY(-50%);
  pointer-events: none;
  z-index: 3;
}

.go-home-carousel-nav--channels-inline .go-home-arrow {
  pointer-events: auto;
}

.go-home-player-item,
.go-home-channel-card {
  width: 100%;
  padding: 0.72rem;
  border: 1px solid transparent;
  border-radius: 1.1rem;
  background: transparent;
  color: inherit;
  text-align: left;
  cursor: pointer;
}

.go-home-player-item {
  display: grid;
  grid-template-columns: minmax(7rem, 9rem) minmax(0, 1fr);
  gap: 0.75rem;
  align-items: center;
}

.go-home-channel-card {
  display: grid;
  gap: 0.8rem;
}

.go-home-player-item.is-active,
.go-home-channel-card.is-active {
  border-color: var(--go-home-border);
  background: rgba(255, 255, 255, 0.5);
}

.go-home-section--channels .go-home-channel-card,
.go-home-section--channels .go-home-channel-card.is-active {
  background: transparent;
}

html.dark .go-home-section--channels .go-home-channel-card,
html.dark .go-home-section--channels .go-home-channel-card.is-active,
html[class*="dark"] .go-home-section--channels .go-home-channel-card,
html[class*="dark"] .go-home-section--channels .go-home-channel-card.is-active,
body.dark .go-home-section--channels .go-home-channel-card,
body.dark .go-home-section--channels .go-home-channel-card.is-active,
body.dark-mode .go-home-section--channels .go-home-channel-card,
body.dark-mode .go-home-section--channels .go-home-channel-card.is-active,
body.newsx-dark-mode .go-home-section--channels .go-home-channel-card,
body.newsx-dark-mode .go-home-section--channels .go-home-channel-card.is-active,
body[class*="dark"] .go-home-section--channels .go-home-channel-card,
body[class*="dark"] .go-home-section--channels .go-home-channel-card.is-active {
  background: transparent;
}

html.dark .go-home-player-item.is-active,
html.dark .go-home-channel-card.is-active,
html[class*="dark"] .go-home-player-item.is-active,
html[class*="dark"] .go-home-channel-card.is-active,
body.dark .go-home-player-item.is-active,
body.dark .go-home-channel-card.is-active,
body.dark-mode .go-home-player-item.is-active,
body.dark-mode .go-home-channel-card.is-active,
body.newsx-dark-mode .go-home-player-item.is-active,
body.newsx-dark-mode .go-home-channel-card.is-active,
body[class*="dark"] .go-home-player-item.is-active,
body[class*="dark"] .go-home-channel-card.is-active {
  background: rgba(17, 19, 24, 0.92);
}

.go-home-player-item-media,
.go-home-channel-card-media {
  aspect-ratio: 16 / 9;
  border-radius: 1rem;
}

.go-home-player-item-media.is-empty,
.go-home-channel-card-media.is-empty {
  min-height: 6.5rem;
}

.go-home-player-item-copy,
.go-home-channel-card-body {
  display: grid;
  gap: 0.3rem;
  min-width: 0;
}

.go-home-player-item-copy .go-home-badge,
.go-home-channel-card-body .go-home-badge {
  justify-self: start;
  min-height: 1.7rem;
  padding-inline: 0.6rem;
  font-size: 0.64rem;
}

.go-home-player-item-title,
.go-home-channel-card-title {
  display: block;
  color: var(--go-home-title);
  line-height: 1.22;
  overflow: visible;
  -webkit-line-clamp: unset;
  -webkit-box-orient: initial;
  text-wrap: pretty;
}

.go-home-player-item-meta,
.go-home-channel-card-meta {
  color: var(--go-home-soft);
  font-size: 0.74rem;
  font-weight: 700;
}

.go-home-section-text {
  max-width: 44rem;
  margin: 0;
  color: var(--go-home-text);
  line-height: 1.58;
}

.go-home-promo-all-link,
.go-home-promo-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.4rem;
  padding: 0.58rem 0.86rem;
  border-radius: 8px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.1;
  text-align: center;
  text-transform: uppercase;
  overflow-wrap: anywhere;
}

.go-home-promo-all-link {
  border: 1px solid var(--go-home-border);
  background: var(--go-home-surface);
  color: var(--go-home-title);
}

.go-home-promo-all-link:hover {
  border-color: var(--go-home-link);
  color: var(--go-home-link);
}

.go-home-promo-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.go-home-promo-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  min-height: 100%;
  gap: 0.9rem;
  padding: 0.9rem;
  border: 1px solid var(--go-home-border);
  border-radius: 8px;
  background: var(--go-home-surface);
  box-shadow: 0 14px 28px rgba(15, 23, 42, 0.07);
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.go-home-promo-card:hover {
  transform: translateY(-2px);
  border-color: rgba(40, 0, 240, 0.2);
  box-shadow: 0 18px 34px rgba(15, 23, 42, 0.1);
}

html.dark .go-home-promo-card,
html[class*="dark"] .go-home-promo-card,
body.dark .go-home-promo-card,
body.dark-mode .go-home-promo-card,
body.newsx-dark-mode .go-home-promo-card,
body[class*="dark"] .go-home-promo-card {
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.22);
}

.go-home-promo-media {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  border-radius: 8px;
  background: var(--go-home-surface-2);
}

.go-home-promo-media img,
.go-home-promo-placeholder {
  display: block;
  width: 100%;
  height: 100%;
}

.go-home-promo-media img {
  object-fit: cover;
  transition: transform 0.28s ease;
}

.go-home-promo-card:hover .go-home-promo-media img {
  transform: scale(1.035);
}

.go-home-promo-placeholder {
  background:
    linear-gradient(135deg, rgba(199, 240, 0, 0.18), rgba(40, 0, 240, 0.1)),
    var(--go-home-surface-2);
}

.go-home-promo-lowest,
.go-home-promo-discount {
  position: absolute;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  max-width: calc(100% - 1.1rem);
  min-height: 1.65rem;
  padding: 0.32rem 0.5rem;
  border-radius: 6px;
  font-size: 0.64rem;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.1;
  text-transform: uppercase;
  overflow-wrap: anywhere;
}

.go-home-promo-lowest {
  top: 0.55rem;
  left: 0.55rem;
  background: var(--go-home-accent);
  color: #111111;
}

.go-home-promo-discount {
  right: 0.55rem;
  bottom: 0.55rem;
  background: rgba(17, 17, 17, 0.88);
  color: #ffffff;
}

.go-home-promo-copy {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  gap: 0.68rem;
  min-width: 0;
}

.go-home-promo-badges,
.go-home-promo-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.go-home-promo-store,
.go-home-promo-platform,
.go-home-promo-membership {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 1.55rem;
  max-width: 100%;
  padding: 0.28rem 0.5rem;
  border-radius: 6px;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.1;
  overflow-wrap: anywhere;
}

.go-home-promo-store {
  background: var(--go-home-link);
  color: #ffffff;
}

.go-home-promo-platform,
.go-home-promo-membership {
  border: 1px solid var(--go-home-border);
  background: var(--go-home-surface-2);
  color: var(--go-home-soft);
}

.go-home-promo-title {
  margin: 0;
  color: var(--go-home-title);
  font-size: clamp(1.04rem, 1.1vw, 1.22rem);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.14;
  overflow-wrap: anywhere;
  text-wrap: pretty;
}

.go-home-promo-title a {
  color: inherit;
}

.go-home-promo-subject,
.go-home-promo-valid {
  margin: 0;
  color: var(--go-home-soft);
  font-size: 0.84rem;
  line-height: 1.45;
  overflow-wrap: anywhere;
}

.go-home-promo-price {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.45rem;
  margin-top: auto;
}

.go-home-promo-price s {
  color: var(--go-home-soft);
  font-size: 0.84rem;
}

.go-home-promo-price strong {
  color: var(--go-home-title);
  font-size: clamp(1.25rem, 1.55vw, 1.62rem);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1;
}

.go-home-promo-action {
  flex: 1 1 9rem;
  border: 1px solid transparent;
  background: var(--go-home-accent);
  color: #111111;
}

.go-home-page a.go-home-promo-action:hover {
  color: #111111;
  opacity: 0.92;
}

.go-home-promo-action.is-secondary {
  border-color: var(--go-home-border);
  background: transparent;
  color: var(--go-home-title);
}

.go-home-page a.go-home-promo-action.is-secondary:hover {
  border-color: var(--go-home-link);
  color: var(--go-home-link);
  opacity: 1;
}

.go-home-play {
  position: absolute;
  left: 0.8rem;
  bottom: 0.8rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 999px;
  background: rgba(5, 5, 5, 0.82);
}

.go-home-play::before {
  content: "";
  display: block;
  margin-left: 0.12rem;
  border-top: 0.38rem solid transparent;
  border-bottom: 0.38rem solid transparent;
  border-left: 0.62rem solid #ffffff;
}

.go-home-agenda-card {
  display: grid;
  gap: 1rem;
}

.go-home-agenda-media {
  aspect-ratio: 16 / 10;
  border-radius: 1.45rem;
}

.go-home-agenda-body {
  display: grid;
  gap: 0.8rem;
}

.go-home-platform-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.go-home-platform-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 1.75rem;
  padding: 0.28rem 0.65rem;
  border-radius: 999px;
  border: 1px solid var(--go-home-border);
  background: var(--go-home-surface-2);
  color: var(--go-home-soft);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: transform 0.18s ease, border-color 0.18s ease, background-color 0.18s ease, color 0.18s ease,
    box-shadow 0.18s ease;
}

.go-home-page a.go-home-platform-tag:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 18px rgba(15, 23, 42, 0.08);
}

a.go-home-platform-tag:focus-visible {
  outline-offset: 2px;
}

.go-home-platform-tag--playstation,
.go-home-page a.go-home-platform-tag--playstation:hover {
  border-color: rgba(0, 111, 205, 0.28);
  background: rgba(0, 111, 205, 0.1);
  color: var(--go-home-playstation);
}

.go-home-platform-tag--xbox,
.go-home-page a.go-home-platform-tag--xbox:hover {
  border-color: rgba(16, 124, 16, 0.28);
  background: rgba(16, 124, 16, 0.1);
  color: var(--go-home-xbox);
}

.go-home-platform-tag--nintendo,
.go-home-page a.go-home-platform-tag--nintendo:hover {
  border-color: rgba(230, 0, 18, 0.24);
  background: rgba(230, 0, 18, 0.08);
  color: var(--go-home-nintendo);
}

.go-home-platform-tag--pc,
.go-home-page a.go-home-platform-tag--pc:hover {
  border-color: rgba(66, 200, 255, 0.34);
  background: rgba(66, 200, 255, 0.12);
  color: #007cad;
}

.go-home-platform-tag--mobile,
.go-home-page a.go-home-platform-tag--mobile:hover {
  border-color: rgba(255, 138, 0, 0.3);
  background: rgba(255, 138, 0, 0.1);
  color: var(--go-home-mobile);
}

html.dark .go-home-platform-tag--playstation,
html.dark .go-home-page a.go-home-platform-tag--playstation:hover,
html[class*="dark"] .go-home-platform-tag--playstation,
html[class*="dark"] .go-home-page a.go-home-platform-tag--playstation:hover,
body.dark .go-home-platform-tag--playstation,
body.dark .go-home-page a.go-home-platform-tag--playstation:hover,
body.dark-mode .go-home-platform-tag--playstation,
body.dark-mode .go-home-page a.go-home-platform-tag--playstation:hover,
body.newsx-dark-mode .go-home-platform-tag--playstation,
body.newsx-dark-mode .go-home-page a.go-home-platform-tag--playstation:hover,
body[class*="dark"] .go-home-platform-tag--playstation,
body[class*="dark"] .go-home-page a.go-home-platform-tag--playstation:hover,
[data-theme="dark"] .go-home-platform-tag--playstation,
[data-theme="dark"] .go-home-page a.go-home-platform-tag--playstation:hover {
  border-color: rgba(78, 166, 255, 0.34);
  background: rgba(78, 166, 255, 0.12);
  color: var(--go-home-playstation);
}

html.dark .go-home-platform-tag--xbox,
html.dark .go-home-page a.go-home-platform-tag--xbox:hover,
html[class*="dark"] .go-home-platform-tag--xbox,
html[class*="dark"] .go-home-page a.go-home-platform-tag--xbox:hover,
body.dark .go-home-platform-tag--xbox,
body.dark .go-home-page a.go-home-platform-tag--xbox:hover,
body.dark-mode .go-home-platform-tag--xbox,
body.dark-mode .go-home-page a.go-home-platform-tag--xbox:hover,
body.newsx-dark-mode .go-home-platform-tag--xbox,
body.newsx-dark-mode .go-home-page a.go-home-platform-tag--xbox:hover,
body[class*="dark"] .go-home-platform-tag--xbox,
body[class*="dark"] .go-home-page a.go-home-platform-tag--xbox:hover,
[data-theme="dark"] .go-home-platform-tag--xbox,
[data-theme="dark"] .go-home-page a.go-home-platform-tag--xbox:hover {
  border-color: rgba(68, 197, 74, 0.34);
  background: rgba(68, 197, 74, 0.12);
  color: var(--go-home-xbox);
}

html.dark .go-home-platform-tag--nintendo,
html.dark .go-home-page a.go-home-platform-tag--nintendo:hover,
html[class*="dark"] .go-home-platform-tag--nintendo,
html[class*="dark"] .go-home-page a.go-home-platform-tag--nintendo:hover,
body.dark .go-home-platform-tag--nintendo,
body.dark .go-home-page a.go-home-platform-tag--nintendo:hover,
body.dark-mode .go-home-platform-tag--nintendo,
body.dark-mode .go-home-page a.go-home-platform-tag--nintendo:hover,
body.newsx-dark-mode .go-home-platform-tag--nintendo,
body.newsx-dark-mode .go-home-page a.go-home-platform-tag--nintendo:hover,
body[class*="dark"] .go-home-platform-tag--nintendo,
body[class*="dark"] .go-home-page a.go-home-platform-tag--nintendo:hover,
[data-theme="dark"] .go-home-platform-tag--nintendo,
[data-theme="dark"] .go-home-page a.go-home-platform-tag--nintendo:hover {
  border-color: rgba(255, 68, 92, 0.32);
  background: rgba(255, 68, 92, 0.12);
  color: var(--go-home-nintendo);
}

html.dark .go-home-platform-tag--pc,
html.dark .go-home-page a.go-home-platform-tag--pc:hover,
html[class*="dark"] .go-home-platform-tag--pc,
html[class*="dark"] .go-home-page a.go-home-platform-tag--pc:hover,
body.dark .go-home-platform-tag--pc,
body.dark .go-home-page a.go-home-platform-tag--pc:hover,
body.dark-mode .go-home-platform-tag--pc,
body.dark-mode .go-home-page a.go-home-platform-tag--pc:hover,
body.newsx-dark-mode .go-home-platform-tag--pc,
body.newsx-dark-mode .go-home-page a.go-home-platform-tag--pc:hover,
body[class*="dark"] .go-home-platform-tag--pc,
body[class*="dark"] .go-home-page a.go-home-platform-tag--pc:hover,
[data-theme="dark"] .go-home-platform-tag--pc,
[data-theme="dark"] .go-home-page a.go-home-platform-tag--pc:hover {
  border-color: rgba(115, 217, 255, 0.34);
  background: rgba(115, 217, 255, 0.12);
  color: var(--go-home-pc);
}

html.dark .go-home-platform-tag--mobile,
html.dark .go-home-page a.go-home-platform-tag--mobile:hover,
html[class*="dark"] .go-home-platform-tag--mobile,
html[class*="dark"] .go-home-page a.go-home-platform-tag--mobile:hover,
body.dark .go-home-platform-tag--mobile,
body.dark .go-home-page a.go-home-platform-tag--mobile:hover,
body.dark-mode .go-home-platform-tag--mobile,
body.dark-mode .go-home-page a.go-home-platform-tag--mobile:hover,
body.newsx-dark-mode .go-home-platform-tag--mobile,
body.newsx-dark-mode .go-home-page a.go-home-platform-tag--mobile:hover,
body[class*="dark"] .go-home-platform-tag--mobile,
body[class*="dark"] .go-home-page a.go-home-platform-tag--mobile:hover,
[data-theme="dark"] .go-home-platform-tag--mobile,
[data-theme="dark"] .go-home-page a.go-home-platform-tag--mobile:hover {
  border-color: rgba(255, 155, 67, 0.36);
  background: rgba(255, 155, 67, 0.14);
  color: var(--go-home-mobile);
}

.go-home-platform-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(15.5rem, 1fr));
  gap: 1rem;
}

.go-home-platform-hub {
  --go-home-platform-tone: var(--go-home-link);
  display: grid;
  gap: 0.9rem;
  padding: 0;
  border: 0;
  border-top: 4px solid var(--go-home-platform-tone);
  background: transparent;
}

.go-home-platform-hub:hover {
  border-color: var(--go-home-platform-tone);
}

html.dark .go-home-platform-hub,
html[class*="dark"] .go-home-platform-hub,
body.dark .go-home-platform-hub,
body.dark-mode .go-home-platform-hub,
body.newsx-dark-mode .go-home-platform-hub,
body[class*="dark"] .go-home-platform-hub {
  background: transparent;
}

.go-home-platform-hub--playstation {
  --go-home-platform-tone: var(--go-home-playstation);
}

.go-home-platform-hub--xbox {
  --go-home-platform-tone: var(--go-home-xbox);
}

.go-home-platform-hub--nintendo {
  --go-home-platform-tone: var(--go-home-nintendo);
}

.go-home-platform-hub--pc {
  --go-home-platform-tone: var(--go-home-pc);
}

.go-home-platform-hub--mobile {
  --go-home-platform-tone: var(--go-home-mobile);
}

.go-home-platform-hub-head {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 0.65rem;
  padding-top: 0.65rem;
}

.go-home-platform-title {
  position: relative;
  padding-left: 0.9rem;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.1;
}

.go-home-platform-title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.42rem;
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 999px;
  background: var(--go-home-platform-tone);
}

.go-home-platform-subcats {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}

.go-home-platform-pill--subcat {
  min-height: 1.5rem;
  padding: 0.24rem 0.56rem;
  border: 1px solid var(--go-home-border);
  background: rgba(255, 255, 255, 0.62);
  color: var(--go-home-soft);
  font-size: 0.62rem;
  letter-spacing: 0.05em;
}

.go-home-platform-pill--subcat:hover {
  border-color: rgba(40, 0, 240, 0.16);
  color: var(--go-home-link);
}

html.dark .go-home-platform-pill--subcat,
html[class*="dark"] .go-home-platform-pill--subcat,
body.dark .go-home-platform-pill--subcat,
body.dark-mode .go-home-platform-pill--subcat,
body.newsx-dark-mode .go-home-platform-pill--subcat,
body[class*="dark"] .go-home-platform-pill--subcat {
  background: rgba(17, 19, 24, 0.86);
}

.go-home-platform-feature {
  display: grid;
  gap: 0.7rem;
}

.go-home-platform-feature-media {
  aspect-ratio: 16 / 10;
  border-radius: 1rem;
}

.go-home-platform-feature-body {
  display: grid;
  gap: 0.2rem;
}

.go-home-platform-feature-title {
  margin: 0;
  color: var(--go-home-title);
  font-size: 1.14rem;
  font-weight: 750;
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.go-home-platform-feature-title a {
  color: inherit;
}

.go-home-platform-list {
  display: grid;
  gap: 0.55rem;
}

.go-home-platform-story {
  padding-top: 0.55rem;
  border-top: 1px solid rgba(31, 41, 55, 0.1);
}

.go-home-platform-story-title {
  margin: 0;
  color: var(--go-home-title);
  font-size: 0.98rem;
  font-weight: 600;
  line-height: 1.2;
}

.go-home-platform-story-title a {
  color: inherit;
}

.go-home-latest-feed {
  display: grid;
  gap: 1.35rem;
}

.go-home-latest-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.15rem;
}

.go-home-latest-card {
  display: grid;
  grid-template-columns: minmax(14rem, 22rem) minmax(0, 1fr);
  gap: 1.35rem;
  align-items: start;
  padding-top: 0.1rem;
}

.go-home-latest-media {
  aspect-ratio: 16 / 9;
  border-radius: 1rem;
}

.go-home-latest-body {
  display: grid;
  gap: 0.5rem;
}

.go-home-latest-topline {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem;
  color: var(--go-home-soft);
  font-size: 0.78rem;
  font-weight: 700;
}

.go-home-latest-badge {
  flex: 0 0 auto;
}

.go-home-latest-category {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.go-home-latest-time {
  color: var(--go-home-soft);
}

.go-home-latest-category--lime {
  color: var(--go-home-accent);
}

.go-home-latest-category--blue {
  color: var(--go-home-link);
}

.go-home-latest-category--pop {
  color: var(--go-home-pop);
}

.go-home-latest-category--playstation {
  color: var(--go-home-playstation);
}

.go-home-latest-category--xbox {
  color: var(--go-home-xbox);
}

.go-home-latest-category--nintendo {
  color: var(--go-home-nintendo);
}

.go-home-latest-category--pc {
  color: var(--go-home-pc);
}

.go-home-latest-category--mobile {
  color: var(--go-home-mobile);
}

.go-home-latest-card.is-text-only {
  grid-template-columns: 1fr;
}

.go-home-latest-title {
  font-size: clamp(1.28rem, 1.55vw, 1.7rem);
  line-height: 1.14;
}

.go-home-latest-dek {
  display: -webkit-box;
  color: var(--go-home-text);
  font-size: 0.98rem;
  line-height: 1.48;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.go-home-section--latest .go-home-meta {
  gap: 0.5rem;
  font-size: 0.78rem;
}

.go-home-section--latest .go-home-meta > * + *::before {
  margin-right: 0.5rem;
}

.go-home-section--latest .go-home-meta {
  gap: 0;
}

.go-home-section--latest .go-home-meta .go-home-meta-separator {
  margin: 0 0.5rem;
}

.go-home-pagination {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
}

.go-home-pagination-item {
  display: inline-flex;
}

.go-home-pagination-item a,
.go-home-pagination-item span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.45rem;
  min-height: 2.45rem;
  padding: 0.4rem 0.8rem;
  border: 1px solid var(--go-home-border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.52);
  color: var(--go-home-title);
  font-size: 0.82rem;
  font-weight: 800;
}

html.dark .go-home-pagination-item a,
html.dark .go-home-pagination-item span,
html[class*="dark"] .go-home-pagination-item a,
html[class*="dark"] .go-home-pagination-item span,
body.dark .go-home-pagination-item a,
body.dark .go-home-pagination-item span,
body.dark-mode .go-home-pagination-item a,
body.dark-mode .go-home-pagination-item span,
body.newsx-dark-mode .go-home-pagination-item a,
body.newsx-dark-mode .go-home-pagination-item span,
body[class*="dark"] .go-home-pagination-item a,
body[class*="dark"] .go-home-pagination-item span {
  background: rgba(17, 19, 24, 0.75);
}

.go-home-pagination-item.is-current span,
.go-home-pagination-item.is-current a,
.go-home-pagination-item .current {
  border-color: transparent;
  background: var(--go-home-accent);
  color: #111111;
}

.go-home-feed-actions {
  display: flex;
  justify-content: center;
}

.go-home-feed-load-more {
  min-width: min(100%, 16rem);
}

.go-home-feed-load-more:disabled {
  opacity: 0.58;
  cursor: default;
}

.go-home-latest-feed.is-enhanced .go-home-pagination {
  display: none;
}

@media (min-width: 721px) {
  .go-home-story-media {
    aspect-ratio: 16 / 9.15;
  }

  .go-home-section--reviews .go-home-story-media {
    aspect-ratio: 4 / 4.55;
  }

  .go-home-section--reviews .go-home-story.is-featured .go-home-story-media {
    aspect-ratio: 5 / 5.45;
  }
}

@media (max-width: 84rem) {
  .go-home-shell {
    width: min(90rem, calc(100% - 1.5rem));
  }

  .go-home-player-layout {
    grid-template-columns: minmax(0, 1.3fr) minmax(18rem, 0.95fr);
  }
}

@media (max-width: 68rem) {
  .go-home-shell {
    width: min(100%, calc(100% - 1.25rem));
  }

  .go-home-hero-bleed {
    min-height: clamp(35rem, 64vh, 41rem);
  }

  .go-home-hero-inner {
    padding: 3.7rem 0 5.35rem;
  }

  .go-home-hero-copy {
    min-height: 0;
  }

  .go-home-section--hero-strip {
    margin-top: 1rem;
  }

  .go-home-player-layout {
    grid-template-columns: 1fr;
  }

  .go-home-carousel-shell--channels {
    padding-inline: 0;
  }

  .go-home-carousel-nav--channels-inline {
    position: static;
    justify-content: flex-end;
    transform: none;
    pointer-events: auto;
    margin-top: 0.6rem;
  }

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

  .go-home-latest-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 56rem) {
  .go-home-section-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .go-home-section-actions {
    width: 100%;
    justify-content: space-between;
  }

  .go-home-ranking-link {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .go-home-ranking-time {
    display: none;
  }

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

@media (max-width: 45rem) {
  .go-home-hero-dek {
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }

  .go-home-hero .go-home-meta {
    gap: 0;
    flex-wrap: wrap;
  }

  .go-home-hero .go-home-meta > :not(.go-home-meta-separator) {
    display: inline-flex;
    align-items: center;
  }

  .go-home-hero .go-home-meta .go-home-meta-separator {
    display: inline-flex;
    margin: 0 0.5rem;
  }

  .go-home-section-actions,
  html.go-home-enhanced .go-home-carousel-nav,
  .go-home-carousel-nav--channels-inline {
    display: none !important;
  }
}

@media (max-width: 42rem) {
  .go-home-page {
    padding-bottom: 3.5rem;
  }

  .go-home-hero-bleed {
    min-height: 33.5rem;
  }

  .go-home-hero-inner {
    padding: 3.15rem 0 4.7rem;
  }

  .go-home-hero-copy {
    gap: 0.72rem;
    max-width: 100%;
  }

  .go-home-hero-copy > :not(.go-home-hero-switcher) {
    transform: translateY(0.65rem);
  }

  .go-home-hero-topline {
    gap: 0.5rem;
  }

  .go-home-hero-switcher {
    bottom: 0.85rem;
    gap: 0.5rem;
  }

  .go-home-hero-title {
    max-width: 11ch;
    font-size: clamp(2.7rem, 10.8vw, 3.85rem);
    line-height: 0.96;
  }

  .go-home-hero-dek {
    max-width: min(100%, 29rem);
    font-size: 0.94rem;
    line-height: 1.42;
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }

  .go-home-hero .go-home-meta {
    font-size: 0.84rem;
  }

  .go-home-hero-topline .go-home-badge {
    min-height: 2rem !important;
    padding: 0.36rem 0.82rem !important;
    font-size: 0.68rem !important;
  }

  .go-home-player-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .go-home-player-item {
    grid-template-columns: 1fr;
  }

  .go-home-play--frame {
    left: 0.9rem;
    bottom: 0.9rem;
    width: 2.6rem;
    height: 2.6rem;
  }

  .go-home-player-trigger-copy {
    left: 0.9rem;
    right: 0.9rem;
    bottom: 0.85rem;
    padding-left: 3.5rem;
  }

  .go-home-player-trigger-copy strong {
    font-size: 0.96rem;
  }

  .go-home-player-trigger-copy span {
    font-size: 0.66rem;
  }

  .go-home-player-item-media {
    aspect-ratio: 16 / 9;
  }

  .go-home-platform-grid {
    grid-template-columns: 1fr;
  }

  .go-home-promo-grid {
    grid-template-columns: 1fr;
  }

  .go-home-promo-actions {
    flex-direction: column;
  }

  .go-home-section--platforms {
    display: none;
  }

  .go-home-section--hero-strip .go-home-swiper:not(.swiper-initialized) {
    overflow: visible;
  }

  .go-home-section--hero-strip .go-home-swiper:not(.swiper-initialized) .swiper-wrapper {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    touch-action: pan-x pan-y;
    -webkit-overflow-scrolling: touch;
  }

  .go-home-section--hero-strip .go-home-swiper:not(.swiper-initialized) .swiper-slide {
    width: min(19rem, 82vw);
  }

  .go-home-latest-card {
    grid-template-columns: 1fr;
  }

  .go-home-latest-media {
    aspect-ratio: 16 / 9;
  }

}
