.pc-gta6-hub-page .container-wrapper,
.pc-gta6-hub-page .site-content {
  max-width: none;
  padding: 0;
}

.pc-gta6-hub-page #main-content-row {
  margin-inline: 0;
}

.pc-gta6-hub {
  --pc-hub-bg: #fff;
  --pc-hub-ink: #171717;
  --pc-hub-text: #353535;
  --pc-hub-muted: #626262;
  --pc-hub-line: #d3d0ca;
  --pc-hub-accent: #d71920;
  --pc-hub-accent-readable: #b41017;
  --pc-hub-surface: #f3f2ef;
  --pc-hub-surface-hover: #e9e7e2;
  --pc-hub-hero-panel: rgba(16, 16, 16, .94);
  --pc-hub-hero-separator: #d71920;
  background: var(--pc-hub-bg);
  color: var(--pc-hub-text);
  margin-inline: auto;
  max-width: 1280px;
  overflow: clip;
  padding: clamp(1rem, 2.5vw, 2.5rem);
}

.dark-skin .pc-gta6-hub {
  --pc-hub-bg: #18191c;
  --pc-hub-ink: #f5f5f3;
  --pc-hub-text: #dededb;
  --pc-hub-muted: #b4b6bc;
  --pc-hub-line: #41434a;
  --pc-hub-accent: #ff5d63;
  --pc-hub-accent-readable: #ff7a7f;
  --pc-hub-surface: #222328;
  --pc-hub-surface-hover: #2b2d33;
  --pc-hub-hero-panel: rgba(16, 16, 16, .93);
}

.pc-gta6-hub *,
.pc-gta6-hub *::before,
.pc-gta6-hub *::after {
  box-sizing: border-box;
}

.pc-gta6-hub a:focus-visible {
  outline: 3px solid var(--pc-hub-accent);
  outline-offset: 4px;
}

.pc-gta6-hub__hero {
  background: #101010;
  color: #fff;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(22rem, .85fr);
  isolation: isolate;
  min-height: 34rem;
}

.pc-gta6-hub__hero-media {
  background: #222;
  grid-column: 1 / -1;
  grid-row: 1;
  min-height: 25rem;
  overflow: hidden;
  position: relative;
}

.pc-gta6-hub__hero-image {
  height: 100%;
  inset: 0;
  object-fit: cover;
  object-position: var(--pc-hub-hero-focus, 42%) center;
  position: absolute;
  width: 100%;
}

.pc-gta6-hub__hero-copy {
  align-self: stretch;
  background: var(--pc-hub-hero-panel);
  border-inline-start: 3px solid var(--pc-hub-hero-separator);
  display: flex;
  flex-direction: column;
  grid-column: 2;
  grid-row: 1;
  justify-content: center;
  min-height: 100%;
  padding: clamp(2rem, 4vw, 4.5rem);
  position: relative;
  z-index: 1;
}

@supports ((-webkit-backdrop-filter: blur(3px)) or (backdrop-filter: blur(3px))) {
  .pc-gta6-hub__hero-copy {
    -webkit-backdrop-filter: blur(3px);
    backdrop-filter: blur(3px);
  }
}

.pc-gta6-hub__eyebrow {
  color: var(--pc-hub-accent-readable);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .1em;
  margin: 0 0 .7rem;
  text-transform: uppercase;
}

.pc-gta6-hub__hero .pc-gta6-hub__eyebrow {
  color: #ff5d63;
}

.pc-gta6-hub h1 {
  color: inherit;
  font-size: clamp(3.5rem, 8vw, 7rem);
  letter-spacing: -.065em;
  line-height: .86;
  margin: 0 0 1.5rem;
}

.pc-gta6-hub__intro {
  color: #ddd;
  font-size: clamp(1rem, 1.4vw, 1.18rem);
  line-height: 1.62;
}

.pc-gta6-hub__intro > :last-child {
  margin-bottom: 0;
}

.pc-gta6-hub__facts {
  border-block: 1px solid #4b4b4b;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 1.6rem 0;
  padding: 1rem 0;
}

.pc-gta6-hub__facts div {
  padding: .45rem .75rem .45rem 0;
}

.pc-gta6-hub__facts dt {
  color: #b6b6b6;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.pc-gta6-hub__facts dd {
  color: #fff;
  font-weight: 700;
  margin: .18rem 0 0;
}

.pc-gta6-hub__primary-links {
  display: grid;
  gap: .65rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.pc-gta6-hub__primary-links a {
  align-items: center;
  border: 1px solid #777;
  color: #fff;
  display: flex;
  font-size: .85rem;
  font-weight: 700;
  justify-content: center;
  min-height: 3.25rem;
  padding: .72rem .92rem;
  text-align: center;
  text-decoration: none;
}

.pc-gta6-hub__primary-links a:first-child {
  background: #d71920;
  border-color: #d71920;
}

.pc-gta6-hub__primary-links a:hover {
  border-color: #fff;
}

.pc-gta6-hub__primary-links a:focus {
  border-color: #fff !important;
  outline: 3px solid var(--pc-hub-accent) !important;
  outline-offset: 3px;
  text-decoration: underline !important;
  text-decoration-thickness: 2px !important;
  text-underline-offset: .2em;
}

.pc-gta6-hub__section {
  border-bottom: 1px solid var(--pc-hub-line);
  padding: clamp(3rem, 5vw, 4.75rem) 0;
}

.pc-gta6-hub__section-heading {
  align-items: end;
  display: flex;
  gap: 2rem;
  justify-content: space-between;
  margin-bottom: clamp(1.75rem, 3vw, 2.7rem);
}

.pc-gta6-hub__section-heading > div {
  max-width: 48rem;
}

.pc-gta6-hub h2 {
  color: var(--pc-hub-ink);
  font-size: clamp(2rem, 4vw, 3.5rem);
  letter-spacing: -.045em;
  line-height: 1;
  margin: 0;
}

.pc-gta6-hub__section-intro {
  color: var(--pc-hub-muted);
  font-size: 1rem;
  line-height: 1.6;
  margin: 1rem 0 0;
  max-width: 43rem;
}

.pc-gta6-hub__editorial {
  background: var(--pc-hub-surface);
  margin-inline: calc(clamp(1rem, 2.5vw, 2.5rem) * -1);
  padding-inline: clamp(1rem, 6vw, 7.5rem);
}

.pc-gta6-hub__editorial:nth-of-type(even) {
  background: var(--pc-hub-bg);
}

.pc-gta6-hub__prose {
  color: var(--pc-hub-text);
  font-size: clamp(1rem, 1.25vw, 1.1rem);
  line-height: 1.72;
  max-width: 49rem;
}

.pc-gta6-hub__prose h2,
.pc-gta6-hub__prose h3 {
  color: var(--pc-hub-ink);
  overflow-wrap: anywhere;
}

.pc-gta6-hub__prose h2 {
  font-size: clamp(1.8rem, 3.25vw, 2.7rem);
  line-height: 1.08;
  margin: 0 0 1.35rem;
}

.pc-gta6-hub__prose h3 {
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  line-height: 1.25;
  margin: 2rem 0 .75rem;
}

.pc-gta6-hub__prose p,
.pc-gta6-hub__prose ul,
.pc-gta6-hub__prose ol {
  margin: 0 0 1.15rem;
}

.pc-gta6-hub__prose > :last-child {
  margin-bottom: 0;
}

.pc-gta6-hub__prose a {
  color: var(--pc-hub-accent-readable);
  font-weight: 700;
  text-decoration-thickness: .08em;
  text-underline-offset: .18em;
}

.pc-gta6-hub__prose a:hover {
  color: var(--pc-hub-ink);
}

.pc-gta6-hub__text-link {
  color: var(--pc-hub-ink);
  flex: none;
  font-weight: 800;
  text-underline-offset: .25em;
}

.pc-gta6-hub__text-link:hover {
  color: var(--pc-hub-accent-readable);
}

.pc-gta6-hub__news-grid {
  display: grid;
  gap: 2.3rem 1.5rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.pc-gta6-hub__news-card {
  min-width: 0;
}

.pc-gta6-hub__news-image {
  aspect-ratio: 16 / 9;
  background: #292a2e;
  display: block;
  overflow: hidden;
}

.pc-gta6-hub__news-image img {
  height: 100%;
  object-fit: cover;
  transition: transform .25s ease;
  width: 100%;
}

.pc-gta6-hub__news-card:hover img {
  transform: scale(1.025);
}

.pc-gta6-hub__image-fallback {
  align-items: center;
  color: #fff;
  display: flex;
  font-size: 2rem;
  font-weight: 900;
  height: 100%;
  justify-content: center;
}

.pc-gta6-hub__news-copy {
  padding-top: 1.05rem;
}

.pc-gta6-hub__news-copy time {
  color: var(--pc-hub-muted);
  font-size: .86rem;
  font-weight: 600;
}

.pc-gta6-hub__news-copy h3 {
  font-size: clamp(1.08rem, 1.5vw, 1.35rem);
  line-height: 1.34;
  margin: .52rem 0 0;
  overflow-wrap: anywhere;
}

.pc-gta6-hub__news-copy a {
  color: var(--pc-hub-ink);
  text-decoration: none;
}

.pc-gta6-hub__news-copy a:hover {
  color: var(--pc-hub-accent-readable);
}

.pc-gta6-hub__topic-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.pc-gta6-hub__topic-grid a {
  background: var(--pc-hub-surface);
  border-left: 4px solid var(--pc-hub-line);
  color: var(--pc-hub-ink);
  display: grid;
  gap: .55rem;
  min-height: 8.5rem;
  padding: 1.35rem 1.5rem;
  text-decoration: none;
}

.pc-gta6-hub__topic-grid a:hover,
.pc-gta6-hub__topic-grid a:focus-visible {
  background: var(--pc-hub-surface-hover);
  border-left-color: var(--pc-hub-accent);
}

.pc-gta6-hub__topic-grid strong {
  font-size: 1.2rem;
  line-height: 1.25;
}

.pc-gta6-hub__topic-grid span {
  color: var(--pc-hub-muted);
  line-height: 1.55;
}

.pc-gta6-hub__tool-grid {
  display: grid;
  gap: 1rem 1.5rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.pc-gta6-hub__tool-grid a {
  border-top: 3px solid var(--pc-hub-line);
  color: var(--pc-hub-ink);
  display: flex;
  flex-direction: column;
  min-height: 13rem;
  padding: 1.35rem .4rem .4rem;
  text-decoration: none;
}

.pc-gta6-hub__tool-image {
  aspect-ratio: 16 / 7;
  margin: -1.35rem -.4rem 1.2rem;
  object-fit: cover;
  width: calc(100% + .8rem);
}

.pc-gta6-hub__tool-grid a:hover,
.pc-gta6-hub__tool-grid a:focus-visible {
  border-top-color: var(--pc-hub-accent);
}

.pc-gta6-hub__tool-type {
  color: var(--pc-hub-accent-readable);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.pc-gta6-hub__tool-grid strong {
  font-size: 1.25rem;
  line-height: 1.3;
  margin: .62rem 0;
}

.pc-gta6-hub__tool-grid a > span:not(.pc-gta6-hub__tool-type) {
  color: var(--pc-hub-muted);
  line-height: 1.55;
}

.pc-gta6-hub__tool-grid em {
  color: var(--pc-hub-ink);
  font-style: normal;
  font-weight: 800;
  margin-top: auto;
  padding-top: 1.35rem;
}

@media (max-width: 960px) {
  .pc-gta6-hub__hero {
    grid-template-columns: 1fr;
  }

  .pc-gta6-hub__hero-media {
    grid-column: 1;
    grid-row: 1;
    min-height: min(56vw, 30rem);
  }

  .pc-gta6-hub__hero-copy {
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
    background: #101010;
    border-block-start: 3px solid var(--pc-hub-hero-separator);
    border-inline-start: 0;
    grid-column: 1;
    grid-row: 2;
    min-height: 0;
  }

  .pc-gta6-hub__news-grid,
  .pc-gta6-hub__tool-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 600px) {
  .pc-gta6-hub {
    padding: .75rem;
  }

  .pc-gta6-hub__hero-media {
    min-height: 62vw;
  }

  .pc-gta6-hub__hero-copy {
    padding: 1.6rem 1.2rem 2rem;
  }

  .pc-gta6-hub__facts,
  .pc-gta6-hub__news-grid,
  .pc-gta6-hub__topic-grid,
  .pc-gta6-hub__tool-grid {
    grid-template-columns: 1fr;
  }

  .pc-gta6-hub__primary-links {
    grid-template-columns: 1fr;
  }

  .pc-gta6-hub__section-heading {
    align-items: start;
    flex-direction: column;
    gap: 1rem;
  }

  .pc-gta6-hub__topic-grid a {
    min-height: 0;
  }

  .pc-gta6-hub__tool-grid a {
    min-height: 11rem;
    padding-inline: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .pc-gta6-hub__news-image img {
    transition: none;
  }
}
