:root {
  color-scheme: light;
  --gce-max: 1240px;
  --gce-reading: 760px;
  --gce-bg: #f7f8f9;
  --gce-surface: #ffffff;
  --gce-text: #18222b;
  --gce-muted: #5d6974;
  --gce-line: #d8dee3;
  --gce-accent: #1d5f8a;
  --gce-soft: #edf2f5;
  --gce-radius: 0;
  --gce-font: Arial, Helvetica, sans-serif;
  --gce-display: Arial, Helvetica, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body.gce-body {
  margin: 0;
  background: var(--gce-bg);
  color: var(--gce-text);
  font-family: var(--gce-font);
  font-size: 17px;
  line-height: 1.65;
  letter-spacing: 0;
  overflow-wrap: break-word;
}

.gce-body img {
  display: block;
  max-width: 100%;
}

.gce-body a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.gce-body a:hover {
  color: var(--gce-accent);
}

.gce-wrap {
  width: min(var(--gce-max), calc(100% - 48px));
  margin-right: auto;
  margin-left: auto;
}

.gce-skip {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 1000;
  padding: 10px 14px;
  background: var(--gce-text);
  color: #fff;
  transform: translateY(-160%);
}

.gce-skip:focus {
  color: #fff;
  transform: translateY(0);
}

.gce-body .gce-skip {
  color: #fff;
}

.gce-header {
  position: relative;
  z-index: 20;
  border-bottom: 1px solid var(--gce-line);
  background: var(--gce-surface);
}

.gce-header-main {
  display: grid;
  min-height: 76px;
  grid-template-columns: minmax(210px, 300px) 1fr;
  align-items: center;
  gap: 32px;
}

.gce-brand {
  display: block;
  width: fit-content;
  text-decoration: none;
}

.gce-brand:hover {
  color: var(--gce-text);
}

.gce-wordmark {
  display: block;
  font-family: var(--gce-display);
  font-size: 29px;
  font-weight: 800;
  line-height: 1;
}

.gce-brandline {
  display: block;
  margin-top: 6px;
  color: var(--gce-muted);
  font-size: 11px;
  line-height: 1.2;
}

.gce-nav {
  justify-self: end;
}

.gce-nav ul {
  display: flex;
  margin: 0;
  padding: 0;
  align-items: center;
  justify-content: flex-end;
  gap: 24px;
  list-style: none;
}

.gce-nav a {
  display: block;
  padding: 27px 0 24px;
  border-bottom: 3px solid transparent;
  color: var(--gce-text);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
  white-space: nowrap;
}

.gce-nav a:hover,
.gce-nav a[aria-current="page"] {
  border-color: var(--gce-accent);
  color: var(--gce-accent);
}

.gce-menu-toggle {
  display: none;
  min-width: 72px;
  min-height: 42px;
  border: 1px solid var(--gce-text);
  border-radius: var(--gce-radius);
  background: var(--gce-surface);
  color: var(--gce-text);
  font: 700 14px/1 var(--gce-font);
  cursor: pointer;
}

.gce-menu-toggle:active,
.gce-button:active {
  transform: translateY(1px);
}

.gce-menu-toggle:focus-visible,
.gce-body a:focus-visible,
.gce-body input:focus-visible,
.gce-body button:focus-visible {
  outline: 3px solid var(--gce-accent);
  outline-offset: 3px;
}

.gce-main {
  min-height: 55vh;
}

.gce-section-label,
.gce-kicker {
  margin: 0 0 9px;
  color: var(--gce-accent);
  font-family: var(--gce-font);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.3;
  text-decoration: none;
}

.gce-section-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 430px);
  align-items: end;
  gap: 48px;
  margin-bottom: 30px;
}

.gce-section-head h2 {
  margin: 0;
  font-family: var(--gce-display);
  font-size: 36px;
  line-height: 1.12;
}

.gce-section-head > p {
  margin: 0;
  color: var(--gce-muted);
  font-size: 15px;
  line-height: 1.55;
}

.gce-story {
  min-width: 0;
}

.gce-story-media {
  display: block;
  overflow: hidden;
  border-radius: var(--gce-radius);
  background: var(--gce-soft);
  text-decoration: none;
}

.gce-image,
.gce-image-fallback {
  width: 100%;
  height: 100%;
  min-height: 150px;
  object-fit: cover;
}

.gce-story-copy h2,
.gce-headline h2 {
  margin: 6px 0 0;
  font-family: var(--gce-display);
  line-height: 1.22;
}

.gce-story-copy h2 a,
.gce-headline h2 a {
  text-decoration: none;
}

.gce-story-copy p {
  margin: 10px 0 0;
  color: var(--gce-muted);
  font-size: 15px;
  line-height: 1.55;
}

.gce-headline {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  padding: 18px 0;
  border-top: 1px solid var(--gce-line);
}

.gce-headline-number {
  color: var(--gce-accent);
  font-size: 13px;
  font-weight: 800;
}

.gce-headline h2 {
  font-size: 19px;
}

.gce-breadcrumbs {
  display: flex;
  padding: 22px 0 0;
  color: var(--gce-muted);
  font-size: 13px;
  gap: 8px;
}

.gce-breadcrumbs a {
  color: inherit;
}

.gce-breadcrumbs span:last-child {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.gce-article {
  padding: 50px 0 72px;
}

.gce-article-header,
.gce-article-body {
  width: min(var(--gce-reading), calc(100% - 48px));
  margin-right: auto;
  margin-left: auto;
}

.gce-article-header h1 {
  margin: 10px 0 18px;
  font-family: var(--gce-display);
  font-size: 50px;
  line-height: 1.08;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

.gce-deck {
  max-width: 680px;
  margin: 0;
  color: var(--gce-muted);
  font-size: 21px;
  line-height: 1.5;
}

.gce-article-hero {
  width: min(1040px, calc(100% - 48px));
  margin: 36px auto 42px;
}

.gce-article-hero .gce-image {
  width: 100%;
  aspect-ratio: 16 / 9;
  height: auto;
  max-height: 600px;
  border-radius: var(--gce-radius);
  object-fit: cover;
}

.gce-article-hero figcaption {
  margin-top: 8px;
  color: var(--gce-muted);
  font-size: 12px;
}

.gce-article-hero figcaption:empty {
  display: none;
}

.gce-article-body {
  color: #26323b;
  font-size: 18px;
  line-height: 1.78;
}

.gce-article-body > :first-child {
  margin-top: 0;
}

.gce-article-body p {
  margin: 0 0 23px;
}

.gce-article-body h2,
.gce-article-body h3 {
  color: var(--gce-text);
  font-family: var(--gce-display);
  line-height: 1.2;
}

.gce-article-body h2 {
  margin: 52px 0 18px;
  font-size: 31px;
}

.gce-article-body h3 {
  margin: 35px 0 14px;
  font-size: 24px;
}

.gce-article-body ul,
.gce-article-body ol {
  margin: 0 0 28px;
  padding-left: 24px;
}

.gce-article-body li {
  margin: 9px 0;
}

.gce-article-body blockquote {
  margin: 36px 0;
  padding: 22px 26px;
  border-left: 4px solid var(--gce-accent);
  background: var(--gce-soft);
  color: var(--gce-text);
  font-size: 21px;
}

.gce-article-body .ed-brief,
.gce-article-body .ed-alert,
.gce-article-body .ed-check,
.gce-article-body .ed-facts {
  margin: 32px 0;
  padding: 21px 24px;
  border: 1px solid var(--gce-line);
  border-left: 5px solid var(--gce-accent);
  border-radius: var(--gce-radius);
  background: var(--gce-surface);
}

.gce-article-body .ed-brief strong,
.gce-article-body .ed-alert strong,
.gce-article-body .ed-check strong,
.gce-article-body .ed-facts strong {
  display: block;
  margin-bottom: 6px;
  color: var(--gce-accent);
  font-size: 13px;
}

.gce-article-body .ed-brief p,
.gce-article-body .ed-alert p,
.gce-article-body .ed-check p,
.gce-article-body .ed-facts p {
  margin-bottom: 0;
}

.gce-article-body .ed-split,
.gce-article-body .ed-numbered {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 32px 0;
  border: 1px solid var(--gce-line);
  border-radius: var(--gce-radius);
  background: var(--gce-surface);
}

.gce-article-body .ed-numbered {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.gce-article-body .ed-split > div,
.gce-article-body .ed-numbered > div {
  padding: 22px;
}

.gce-article-body .ed-split > div + div,
.gce-article-body .ed-numbered > div + div {
  border-left: 1px solid var(--gce-line);
}

.gce-article-body .ed-sources {
  margin-top: 50px;
  padding-top: 20px;
  border-top: 2px solid var(--gce-text);
  font-size: 14px;
  line-height: 1.55;
}

.gce-article-body .ed-disclaimer {
  color: var(--gce-muted);
  font-size: 13px;
}

.gce-related {
  padding: 0 0 80px;
}

.gce-related-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
}

.gce-story-related .gce-story-media {
  aspect-ratio: 16 / 9;
}

.gce-story-related h2 {
  font-size: 21px;
}

.gce-archive {
  padding-bottom: 80px;
}

.gce-archive-header {
  max-width: 900px;
  padding-top: 54px;
  padding-bottom: 36px;
  margin-left: max(24px, calc((100% - var(--gce-max)) / 2));
}

.gce-archive-header h1 {
  margin: 0;
  font-family: var(--gce-display);
  font-size: 48px;
  line-height: 1.08;
}

.gce-archive-header > p:last-child {
  max-width: 700px;
  margin: 16px 0 0;
  color: var(--gce-muted);
}

.gce-archive-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 36px 26px;
}

.gce-story-archive,
.gce-story-archive-lead {
  padding-top: 14px;
  border-top: 3px solid var(--gce-text);
}

.gce-story-archive .gce-story-media,
.gce-story-archive-lead .gce-story-media {
  aspect-ratio: 16 / 9;
}

.gce-story-archive h2,
.gce-story-archive-lead h2 {
  font-size: 24px;
}

.gce-story-archive-lead {
  grid-column: span 2;
}

.gce-story-archive-lead h2 {
  font-size: 32px;
}

.gce-pagination {
  padding-top: 48px;
}

.gce-pagination .nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.gce-pagination .page-numbers {
  display: grid;
  min-width: 42px;
  min-height: 42px;
  padding: 0 12px;
  place-items: center;
  border: 1px solid var(--gce-line);
  background: var(--gce-surface);
  text-decoration: none;
}

.gce-pagination .current {
  border-color: var(--gce-accent);
  background: var(--gce-accent);
  color: #fff;
}

.gce-page {
  padding-bottom: 90px;
}

.gce-page-article {
  width: min(900px, calc(100% - 48px));
  margin: 50px auto 0;
}

.gce-page-article > header h1 {
  margin: 0 0 32px;
  font-family: var(--gce-display);
  font-size: 48px;
  line-height: 1.1;
}

.gce-page-content {
  line-height: 1.75;
}

.gce-page-content h1,
.gce-page-content h2,
.gce-page-content h3 {
  font-family: var(--gce-display);
  line-height: 1.18;
}

.gce-page-content h1 {
  margin: 0;
  font-size: 48px;
}

.gce-page-content h2 {
  margin: 44px 0 14px;
  font-size: 28px;
}

.gce-page-content h3 {
  margin: 32px 0 12px;
  font-size: 22px;
}

.gce-page-content .ed-legal {
  max-width: 900px;
  margin: 0 auto;
  padding: 0;
}

.gce-page-content .ed-legal > header {
  display: grid;
  grid-template-columns: minmax(240px, 0.8fr) minmax(0, 1.2fr);
  gap: 42px;
  margin-bottom: 42px;
  padding: 24px 0 34px;
  border-top: 6px solid var(--gce-accent);
  border-bottom: 1px solid var(--gce-line);
}

.gce-page-content .ed-legal > header p {
  margin: 0;
  color: var(--gce-muted);
}

.gce-page-content .ed-legal dl {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  margin: 28px 0;
  border-top: 1px solid var(--gce-line);
}

.gce-page-content .ed-legal dt,
.gce-page-content .ed-legal dd {
  margin: 0;
  padding: 15px 0;
  border-bottom: 1px solid var(--gce-line);
}

.gce-page-content .ed-legal dt {
  color: var(--gce-muted);
  font-size: 13px;
  font-weight: 700;
}

.gce-error,
.gce-empty {
  padding-top: 90px;
  padding-bottom: 120px;
}

.gce-error h1,
.gce-empty h1 {
  max-width: 760px;
  margin: 8px 0 20px;
  font-family: var(--gce-display);
  font-size: 50px;
  line-height: 1.1;
}

.gce-error > p,
.gce-empty > p {
  max-width: 660px;
  color: var(--gce-muted);
}

.gce-button {
  display: inline-flex;
  min-height: 46px;
  margin-top: 18px;
  padding: 0 20px;
  align-items: center;
  border: 1px solid var(--gce-accent);
  border-radius: var(--gce-radius);
  background: var(--gce-accent);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.gce-button:hover {
  background: var(--gce-text);
  color: #fff;
}

.gce-body .gce-button,
.gce-body .gce-button:hover {
  color: #fff;
}

.gce-footer {
  border-top: 1px solid var(--gce-line);
  background: var(--gce-surface);
}

.gce-footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 70px;
  padding-top: 48px;
  padding-bottom: 38px;
}

.gce-footer-brand strong {
  font-family: var(--gce-display);
  font-size: 28px;
}

.gce-footer-brand p {
  max-width: 400px;
  margin: 10px 0 0;
  color: var(--gce-muted);
  font-size: 14px;
}

.gce-footer h2 {
  margin: 0 0 10px;
  color: var(--gce-muted);
  font-size: 13px;
}

.gce-footer ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.gce-footer li {
  margin: 7px 0;
}

.gce-footer a {
  font-size: 14px;
}

.gce-footer-note {
  padding-top: 18px;
  padding-bottom: 22px;
  border-top: 1px solid var(--gce-line);
  color: var(--gce-muted);
  font-size: 12px;
}

.gce-footer-note p {
  margin: 0;
}

@media (max-width: 1100px) {
  .gce-header-main {
    grid-template-columns: 220px auto 1fr;
    gap: 20px;
  }

  .gce-menu-toggle {
    display: block;
    justify-self: end;
  }

  .gce-nav {
    display: none;
    grid-column: 1 / -1;
    width: 100%;
    justify-self: stretch;
  }

  .gce-nav.is-open {
    display: block;
  }

  .gce-nav ul {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0;
    padding-bottom: 16px;
  }

  .gce-nav a {
    padding: 12px 10px;
    border-bottom: 1px solid var(--gce-line);
    white-space: normal;
  }

  .gce-related-grid,
  .gce-archive-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  body.gce-body {
    font-size: 16px;
  }

  .gce-wrap,
  .gce-article-header,
  .gce-article-body,
  .gce-article-hero,
  .gce-page-article {
    width: calc(100% - 32px);
  }

  .gce-header-main {
    min-height: 70px;
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .gce-wordmark {
    font-size: 26px;
  }

  .gce-brandline {
    max-width: 230px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .gce-nav {
    grid-column: 1 / -1;
  }

  .gce-nav ul {
    grid-template-columns: 1fr;
  }

  .gce-section-head {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .gce-section-head h2 {
    font-size: 30px;
  }

  .gce-section-head > p {
    max-width: 560px;
  }

  .gce-breadcrumbs {
    overflow: hidden;
  }

  .gce-article {
    padding-top: 38px;
  }

  .gce-article-header h1,
  .gce-archive-header h1,
  .gce-page-article > header h1,
  .gce-page-content h1,
  .gce-error h1,
  .gce-empty h1 {
    font-size: 36px;
  }

  .gce-deck {
    font-size: 18px;
  }

  .gce-article-hero {
    margin-top: 26px;
    margin-bottom: 32px;
  }

  .gce-article-hero .gce-image {
    aspect-ratio: 4 / 3;
  }

  .gce-article-body {
    font-size: 17px;
    line-height: 1.72;
  }

  .gce-article-body h2 {
    margin-top: 42px;
    font-size: 27px;
  }

  .gce-article-body .ed-split,
  .gce-article-body .ed-numbered {
    grid-template-columns: 1fr;
  }

  .gce-article-body .ed-split > div + div,
  .gce-article-body .ed-numbered > div + div {
    border-top: 1px solid var(--gce-line);
    border-left: 0;
  }

  .gce-related-grid,
  .gce-archive-grid {
    grid-template-columns: 1fr;
  }

  .gce-story-archive-lead {
    grid-column: auto;
  }

  .gce-story-archive-lead h2 {
    font-size: 26px;
  }

  .gce-archive-header {
    width: calc(100% - 32px);
    padding-top: 42px;
    margin-right: auto;
    margin-left: auto;
  }

  .gce-page-content .ed-legal > header,
  .gce-page-content .ed-legal dl {
    grid-template-columns: 1fr;
  }

  .gce-page-content .ed-legal > header {
    gap: 18px;
  }

  .gce-page-content .ed-legal dt {
    padding-bottom: 3px;
    border-bottom: 0;
  }

  .gce-page-content .ed-legal dd {
    padding-top: 3px;
  }

  .gce-footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
