:root {
  --ink: #17324D;
  --blue: #2878B8;
  --highlight: #F5C84C;
  --sky: #EEF6FA;
  --text: #18212B;
  --white: #FFFFFF;
  --max-width: 1180px;
  --radius: 18px;
  --shadow: 0 16px 40px rgba(23, 50, 77, .12);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: clip;
  color: var(--text);
  background: var(--white);
  font-family: "Source Sans 3", Arial, sans-serif;
  font-size: 1.0625rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img,
svg {
  display: block;
  max-width: 100%;
}

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

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3,
.primary-nav,
.header-cta,
.button,
.tab-label,
.story-meta,
.section-kicker {
  font-family: Sora, Arial, sans-serif;
}

h1,
h2,
h3 {
  color: var(--ink);
  line-height: 1.1;
  letter-spacing: -.035em;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(2rem, 4vw, 3.25rem);
}

:focus-visible {
  border-radius: 3px;
  outline: 3px solid var(--ink);
  outline-offset: 4px;
  box-shadow: 0 0 0 6px var(--highlight);
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  color: var(--white);
  background: var(--ink);
  font-weight: 700;
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: min(calc(100% - 40px), var(--max-width));
  margin-inline: auto;
}

.site-header {
  position: relative;
  z-index: 20;
  border-bottom: 1px solid rgba(23, 50, 77, .1);
  background: rgba(255, 255, 255, .96);
}

.header-inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  gap: 28px;
}

.brand {
  flex: 0 0 auto;
}

.brand img {
  width: 164px;
  height: auto;
}

.primary-nav {
  display: flex;
  flex: 1;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 1.8vw, 26px);
  color: var(--ink);
  font-size: .8rem;
  font-weight: 600;
}

.primary-nav a {
  position: relative;
  white-space: nowrap;
}

.primary-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 3px;
  background: var(--highlight);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.primary-nav a:hover::after {
  transform: scaleX(1);
}

.mobile-nav {
  position: relative;
  display: none;
  margin-left: auto;
  color: var(--ink);
  font-family: Sora, Arial, sans-serif;
  font-size: .78rem;
  font-weight: 700;
}

.mobile-nav summary {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border: 2px solid var(--ink);
  cursor: pointer;
  list-style: none;
}

.mobile-nav summary::-webkit-details-marker {
  display: none;
}

.mobile-nav summary::after {
  content: "+";
  margin-left: 8px;
  color: var(--blue);
  font-size: 1rem;
}

.mobile-nav[open] summary::after {
  content: "−";
}

.mobile-nav nav {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  width: min(280px, calc(100vw - 28px));
  display: grid;
  padding: 10px;
  border-top: 4px solid var(--highlight);
  background: var(--white);
  box-shadow: var(--shadow);
}

.mobile-nav nav a {
  padding: 10px 12px;
  border-bottom: 1px solid rgba(23, 50, 77, .1);
}

.mobile-nav nav a:hover {
  background: var(--sky);
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 46px;
  padding: 10px 18px;
  border: 2px solid var(--ink);
  font-size: .82rem;
  font-weight: 700;
  line-height: 1.2;
  transition: color 180ms ease, background-color 180ms ease, transform 180ms ease;
}

.header-cta:hover,
.button-ink:hover {
  color: var(--white);
  background: var(--ink);
}

.hero {
  padding: 28px 0 0;
  background: linear-gradient(var(--white) 0 76%, var(--sky) 76% 100%);
}

.hero-panel {
  position: relative;
  min-height: 590px;
  overflow: hidden;
  border-radius: 4px 4px var(--radius) var(--radius);
  background: var(--ink);
  box-shadow: var(--shadow);
  isolation: isolate;
}

.hero-visual {
  position: absolute;
  z-index: -2;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-shade {
  position: absolute;
  z-index: -1;
  inset: 0;
  background: linear-gradient(90deg, rgba(23, 50, 77, .98) 0%, rgba(23, 50, 77, .9) 36%, rgba(23, 50, 77, .28) 63%, rgba(23, 50, 77, .04) 100%);
}

.hero-copy {
  width: min(56%, 610px);
  padding: clamp(76px, 8vw, 112px) 0 108px clamp(36px, 6vw, 78px);
  color: var(--white);
}

.eyebrow,
.section-kicker,
.tab-label {
  margin-bottom: 15px;
  color: var(--blue);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.eyebrow {
  color: var(--ink);
}

.eyebrow span,
.tab-label {
  display: inline-block;
  padding: 5px 9px;
  background: var(--highlight);
  transform: rotate(-1deg);
}

.hero h1 {
  max-width: 600px;
  margin-bottom: 24px;
  color: var(--white);
  font-size: clamp(3rem, 6vw, 5.6rem);
  font-weight: 700;
  letter-spacing: -.065em;
}

.hero h1 span {
  position: relative;
  white-space: nowrap;
}

.hero h1 span::after {
  content: "";
  position: absolute;
  z-index: -1;
  right: -.05em;
  bottom: .06em;
  left: -.04em;
  height: .18em;
  background: var(--highlight);
  transform: rotate(-1deg);
}

.hero-copy > p:not(.eyebrow) {
  max-width: 500px;
  margin-bottom: 32px;
  color: rgba(255, 255, 255, .88);
  font-size: 1.15rem;
}

.button-highlight {
  border-color: var(--highlight);
  color: var(--ink);
  background: var(--highlight);
}

.button-highlight:hover {
  border-color: var(--white);
  background: var(--white);
  transform: translateY(-2px);
}

.route-marker {
  position: absolute;
  right: 30px;
  bottom: 22px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  color: var(--white);
  background: rgba(23, 50, 77, .76);
  backdrop-filter: blur(8px);
  font-family: Sora, Arial, sans-serif;
  font-size: .65rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.route-marker i {
  width: 20px;
  height: 1px;
  background: var(--highlight);
}

.category-rail {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  margin-top: -34px;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.category-rail a {
  position: relative;
  min-width: 0;
  padding: 24px 17px 21px;
  border-right: 1px solid rgba(23, 50, 77, .11);
  transition: color 180ms ease, background-color 180ms ease;
}

.category-rail a:last-child {
  border-right: 0;
}

.category-rail a::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 5px;
  background: var(--highlight);
  transform: scaleX(.32);
  transform-origin: left;
  transition: transform 180ms ease;
}

.category-rail a:hover {
  color: var(--ink);
  background: var(--sky);
}

.category-rail a:hover::before {
  transform: scaleX(1);
}

.category-rail small,
.category-rail strong {
  display: block;
}

.category-rail small {
  min-height: 36px;
  color: rgba(23, 50, 77, .72);
  font-size: .71rem;
  line-height: 1.25;
}

.category-rail strong {
  margin-top: 7px;
  color: var(--ink);
  font-family: Sora, Arial, sans-serif;
  font-size: .88rem;
  line-height: 1.25;
}

.category-rail a > span {
  position: absolute;
  right: 14px;
  bottom: 17px;
  color: var(--blue);
}

.section {
  padding: clamp(78px, 9vw, 120px) 0;
}

.section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 42px;
}

.section-kicker {
  color: var(--ink);
  margin-bottom: 8px;
}

.text-link,
.read-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--ink);
  font-family: Sora, Arial, sans-serif;
  font-size: .84rem;
  font-weight: 700;
}

.text-link {
  padding-bottom: 4px;
  border-bottom: 2px solid var(--highlight);
}

.featured-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(330px, .85fr);
  gap: 22px;
}

.lead-story {
  min-width: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--sky);
}

.lead-story > a {
  min-height: 500px;
  display: grid;
  grid-template-columns: .85fr 1.15fr;
}

.lead-story-visual {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 38px;
  overflow: hidden;
  color: var(--white);
  background: var(--blue);
}

.lead-story-visual::before,
.lead-story-visual::after {
  content: "";
  position: absolute;
  border: 2px solid rgba(255, 255, 255, .18);
  border-radius: 50%;
}

.lead-story-visual::before {
  width: 250px;
  height: 250px;
  top: -70px;
  right: -100px;
}

.lead-story-visual::after {
  width: 120px;
  height: 120px;
  top: 52px;
  right: -20px;
}

.lead-story-visual strong {
  font-family: Sora, Arial, sans-serif;
  font-size: clamp(5rem, 9vw, 8.5rem);
  font-weight: 600;
  line-height: .8;
  letter-spacing: -.09em;
}

.lead-story-visual small {
  margin-top: 22px;
  font-family: Sora, Arial, sans-serif;
  font-size: .78rem;
  font-weight: 600;
  text-transform: uppercase;
}

.path-line {
  position: absolute;
  top: 42px;
  left: 38px;
  width: 42px;
  height: 42px;
  border-top: 4px solid var(--highlight);
  border-right: 4px solid var(--highlight);
}

.path-line::after {
  content: "";
  position: absolute;
  top: -7px;
  right: -7px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--white);
}

.lead-story-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(32px, 5vw, 58px);
}

.story-meta {
  margin-bottom: 14px;
  color: rgba(23, 50, 77, .72);
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.story-meta span {
  color: var(--blue);
}

.lead-story h3 {
  margin-bottom: 20px;
  font-size: clamp(1.75rem, 3vw, 2.6rem);
}

.lead-story-copy > p:not(.story-meta) {
  color: rgba(23, 50, 77, .78);
}

.lead-story .read-more {
  margin-top: auto;
  padding-top: 24px;
}

.story-stack {
  display: grid;
  grid-template-rows: repeat(4, 1fr);
  border-top: 1px solid rgba(23, 50, 77, .16);
}

.stack-story {
  min-width: 0;
  border-bottom: 1px solid rgba(23, 50, 77, .16);
}

.stack-story a {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 22px 44px 22px 4px;
}

.stack-story a > span {
  position: absolute;
  right: 8px;
  bottom: 24px;
  color: var(--blue);
  font-size: 1.2rem;
  transition: transform 180ms ease;
}

.stack-story a:hover > span {
  transform: translateX(5px);
}

.category-entry a {
  padding-bottom: 42px;
}

.category-entry a > span {
  right: auto;
  bottom: 14px;
  left: 4px;
  font-family: Sora, Arial, sans-serif;
  font-size: .66rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.category-entry i {
  font-style: normal;
}

.stack-story h3 {
  margin-bottom: 0;
  font-size: 1.14rem;
  letter-spacing: -.025em;
}

.latest-section {
  background: var(--sky);
}

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

.article-card {
  min-width: 0;
  border-top: 5px solid var(--highlight);
  background: var(--white);
  box-shadow: 0 8px 24px rgba(23, 50, 77, .07);
  transition: box-shadow 180ms ease, transform 180ms ease;
}

.article-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.article-card a {
  min-height: 150px;
  display: flex;
  align-items: flex-end;
  padding: 26px;
}

.article-card h3 {
  margin-bottom: 0;
  font-size: 1.12rem;
}

.fallback {
  padding: 24px;
  border-left: 5px solid var(--highlight);
  background: var(--white);
}

.fallback a {
  margin-left: 6px;
  color: var(--ink);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: var(--highlight);
  text-decoration-thickness: 3px;
}

.editorial-directory {
  border-top: 1px solid rgba(23, 50, 77, .12);
}

.editorial-section {
  padding: 78px 0;
  border-bottom: 1px solid rgba(23, 50, 77, .12);
}

.editorial-section:nth-child(even) {
  background: rgba(238, 246, 250, .48);
}

.editorial-row {
  display: grid;
  grid-template-columns: minmax(240px, .7fr) minmax(0, 1.8fr);
  gap: clamp(50px, 8vw, 110px);
  align-items: start;
}

.editorial-intro {
  position: sticky;
  top: 28px;
}

.editorial-intro h2 {
  margin-bottom: 20px;
}

.editorial-intro > p:not(.tab-label) {
  color: rgba(23, 50, 77, .72);
}

.editorial-intro .text-link {
  margin-top: 8px;
}

.editorial-stories {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.editorial-stories article {
  min-width: 0;
  border: 1px solid rgba(23, 50, 77, .13);
  background: var(--white);
  transition: border-color 180ms ease, transform 180ms ease;
}

.editorial-stories article:hover {
  border-color: var(--blue);
  transform: translateY(-4px);
}

.editorial-stories article:only-child {
  grid-column: 1 / -1;
}

.editorial-stories article:only-child a {
  min-height: 210px;
}

.editorial-stories article:only-child h3 {
  max-width: 34ch;
  font-size: clamp(1.2rem, 2vw, 1.55rem);
}

.editorial-stories a {
  min-height: 250px;
  display: flex;
  flex-direction: column;
  padding: 24px;
}

.editorial-stories small {
  color: var(--blue);
  font-family: Sora, Arial, sans-serif;
  font-size: .67rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.editorial-stories h3 {
  margin: 30px 0;
  font-size: 1.12rem;
}

.editorial-stories a > span {
  margin-top: auto;
  color: var(--ink);
  font-family: Sora, Arial, sans-serif;
  font-size: .75rem;
  font-weight: 700;
}

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

.resources-panel {
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  gap: clamp(45px, 8vw, 100px);
  padding: clamp(38px, 6vw, 72px);
  border-radius: var(--radius);
  color: var(--white);
  background: var(--ink);
}

.resources-copy h2 {
  margin-bottom: 20px;
  color: var(--white);
}

.resources-copy > p:last-child {
  color: rgba(255, 255, 255, .72);
}

.resources-copy .section-kicker {
  color: var(--highlight);
}

.resource-list {
  border-top: 1px solid rgba(255, 255, 255, .2);
}

.resource-list a {
  position: relative;
  display: grid;
  grid-template-columns: 110px 1fr auto;
  align-items: center;
  gap: 18px;
  padding: 19px 4px;
  border-bottom: 1px solid rgba(255, 255, 255, .2);
}

.resource-list span {
  color: var(--highlight);
  font-family: Sora, Arial, sans-serif;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.resource-list strong {
  font-family: Sora, Arial, sans-serif;
  font-size: .95rem;
}

.resource-list i {
  font-style: normal;
  transition: transform 180ms ease;
}

.resource-list a:hover i {
  transform: translateX(5px);
}

.about-section {
  padding-top: 20px;
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(260px, .8fr) minmax(0, 1.2fr);
  gap: clamp(50px, 9vw, 130px);
  align-items: center;
}

.about-mark {
  aspect-ratio: 1.25;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  border: 2px solid var(--ink);
  color: var(--ink);
  background: var(--sky);
  box-shadow: 14px 14px 0 var(--highlight);
  font-family: Sora, Arial, sans-serif;
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 700;
  letter-spacing: -.08em;
}

.about-mark i {
  width: 3px;
  height: 65%;
  background: var(--blue);
  transform: rotate(18deg);
}

.about-copy h2 {
  max-width: 680px;
  margin-bottom: 24px;
}

.about-copy > p:not(.section-kicker) {
  max-width: 680px;
  color: rgba(23, 50, 77, .78);
  font-size: 1.14rem;
}

.about-copy .button {
  margin-top: 18px;
}

.button-ink {
  color: var(--ink);
  background: transparent;
}

.site-footer {
  padding-top: 64px;
  color: rgba(255, 255, 255, .72);
  background: var(--ink);
}

.static-page {
  padding: clamp(72px, 9vw, 120px) 0;
  background: var(--sky);
}

.static-page-inner {
  max-width: 800px;
}

.static-page h1 {
  margin-bottom: 24px;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
}

.static-page h2 {
  margin: 54px 0 16px;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
}

.static-page p,
.static-page li {
  max-width: 720px;
}

.static-page a:not(.text-link) {
  color: var(--blue);
  text-decoration: underline;
  text-decoration-color: var(--highlight);
  text-decoration-thickness: 2px;
}

.static-lead {
  color: var(--ink);
  font-size: clamp(1.2rem, 2.2vw, 1.5rem);
  font-weight: 600;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.7fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 58px;
}

.footer-brand img {
  padding: 5px;
  background: var(--white);
}

.footer-brand p {
  margin-top: 18px;
}

.footer-grid nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}

.footer-grid nav p {
  margin-bottom: 9px;
  color: var(--white);
  font-family: Sora, Arial, sans-serif;
  font-size: .78rem;
  font-weight: 700;
  text-transform: uppercase;
}

.footer-grid nav a:hover,
.footer-bottom a:hover {
  color: var(--highlight);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding: 21px 0;
  border-top: 1px solid rgba(255, 255, 255, .14);
  font-size: .9rem;
}

.footer-bottom p {
  margin-bottom: 0;
}

@media (max-width: 1080px) {
  .primary-nav {
    display: none;
  }

  .mobile-nav {
    display: block;
  }

  .header-cta {
    margin-left: 0;
  }

  .hero-copy {
    width: 62%;
  }

  .category-rail {
    overflow-x: auto;
    grid-template-columns: repeat(6, 190px);
    scrollbar-color: var(--blue) var(--sky);
  }

  .featured-layout {
    grid-template-columns: 1fr;
  }

  .story-stack {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: none;
  }

  .stack-story:nth-child(odd) {
    border-right: 1px solid rgba(23, 50, 77, .16);
  }

  .editorial-row {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .editorial-intro {
    position: static;
    max-width: 680px;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(calc(100% - 28px), var(--max-width));
  }

  .header-inner {
    min-height: 68px;
    gap: 12px;
  }

  .brand img {
    width: 138px;
  }

  .header-cta {
    display: none;
  }

  .hero {
    padding-top: 14px;
  }

  .hero-panel {
    min-height: 590px;
  }

  .hero-visual {
    object-position: 66% center;
  }

  .hero-shade {
    background: linear-gradient(90deg, rgba(23, 50, 77, .96) 0%, rgba(23, 50, 77, .81) 60%, rgba(23, 50, 77, .32) 100%);
  }

  .hero-copy {
    width: 88%;
    padding: 68px 0 110px 28px;
  }

  .hero h1 {
    font-size: clamp(2.8rem, 13vw, 4rem);
  }

  .hero h1 span {
    white-space: normal;
  }

  .route-marker {
    right: auto;
    bottom: 20px;
    left: 26px;
  }

  .category-rail {
    margin-top: -26px;
  }

  .section-heading {
    align-items: flex-start;
    flex-direction: column;
    margin-bottom: 32px;
  }

  .lead-story > a {
    min-height: 0;
    grid-template-columns: 1fr;
  }

  .lead-story-visual {
    min-height: 260px;
  }

  .lead-story-copy {
    min-height: 330px;
  }

  .story-stack,
  .article-grid,
  .editorial-stories {
    grid-template-columns: 1fr;
  }

  .stack-story:nth-child(odd) {
    border-right: 0;
  }

  .stack-story a {
    min-height: 150px;
  }

  .article-card a {
    min-height: 130px;
  }

  .editorial-section {
    padding: 64px 0;
  }

  .editorial-stories a {
    min-height: 190px;
  }

  .resources-panel,
  .about-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .resources-panel {
    gap: 30px;
  }

  .resource-list a {
    grid-template-columns: 90px 1fr auto;
  }

  .about-section {
    padding-top: 0;
  }

  .about-mark {
    max-width: 460px;
  }

  .footer-grid {
    gap: 36px;
  }
}

@media (max-width: 460px) {
  body {
    font-size: 1rem;
  }

  .header-cta span {
    display: none;
  }

  .hero-panel {
    min-height: 620px;
  }

  .hero-copy {
    width: calc(100% - 22px);
    padding-left: 22px;
  }

  .hero-copy > p:not(.eyebrow) {
    font-size: 1rem;
  }

  .route-marker {
    left: 20px;
    gap: 5px;
    padding: 7px 9px;
    font-size: .56rem;
  }

  .route-marker i {
    width: 12px;
  }

  .category-rail {
    grid-template-columns: repeat(6, 176px);
  }

  .resource-list a {
    grid-template-columns: 1fr auto;
  }

  .resource-list span {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 9px;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
