@font-face {
  font-family: "Inter";
  src: url("/fonts/inter-latin-400-normal.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("/fonts/inter-latin-500-normal.woff2") format("woff2");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("/fonts/inter-latin-700-normal.woff2") format("woff2");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

:root {
  --ink: #2c2e2a;
  --paper: #f5f1e4;
  --paper-light: #fffdf7;
  --orange: #ff8a3d;
  --orange-dark: #df651b;
  --yellow: #f9d314;
  --pink: #eba5f5;
  --blue: #2f9bec;
  --coral: #ff6d5f;
  --lavender: #d8a8ff;
  --border: rgba(44, 46, 42, 0.18);
  --shadow: 0 24px 60px rgba(44, 46, 42, 0.1);
  --radius-sm: 18px;
  --radius-md: 30px;
  --radius-lg: 48px;
  --page: min(1392px, calc(100vw - 48px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 126px;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Inter", Arial, sans-serif;
  font-size: 17px;
  line-height: 1.45;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.16em;
}

button,
input,
textarea,
select {
  font: inherit;
}

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

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 10px;
  left: 10px;
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--ink);
  color: white;
  transform: translateY(-150%);
  transition: transform 180ms ease;
}

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

.page-transition {
  position: fixed;
  z-index: 900;
  inset: 0;
  pointer-events: none;
  background: var(--orange);
  transform: translateY(102%);
  transition: transform 420ms cubic-bezier(0.77, 0, 0.18, 1);
}

body.is-leaving .page-transition {
  transform: translateY(0);
}

.site-header {
  position: absolute;
  z-index: 100;
  top: 20px;
  left: 50%;
  display: flex;
  width: var(--page);
  transform: translateX(-50%);
  gap: 18px;
}

.header-bar {
  display: flex;
  min-height: 68px;
  flex: 1;
  align-items: center;
  justify-content: space-between;
  padding: 0 12px 0 20px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 8px 30px rgba(44, 46, 42, 0.07);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  font-size: 25px;
  font-weight: 600;
  letter-spacing: -0.05em;
  text-decoration: none;
}

.brand img {
  width: 38px;
  height: 34px;
  object-fit: contain;
}

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

.desktop-nav a {
  padding: 13px 17px;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  transition: background-color 180ms ease, transform 180ms ease;
}

.desktop-nav a:hover,
.desktop-nav a[aria-current="page"] {
  background: var(--paper);
}

.header-cta {
  display: inline-flex;
  min-height: 68px;
  align-items: center;
  gap: 18px;
  padding: 0 15px 0 22px;
  border-radius: 12px;
  background: white;
  color: var(--ink);
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
}

.header-cta-orb,
.menu-button {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: var(--orange);
  color: var(--ink);
}

.menu-button {
  display: none;
  cursor: pointer;
}

.menu-button span {
  width: 18px;
  height: 1.5px;
  background: currentColor;
}

.menu-button span + span {
  margin-top: 5px;
}

.mobile-menu {
  position: absolute;
  top: 76px;
  right: 0;
  left: 0;
  display: grid;
  gap: 4px;
  padding: 18px;
  border-radius: 18px;
  background: white;
  box-shadow: var(--shadow);
}

.mobile-menu[hidden] {
  display: none;
}

.mobile-menu a {
  padding: 13px 14px;
  border-radius: 12px;
  font-weight: 500;
  text-decoration: none;
}

.mobile-menu a:hover,
.mobile-menu a[aria-current="page"] {
  background: var(--paper);
}

.swarme-editorial-page .container {
  width: var(--page);
  margin-inline: auto;
}

.c-hero-illustration {
  margin-bottom: calc(var(--radius-lg) * -1);
  position: relative;
}

.c-hero-illustration_inner {
  display: flex;
  position: relative;
  flex-direction: column;
}

.c-hero-illustration_title {
  font-family: var(--font-sans);
  font-size: var(--text-heading-xs);
  font-weight: 500;
  font-style: normal;
  line-height: 1.2;
  letter-spacing: -0.06em;
}

.c-hero-illustration_tagline {
  margin-top: calc(var(--spacing, 0.25rem) * 6);
  margin-left: -0.05em;
  font-family: var(--font-sans);
  font-size: var(--text-heading-2xl);
  font-weight: 500;
  font-style: normal;
  line-height: 0.95;
  letter-spacing: -0.06em;
}

.c-hero-illustration_content_item {
  max-width: 500px;
  padding-bottom: var(--spacing-fluid-lg);
}

.c-hero-illustration_visual {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.c-hero-illustration + .hub-section {
  position: relative;
  z-index: 3;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  background: var(--paper);
}

@media (min-width: 1000px) {
  .c-hero-illustration_inner {
    min-height: 100svh;
    justify-content: flex-end;
    padding-top: calc(var(--spacing-safe-header) + var(--spacing-fluid-3xl) + 20vw);
    padding-bottom: var(--radius-lg);
  }

  .c-hero-illustration_header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 200vh;
  }

  .c-hero-illustration_sticky {
    position: sticky;
    top: 0;
    padding-top: calc(var(--spacing-safe-header) + var(--spacing-fluid-xl));
  }

  .c-hero-illustration_header_content {
    --scale-min: 0.75;
    transform: scale3d(
      calc(1 - ((1 - var(--scale-min)) * var(--progress, 0))),
      calc(1 - ((1 - var(--scale-min)) * var(--progress, 0))),
      calc(1 - ((1 - var(--scale-min)) * var(--progress, 0)))
    );
    transform-origin: center top;
    opacity: calc((1 - var(--progress, 0)) * 1);
    will-change: transform;
  }

  .c-hero-illustration_tagline {
    padding-right: 20%;
    font-size: 9.7vw;
  }

  .c-hero-illustration_content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-gutter);
  }

  .c-hero-illustration_content_item {
    grid-column-start: 2;
  }
}

@media (max-width: 999px) {
  .c-hero-illustration_inner {
    min-height: 100svh;
    padding-top: calc(var(--spacing-safe-header) + var(--spacing-fluid-4xl));
    padding-bottom: calc(35.5vw + var(--radius-lg));
  }

  .c-hero-illustration_content {
    margin-top: var(--spacing-fluid-xl);
  }
}

.hub-hero,
.article-hero,
.audience-hero {
  position: relative;
  min-height: 760px;
  overflow: hidden;
  padding: 154px 0 90px;
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
}

.hub-hero {
  background: var(--orange);
}

.hub-hero::before {
  position: absolute;
  top: 105px;
  right: -65px;
  width: 360px;
  height: 360px;
  border: 2px solid var(--ink);
  border-radius: 50%;
  content: "";
  opacity: 0.28;
}

.hub-hero::after {
  position: absolute;
  right: 8vw;
  bottom: -220px;
  width: 470px;
  height: 470px;
  border-radius: 50%;
  background: var(--yellow);
  content: "";
}

.eyebrow {
  margin: 0 0 22px;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: -0.03em;
}

.hub-title,
.article-title,
.audience-title {
  max-width: 1120px;
  margin: 0;
  font-size: clamp(70px, 8.1vw, 148px);
  font-weight: 500;
  letter-spacing: -0.078em;
  line-height: 0.88;
}

.hub-intro {
  position: relative;
  z-index: 1;
  width: min(600px, 100%);
  margin: 82px 0 0 auto;
  font-size: clamp(21px, 1.75vw, 31px);
  letter-spacing: -0.045em;
  line-height: 1.2;
}

.hub-intro strong {
  font-weight: 600;
}

.hub-section {
  padding: 100px 0 120px;
}

.section-heading {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: end;
  margin-bottom: 58px;
}

.section-heading h2 {
  max-width: 700px;
  margin: 0;
  font-size: clamp(48px, 5.1vw, 88px);
  font-weight: 500;
  letter-spacing: -0.07em;
  line-height: 0.96;
}

.section-heading p {
  max-width: 540px;
  margin: 0 0 4px auto;
  font-size: 20px;
}

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

.course-card {
  position: relative;
  display: grid;
  min-height: 660px;
  grid-template-rows: 330px 1fr;
  overflow: hidden;
  border-radius: var(--radius-md);
  background: var(--paper-light);
  box-shadow: 0 1px 0 var(--border);
  text-decoration: none;
  transition: transform 260ms ease, box-shadow 260ms ease;
}

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

.course-card-media {
  position: relative;
  overflow: hidden;
  background: var(--card-color, var(--yellow));
}

.course-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: var(--image-position, center);
  transition: transform 600ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.course-card:hover .course-card-media img {
  transform: scale(1.035);
}

.course-number {
  position: absolute;
  z-index: 2;
  top: 20px;
  left: 20px;
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border-radius: 50%;
  background: var(--paper-light);
  font-size: 16px;
  font-weight: 600;
}

.course-card-body {
  display: flex;
  flex-direction: column;
  padding: 30px;
}

.course-card-kicker {
  margin: 0 0 14px;
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.course-card h3 {
  margin: 0;
  font-size: clamp(34px, 3vw, 52px);
  font-weight: 500;
  letter-spacing: -0.065em;
  line-height: 1;
}

.course-card p {
  max-width: 560px;
  margin: 22px 0 30px;
  font-size: 18px;
}

.course-card-action {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 22px;
  border-top: 1px solid var(--border);
  font-weight: 600;
}

.course-card-action span:last-child {
  font-size: 27px;
  transition: transform 180ms ease;
}

.course-card:hover .course-card-action span:last-child {
  transform: translateX(6px);
}

.editorial-promise {
  margin-top: 90px;
  padding: 68px;
  border-radius: var(--radius-md);
  background: var(--ink);
  color: white;
}

.editorial-promise h2 {
  max-width: 880px;
  margin: 0;
  font-size: clamp(46px, 5vw, 82px);
  font-weight: 500;
  letter-spacing: -0.07em;
  line-height: 0.98;
}

.editorial-promise p {
  max-width: 660px;
  margin: 32px 0 0 auto;
  font-size: 21px;
}

.article-hero {
  min-height: 820px;
  background: var(--hero-color, var(--yellow));
}

.article-hero-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 58px;
  align-items: end;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-bottom: 38px;
  font-size: 14px;
}

.breadcrumbs a {
  text-decoration: none;
}

.breadcrumbs a:hover {
  text-decoration: underline;
}

.article-title {
  max-width: 930px;
  font-size: clamp(58px, 6.4vw, 112px);
  line-height: 0.93;
}

.article-lede {
  max-width: 780px;
  margin: 36px 0 0;
  font-size: clamp(21px, 1.7vw, 29px);
  letter-spacing: -0.04em;
  line-height: 1.22;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 9px 20px;
  margin-top: 30px;
  font-size: 14px;
}

.article-hero-image {
  overflow: hidden;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.45);
}

.article-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: var(--image-position, center);
}

.article-layout {
  display: grid;
  grid-template-columns: 290px minmax(0, 820px);
  gap: 80px;
  justify-content: center;
  padding: 96px 0 120px;
}

.article-toc {
  align-self: start;
  padding: 22px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: rgba(255, 253, 247, 0.72);
}

@media (min-width: 1001px) {
  .article-toc {
    position: sticky;
    top: 26px;
  }
}

.article-toc p {
  margin: 0 0 13px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.article-toc ol {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.article-toc a {
  display: block;
  padding: 9px 11px;
  border-radius: 10px;
  font-size: 14px;
  line-height: 1.25;
  text-decoration: none;
}

.article-toc a:hover,
.article-toc a.is-active {
  background: white;
}

.article-content {
  min-width: 0;
}

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

.article-content h2 {
  margin: 84px 0 24px;
  font-size: clamp(39px, 4vw, 62px);
  font-weight: 500;
  letter-spacing: -0.065em;
  line-height: 1;
}

.article-content h3 {
  margin: 48px 0 15px;
  font-size: clamp(27px, 2.4vw, 37px);
  font-weight: 500;
  letter-spacing: -0.05em;
  line-height: 1.08;
}

.article-content p,
.article-content li {
  font-size: 19px;
  line-height: 1.6;
}

.article-content p {
  margin: 0 0 21px;
}

.article-content ul,
.article-content ol {
  margin: 20px 0 30px;
  padding-left: 1.25em;
}

.article-content li + li {
  margin-top: 10px;
}

.article-content a {
  font-weight: 500;
}

.direct-answer,
.method-box,
.warning-box,
.checklist,
.example-box {
  margin: 34px 0;
  padding: 30px;
  border-radius: var(--radius-sm);
}

.direct-answer {
  background: white;
  box-shadow: 0 1px 0 var(--border);
}

.direct-answer strong:first-child,
.box-label {
  display: block;
  margin-bottom: 10px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.direct-answer p:last-child,
.method-box p:last-child,
.warning-box p:last-child,
.example-box p:last-child {
  margin-bottom: 0;
}

.method-box {
  background: var(--yellow);
}

.warning-box {
  background: #ffd9d4;
}

.example-box {
  background: #dceeff;
}

.checklist {
  background: #ead8ff;
}

.checklist ul {
  margin-bottom: 0;
  padding-left: 0;
  list-style: none;
}

.checklist li {
  position: relative;
  padding-left: 34px;
}

.checklist li::before {
  position: absolute;
  top: 0.25em;
  left: 0;
  display: grid;
  width: 22px;
  height: 22px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  content: "✓";
  font-size: 13px;
}

.steps {
  display: grid;
  gap: 14px;
  margin: 28px 0;
  padding: 0;
  list-style: none;
  counter-reset: steps;
}

.steps li {
  position: relative;
  min-height: 92px;
  padding: 23px 24px 23px 85px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: var(--paper-light);
  counter-increment: steps;
}

.steps li::before {
  position: absolute;
  top: 20px;
  left: 20px;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 50%;
  background: var(--orange);
  content: counter(steps, decimal-leading-zero);
  font-size: 13px;
  font-weight: 700;
}

.steps strong {
  display: block;
  margin-bottom: 4px;
  font-size: 20px;
}

.comparison-table {
  width: 100%;
  margin: 28px 0 40px;
  border-collapse: separate;
  border-spacing: 0;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: white;
}

.comparison-table th,
.comparison-table td {
  padding: 18px;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
  text-align: left;
}

.comparison-table th {
  background: rgba(249, 211, 20, 0.4);
  font-size: 14px;
}

.comparison-table tr:last-child td {
  border-bottom: 0;
}

.source-list {
  padding: 30px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.source-list h2 {
  margin-top: 0;
}

.source-list li {
  font-size: 16px;
}

.article-cta {
  margin-top: 84px;
  padding: 48px;
  border-radius: var(--radius-md);
  background: var(--orange);
}

.article-cta h2 {
  max-width: 700px;
  margin: 0;
}

.article-cta p {
  max-width: 640px;
  margin-top: 24px;
}

.primary-button {
  display: inline-flex;
  align-items: center;
  gap: 32px;
  margin-top: 16px;
  padding: 14px 16px 14px 22px;
  border-radius: 999px;
  background: var(--ink);
  color: white;
  font-weight: 600;
  text-decoration: none;
}

.primary-button span:last-child {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  background: white;
  color: var(--ink);
}

.related-section {
  padding: 0 0 120px;
}

.related-section h2 {
  margin: 0 0 34px;
  font-size: clamp(42px, 4.2vw, 68px);
  font-weight: 500;
  letter-spacing: -0.065em;
}

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

.related-card {
  min-height: 250px;
  padding: 28px;
  border-radius: var(--radius-sm);
  background: var(--paper-light);
  text-decoration: none;
  transition: transform 180ms ease;
}

.related-card:hover {
  transform: translateY(-5px);
}

.related-card span {
  display: block;
  margin-bottom: 52px;
  font-size: 14px;
  font-weight: 600;
}

.related-card h3 {
  margin: 0;
  font-size: 29px;
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 1.05;
}

.audience-hero {
  min-height: 780px;
  background: var(--pink);
}

.audience-title {
  max-width: 1180px;
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  padding: 94px 0 120px;
}

.audience-card {
  min-height: 390px;
  padding: 34px;
  border-radius: var(--radius-md);
  background: var(--paper-light);
}

.audience-card:nth-child(2) {
  background: #dceeff;
}

.audience-card:nth-child(3) {
  background: #fff2a8;
}

.audience-card:nth-child(4) {
  background: #ffd9d4;
}

.audience-card:nth-child(5) {
  background: #ead8ff;
}

.audience-card:nth-child(6) {
  background: #dcf4c7;
}

.audience-card .number {
  font-size: 14px;
  font-weight: 700;
}

.audience-card h2 {
  margin: 74px 0 20px;
  font-size: 39px;
  font-weight: 500;
  letter-spacing: -0.06em;
  line-height: 1;
}

.audience-card p {
  margin: 0;
  font-size: 18px;
}

.site-footer {
  padding: 80px 0 32px;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  background: var(--ink);
  color: white;
}

.footer-top,
.footer-main,
.footer-bottom {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.footer-top {
  padding-bottom: 90px;
}

.footer-lead {
  max-width: 590px;
  margin: 0;
  font-size: 24px;
  letter-spacing: -0.04em;
}

.footer-nav {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 28px;
  align-content: start;
}

.footer-nav a,
.footer-nav button {
  padding: 0;
  border: 0;
  background: none;
  color: white;
  font-size: 16px;
  text-align: left;
  text-decoration: none;
  cursor: pointer;
}

.footer-nav a:hover,
.footer-nav button:hover {
  text-decoration: underline;
}

.footer-main {
  align-items: end;
  padding: 75px 0 86px;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
}

.footer-main h2 {
  margin: 0;
  font-size: clamp(65px, 7vw, 120px);
  font-weight: 500;
  letter-spacing: -0.075em;
  line-height: 0.86;
}

.footer-main h2 u {
  text-decoration-color: var(--orange);
  text-decoration-thickness: 0.08em;
}

.footer-details {
  display: grid;
  gap: 22px;
  align-content: end;
}

.footer-details p {
  margin: 0;
}

.footer-details a {
  width: fit-content;
  color: var(--orange);
  font-weight: 600;
}

.footer-bottom {
  grid-template-columns: 1fr auto auto auto;
  gap: 20px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  font-size: 13px;
}

.footer-bottom a {
  text-decoration: none;
}

@media (max-width: 1100px) {
  :root {
    --page: min(100% - 32px, 920px);
  }

  .desktop-nav,
  .header-cta > span:first-child {
    display: none;
  }

  .menu-button {
    display: block;
  }

  .header-cta {
    min-width: 68px;
    padding: 0 12px;
  }

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

  .article-hero-image {
    width: min(520px, 75vw);
    aspect-ratio: 16 / 10;
    margin-left: auto;
  }

  .article-layout {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .article-toc {
    position: static;
  }

  .article-toc ol {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .audience-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 720px) {
  :root {
    --page: calc(100% - 32px);
    --radius-md: 22px;
    --radius-lg: 32px;
  }

  body {
    font-size: 16px;
  }

  .site-header {
    top: 16px;
    gap: 8px;
  }

  .header-bar {
    min-height: 61px;
    padding-left: 14px;
  }

  .brand {
    gap: 9px;
    font-size: 22px;
  }

  .brand img {
    width: 34px;
    height: 30px;
  }

  .header-cta {
    min-width: 61px;
    min-height: 61px;
    padding: 0 9px;
  }

  .header-cta-orb,
  .menu-button {
    width: 41px;
    height: 41px;
  }

  .hub-hero,
  .article-hero,
  .audience-hero {
    min-height: auto;
    padding: 128px 0 64px;
  }

  .hub-title,
  .audience-title {
    font-size: clamp(56px, 17vw, 84px);
  }

  .hub-intro {
    margin-top: 60px;
    font-size: 20px;
  }

  .hub-hero::after {
    right: -120px;
    bottom: -160px;
    width: 310px;
    height: 310px;
  }

  .hub-section {
    padding: 72px 0 82px;
  }

  .section-heading,
  .course-grid,
  .footer-top,
  .footer-main {
    grid-template-columns: 1fr;
  }

  .section-heading {
    gap: 22px;
    margin-bottom: 36px;
  }

  .section-heading p {
    margin-left: 0;
  }

  .course-card {
    min-height: 590px;
    grid-template-rows: 280px 1fr;
  }

  .course-card-body {
    padding: 24px;
  }

  .editorial-promise {
    margin-top: 60px;
    padding: 38px 26px;
  }

  .editorial-promise p {
    margin-left: 0;
  }

  .article-title {
    font-size: clamp(48px, 14vw, 74px);
  }

  .article-lede {
    font-size: 20px;
  }

  .article-hero-image {
    width: 100%;
    aspect-ratio: 4 / 3;
  }

  .article-layout {
    padding: 66px 0 86px;
  }

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

  .article-content h2 {
    margin-top: 64px;
  }

  .article-content p,
  .article-content li {
    font-size: 17px;
  }

  .direct-answer,
  .method-box,
  .warning-box,
  .checklist,
  .example-box {
    padding: 24px;
  }

  .steps li {
    padding: 75px 20px 22px;
  }

  .comparison-table {
    display: block;
    overflow-x: auto;
    white-space: normal;
  }

  .article-cta {
    margin-top: 64px;
    padding: 34px 25px;
  }

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

  .audience-card {
    min-height: 320px;
  }

  .site-footer {
    padding-top: 64px;
  }

  .footer-top {
    padding-bottom: 62px;
  }

  .footer-main {
    gap: 48px;
    padding: 56px 0 64px;
  }

  .footer-bottom {
    grid-template-columns: 1fr 1fr;
  }
}

@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;
  }
}
