:root {
  --navy: #0f1837;
  --navy-2: #172451;
  --blue: #598ddc;
  --blue-bright: #77a8f2;
  --ink: #11172b;
  --muted: #5d6579;
  --paper: #f5f7fb;
  --white: #ffffff;
  --line: #dce2ee;
  --radius: 18px;
  --shadow: 0 18px 50px rgba(15, 24, 55, 0.11);
  --shell: min(1180px, calc(100% - 36px));
}

* {
  box-sizing: border-box;
}

html:has(body.topo-editorial-home) {
  font-size: 16px;
}

html {
  scroll-behavior: smooth;
}

body.topo-editorial-home {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Segoe UI", Arial, Helvetica, sans-serif;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.topo-shell {
  width: var(--shell);
  margin-inline: auto;
}

.topo-skip-link {
  position: fixed;
  left: 12px;
  top: -60px;
  z-index: 100;
  padding: 10px 16px;
  background: var(--white);
  color: var(--navy);
  font-weight: 800;
  transition: top 0.2s ease;
}

.topo-skip-link:focus {
  top: 12px;
}

.topo-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.topo-topline {
  background: #091027;
  color: #dce8fb;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.topo-topline__inner {
  min-height: 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.topo-topline a {
  color: var(--blue-bright);
}

.topo-site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(15, 24, 55, 0.98);
  color: var(--white);
  box-shadow: 0 8px 24px rgba(4, 9, 25, 0.18);
}

.topo-masthead {
  min-height: 78px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 36px;
}

.topo-brand {
  display: inline-flex;
  align-items: flex-end;
  gap: 9px;
}

.topo-brand img {
  width: 128px;
  height: auto;
}

.topo-brand span {
  margin-bottom: 11px;
  color: var(--blue-bright);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.topo-desktop-nav {
  display: flex;
  justify-content: center;
  gap: 30px;
}

.topo-desktop-nav a,
.topo-mobile-nav a {
  color: #d8def0;
  font-size: 0.87rem;
  font-weight: 750;
}

.topo-desktop-nav a:hover,
.topo-desktop-nav a:focus-visible,
.topo-desktop-nav .is-active {
  color: var(--white);
}

.topo-desktop-nav .is-active {
  position: relative;
}

.topo-desktop-nav .is-active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -13px;
  height: 3px;
  background: var(--blue);
}

.topo-masthead__actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.topo-search-button {
  position: relative;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  background: transparent;
  color: var(--white);
  font-size: 1.45rem;
  cursor: pointer;
  font-size: 0;
}

.topo-search-button::before {
  content: "";
  position: absolute;
  left: 12px;
  top: 10px;
  width: 12px;
  height: 12px;
  border: 2px solid currentColor;
  border-radius: 50%;
}

.topo-search-button::after {
  content: "";
  position: absolute;
  left: 24px;
  top: 24px;
  width: 7px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  transform: rotate(45deg);
}

.topo-primary-button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 999px;
  padding: 0 20px;
  font-size: 0.84rem;
  font-weight: 850;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.topo-primary-button:hover,
.topo-primary-button:focus-visible {
  transform: translateY(-2px);
}

.topo-primary-button--light {
  background: var(--blue);
  color: var(--white);
  box-shadow: 0 8px 22px rgba(89, 141, 220, 0.28);
}

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

.topo-mobile-nav {
  display: none;
}

.topo-lead-section {
  padding-block: 50px 42px;
}

.topo-section-kicker {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 18px;
}

.topo-section-kicker span,
.topo-eyebrow {
  color: var(--blue);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.topo-section-kicker span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
}

.topo-section-kicker span::before {
  content: "";
  width: 28px;
  height: 4px;
  border-radius: 999px;
  background: var(--blue);
}

.topo-section-kicker p {
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
}

.topo-lead-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) minmax(300px, 0.85fr);
  gap: 24px;
}

.topo-lead-story,
.topo-compact-story,
.topo-article-card {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.topo-lead-story {
  align-self: start;
  box-shadow: var(--shadow);
}

.topo-story-media {
  display: block;
  aspect-ratio: 16 / 7.3;
  overflow: hidden;
  background: #dfe7f5;
}

.topo-story-media img,
.topo-compact-story__image img,
.topo-article-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.topo-story-media:hover img,
.topo-compact-story__image:hover img,
.topo-article-card__media:hover img {
  transform: scale(1.035);
}

.topo-lead-story__body {
  padding: 27px 30px 30px;
}

.topo-tag {
  display: inline-flex;
  margin-bottom: 9px;
  color: #536077;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.topo-tag--blue {
  color: var(--blue);
}

.topo-tag--inverse {
  color: #a8c9fa;
}

.topo-lead-story h2,
.topo-compact-story h2,
.topo-article-card h3,
.topo-guide-section h2,
.topo-opportunity-cta h2 {
  margin: 0;
  font-weight: 900;
  letter-spacing: -0.035em;
  line-height: 1.07;
}

.topo-lead-story h2 {
  max-width: 760px;
  font-size: clamp(2rem, 4.2vw, 3.7rem);
}

.topo-lead-story h2 a:hover,
.topo-compact-story h2 a:hover,
.topo-article-card h3 a:hover {
  color: var(--blue);
}

.topo-lead-story__body > p {
  max-width: 690px;
  margin: 16px 0 20px;
  color: var(--muted);
  font-size: 1rem;
}

.topo-story-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  color: #727b8d;
  font-size: 0.76rem;
  font-weight: 700;
}

.topo-story-meta span::before {
  content: "•";
  margin-right: 16px;
}

.topo-side-stories {
  display: grid;
  gap: 24px;
}

.topo-compact-story {
  display: grid;
  grid-template-rows: 1fr auto;
}

.topo-compact-story__image {
  min-height: 170px;
  overflow: hidden;
  background: #dfe7f5;
}

.topo-compact-story > div {
  padding: 20px 22px 23px;
}

.topo-compact-story h2 {
  font-size: clamp(1.35rem, 2.3vw, 1.9rem);
}

.topo-compact-story p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 0.85rem;
}

.topo-compact-story--bordered {
  border-color: rgba(89, 141, 220, 0.5);
}

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

.topo-radar__inner {
  min-height: 76px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
}

.topo-radar strong {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.topo-radar p {
  margin: 0;
  font-size: 0.91rem;
}

.topo-radar a {
  font-size: 0.78rem;
  font-weight: 900;
}

.topo-latest-section {
  padding-block: 72px;
}

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

.topo-section-heading h2 {
  margin: 4px 0 0;
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 900;
  letter-spacing: -0.05em;
}

.topo-section-heading > a {
  padding-bottom: 7px;
  color: var(--blue);
  font-size: 0.82rem;
  font-weight: 900;
}

.topo-article-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.85fr 0.85fr;
  gap: 22px;
}

.topo-article-card {
  min-height: 390px;
}

.topo-article-card__media {
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #dfe7f5;
}

.topo-article-card__body {
  padding: 23px 24px 26px;
}

.topo-article-card h3 {
  font-size: clamp(1.45rem, 2.4vw, 2rem);
}

.topo-article-card p {
  margin: 13px 0 0;
  color: var(--muted);
  font-size: 0.91rem;
}

.topo-article-card--text {
  display: flex;
  align-items: flex-end;
  background: #e9f1fd;
  border-color: #c9dcf7;
}

.topo-article-card--dark {
  display: flex;
  align-items: flex-end;
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}

.topo-article-card--dark p {
  color: #c8d2e8;
}

.topo-article-card--dark h3,
.topo-article-card--dark h3 a {
  color: var(--white) !important;
}

.topo-text-link {
  display: inline-flex;
  margin-top: 25px;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 900;
}

.topo-text-link--light {
  color: #a8c9fa;
}

.topo-guide-section {
  padding-block: 76px;
  background: var(--white);
  border-block: 1px solid var(--line);
}

.topo-guide-section__grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 70px;
  align-items: center;
}

.topo-guide-section h2 {
  margin-top: 8px;
  font-size: clamp(2.8rem, 6vw, 5.5rem);
}

.topo-guide-section__grid > div > p {
  max-width: 510px;
  margin: 20px 0 0;
  color: var(--muted);
}

.topo-guide-steps {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.topo-guide-steps li {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 18px;
  padding-block: 21px;
  border-bottom: 1px solid var(--line);
}

.topo-guide-steps li > span {
  color: var(--blue);
  font-weight: 900;
}

.topo-guide-steps strong {
  font-size: 1.04rem;
}

.topo-guide-steps p {
  margin: 3px 0 0;
  color: var(--muted);
  font-size: 0.86rem;
}

.topo-opportunity-cta {
  min-height: 280px;
  margin-block: 70px;
  padding: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  overflow: hidden;
  position: relative;
  border-radius: 28px;
  background: linear-gradient(125deg, var(--navy) 0%, var(--navy-2) 58%, #2e5da4 100%);
  color: var(--white);
}

.topo-opportunity-cta::after {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  right: -90px;
  top: -170px;
  border: 55px solid rgba(119, 168, 242, 0.19);
  border-radius: 50%;
}

.topo-opportunity-cta > * {
  position: relative;
  z-index: 1;
}

.topo-eyebrow--light {
  color: #a8c9fa;
}

.topo-opportunity-cta h2 {
  margin-top: 8px;
  font-size: clamp(2.4rem, 5vw, 4.7rem);
  color: var(--white) !important;
}

.topo-opportunity-cta p {
  max-width: 640px;
  margin: 17px 0 0;
  color: #cbd6eb;
}

.topo-site-footer {
  padding-block: 42px;
  background: #091027;
  color: var(--white);
}

.topo-site-footer__inner {
  display: flex;
  justify-content: space-between;
  gap: 32px;
}

.topo-site-footer strong {
  font-size: 1.1rem;
}

.topo-site-footer p {
  margin: 5px 0 0;
  color: #aeb9cf;
  font-size: 0.83rem;
}

.topo-site-footer nav {
  display: flex;
  align-items: center;
  gap: 24px;
  color: #d8def0;
  font-size: 0.8rem;
  font-weight: 700;
}

/* Internal editorial pages */
.topo-internal-main {
  min-height: 60vh;
}

.topo-internal-hero {
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 15%, rgba(119, 168, 242, 0.24), transparent 30%),
    linear-gradient(135deg, #0b1330 0%, var(--navy-2) 100%);
  color: var(--white);
}

.topo-internal-hero__inner {
  max-width: 920px;
  margin-inline: auto;
  padding-block: clamp(70px, 10vw, 132px);
}

.topo-internal-hero h1 {
  max-width: 850px;
  margin: 14px 0 22px;
  color: var(--white);
  font-size: clamp(3.2rem, 7vw, 6.5rem);
  font-weight: 900;
  letter-spacing: -0.065em;
  line-height: 0.92;
}

.topo-internal-hero p {
  max-width: 720px;
  margin: 0;
  color: #cfdbf4;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  line-height: 1.65;
}

.topo-content-layout {
  display: grid;
  grid-template-columns: minmax(0, 2.1fr) minmax(300px, 0.8fr);
  align-items: start;
  gap: clamp(32px, 4vw, 56px);
  padding-block: clamp(54px, 8vw, 96px);
}

.topo-prose {
  min-width: 0;
  padding: clamp(28px, 5vw, 58px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: 0 14px 44px rgba(15, 24, 55, 0.07);
  color: #313a52;
  font-size: clamp(1.15rem, 1.3vw, 1.22rem);
  line-height: 1.78;
}

.topo-prose .elementor,
.topo-prose .elementor-section,
.topo-prose .elementor-container,
.topo-prose .elementor-column,
.topo-prose .elementor-widget-wrap {
  width: 100%;
  max-width: none;
}

.topo-prose .elementor-section,
.topo-prose .elementor-column,
.topo-prose .elementor-widget-wrap,
.topo-prose .elementor-widget {
  margin: 0;
  padding: 0;
}

.topo-prose h1,
.topo-prose h2,
.topo-prose h3,
.topo-prose h4 {
  margin: 1.7em 0 0.55em;
  color: var(--ink);
  font-weight: 900;
  letter-spacing: -0.035em;
  line-height: 1.08;
}

.topo-prose h1:first-child,
.topo-prose h2:first-child,
.topo-prose .elementor-widget-heading:first-child h1,
.topo-prose .elementor-widget-heading:first-child h2 {
  margin-top: 0;
}

.topo-prose h2 {
  font-size: clamp(1.8rem, 3.2vw, 2.65rem);
}

.topo-prose h3 {
  font-size: clamp(1.35rem, 2.3vw, 1.8rem);
}

.topo-prose p,
.topo-prose ul,
.topo-prose ol {
  margin: 0 0 1.25em;
}

.topo-prose ul,
.topo-prose ol {
  padding-left: 1.3em;
}

.topo-prose li + li {
  margin-top: 0.45em;
}

.topo-prose a {
  color: #376fca;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.topo-prose img {
  height: auto;
  margin-block: 28px;
  border-radius: 18px;
}

.topo-about-photo {
  overflow: hidden;
  margin-bottom: 36px;
  border-radius: 20px;
  background: #e7edf7;
}

.topo-about-photo img {
  width: 100%;
  height: clamp(420px, 62vw, 720px);
  margin: 0;
  object-fit: cover;
  object-position: center 28%;
}

.topo-editorial-page--quem-somos .topo-prose .elementor img {
  display: none;
}

.topo-editorial-page--quem-somos .topo-prose .elementor > .e-con:first-child > .e-con-inner {
  display: block !important;
  max-width: none !important;
}

.topo-editorial-page--quem-somos .topo-prose .elementor > .e-con:first-child > .e-con-inner > .e-con:first-child,
.topo-editorial-page--quem-somos .topo-prose .elementor-widget {
  width: 100% !important;
  max-width: none !important;
}

.topo-editorial-page--quem-somos .topo-prose .elementor > .e-con:first-child > .e-con-inner > .e-con:first-child {
  padding: 0 !important;
}

.topo-editorial-page--quem-somos .topo-prose .elementor > .e-con:first-child > .e-con-inner > .e-con:last-child,
.topo-editorial-page--quem-somos .topo-prose .elementor > .e-con:last-child {
  display: none !important;
}

.topo-editorial-page--quem-somos .topo-prose .elementor-widget-text-editor,
.topo-editorial-page--quem-somos .topo-prose .elementor-widget-text-editor p {
  color: #36405a;
  font-size: inherit !important;
  line-height: inherit !important;
}

.topo-editorial-page--quem-somos .topo-prose .elementor > .e-con:first-child h2 {
  margin: 0 0 24px;
  font-size: clamp(2.25rem, 4vw, 3.25rem);
}

.topo-editorial-page--quem-somos .topo-prose .elementor > .e-con:nth-child(2) {
  margin-top: clamp(38px, 6vw, 58px);
  padding: clamp(32px, 5vw, 50px) !important;
  background: linear-gradient(140deg, #101936 0%, #172a59 100%);
  border: 1px solid rgba(94, 143, 219, 0.35);
  border-radius: 22px;
  box-shadow: 0 18px 42px rgba(15, 24, 55, 0.18);
}

.topo-editorial-page--quem-somos .topo-prose .elementor > .e-con:nth-child(2) > .e-con-inner {
  max-width: none !important;
}

.topo-editorial-page--quem-somos .topo-prose .elementor > .e-con:nth-child(2) h2 {
  margin: 0 0 20px;
  color: var(--white);
  font-size: clamp(1.9rem, 3.2vw, 2.6rem);
  text-align: left;
}

.topo-editorial-page--quem-somos .topo-prose .elementor > .e-con:nth-child(2) .elementor-widget-text-editor,
.topo-editorial-page--quem-somos .topo-prose .elementor > .e-con:nth-child(2) .elementor-widget-text-editor p {
  color: #dce6f8;
  text-align: left !important;
}

.topo-editorial-page--quem-somos .topo-prose .elementor > .e-con:nth-child(2) .elementor-widget-text-editor p:last-child {
  margin-bottom: 0;
}

.topo-content-aside {
  position: sticky;
  top: 138px;
  padding: 36px;
  background: var(--navy);
  color: var(--white);
  border-radius: 22px;
  box-shadow: var(--shadow);
}

.topo-content-aside h2 {
  margin: 14px 0 18px;
  color: var(--white);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 900;
  letter-spacing: -0.055em;
  line-height: 1;
}

.topo-content-aside p {
  margin: 0 0 28px;
  color: #ccd7ef;
  line-height: 1.65;
}

.topo-post-library {
  padding-block: clamp(58px, 8vw, 98px);
}

.topo-post-library .topo-section-heading {
  align-items: end;
}

.topo-post-library .topo-section-heading > p {
  margin: 0 0 8px;
  color: var(--muted);
  font-weight: 700;
}

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

.topo-library-card {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 12px 34px rgba(15, 24, 55, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.topo-library-card__media {
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #e8eef9;
}

.topo-library-card__media img,
.topo-library-card__media .topo-media-fallback {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.topo-library-card:hover .topo-library-card__media img {
  transform: scale(1.025);
}

.topo-library-card__body {
  padding: 25px 25px 28px;
}

.topo-library-card h2 {
  margin: 10px 0 12px;
  color: var(--ink);
  font-size: clamp(1.35rem, 2.2vw, 1.75rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.08;
}

.topo-library-card h2 a:hover {
  color: #376fca;
}

.topo-library-card p {
  margin: 0 0 20px;
  color: var(--muted);
}

.topo-pagination {
  margin-top: 48px;
}

.topo-pagination .page-numbers {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.topo-pagination a,
.topo-pagination .current {
  display: grid;
  min-width: 44px;
  min-height: 44px;
  place-items: center;
  padding: 8px 14px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
  font-weight: 800;
}

.topo-pagination .current,
.topo-pagination a:hover {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

.topo-site-footer a[aria-current="page"] {
  color: var(--blue-bright);
}

@media (max-width: 900px) {
  .topo-content-layout {
    grid-template-columns: 1fr;
  }

  .topo-content-aside {
    position: static;
  }

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

@media (max-width: 640px) {
  .topo-internal-hero__inner {
    padding-block: 60px 68px;
  }

  .topo-internal-hero h1 {
    font-size: clamp(3rem, 16vw, 4.5rem);
  }

  .topo-content-layout {
    padding-block: 38px 52px;
  }

  .topo-prose,
  .topo-content-aside {
    padding: 25px 22px;
    border-radius: 18px;
  }

  .topo-about-photo img {
    height: 440px;
    object-position: center 25%;
  }

  .topo-library-grid {
    grid-template-columns: 1fr;
  }

  .topo-post-library .topo-section-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }
}

/* Single article */
.topo-article-main {
  min-height: 70vh;
  background: var(--paper);
}

.topo-article-hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 86% 16%, rgba(89, 141, 220, 0.26), transparent 30%),
    linear-gradient(135deg, #0b122b 0%, var(--navy) 55%, #172a59 100%);
  color: var(--white);
}

.topo-article-hero::after {
  content: "";
  position: absolute;
  right: -110px;
  bottom: -190px;
  width: 440px;
  height: 440px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 50%;
}

.topo-article-hero__inner {
  position: relative;
  z-index: 1;
  max-width: 990px;
  margin-inline: auto;
  padding-block: clamp(70px, 9vw, 116px);
}

.topo-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  align-items: center;
  margin-bottom: 30px;
  color: #becbeb;
  font-size: 0.84rem;
  font-weight: 700;
}

.topo-breadcrumb a:hover,
.topo-breadcrumb a:focus-visible {
  color: var(--white);
}

.topo-article-hero h1 {
  max-width: 980px;
  margin: 22px 0 24px;
  color: var(--white);
  font-size: clamp(3rem, 6.2vw, 5.55rem);
  font-weight: 950;
  letter-spacing: -0.065em;
  line-height: 0.96;
}

.topo-article-dek {
  max-width: 790px;
  margin: 0;
  color: #d6e0f4;
  font-size: clamp(1.18rem, 2vw, 1.45rem);
  line-height: 1.62;
}

.topo-article-byline {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-top: 34px;
}

.topo-author-mark {
  display: inline-grid;
  flex: 0 0 auto;
  width: 48px;
  height: 48px;
  place-items: center;
  background: var(--blue);
  border-radius: 50%;
  color: var(--white);
  font-size: 0.76rem;
  font-weight: 950;
  letter-spacing: 0.06em;
}

.topo-article-byline div {
  display: grid;
  gap: 4px;
}

.topo-article-byline strong {
  color: var(--white);
  font-size: 0.98rem;
}

.topo-article-byline strong a:hover,
.topo-article-byline strong a:focus-visible {
  color: var(--blue-bright);
}

.topo-article-byline span {
  color: #b9c5df;
  font-size: 0.84rem;
}

.topo-article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 330px);
  gap: clamp(32px, 4vw, 58px);
  align-items: start;
  padding-block: clamp(54px, 7vw, 92px);
}

.topo-article-content {
  min-width: 0;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: 0 16px 50px rgba(15, 24, 55, 0.07);
}

.topo-article-cover {
  aspect-ratio: 16 / 8.4;
  overflow: hidden;
  margin: 0;
  background: #e7edf7;
}

.topo-article-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.topo-article-summary,
.topo-article-body,
.topo-author-card,
.topo-article-updated {
  margin-inline: clamp(26px, 5.5vw, 62px);
}

.topo-article-summary {
  margin-top: clamp(34px, 5vw, 54px);
  padding: clamp(25px, 4vw, 36px);
  background: #edf4ff;
  border: 1px solid #cdddfa;
  border-left: 5px solid var(--blue);
  border-radius: 18px;
}

.topo-article-summary h2 {
  margin: 8px 0 12px;
  color: var(--ink);
  font-size: clamp(1.8rem, 3vw, 2.35rem);
  font-weight: 950;
  letter-spacing: -0.04em;
  line-height: 1;
}

.topo-article-summary p {
  margin: 0;
  color: #34405c;
  font-size: clamp(1.08rem, 1.5vw, 1.2rem);
  line-height: 1.7;
}

.topo-article-body {
  margin-top: clamp(38px, 5vw, 58px);
  color: #2f384f;
  font-size: clamp(1.13rem, 1.35vw, 1.22rem);
  line-height: 1.82;
}

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

.topo-article-body h2,
.topo-article-body h3,
.topo-article-body h4 {
  color: var(--ink);
  font-weight: 950;
  letter-spacing: -0.04em;
  line-height: 1.08;
}

.topo-article-body h2 {
  margin: 2em 0 0.65em;
  font-size: clamp(2rem, 3.5vw, 2.85rem);
}

.topo-article-body h3 {
  margin: 1.8em 0 0.6em;
  font-size: clamp(1.55rem, 2.5vw, 2rem);
}

.topo-article-body h4 {
  margin: 1.6em 0 0.55em;
  font-size: 1.3rem;
}

.topo-article-body p,
.topo-article-body ul,
.topo-article-body ol,
.topo-article-body blockquote,
.topo-article-body table {
  margin: 0 0 1.4em;
}

.topo-article-body ul,
.topo-article-body ol {
  padding-left: 1.4em;
}

.topo-article-body li + li {
  margin-top: 0.55em;
}

.topo-article-body a {
  color: #2f69c4;
  font-weight: 750;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  overflow-wrap: anywhere;
}

.topo-article-body a:focus-visible {
  outline: 3px solid rgba(89, 143, 222, 0.34);
  outline-offset: 3px;
  border-radius: 3px;
}

.topo-article-body #toc_container {
  float: none !important;
  clear: both;
  display: block !important;
  width: 100% !important;
  max-width: 100%;
  box-sizing: border-box;
  margin: clamp(34px, 5vw, 52px) 0;
  padding: clamp(24px, 4vw, 34px);
  overflow: hidden;
  background: linear-gradient(145deg, #f2f6fd 0%, #eaf2ff 100%);
  border: 0;
  border-radius: 20px;
  box-shadow: inset 0 0 0 1px #d6e2f5;
}

.topo-article-body #toc_container .toc_title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin: 0 0 22px;
  padding-bottom: 16px;
  color: var(--ink);
  border-bottom: 1px solid #cedcf1;
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  line-height: 1.35;
  text-align: left;
  text-transform: uppercase;
}

.topo-article-body #toc_container .toc_toggle {
  margin-left: auto;
  font-size: 0;
  text-transform: none;
}

.topo-article-body #toc_container .toc_toggle a {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 6px 11px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid #c6d6ee;
  border-radius: 999px;
  color: #315f9f;
  font-size: 0.76rem;
  font-weight: 850;
}

.topo-article-body #toc_container .toc_list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.topo-article-body #toc_container .toc_list ul {
  margin: 9px 0 0;
  padding-left: 1.45em;
}

.topo-article-body #toc_container li {
  margin: 0;
  color: #22314d;
  line-height: 1.48;
}

.topo-article-body #toc_container li + li {
  margin-top: 11px;
}

.topo-article-body #toc_container a {
  display: inline;
  color: #223b66;
  font-size: 0.97rem;
  font-weight: 760;
  line-height: inherit;
  text-decoration: none;
}

.topo-article-body #toc_container a:hover {
  color: #2f69c4;
}

.topo-article-body #toc_container .toc_number {
  margin-right: 5px;
  color: #4c80cf;
  font-weight: 900;
}

.topo-article-body #toc_container + h2 {
  clear: both;
}

.topo-article-body blockquote {
  padding: 22px 26px;
  background: #f2f5fb;
  border-left: 4px solid var(--blue);
  border-radius: 0 14px 14px 0;
}

.topo-article-body img {
  width: auto;
  height: auto;
  margin-block: 32px;
  border-radius: 16px;
}

.topo-article-body table {
  display: block;
  width: 100%;
  overflow-x: auto;
  border-collapse: collapse;
  font-size: 0.95em;
}

.topo-article-body th,
.topo-article-body td {
  min-width: 150px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  text-align: left;
}

.topo-article-body th {
  background: var(--navy);
  color: var(--white);
}

.topo-author-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 20px;
  margin-top: clamp(48px, 7vw, 72px);
  padding: clamp(26px, 4vw, 38px);
  background: #f5f7fb;
  border: 1px solid var(--line);
  border-radius: 20px;
  margin-bottom: clamp(34px, 5vw, 54px);
}

.topo-author-card + .topo-article-updated {
  margin-top: -22px;
}

.topo-author-card .topo-author-mark {
  width: 58px;
  height: 58px;
}

.topo-author-card h2 {
  margin: 8px 0 10px;
  color: var(--ink);
  font-size: clamp(1.55rem, 2.5vw, 2rem);
  font-weight: 950;
  letter-spacing: -0.04em;
}

.topo-author-card p {
  margin: 0 0 14px;
  color: var(--muted);
  line-height: 1.7;
}

.topo-author-card a {
  color: #376fca;
  font-weight: 850;
}

.topo-article-updated {
  margin-top: 26px;
  margin-bottom: 48px;
  color: var(--muted);
  font-size: 0.88rem;
}

.topo-article-aside {
  position: sticky;
  top: 138px;
  padding: 34px;
  background: var(--navy);
  border-radius: 22px;
  box-shadow: var(--shadow);
  color: var(--white);
}

.topo-article-aside h2 {
  margin: 13px 0 16px;
  color: var(--white);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 950;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.topo-article-aside p {
  margin: 0 0 26px;
  color: #cdd8ef;
  line-height: 1.65;
}

.topo-related {
  padding-bottom: clamp(70px, 9vw, 110px);
}

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

.topo-related .topo-library-card h3 {
  margin: 10px 0 12px;
  color: var(--ink);
  font-size: clamp(1.25rem, 2vw, 1.55rem);
  font-weight: 950;
  letter-spacing: -0.035em;
  line-height: 1.08;
}

.topo-related .topo-library-card h3 a:hover,
.topo-related .topo-library-card h3 a:focus-visible {
  color: #376fca;
}

@media (max-width: 900px) {
  .topo-article-layout {
    grid-template-columns: 1fr;
  }

  .topo-article-aside {
    position: static;
  }

  .topo-related-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .topo-article-hero__inner {
    padding-block: 56px 64px;
  }

  .topo-article-hero h1 {
    margin-top: 18px;
    font-size: clamp(2.55rem, 13vw, 3.7rem);
  }

  .topo-article-dek {
    font-size: 1.1rem;
  }

  .topo-article-byline {
    align-items: flex-start;
  }

  .topo-article-byline span {
    line-height: 1.5;
  }

  .topo-article-layout {
    padding-block: 34px 54px;
  }

  .topo-article-content {
    border-radius: 18px;
  }

  .topo-article-cover {
    aspect-ratio: 16 / 10;
  }

  .topo-article-summary,
  .topo-article-body,
  .topo-author-card,
  .topo-article-updated {
    margin-inline: 21px;
  }

  .topo-article-summary {
    padding: 23px 21px;
  }

  .topo-article-body {
    font-size: 1.15rem;
    line-height: 1.76;
  }

  .topo-article-body #toc_container {
    margin-block: 30px 38px;
    padding: 21px 19px;
    border-radius: 16px;
  }

  .topo-article-body #toc_container .toc_title {
    align-items: flex-start;
    font-size: 0.88rem;
  }

  .topo-article-body #toc_container .toc_list ul {
    padding-left: 1.1em;
  }

  .topo-article-body #toc_container a {
    font-size: 0.94rem;
  }

  .topo-author-card {
    grid-template-columns: 1fr;
  }

  .topo-article-aside {
    padding: 28px 24px;
  }

  .topo-related-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 920px) {
  .topo-masthead {
    gap: 20px;
  }

  .topo-desktop-nav {
    display: none;
  }

  .topo-masthead {
    grid-template-columns: 1fr auto;
  }

  .topo-mobile-nav {
    min-height: 45px;
    display: flex;
    gap: 24px;
    overflow-x: auto;
    padding: 0 18px;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    scrollbar-width: none;
  }

  .topo-mobile-nav::-webkit-scrollbar {
    display: none;
  }

  .topo-lead-grid,
  .topo-guide-section__grid {
    grid-template-columns: 1fr;
  }

  .topo-side-stories {
    grid-template-columns: 1fr 1fr;
  }

  .topo-article-grid {
    grid-template-columns: 1.25fr 1fr;
  }

  .topo-article-card--dark {
    grid-column: span 2;
    min-height: 290px;
  }
}

@media (max-width: 640px) {
  :root {
    --shell: min(100% - 28px, 1180px);
    --radius: 15px;
  }

  .topo-topline__inner > span {
    display: none;
  }

  .topo-topline__inner {
    justify-content: flex-end;
  }

  .topo-masthead {
    min-height: 68px;
  }

  .topo-brand img {
    width: 104px;
  }

  .topo-brand span {
    margin-bottom: 8px;
  }

  .topo-primary-button--light {
    display: none;
  }

  .topo-section-kicker {
    align-items: flex-start;
    flex-direction: column;
    gap: 7px;
  }

  .topo-lead-section {
    padding-block: 30px 32px;
  }

  .topo-lead-grid {
    gap: 16px;
  }

  .topo-story-media {
    aspect-ratio: 4 / 3;
  }

  .topo-lead-story__body {
    padding: 21px 20px 23px;
  }

  .topo-lead-story h2 {
    font-size: 2.05rem;
  }

  .topo-side-stories {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .topo-compact-story {
    grid-template-columns: 42% 1fr;
    grid-template-rows: 1fr;
  }

  .topo-compact-story__image {
    min-height: 190px;
  }

  .topo-compact-story > div {
    padding: 17px 15px;
  }

  .topo-compact-story h2 {
    font-size: 1.18rem;
  }

  .topo-compact-story p {
    display: none;
  }

  .topo-radar__inner {
    grid-template-columns: 1fr auto;
    gap: 12px;
    padding-block: 16px;
  }

  .topo-radar p {
    grid-column: 1 / -1;
    grid-row: 2;
  }

  .topo-latest-section {
    padding-block: 52px;
  }

  .topo-article-grid {
    grid-template-columns: 1fr;
  }

  .topo-article-card,
  .topo-article-card--dark {
    min-height: auto;
    grid-column: auto;
  }

  .topo-article-card--text,
  .topo-article-card--dark {
    min-height: 300px;
  }

  .topo-guide-section {
    padding-block: 55px;
  }

  .topo-guide-section__grid {
    gap: 36px;
  }

  .topo-guide-section h2 {
    font-size: 3.05rem;
  }

  .topo-opportunity-cta {
    min-height: 390px;
    margin-block: 44px;
    padding: 34px 26px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    border-radius: 22px;
  }

  .topo-opportunity-cta h2 {
    font-size: 2.65rem;
  }

  .topo-site-footer__inner,
  .topo-site-footer nav {
    flex-direction: column;
  }

  .topo-site-footer nav {
    align-items: flex-start;
    gap: 13px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

