:root {
  --blue: #082f5f;
  --blue-2: #0c4f92;
  --ink: #0d1420;
  --paper: #f3f1ea;
  --white: #fffdf8;
  --muted: #9da8b5;
  --green: #2ba787;
  --line: rgba(255,255,255,.16);
  --max: 1240px;
}


/* =========================================================
   BASE
   ========================================================= */

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);

  font-family:
    Inter,
    ui-sans-serif,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Helvetica,
    Arial,
    sans-serif;

  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
}

img {
  display: block;
  width: 100%;
}


/* =========================================================
   HEADER
   ========================================================= */

.site-header {
  position: absolute;
  z-index: 20;

  top: 0;
  left: 0;
  right: 0;

  max-width: var(--max);

  margin: 0 auto;
  padding: 28px 32px;

  display: flex;
  justify-content: space-between;
  align-items: center;

  color: var(--white);
}


/* =========================================================
   NARO LOGO
   ========================================================= */

.brand {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;

  flex: 0 0 auto;

  text-decoration: none;
  line-height: 0;
}

.brand-logo {
  width: 185px;
  flex: 0 0 auto;
}

.brand-logo img {
  display: block;

  width: 100%;
  height: auto;

  object-fit: contain;
  object-position: center;

  transition:
    opacity .18s ease,
    transform .18s ease;
}

.brand-logo:hover img {
  opacity: .94;
  transform: scale(1.015);
}


/* =========================================================
   NAVIGATION
   ========================================================= */

.nav {
  display: flex;
  align-items: center;
  gap: 18px;
}

.nav a {
  text-decoration: none;

  font-size: 12px;

  letter-spacing: .075em;
  text-transform: uppercase;

  opacity: .82;

  white-space: nowrap;
}

.nav a:hover {
  opacity: 1;
}


/* =========================================================
   HERO
   ========================================================= */

.hero {
  position: relative;

  min-height: 100svh;

  background:
    radial-gradient(
      circle at 73% 26%,
      #125fa9 0,
      var(--blue) 34%,
      #061c3a 100%
    );

  color: var(--white);

  overflow: hidden;

  display: grid;

  grid-template-columns:
    1.02fr
    .98fr;

  align-items: center;

  gap: 48px;

  padding:
    120px
    max(
      32px,
      calc((100vw - var(--max)) / 2 + 32px)
    )
    116px;
}

.hero::after {
  content: "";

  position: absolute;
  inset: 0;

  pointer-events: none;

  background-image:
    linear-gradient(
      rgba(255,255,255,.035) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(255,255,255,.035) 1px,
      transparent 1px
    );

  background-size: 64px 64px;

  mask-image:
    linear-gradient(
      to bottom,
      transparent,
      #000 25%,
      #000 75%,
      transparent
    );
}

.hero-copy,
.hero-portrait,
.hero-meta {
  position: relative;
  z-index: 2;
}

.eyebrow {
  margin: 0 0 18px;

  font-size: 12px;
  font-weight: 700;

  letter-spacing: .18em;
  text-transform: uppercase;

  color: #b8d8f7;
}

.eyebrow.dark {
  color: #44627f;
}

.hero h1 {
  margin: 0;

  font-size:
    clamp(
      72px,
      9vw,
      154px
    );

  line-height: .78;

  letter-spacing: -.075em;

  text-transform: uppercase;

  font-weight: 850;
}

.hero h1 span {
  display: block;
}

.alias {
  margin: 30px 0 0;

  font-family:
    Georgia,
    "Times New Roman",
    serif;

  font-style: italic;

  font-size:
    clamp(
      21px,
      2.2vw,
      32px
    );
}

.alias strong {
  font-family: inherit;
  font-weight: 400;
  color: #cce8ff;
}

.intro {
  max-width: 560px;

  margin: 28px 0 0;

  font-size:
    clamp(
      17px,
      1.55vw,
      21px
    );

  line-height: 1.6;

  color: rgba(255,255,255,.78);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;

  gap: 12px;

  margin-top: 34px;
}

.button {
  display: inline-flex;

  align-items: center;
  justify-content: center;

  min-height: 46px;

  padding: 0 20px;

  border-radius: 999px;

  text-decoration: none;

  font-size: 13px;
  font-weight: 700;

  letter-spacing: .05em;

  text-transform: uppercase;
}

.button-primary {
  background: var(--white);
  color: var(--blue);
}

.button-ghost {
  border: 1px solid rgba(255,255,255,.34);
  color: var(--white);
}

.hero-portrait {
  justify-self: end;

  width:
    min(
      100%,
      560px
    );

  margin: 0;

  border-radius:
    28px
    28px
    0
    0;

  overflow: hidden;

  box-shadow:
    0
    40px
    80px
    rgba(0,0,0,.28);
}

.hero-portrait img {
  aspect-ratio: 4 / 5;

  object-fit: cover;
  object-position: center 15%;
}

.hero-meta {
  position: absolute;

  left:
    max(
      32px,
      calc((100vw - var(--max)) / 2 + 32px)
    );

  right:
    max(
      32px,
      calc((100vw - var(--max)) / 2 + 32px)
    );

  bottom: 30px;

  display: grid;

  grid-template-columns:
    repeat(
      3,
      1fr
    );

  gap: 20px;

  border-top: 1px solid var(--line);

  padding-top: 18px;
}

.hero-meta div {
  display: flex;
  gap: 10px;
  align-items: baseline;
}

.meta-label {
  color: rgba(255,255,255,.5);

  font-size: 11px;

  text-transform: uppercase;

  letter-spacing: .12em;
}

.hero-meta strong {
  font-size: 13px;
  font-weight: 600;
}


/* =========================================================
   GENERAL SECTIONS
   ========================================================= */

.section {
  position: relative;

  padding:
    120px
    max(
      32px,
      calc((100vw - var(--max)) / 2 + 32px)
    );
}

.section-heading {
  display: grid;

  grid-template-columns:
    180px
    minmax(0, 1fr);

  gap: 30px;

  align-items: start;

  margin-bottom: 70px;
}

.section-heading h2,
.contact-grid h2,
.portrait-copy h2 {
  margin: 0;

  font-size:
    clamp(
      46px,
      6vw,
      92px
    );

  line-height: .95;

  letter-spacing: -.055em;
}

.section-light {
  background: var(--paper);
}

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

.section-blue {
  background: var(--blue);
  color: var(--white);
}


/* =========================================================
   ABOUT
   ========================================================= */

#about .section-heading {
  margin-bottom: 68px;
}

#about .about-grid {
  display: grid;

  grid-template-columns:
    180px
    minmax(0, 1.55fr)
    minmax(280px, .75fr);

  column-gap: 30px;

  align-items: start;

  width: 100%;
}

#about .lead {
  grid-column: 2;

  width: 100%;
  max-width: 760px;

  margin: 0;

  font-family:
    Georgia,
    "Times New Roman",
    serif;

  font-size:
    clamp(
      28px,
      2.65vw,
      42px
    );

  line-height: 1.18;

  letter-spacing: -.025em;
}

#about .body-copy {
  grid-column: 3;

  width: 100%;
  max-width: 380px;

  margin: 0;

  padding-top: 5px;

  font-size: 15px;

  line-height: 1.7;
}

#about .body-copy p {
  margin: 0 0 18px;
}

#about .body-copy p:last-child {
  margin-bottom: 0;
}


/* =========================================================
   PLAYER PROFILE
   ========================================================= */

.player-profile {
  margin:
    72px
    0
    0
    210px;

  max-width: 1040px;

  padding-top: 24px;

  border-top:
    1px solid rgba(13,20,32,.16);
}

.player-profile-head {
  display: flex;

  align-items: baseline;
  justify-content: space-between;

  gap: 20px;

  margin-bottom: 22px;
}

.player-profile-label {
  margin: 0;

  color: #44627f;

  font-size: 11px;

  font-weight: 750;

  letter-spacing: .14em;

  text-transform: uppercase;
}

.player-profile-updated {
  color: #78828c;

  font-size: 10px;

  font-weight: 650;

  letter-spacing: .1em;

  text-transform: uppercase;
}

.player-profile-grid {
  display: grid;

  grid-template-columns:
    repeat(
      4,
      minmax(0, 1fr)
    );

  border-top:
    1px solid rgba(13,20,32,.12);

  border-left:
    1px solid rgba(13,20,32,.12);
}

.player-profile-item {
  min-width: 0;

  min-height: 128px;

  padding: 19px 18px;

  display: flex;

  flex-direction: column;

  justify-content: space-between;

  border-right:
    1px solid rgba(13,20,32,.12);

  border-bottom:
    1px solid rgba(13,20,32,.12);

  background:
    rgba(255,255,255,.32);
}

.player-profile-value {
  margin: 0;

  color: var(--ink);

  font-size:
    clamp(
      26px,
      2.25vw,
      36px
    );

  font-weight: 760;

  line-height: 1;

  letter-spacing: -.045em;
}

.player-profile-value.compact {
  font-size:
    clamp(
      20px,
      1.65vw,
      27px
    );

  line-height: 1.1;
}

.player-profile-name {
  display: block;

  margin-top: 18px;

  color: #52606e;

  font-size: 10px;

  font-weight: 700;

  letter-spacing: .09em;

  line-height: 1.35;

  text-transform: uppercase;
}

.player-profile-peak {
  display: block;

  margin-top: 6px;

  color: #7d8790;

  font-size: 11px;

  line-height: 1.4;
}

.player-profile-fide-card {
  color: inherit;

  text-decoration: none;

  cursor: pointer;

  transition:
    background .18s ease,
    box-shadow .18s ease;
}

.player-profile-fide-card:hover {
  background:
    rgba(255,255,255,.72);

  box-shadow:
    inset 0 0 0 1px rgba(8,47,95,.10);
}

.player-profile-fide-card:hover .player-profile-link {
  text-decoration: underline;

  text-decoration-thickness: 1px;

  text-underline-offset: 4px;
}

.player-profile-link {
  display: block;

  margin-top: 7px;

  color: var(--blue);

  font-size: 9px;

  font-weight: 750;

  letter-spacing: .08em;

  line-height: 1.4;

  text-transform: uppercase;
}


/* =========================================================
   RESULTS
   ========================================================= */

.results-list {
  border-top: 1px solid var(--line);
}

.result-card {
  display: grid;

  grid-template-columns:
    110px
    minmax(0, 1fr)
    120px;

  gap: 28px;

  align-items: center;

  padding: 30px 0;

  border-bottom: 1px solid var(--line);
}

.result-year {
  font-size: 14px;

  color: rgba(255,255,255,.55);
}

.result-location {
  margin: 0 0 6px;

  color: #8db7df;

  font-size: 12px;

  letter-spacing: .12em;

  text-transform: uppercase;
}

.result-card h3 {
  margin: 0;

  font-size:
    clamp(
      20px,
      2.2vw,
      32px
    );

  font-weight: 600;

  letter-spacing: -.025em;
}

.result-note {
  margin: 7px 0 0;

  color: rgba(255,255,255,.55);

  font-size: 14px;
}

.result-tag {
  justify-self: end;

  border: 1px solid rgba(255,255,255,.22);

  border-radius: 999px;

  padding: 8px 12px;

  color: rgba(255,255,255,.64);

  font-size: 11px;

  letter-spacing: .1em;

  text-transform: uppercase;
}


/* =========================================================
   JOURNEY
   ========================================================= */

.timeline {
  max-width: 980px;

  margin-left: auto;
}

.timeline-item {
  display: grid;

  grid-template-columns:
    130px
    minmax(0, 1fr);

  gap: 20px;

  padding: 28px 0;

  border-top:
    1px solid rgba(13,20,32,.16);
}

.timeline-item:last-child {
  border-bottom:
    1px solid rgba(13,20,32,.16);
}

.timeline-year {
  font-size: 13px;

  color: #56708b;
}

.timeline-item strong {
  font-size: 28px;

  letter-spacing: -.035em;
}

.timeline-item p {
  margin: 7px 0 0;

  color: #55616c;

  line-height: 1.5;
}

.timeline-item.future {
  color: var(--blue-2);
}


/* =========================================================
   SELECTED GAMES
   ========================================================= */

.games-shell {
  display: grid;

  grid-template-columns:
    minmax(250px, .72fr)
    minmax(0, 1.55fr);

  gap: 28px;

  align-items: start;
}

.games-sidebar,
.game-stage {
  border:
    1px solid rgba(255,255,255,.16);

  border-radius: 24px;

  background:
    rgba(255,255,255,.055);
}

.games-sidebar {
  overflow: hidden;
}

.games-sidebar-head {
  display: flex;

  justify-content: space-between;
  align-items: baseline;

  gap: 12px;

  padding:
    20px
    20px
    16px;

  border-bottom:
    1px solid rgba(255,255,255,.12);
}

.games-label,
.games-sidebar-head span {
  margin: 0;

  color: #a9cdeb;

  font-size: 11px;

  letter-spacing: .12em;

  text-transform: uppercase;
}

.game-list {
  display: grid;
}

.game-select {
  width: 100%;

  appearance: none;

  border: 0;

  border-bottom:
    1px solid rgba(255,255,255,.10);

  background: transparent;

  color: var(--white);

  text-align: left;

  padding: 18px 20px;

  cursor: pointer;

  font: inherit;

  transition:
    background .2s ease;
}

.game-select:last-child {
  border-bottom: 0;
}

.game-select:hover,
.game-select.active {
  background:
    rgba(255,255,255,.09);
}

.game-select strong {
  display: block;

  font-size: 15px;

  line-height: 1.35;

  font-weight: 650;
}

.game-select span {
  display: block;

  margin-top: 6px;

  color:
    rgba(255,255,255,.50);

  font-size: 12px;

  line-height: 1.4;
}

.game-stage {
  min-width: 0;

  padding: 26px;
}

.game-empty {
  min-height: 465px;

  display: grid;

  place-content: center;

  max-width: 560px;

  margin: 0 auto;

  text-align: center;
}

.game-empty h3 {
  margin: 8px 0 0;

  font-size:
    clamp(
      28px,
      3vw,
      48px
    );

  line-height: 1.05;

  letter-spacing: -.04em;
}

.game-empty > p:last-child {
  color:
    rgba(255,255,255,.64);

  line-height: 1.6;
}

.game-empty[hidden],
.game-active[hidden] {
  display: none !important;
}

.game-titlebar {
  display: flex;

  justify-content: space-between;
  align-items: flex-start;

  gap: 24px;

  margin-bottom: 22px;
}

.game-titlebar h3,
#game-title {
  margin: 8px 0 0;

  font-size:
    clamp(
      30px,
      3.1vw,
      46px
    );

  line-height: 1.02;

  letter-spacing: -.035em;

  max-width: none;

  text-wrap: balance;
}

.game-meta {
  margin: 10px 0 0;

  color:
    rgba(255,255,255,.58);

  font-size: 14px;

  line-height: 1.45;
}

.pgn-download {
  flex: 0 0 auto;

  border:
    1px solid rgba(255,255,255,.25);

  border-radius: 999px;

  padding: 9px 13px;

  color:
    rgba(255,255,255,.82);

  text-decoration: none;

  font-size: 11px;

  letter-spacing: .09em;

  text-transform: uppercase;
}

.pgn-download:hover {
  border-color:
    rgba(255,255,255,.48);
}


/* =========================================================
   CUSTOM CHESS VIEWER
   ========================================================= */

.pgn-board-wrap {
  padding: 0;

  overflow: hidden;

  border-radius: 18px;

  background: #f4f1e9;

  color: #111;
}

.nhb-loading {
  min-height: 420px;

  display: grid;

  place-items: center;

  padding: 30px;

  color: #5b5b5b;

  font-size: 14px;
}

.nhb-error {
  margin: 20px;

  padding: 20px;

  border-radius: 12px;

  background: #fff1f1;

  color: #7c2730;

  line-height: 1.6;
}

.nhb-error strong,
.nhb-error span {
  display: block;
}

.nhb-error span {
  margin-top: 6px;

  font-size: 13px;
}

.nhb-player {
  display: grid;

  grid-template-columns:
    minmax(320px, 1fr)
    minmax(260px, .72fr);

  gap: 0;

  background: #f4f1e9;

  outline: none;

  touch-action: pan-y;
}

.nhb-board-column {
  padding: 22px;

  background: #e9e5dc;
}

.nhb-score-column {
  display: flex;

  flex-direction: column;

  min-width: 0;

  border-left:
    1px solid rgba(0,0,0,.10);

  background: #f8f6f0;
}

.nhb-board {
  width: 100%;

  max-width: 620px;

  aspect-ratio: 1 / 1;

  display: grid;

  grid-template-columns:
    repeat(8, 1fr);

  grid-template-rows:
    repeat(8, 1fr);

  margin: 0 auto;

  border-radius: 8px;

  overflow: hidden;

  box-shadow:
    0 18px 45px rgba(0,0,0,.14),
    0 1px 2px rgba(0,0,0,.12);
}

.nhb-square {
  position: relative;

  display: flex;

  align-items: center;
  justify-content: center;

  min-width: 0;
  min-height: 0;

  user-select: none;
}

.nhb-square.light {
  background: #e9d9bd;
}

.nhb-square.dark {
  background: #7a9877;
}

.nhb-square.last-move::after {
  content: "";

  position: absolute;

  inset: 0;

  background:
    rgba(245,220,85,.32);

  pointer-events: none;
}

.nhb-piece {
  position: relative;

  z-index: 2;

  font-family:
    "DejaVu Sans",
    "Segoe UI Symbol",
    "Noto Sans Symbols 2",
    "Arial Unicode MS",
    sans-serif;

  font-size:
    clamp(
      20px,
      3.8vw,
      44px
    );

  line-height: 1;

  pointer-events: none;
}

.nhb-piece.white-piece {
  color: #fffdf8;

  opacity: 1;

  text-shadow:
    0 0 1px #202020,
    0 1px 2px rgba(0,0,0,.35);
}

.nhb-piece.black-piece {
  color: #181818;

  opacity: 1;

  text-shadow: none;
}

.nhb-file-label,
.nhb-rank-label {
  position: absolute;

  z-index: 3;

  font-size: 9px;

  font-weight: 700;

  line-height: 1;

  pointer-events: none;
}

.nhb-file-label {
  right: 4px;
  bottom: 3px;
}

.nhb-rank-label {
  top: 4px;
  left: 4px;
}

.nhb-square.light .nhb-file-label,
.nhb-square.light .nhb-rank-label {
  color: #71866f;
}

.nhb-square.dark .nhb-file-label,
.nhb-square.dark .nhb-rank-label {
  color: #eadfc9;
}

.nhb-controls {
  display: flex;

  align-items: center;
  justify-content: center;

  gap: 7px;

  margin-top: 16px;
}

.nhb-controls button {
  appearance: none;

  min-width: 42px;
  height: 38px;

  border:
    1px solid rgba(0,0,0,.15);

  border-radius: 999px;

  background:
    rgba(255,255,255,.72);

  color: #202020;

  font: inherit;

  font-size: 13px;

  font-weight: 700;

  cursor: pointer;

  touch-action: manipulation;

  -webkit-user-select: none;
  user-select: none;

  -webkit-tap-highlight-color: transparent;

  transition:
    background .15s ease,
    border-color .15s ease,
    transform .15s ease;
}

.nhb-controls button:hover {
  background: #fff;

  border-color:
    rgba(0,0,0,.28);
}

.nhb-controls button:active {
  transform:
    translateY(1px);
}

.nhb-controls .nhb-flip {
  width: auto;

  padding: 0 16px;

  margin-left: 5px;

  font-size: 11px;

  letter-spacing: .08em;

  text-transform: uppercase;
}

.nhb-position-status {
  margin-top: 11px;

  text-align: center;

  color: #66645f;

  font-size: 12px;

  letter-spacing: .02em;
}

.nhb-score-head {
  display: grid;

  grid-template-columns:
    minmax(0, 1fr)
    auto;

  gap: 12px;

  padding: 18px 20px;

  border-bottom:
    1px solid rgba(0,0,0,.10);
}

.nhb-score-head > div:first-child,
.nhb-black-player {
  min-width: 0;
}

.nhb-black-player {
  grid-column: 1;
}

.nhb-player-name {
  display: block;

  overflow: hidden;

  color: #1b1b1b;

  font-size: 13px;

  font-weight: 750;

  white-space: nowrap;

  text-overflow: ellipsis;
}

.nhb-score-head small {
  display: block;

  margin-top: 2px;

  color: #88847d;

  font-size: 11px;
}

.nhb-result {
  grid-column: 2;

  grid-row:
    1 / span 2;

  align-self: center;

  padding: 6px 9px;

  border-radius: 999px;

  background: #e7e2d7;

  color: #242424;

  font-size: 11px;

  font-weight: 750;
}

.nhb-moves {
  flex: none;

  height: 265px;
  max-height: 265px;

  overflow-y: auto;

  overscroll-behavior: contain;

  padding:
    12px
    12px
    18px;

  scrollbar-width: thin;

  scrollbar-color:
    rgba(0,0,0,.22)
    transparent;
}

.nhb-move-row {
  display: grid;

  grid-template-columns:
    34px
    minmax(0, 1fr)
    minmax(0, 1fr);

  gap: 4px;

  align-items: center;

  margin-bottom: 2px;
}

.nhb-move-number {
  padding-left: 5px;

  color: #96928b;

  font-size: 11px;

  font-variant-numeric:
    tabular-nums;
}

.nhb-move,
.nhb-move-spacer {
  min-height: 32px;
}

.nhb-move {
  appearance: none;

  width: 100%;

  padding: 6px 8px;

  border: 0;

  border-radius: 7px;

  background: transparent;

  color: #262626;

  text-align: left;

  font: inherit;

  font-size: 13px;

  font-weight: 650;

  cursor: pointer;

  touch-action: manipulation;

  -webkit-tap-highlight-color: transparent;

  transition:
    background .12s ease,
    color .12s ease;
}

.nhb-move:hover {
  background:
    rgba(0,0,0,.06);
}

.nhb-move.active {
  background: #183f67;

  color: #fff;
}

.nhb-moves::-webkit-scrollbar {
  width: 6px;
}

.nhb-moves::-webkit-scrollbar-track {
  background: transparent;
}

.nhb-moves::-webkit-scrollbar-thumb {
  background:
    rgba(0,0,0,.18);

  border-radius: 999px;
}


/* =========================================================
   PORTRAIT FEATURE
   ========================================================= */

.portrait-section {
  display: grid;

  grid-template-columns:
    .9fr
    1.1fr;

  gap: 80px;

  align-items: center;

  background: var(--paper);
}

.portrait-copy p:last-child {
  max-width: 530px;

  color: #56616d;

  font-size: 18px;

  line-height: 1.65;
}

.portrait-crop {
  border-radius: 24px;

  overflow: hidden;

  background: var(--blue);
}

.portrait-crop img {
  aspect-ratio:
    16 / 10;

  object-fit: cover;

  object-position:
    center 24%;
}


/* =========================================================
   PAST COLLABORATIONS & SUPPORT
   ========================================================= */

.section-collaborations {
  background: #07192e;

  color: var(--white);
}

.section-collaborations .eyebrow.dark {
  color: #8db7df;
}

.collaborations-intro {
  max-width: 650px;

  margin:
    -24px
    0
    48px
    210px;

  color:
    rgba(255,255,255,.64);

  font-size: 16px;

  line-height: 1.65;
}

.collaborations-grid {
  margin-left: 210px;

  display: grid;

  grid-template-columns:
    repeat(
      auto-fit,
      minmax(290px, 1fr)
    );

  gap: 20px;

  max-width: 1040px;
}

.collaboration-card {
  min-width: 0;

  padding: 24px;

  border:
    1px solid rgba(255,255,255,.15);

  border-radius: 22px;

  background:
    rgba(255,255,255,.055);
}

.collaboration-brand {
  display: flex;

  align-items: center;

  gap: 14px;

  min-height: 120px;

  margin-bottom: 24px;
}

.collaboration-logo {
  width: 112px;
  height: 92px;

  flex: 0 0 auto;

  display: grid;

  place-items: center;

  overflow: hidden;

  border-radius: 14px;

  background: #fff;
}

.collaboration-logo img {
  width: 100%;
  height: 100%;

  object-fit: contain;
  object-position: center;

  padding: 12px;
}


/* JOYLAND */

.collaboration-logo-joyland {
  width: 120px;
}

.collaboration-logo-joyland img {
  padding: 9px;
}


/* THREE BUNS */

.collaboration-logo-threebuns {
  width: 120px;
  height: 112px;

  padding: 0;

  overflow: hidden;
}

.collaboration-logo-threebuns img {
  width: 100%;
  height: 100%;

  padding: 8px;

  object-fit: contain;
  object-position: center;
}

.collaboration-moment {
  width: 190px;
  height: 118px;

  flex: 0 0 auto;

  overflow: hidden;

  border-radius: 14px;

  background: #ddd;
}

.collaboration-moment img {
  width: 100%;
  height: 100%;

  object-fit: cover;

  object-position: center;

  padding: 0;
}

.collaboration-type {
  margin: 0 0 8px;

  color: #8db7df;

  font-size: 10px;

  font-weight: 700;

  letter-spacing: .12em;

  text-transform: uppercase;
}

.collaboration-copy h3 {
  margin: 0;

  color: var(--white);

  font-size:
    clamp(
      21px,
      1.7vw,
      28px
    );

  line-height: 1.08;

  letter-spacing: -.03em;
}

.collaboration-copy > p:last-child {
  max-width: 380px;

  margin: 11px 0 0;

  color:
    rgba(255,255,255,.62);

  font-size: 13px;

  line-height: 1.6;
}


/* =========================================================
   COMMUNITY
   ========================================================= */

.section-community {
  background: var(--paper);

  color: var(--ink);
}

.section-community .eyebrow {
  color: #44627f;
}

.community-layout {
  display: grid;

  grid-template-columns:
    180px
    minmax(0, 1fr);

  gap: 30px;
}

.community-intro {
  grid-column: 2;

  max-width: 760px;

  margin:
    -26px
    0
    48px;

  font-family:
    Georgia,
    "Times New Roman",
    serif;

  font-size:
    clamp(
      24px,
      2.3vw,
      36px
    );

  line-height: 1.25;

  color: #283340;
}

.community-grid {
  grid-column: 2;

  display: grid;

  grid-template-columns:
    repeat(
      2,
      minmax(0, 1fr)
    );

  gap: 20px;

  max-width: 920px;
}

.community-card {
  display: grid;

  grid-template-columns:
    130px
    minmax(0, 1fr);

  gap: 26px;

  align-items: center;

  min-width: 0;

  padding: 24px;

  border:
    1px solid rgba(13,20,32,.12);

  border-radius: 22px;

  background:
    rgba(255,255,255,.46);
}

.community-logo {
  width: 130px;
  height: 105px;

  display: grid;

  place-items: center;

  overflow: hidden;

  border-radius: 14px;

  background: #fff;

  text-decoration: none;

  transition:
    transform .18s ease,
    opacity .18s ease;
}

.community-logo:hover {
  transform:
    translateY(-2px);

  opacity: .9;
}

.community-logo img {
  width: 100%;
  height: 100%;

  object-fit: contain;

  padding: 14px;
}

.community-logo-chessnuts {
  background: #050505;
}

.community-logo-chessnuts img {
  padding: 10px;
}


/* FIVE.14 OPTICAL CENTERING */

.community-logo-five14 {
  background: #fff;
}

.community-logo-five14 img {
  width: 100%;
  height: 100%;

  object-fit: contain;
  object-position: center;

  padding: 8px;

  transform:
    translateY(-4px)
    scale(1.08);

  transform-origin: center;
}

.community-copy {
  min-width: 0;
}

.community-role {
  margin: 0 0 8px;

  color: #56708b;

  font-size: 10px;

  font-weight: 700;

  letter-spacing: .12em;

  text-transform: uppercase;
}

.community-copy h3 {
  margin: 0;

  color: var(--ink);

  font-size:
    clamp(
      22px,
      1.8vw,
      30px
    );

  line-height: 1.08;

  letter-spacing: -.035em;
}

.community-copy h3 a {
  color: inherit;

  text-decoration: none;
}

.community-copy h3 a:hover {
  text-decoration: underline;

  text-decoration-thickness: 1px;

  text-underline-offset: 5px;
}

.community-copy > p:last-child {
  margin: 11px 0 0;

  color: #59636e;

  font-size: 13px;

  line-height: 1.6;
}


/* =========================================================
   MOMENTS / GALLERY
   ========================================================= */

.section-moments {
  background: #0a2341;

  color: var(--white);

  overflow: hidden;
}

.section-moments .eyebrow {
  color: #9ec7ea;
}

.moments-intro {
  max-width: 760px;

  margin:
    -24px
    0
    54px
    210px;

  color:
    rgba(255,255,255,.68);

  font-family:
    Georgia,
    "Times New Roman",
    serif;

  font-size:
    clamp(
      20px,
      1.8vw,
      28px
    );

  line-height: 1.45;
}

.moments-grid {
  margin-left: 210px;

  display: grid;

  grid-template-columns:
    repeat(
      12,
      minmax(0, 1fr)
    );

  gap: 18px;

  max-width: 1040px;
}

.moment-card {
  position: relative;

  min-width: 0;
  min-height: 420px;

  margin: 0;

  overflow: hidden;

  border:
    1px solid rgba(255,255,255,.14);

  border-radius: 22px;

  background: #102b4a;

  box-shadow:
    0
    18px
    48px
    rgba(0,0,0,.16);
}

.moment-hero {
  grid-column: 1 / -1;

  min-height: 590px;
}

.moment-wide {
  grid-column:
    span 7;
}

.moment-portrait {
  grid-column:
    span 5;
}

.moment-card img {
  position: absolute;

  inset: 0;

  width: 100%;
  height: 100%;

  object-fit: cover;

  transition:
    transform .55s cubic-bezier(.2,.65,.3,1),
    filter .35s ease;
}

.moment-hero img {
  object-position:
    center 58%;
}

.moment-card:nth-child(2) img {
  object-position:
    center center;
}

.moment-card:nth-child(3) img {
  object-position:
    center 42%;
}

.moment-card:nth-child(4) img {
  object-position:
    center 42%;
}

.moment-card:nth-child(5) img {
  object-position:
    center center;
}

.moment-card:nth-child(6) img {
  object-position:
    center center;
}

.moment-card:nth-child(7) img {
  object-position:
    center 48%;
}

.moment-card::after {
  content: "";

  position: absolute;

  inset: 0;

  z-index: 1;

  pointer-events: none;

  background:
    linear-gradient(
      to top,
      rgba(4,13,25,.84) 0%,
      rgba(4,13,25,.34) 29%,
      rgba(4,13,25,.02) 60%
    );
}

.moment-card figcaption,
.moment-link-caption {
  position: absolute;

  z-index: 2;

  left: 22px;
  right: 22px;
  bottom: 20px;

  display: grid;

  gap: 5px;
}

.moment-title {
  color: #fff;

  font-size:
    clamp(
      20px,
      1.7vw,
      28px
    );

  font-weight: 680;

  line-height: 1.05;

  letter-spacing: -.025em;
}

.moment-meta {
  color:
    rgba(255,255,255,.68);

  font-size: 11px;

  letter-spacing: .09em;

  line-height: 1.4;

  text-transform: uppercase;
}


/* =========================================================
   THAILAND PRESS & RECOGNITION
   ========================================================= */

.moment-thailand {
  overflow: visible;
}

.moment-thailand > img {
  border-radius: 22px;
}

.moment-thailand::after {
  border-radius: 22px;
}

.moment-thailand figcaption {
  z-index: 4;
}

.moment-coverage {
  position: relative;

  margin-top: 8px;

  width: fit-content;

  max-width: 100%;
}

.moment-coverage summary {
  width: fit-content;

  max-width: 100%;

  list-style: none;

  cursor: pointer;

  padding:
    8px
    11px;

  border:
    1px solid rgba(255,255,255,.28);

  border-radius: 999px;

  background:
    rgba(4,13,25,.42);

  color:
    rgba(255,255,255,.94);

  font-size: 9px;

  font-weight: 750;

  letter-spacing: .09em;

  line-height: 1.35;

  text-transform: uppercase;

  backdrop-filter:
    blur(10px);

  -webkit-backdrop-filter:
    blur(10px);

  transition:
    background .15s ease,
    border-color .15s ease;
}

.moment-coverage summary::-webkit-details-marker {
  display: none;
}

.moment-coverage summary:hover {
  background:
    rgba(4,13,25,.68);

  border-color:
    rgba(255,255,255,.5);
}

.moment-coverage[open] summary {
  background:
    rgba(4,13,25,.86);

  border-color:
    rgba(255,255,255,.42);
}

.moment-coverage-panel {
  position: absolute;

  z-index: 10;

  left: 0;

  bottom:
    calc(100% + 10px);

  width: 280px;

  max-width:
    min(
      280px,
      calc(100vw - 64px)
    );

  padding: 8px;

  border:
    1px solid rgba(255,255,255,.18);

  border-radius: 14px;

  background:
    rgba(5,15,30,.96);

  box-shadow:
    0
    18px
    50px
    rgba(0,0,0,.42);

  backdrop-filter:
    blur(16px);

  -webkit-backdrop-filter:
    blur(16px);
}

.coverage-item {
  display: flex;

  align-items: center;
  justify-content: space-between;

  gap: 14px;

  padding:
    10px
    10px;

  border-radius: 9px;

  color: var(--white);

  text-decoration: none;

  transition:
    background .14s ease;
}

.coverage-item + .coverage-item {
  border-top:
    1px solid rgba(255,255,255,.08);
}

.coverage-item:hover {
  background:
    rgba(255,255,255,.08);
}

.coverage-item span {
  min-width: 0;

  font-size: 12px;

  font-weight: 650;

  line-height: 1.3;
}

.coverage-item small {
  flex:
    0
    0
    auto;

  color:
    rgba(255,255,255,.55);

  font-size: 9px;

  letter-spacing: .05em;

  line-height: 1.3;

  text-transform: uppercase;
}


/* =========================================================
   CLICKABLE TEMPO CARD
   ========================================================= */

.moment-link {
  display: block;

  color: inherit;

  text-decoration: none;

  cursor: pointer;
}

.moment-read {
  margin-top: 6px;

  color:
    rgba(255,255,255,.95);

  font-size: 10px;

  font-weight: 750;

  letter-spacing: .11em;

  line-height: 1.4;

  text-transform: uppercase;
}

@media (hover: hover) and (pointer: fine) {

  .moment-card:hover img {
    transform:
      scale(1.025);

    filter:
      brightness(1.035);
  }

  .moment-link:hover .moment-read {
    text-decoration: underline;

    text-decoration-thickness: 1px;

    text-underline-offset: 4px;
  }

}


/* =========================================================
   SOCIAL
   ========================================================= */

.section-social {
  background: var(--paper);

  color: var(--ink);
}

.section-social .eyebrow {
  color: #44627f;
}

.social-layout {
  display: grid;

  grid-template-columns:
    180px
    minmax(0, 1fr);

  gap: 30px;
}

.social-intro {
  grid-column: 2;

  max-width: 760px;

  margin:
    -26px
    0
    48px;

  font-family:
    Georgia,
    "Times New Roman",
    serif;

  font-size:
    clamp(
      24px,
      2.3vw,
      36px
    );

  line-height: 1.25;

  color: #283340;
}

.social-grid {
  grid-column: 2;

  display: grid;

  grid-template-columns:
    repeat(
      3,
      minmax(0, 1fr)
    );

  gap: 20px;

  max-width: 1040px;
}

.social-card {
  position: relative;

  min-width: 0;
  min-height: 290px;

  display: flex;

  flex-direction: column;

  justify-content: space-between;

  padding: 30px;

  border:
    1px solid rgba(13,20,32,.12);

  border-radius: 22px;

  background:
    rgba(255,255,255,.52);

  color: var(--ink);

  text-decoration: none;

  transition:
    transform .2s ease,
    border-color .2s ease,
    background .2s ease,
    box-shadow .2s ease;
}

.social-card:hover {
  transform:
    translateY(-3px);

  background:
    rgba(255,255,255,.82);

  box-shadow:
    0
    18px
    45px
    rgba(13,20,32,.08);
}

.social-youtube:hover {
  border-color:
    rgba(255,0,0,.27);
}

.social-instagram:hover {
  border-color:
    rgba(193,53,132,.26);
}

.social-kick:hover {
  border-color:
    rgba(83,252,24,.34);
}


/* SOCIAL PLATFORM LOGOS */

.social-brandmark {
  width: 34px;
  height: 34px;

  display: flex;

  align-items: center;
  justify-content: flex-start;

  margin-bottom: 28px;
}

.social-brandmark svg {
  display: block;

  width: 31px;
  height: 31px;
}

.social-brandmark-youtube svg {
  fill: #ff0000;
}

.social-brandmark-kick svg {
  fill: #53fc18;

  filter:
    drop-shadow(
      0
      0
      2px
      rgba(83,252,24,.10)
    );
}

.social-card h3 {
  margin: 0;

  color: var(--ink);

  font-size:
    clamp(
      22px,
      1.75vw,
      28px
    );

  font-weight: 720;

  line-height: 1.1;

  letter-spacing: -.03em;
}

.social-description {
  max-width: 380px;

  margin:
    22px
    0
    0;

  color: #59636e;

  font-size: 14px;

  line-height: 1.65;
}

.social-cta {
  display: inline-block;

  width: fit-content;

  margin-top: 30px;

  color: var(--blue);

  font-size: 11px;

  font-weight: 750;

  letter-spacing: .1em;

  text-transform: uppercase;
}

.social-card:hover .social-cta {
  text-decoration: underline;

  text-decoration-thickness: 1px;

  text-underline-offset: 5px;
}


/* =========================================================
   CONTACT
   ========================================================= */

.section-contact {
  background: #050f1e;

  color: var(--white);
}

.contact-grid {
  display: grid;

  grid-template-columns:
    1.1fr
    .9fr;

  gap: 90px;

  align-items: end;
}

.contact-actions {
  padding-bottom: 4px;
}

.contact-actions p {
  color:
    rgba(255,255,255,.62);

  line-height: 1.6;
}

.contact-link {
  display: block;

  width: fit-content;

  margin-top: 18px;

  color: var(--white);

  font-size:
    clamp(
      20px,
      2vw,
      30px
    );

  text-decoration-thickness: 1px;

  text-underline-offset: 6px;
}


/* =========================================================
   MEDIA KIT
   ========================================================= */

.contact-media-kit {
  margin-top: 34px;

  padding-top: 25px;

  border-top:
    1px solid rgba(255,255,255,.16);
}

.contact-media-label {
  margin: 0;

  color: #8db7df !important;

  font-size: 10px;

  font-weight: 750;

  letter-spacing: .14em;

  text-transform: uppercase;
}

.media-kit-links {
  display: flex;

  flex-wrap: wrap;

  gap: 10px;

  margin-top: 14px;
}

.media-kit-link {
  display: inline-flex;

  align-items: center;
  justify-content: center;

  min-height: 42px;

  padding:
    0
    15px;

  border:
    1px solid rgba(255,255,255,.28);

  border-radius: 999px;

  color: var(--white);

  background:
    rgba(255,255,255,.04);

  text-decoration: none;

  font-size: 10px;

  font-weight: 750;

  letter-spacing: .08em;

  text-transform: uppercase;

  transition:
    background .16s ease,
    color .16s ease,
    border-color .16s ease;
}

.media-kit-link:hover {
  background: var(--white);

  color: #050f1e;

  border-color: var(--white);
}


/* =========================================================
   FOOTER
   ========================================================= */

footer {
  display: flex;

  justify-content: space-between;

  gap: 20px;

  padding:
    24px
    max(
      32px,
      calc((100vw - var(--max)) / 2 + 32px)
    );

  background: #050e19;

  color:
    rgba(255,255,255,.55);

  font-size: 12px;
}

footer a {
  text-decoration: none;
}


/* =========================================================
   REVEAL
   ========================================================= */

.reveal {
  opacity: 0;

  transform:
    translateY(18px);

  transition:
    opacity .7s ease,
    transform .7s ease;
}

.reveal.visible {
  opacity: 1;

  transform: none;
}


/* =========================================================
   RESPONSIVE — SMALL DESKTOP
   ========================================================= */

@media (max-width: 1100px) {

  .nav {
    display: none;
  }

  .nhb-player {
    grid-template-columns: 1fr;
  }

  .nhb-score-column {
    border-left: 0;

    border-top:
      1px solid rgba(0,0,0,.10);
  }

  .nhb-board {
    max-width: 600px;
  }

}


/* =========================================================
   RESPONSIVE — TABLET
   ========================================================= */

@media (max-width: 1000px) {

  .player-profile {
    margin-left: 0;
  }

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

  .collaborations-intro,
  .collaborations-grid {
    margin-left: 0;
  }

  .collaborations-grid {
    max-width: none;
  }

  .collaboration-brand {
    flex-wrap: wrap;
  }

  .collaboration-moment {
    width: 100%;

    height: 150px;
  }

  .community-layout,
  .social-layout {
    grid-template-columns: 1fr;
  }

  .community-intro,
  .community-grid,
  .social-intro,
  .social-grid {
    grid-column: 1;
  }

  .moments-intro,
  .moments-grid {
    margin-left: 0;
  }

  .moments-grid {
    max-width: none;
  }

  .moment-hero {
    min-height: 520px;
  }

  .moment-card:not(.moment-hero) {
    min-height: 370px;
  }

}


/* =========================================================
   RESPONSIVE — TABLET / MOBILE
   ========================================================= */

@media (max-width: 900px) {

  .site-header {
    padding: 20px;
  }

  .brand-logo {
    width: 165px;
  }

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

    gap: 40px;

    padding:
      108px
      20px
      138px;
  }

  .hero-copy {
    order: 1;
  }

  .hero-portrait {
    order: 2;

    justify-self: stretch;

    width: 100%;

    max-width: 680px;
  }

  .hero h1 {
    font-size:
      clamp(
        70px,
        20vw,
        128px
      );
  }

  .hero-meta {
    left: 20px;
    right: 20px;

    bottom: 22px;

    grid-template-columns: 1fr;

    gap: 6px;
  }

  .hero-meta div {
    justify-content: space-between;
  }

  .section {
    padding:
      94px
      20px;
  }

  .section-heading {
    grid-template-columns: 1fr;

    gap: 8px;

    margin-bottom: 46px;
  }

  #about .section-heading {
    margin-bottom: 44px;
  }

  #about .about-grid {
    grid-template-columns: 1fr;

    row-gap: 30px;
  }

  #about .lead {
    grid-column: 1;

    max-width: 760px;

    font-size:
      clamp(
        28px,
        5vw,
        38px
      );
  }

  #about .body-copy {
    grid-column: 1;

    max-width: 620px;

    padding-top: 0;
  }

  .result-card {
    grid-template-columns:
      72px
      minmax(0, 1fr);
  }

  .result-tag {
    display: none;
  }

  .timeline {
    margin-left: 0;
  }

  .games-shell {
    grid-template-columns: 1fr;
  }

  .game-stage {
    padding: 16px;
  }

  .game-empty {
    min-height: 340px;
  }

  .game-titlebar {
    display: grid;

    gap: 16px;
  }

  .pgn-download {
    width: fit-content;
  }

  .portrait-section,
  .contact-grid {
    grid-template-columns: 1fr;

    gap: 34px;
  }

  .portrait-section {
    padding-top: 90px;
  }

  .moments-intro {
    max-width: 680px;

    margin:
      -6px
      0
      40px;

    font-size:
      clamp(
        19px,
        4vw,
        25px
      );
  }

  .moments-grid {
    grid-template-columns: 1fr;

    gap: 14px;
  }

  .moment-card,
  .moment-hero,
  .moment-wide,
  .moment-portrait {
    grid-column: 1 / -1;

    min-height: 0;

    aspect-ratio:
      4 / 3;
  }

  .moment-portrait {
    aspect-ratio:
      4 / 5;
  }

  .social-intro {
    margin:
      -6px
      0
      40px;
  }

  .social-grid {
    grid-template-columns: 1fr;
  }

  .social-card {
    min-height: 255px;
  }

}


/* =========================================================
   RESPONSIVE — COMMUNITY / SOCIAL MOBILE
   ========================================================= */

@media (max-width: 700px) {

  .community-intro {
    margin:
      -6px
      0
      34px;

    font-size: 24px;
  }

  .community-grid {
    grid-template-columns: 1fr;
  }

  .community-card {
    grid-template-columns:
      100px
      minmax(0, 1fr);

    gap: 18px;

    padding: 18px;
  }

  .community-logo {
    width: 100px;

    height: 82px;
  }

  .community-logo-five14 img {
    padding: 6px;

    transform:
      translateY(-3px)
      scale(1.08);
  }

  .community-copy h3 {
    font-size: 22px;
  }

  .social-intro {
    font-size: 24px;
  }

}


/* =========================================================
   RESPONSIVE — MOBILE
   ========================================================= */

@media (max-width: 620px) {

  .brand-logo {
    width: 150px;
  }

  #about .section-heading {
    margin-bottom: 34px;
  }

  #about .lead {
    font-size:
      clamp(
        24px,
        7vw,
        32px
      );

    line-height: 1.18;
  }

  #about .body-copy {
    font-size: 14px;
  }

  .player-profile {
    margin-top: 54px;

    padding-top: 20px;
  }

  .player-profile-head {
    display: grid;

    gap: 7px;

    margin-bottom: 18px;
  }

  .player-profile-updated {
    font-size: 9px;
  }

  .player-profile-grid {
    grid-template-columns: 1fr 1fr;
  }

  .player-profile-item {
    min-height: 112px;

    padding: 16px 14px;
  }

  .player-profile-value {
    font-size: 27px;
  }

  .player-profile-value.compact {
    font-size: 19px;
  }

  .player-profile-name {
    margin-top: 16px;

    font-size: 9px;
  }

  .player-profile-peak {
    font-size: 10px;
  }

  .player-profile-link {
    font-size: 8px;
  }

  .game-titlebar h3,
  #game-title {
    font-size:
      clamp(
        28px,
        9vw,
        40px
      );

    line-height: 1.02;
  }

  .nhb-board-column {
    padding: 10px;
  }

  .nhb-board {
    border-radius: 5px;
  }

  .nhb-piece {
    font-size:
      clamp(
        19px,
        8vw,
        36px
      );
  }

  .nhb-controls {
    gap: 5px;

    margin-top: 12px;
  }

  .nhb-controls button {
    min-width: 38px;

    height: 36px;
  }

  .nhb-controls .nhb-flip {
    padding:
      0
      12px;
  }

  .nhb-score-head {
    padding:
      15px
      14px;
  }

  .nhb-moves {
    height: 240px;

    max-height: 240px;

    padding: 10px;
  }

  .nhb-move-row {
    grid-template-columns:
      30px
      minmax(0, 1fr)
      minmax(0, 1fr);
  }

  .nhb-move {
    font-size: 12px;
  }

  .nhb-file-label,
  .nhb-rank-label {
    font-size: 8px;
  }


  /* COLLABORATIONS MOBILE */

  .collaborations-intro {
    margin:
      -6px
      0
      34px;

    font-size: 15px;
  }

  .collaborations-grid {
    grid-template-columns: 1fr;

    gap: 14px;
  }

  .collaboration-card {
    padding: 18px;
  }

  .collaboration-brand {
    min-height: 0;

    margin-bottom: 20px;

    flex-wrap: nowrap;
  }

  .collaboration-logo {
    width: 100px;
    height: 78px;
  }

  .collaboration-logo-joyland {
    width: 105px;
  }


  /* THREE BUNS MOBILE */

  .collaboration-logo-threebuns {
    width: 105px;
    height: 96px;
  }

  .collaboration-logo-threebuns img {
    padding: 7px;

    object-fit: contain;

    object-position: center;
  }

  .collaboration-moment {
    width: 150px;

    height: 96px;
  }

  .collaboration-copy h3 {
    font-size: 22px;
  }


  /* MOMENTS MOBILE */

  .moments-intro {
    margin-bottom: 30px;

    font-size: 18px;

    line-height: 1.5;
  }

  .moments-grid {
    gap: 12px;
  }

  .moment-card {
    border-radius: 16px;
  }

  .moment-card figcaption,
  .moment-link-caption {
    left: 16px;
    right: 16px;
    bottom: 15px;
  }

  .moment-title {
    font-size: 19px;
  }

  .moment-meta {
    font-size: 10px;
  }

  .moment-read {
    font-size: 9px;
  }

  .moment-thailand > img,
  .moment-thailand::after {
    border-radius: 16px;
  }

  .moment-coverage summary {
    padding:
      7px
      9px;

    font-size: 8px;
  }

  .moment-coverage-panel {
    left: 0;

    width:
      min(
        280px,
        calc(100vw - 64px)
      );

    max-height: 270px;

    overflow-y: auto;
  }

  .coverage-item {
    padding:
      9px
      8px;
  }

  .coverage-item span {
    font-size: 11px;
  }

  .coverage-item small {
    font-size: 8px;
  }


  /* SOCIAL MOBILE */

  .social-intro {
    margin-bottom: 30px;

    font-size: 22px;
  }

  .social-grid {
    gap: 14px;
  }

  .social-card {
    min-height: 235px;

    padding: 22px;

    border-radius: 18px;
  }

  .social-brandmark {
    width: 30px;
    height: 30px;

    margin-bottom: 23px;
  }

  .social-brandmark svg {
    width: 28px;
    height: 28px;
  }

  .social-card h3 {
    font-size: 22px;
  }

  .social-description {
    margin-top: 17px;

    font-size: 13px;
  }

  .social-cta {
    margin-top: 23px;

    font-size: 10px;
  }


  /* MEDIA KIT MOBILE */

  .contact-media-kit {
    margin-top: 28px;

    padding-top: 21px;
  }

  .media-kit-links {
    gap: 8px;
  }

  .media-kit-link {
    min-height: 40px;

    padding:
      0
      13px;

    font-size: 9px;
  }

}


/* =========================================================
   ACCESSIBILITY
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

  html {
    scroll-behavior: auto;
  }

  .reveal {
    opacity: 1;

    transform: none;

    transition: none;
  }

}
