/* The Magazine: listing + single article styles */
.jci-magazine-page {
  padding: 56px 0 0;
}

.jci-magazine-page__inner {
  width: min(var(--layout-max-width, 1280px), calc(100% - 88px));
  margin: 0 auto;
}

.jci-magazine-page__header {
  display: grid;
  gap: 14px;
  margin-bottom: 40px;
}

.jci-magazine-page__eyebrow {
  margin: 0;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #1a4fd7;
}

.jci-magazine-page__title {
  margin: 0;
  font-size: clamp(38px, 5vw, 64px);
  font-family: "Montserrat", "Helvetica Neue", Arial, sans-serif;
  line-height: 0.98;
}

.jci-magazine-page__intro {
  max-width: 720px;
  margin: 0;
  font-size: 18px;
  line-height: 1.6;
  color: #4d5562;
}

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

.jci-magazine-card {
  display: grid;
  overflow: hidden;
  border: 1px solid #d9e0ec;
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 18px 48px rgba(12, 36, 84, 0.08);
}

.jci-magazine-card__media {
  aspect-ratio: 16 / 10;
  background: linear-gradient(135deg, #eef4ff 0%, #dbe7ff 100%);
}

.jci-magazine-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.jci-magazine-card__body {
  display: grid;
  gap: 14px;
  padding: 24px;
}

.jci-magazine-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #647084;
}

.jci-magazine-card__title {
  margin: 0;
  font-size: 26px;
  line-height: 1.08;
}

.jci-magazine-card__title a {
  color: inherit;
  text-decoration: none;
}

.jci-magazine-card__excerpt {
  margin: 0;
  font-size: 16px;
  line-height: 1.65;
  color: #4d5562;
}

.jci-magazine-card__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #1a4fd7;
  text-decoration: none;
}

.jci-magazine-empty {
  padding: 36px;
  border: 1px solid #d9e0ec;
  border-radius: 24px;
  background: #fff;
}

.jci-magazine-pagination {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 12px;
  margin-top: 40px;
  width: 100%;
}

.jci-magazine-pagination > .page-numbers {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 12px;
  width: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
}

.jci-magazine-pagination > .page-numbers li {
  margin: 0;
  padding: 0;
}

.jci-magazine-pagination a.page-numbers,
.jci-magazine-pagination span.page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  height: 44px;
  padding: 0 14px;
  border: 1px solid #d9e0ec;
  border-radius: 999px;
  color: #162033;
  text-decoration: none;
  background: #fff;
}

.jci-magazine-pagination .current {
  border-color: #1a4fd7;
  background: #1a4fd7;
  color: #fff;
}

.jci-article {
  --jci-reading-width: 736px;
  --jci-reading-size: 20.25px;
  --jci-reading-line: 1.9;
  --jci-reading-text: #22324a;
  --jci-reading-heading: #141f33;
  --jci-reading-muted: #6a7890;
  --jci-reading-border: #d8e0ec;
  --jci-reading-link: #1a4fd7;
  --jci-reading-bg: #fff;
  --jci-sticky-top: 112px;
  --jci-anchor-offset: 112px;
  --jci-rail-width: 278px;
  background: #fff;
  padding-top: 158px;
  padding-bottom: 96px;
  margin-bottom: 48px;
  min-height: 100vh;
  color: #162033;
}

/* Hard reset against legacy fixed-layout rules still loaded in production/local */
body.single-post .jci-article,
body.single-post .jci-article__hero,
body.single-post .jci-article__header,
body.single-post .jci-article__body-grid,
body.single-post .jci-article__content {
  position: static !important;
  top: auto !important;
  left: auto !important;
  right: auto !important;
  bottom: auto !important;
  transform: none !important;
  z-index: auto !important;
}

.jci-article__header {
  position: relative;
  max-width: 1280px;
  margin: 0 auto 60px;
  padding: 0;
  clear: both;
}

.jci-article__header h1 {
    max-width: 840px;
    font-size: clamp(34px, 4.55vw, 54px);
    font-family: "Montserrat", "Helvetica Neue", Arial, sans-serif;
    font-weight: 780;
    line-height: 0.99;
    letter-spacing: -0.038em;
    color: #0f1728;
    margin: 0 0 20px;
    text-transform: none;
    text-wrap: balance;
}

.jci-article__standfirst {
  font-size: clamp(20px, 1.95vw, 21px);
  line-height: 1.68;
  color: #3f516e;
  max-width: 840px;
  margin-bottom: 0;
  text-wrap: pretty;
}

.jci-article__hero {
  background: transparent;
  max-width: 1280px;
  margin: 0 auto 76px;
  padding: 0;
  display: block;
}

.jci-article__hero img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 0;
}

.jci-article__body-grid {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  max-width: 1088px;
  margin: 0 auto;
  gap: 52px;
  padding: 0 40px;
  padding-top: 6px;
  overflow: visible;
}

.jci-article__content {
  flex: 1;
  max-width: var(--jci-reading-width);
  min-width: 0;
  font-size: var(--jci-reading-size);
  line-height: var(--jci-reading-line);
  letter-spacing: 0;
  color: var(--jci-reading-text);
  hanging-punctuation: first;
  text-rendering: optimizeLegibility;
}

.jci-article__content::after {
  content: none !important;
}

.jci-article__content h2,
.jci-article__content h3 {
  margin-top: 74px;
  margin-bottom: 18px;
  line-height: 1.08;
  letter-spacing: -0.024em;
  text-wrap: balance;
  color: var(--jci-reading-heading);
  scroll-margin-top: var(--jci-anchor-offset);
}

.jci-article__content h2 {
  font-size: clamp(30px, 2.35vw, 38px);
  font-weight: 700;
  line-height: 1.06;
}

.jci-article__content h3 {
  font-size: clamp(23px, 1.8vw, 28px);
  font-weight: 700;
  line-height: 1.14;
}

.jci-article__content p {
  margin: 0 0 1.42em;
  max-width: 66ch;
  overflow-wrap: break-word;
}

.jci-article__content p + p {
  margin-top: 0.18em;
}

.jci-article__content strong,
.jci-article__content b {
  font-weight: 600;
  color: #10213f;
}

.jci-article__content a {
  color: var(--jci-reading-link);
  text-decoration-color: rgba(26, 79, 215, 0.45);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.13em;
  transition: color 0.18s ease, text-decoration-color 0.18s ease;
}

.jci-article__content a:hover {
  text-decoration-color: currentcolor;
}

.jci-article__content a:focus-visible,
.jci-related-link:focus-visible {
  outline: 2px solid var(--jci-reading-link);
  outline-offset: 2px;
  border-radius: 2px;
}

.jci-article__content .thevelop-dropcap:first-letter {
  float: left;
  margin-right: 8px;
  font-size: 3.25em;
  line-height: 0.88;
  font-weight: 700;
  color: #102240;
}

.jci-article__rail {
  align-content: normal;
  display: block;
  flex: 0 0 var(--jci-rail-width);
  border-left: 0;
  padding-left: 0;
  align-self: flex-start;
  height: fit-content;
  position: static;
  content-visibility: visible;
}

.jci-article__rail-inner {
  display: grid;
  gap: 22px;
  box-sizing: border-box;
  border-left: 1px solid var(--jci-reading-border);
  padding-left: 28px;
  padding-bottom: 24px;
}

.jci-article__rail-card {
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  padding: 0;
}

.jci-article__related {
  margin-bottom: 12px;
}

.jci-article__content [id] {
  scroll-margin-top: var(--jci-anchor-offset);
}

.jci-article__content img,
.jci-article__content video,
.jci-article__content iframe,
.jci-article__content table,
.jci-article__content figure,
.jci-article__content .wp-block-image,
.jci-article__content .wp-caption {
  max-width: 100%;
}

.jci-article__content .wp-caption {
  width: 100% !important;
  margin: 1.8rem 0 2rem;
}

.jci-article__content .wp-caption img {
  width: 100%;
  height: auto;
}

.jci-article__content .wp-caption-text,
.jci-article__content figcaption {
  margin-top: 13px;
  color: var(--jci-reading-muted);
  font-size: 12.5px;
  line-height: 1.6;
  letter-spacing: 0.01em;
}

.jci-article__content .alignleft,
.jci-article__content .alignright {
  float: none;
  margin: 1.2rem 0;
  max-width: 100%;
}

.jci-article__content .responsive-video,
.jci-article__content .wp-block-embed,
.jci-article__content figure.wp-block-embed,
.jci-article__content .wp-block-video {
  width: 100%;
  max-width: 100%;
  margin: 2.7rem 0 2.9rem;
  aspect-ratio: 16 / 9;
  background: #101827;
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid rgba(18, 31, 52, 0.08);
  box-shadow: 0 18px 40px rgba(12, 23, 42, 0.1);
}

.jci-article__content .wp-block-embed__wrapper,
.jci-article__content .wp-block-embed__wrapper iframe,
.jci-article__content .wp-block-embed iframe,
.jci-article__content .wp-block-video video,
.jci-article__content .responsive-video iframe {
  width: 100%;
  height: 100%;
  min-height: 320px;
  border: 0;
  display: block;
  border-radius: inherit;
  overflow: hidden;
}

.jci-article__content figure.wp-block-embed > div,
.jci-article__content figure.wp-block-embed iframe {
  border-radius: inherit;
}

.jci-article__content .responsive-video:empty {
  display: none;
}

.jci-article__content blockquote {
  margin: 2.6rem 0 2.5rem;
  padding: 0.35rem 0 0.35rem 1.2rem;
  border-left: 3px solid #c2cedf;
  background: transparent;
  border-radius: 0;
  width: 100% !important;
  max-width: 100% !important;
}

.jci-article__content blockquote p {
  margin: 0.18em 0;
  font-family: inherit;
  font-size: 1.16em;
  font-weight: 520;
  font-style: normal;
  line-height: 1.68;
  letter-spacing: 0;
  color: #25344d;
}

.jci-article__content ul,
.jci-article__content ol {
  margin: 0 0 1.3em;
  padding-left: 1.3em;
  max-width: 67ch;
}

.jci-article__content li {
  margin-bottom: 0.45em;
}

.jci-article__content table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.4rem 0 1.6rem;
  font-size: 0.9em;
}

.jci-article__content th,
.jci-article__content td {
  border-bottom: 1px solid var(--jci-reading-border);
  padding: 10px 8px;
  text-align: left;
  vertical-align: top;
}

.jci-article__content code,
.jci-article__content kbd {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, "Liberation Mono", monospace;
  font-size: 0.9em;
  background: #f3f6fb;
  border: 1px solid #e2e8f3;
  border-radius: 3px;
  padding: 0.08em 0.35em;
}

.jci-article__content pre {
  margin: 1.4rem 0 1.6rem;
  padding: 12px 14px;
  background: #f8fafc;
  border: 1px solid #e2e8f3;
  border-radius: 4px;
  overflow-x: auto;
}

.jci-article__content pre code {
  background: transparent;
  border: 0;
  padding: 0;
}

.jci-article__content blockquote.sht-blockquote p {
  font-size: 1.16em !important;
  line-height: 1.68 !important;
}

.jci-article__content blockquote + p {
  margin-top: 1.05em;
}

.jci-article__content blockquote::after {
  content: none;
}

.rail-label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  color: #74829c;
  letter-spacing: 0.18em;
  margin-top: 0;
  margin-bottom: 14px;
}

.jci-related-link {
  color: #1d2b41;
  font-weight: 560;
  font-size: 14.5px;
  line-height: 1.6;
  text-decoration: none;
  display: block;
}

.jci-related-link:hover {
  color: #1a4fd7;
  text-decoration: underline;
  text-underline-offset: 3px;
}

@media (max-width: 980px) {
  .jci-magazine-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .jci-article__toc {
    display: none;
  }
}

@media (max-width: 1180px) {
  .jci-article__header,
  .jci-article__hero,
  .jci-article__body-grid {
    padding-left: 32px;
    padding-right: 32px;
  }

  .jci-article__body-grid {
    flex-direction: column;
    border-top: 0;
    padding-top: 0;
    gap: 34px;
  }

  .jci-article {
    padding-top: 124px;
    padding-bottom: 80px;
    margin-bottom: 40px;
  }

  .jci-article__rail {
    position: static;
    top: auto;
    border: 0;
    padding: 0;
    margin-top: 12px;
    width: 100%;
    max-width: 720px;
  }

  .jci-article__rail-inner {
    position: static;
    max-height: none;
    overflow: visible;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: start;
    padding-bottom: 24px;
  }

  .jci-article__content {
    max-width: 720px;
  }
}

@media (max-width: 680px) {
  .jci-magazine-page {
    padding: 36px 0 0;
  }

  .jci-magazine-page__inner {
    width: min(100% - 32px, 1180px);
  }

  .jci-mag-newsletter-band {
    --jci-newsletter-edge: 16px;
  }

  .jci-mag-newsletter-band__inner {
    width: min(var(--jci-newsletter-max), calc(100% - (var(--jci-newsletter-edge) * 2)));
  }

  .jci-magazine-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .jci-magazine-card__body {
    padding: 20px;
  }

  .jci-magazine-card__title {
    font-size: 22px;
  }

  .jci-article__header,
  .jci-article__hero,
  .jci-article__body-grid {
    padding-left: 20px;
    padding-right: 20px;
  }

  .jci-article__standfirst {
    font-size: 19px;
    line-height: 1.55;
  }

  .jci-article__content {
    font-size: 18px;
    line-height: 1.74;
  }

  .jci-article__content h3 {
    font-size: 24px;
    line-height: 1.18;
  }

  .jci-article__content h2 {
    font-size: 29px;
    line-height: 1.14;
  }

  .jci-article__content .responsive-video iframe {
    min-height: 240px;
  }

  .jci-article__content blockquote {
    margin: 1.9rem 0 2rem;
    padding: 0.2rem 0 0.2rem 0.9rem;
  }

  .jci-article__content blockquote p,
  .jci-article__content blockquote.sht-blockquote p {
    font-size: 1.08em !important;
    line-height: 1.66 !important;
  }

  .jci-article__content blockquote::after {
    display: none;
  }

  .jci-article__rail-inner {
    grid-template-columns: minmax(0, 1fr);
  }

  .jci-article__rail-card {
    padding: 0;
    border-radius: 0;
  }
}

.jci-related-item {
  margin: 0;
  padding-top: 16px;
  border-top: 1px solid rgba(130, 146, 170, 0.18);
}

.jci-related-item:first-of-type {
  padding-top: 0;
  border-top: 0;
}

.jci-related-item:last-child {
  margin-bottom: 0;
}

@media (prefers-reduced-motion: reduce) {
  .jci-article__content a,
  .jci-related-link {
    transition: none;
  }
}

.jci-reading-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  width: 100%;
  height: 3px;
  pointer-events: none;
}

.jci-reading-progress__bar {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--jci-reading-link);
  transform: scaleX(0);
  transform-origin: left center;
}

.jci-article__toc {
  margin: 0;
  position: static;
  inline-size: 100%;
  max-height: none;
  overflow: visible;
  padding-right: 0;
}

.jci-article__toc-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 10px;
}

.jci-article__toc-head .rail-label {
  margin-bottom: 0;
}

.jci-article__toc-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #3b4a62;
  cursor: pointer;
}

.jci-article__toc-toggle-icon {
  display: inline-block;
  font-size: 13px;
  line-height: 1;
  transform: rotate(0deg);
  transition: transform 180ms cubic-bezier(.22,1,.36,1), color 160ms ease;
}

.jci-article__toc.is-collapsed .jci-article__toc-toggle-icon {
  transform: rotate(-90deg);
}

.jci-article__toc-body {
  display: block;
}

.jci-article__toc ol {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 6px;
}

.jci-magazine-category__hero-panel .jci-article__toc ol {
  gap: 2px;
}

.jci-article__toc li.is-sub {
  padding-left: 12px;
}

.jci-article__toc a {
  display: block;
  position: relative;
  color: #314157;
  text-decoration: none;
  font-size: 12.5px;
  line-height: 1.5;
  font-weight: 500;
  border-radius: 12px;
  padding: 6px 6px 6px 14px;
  transition: color 0.18s ease;
}

.jci-magazine-category__hero-panel .jci-article__toc {
  padding: 22px 22px 18px;
  border: 1px solid rgba(7, 24, 58, 0.10);
  background: #f7f9fc;
}

.jci-magazine-category__hero-panel .jci-article__toc a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 0;
}

.jci-magazine-category__hero-panel .jci-article__toc a::before {
  content: none;
}

.jci-magazine-category__hero-panel .jci-article__toc a > span[aria-hidden="true"] {
  color: #1a4fd7;
}

.jci-article__toc a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  bottom: 8px;
  width: 1px;
  border-radius: 999px;
  background: transparent;
  transition: background-color 0.18s ease;
}

.jci-article__toc a:hover {
  color: var(--jci-reading-link);
  text-decoration: none;
}

.jci-article__toc a.is-active,
.jci-article__toc a[aria-current="true"] {
  color: #314157 !important;
  font-weight: 500;
  background: rgba(26, 79, 215, 0.12);
}

.jci-article__toc a.is-active::before,
.jci-article__toc a[aria-current="true"]::before {
  background: transparent;
}

.jci-article__toc li.is-sub a {
  color: #617089;
  font-size: 12px;
}

.jci-article__toc li.is-sub a.is-active,
.jci-article__toc li.is-sub a[aria-current="true"] {
  color: #617089 !important;
  background: rgba(26, 79, 215, 0.12);
}

.jci-article__post-nav {
  margin-top: 3.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--jci-reading-border);
}

.jci-article__post-nav-eyebrow {
  margin: 0 0 12px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #7a879d;
}

.jci-article__content .jci-article__post-nav-eyebrow {
  display: block !important;
  margin: 0 0 12px !important;
  font-size: 12px !important;
  line-height: 1.2 !important;
  font-weight: 700 !important;
  letter-spacing: 0.18em !important;
  text-transform: uppercase !important;
  color: #7a879d !important;
}

.jci-article__post-nav-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.jci-article__post-nav.is-single .jci-article__post-nav-grid {
  grid-template-columns: minmax(0, 1fr);
}

.jci-article__post-nav-item {
  min-height: 156px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 14px;
  padding: 18px 20px 20px;
  border: 1px solid rgba(176, 188, 207, 0.9);
  border-radius: 18px;
  background: #fff;
  box-shadow: none;
  text-decoration: none !important;
  color: #18263b !important;
  transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

.jci-article__content .jci-article__post-nav-item,
.jci-article__content .jci-article__post-nav-item:visited,
.jci-article__content .jci-article__post-nav-item:hover,
.jci-article__content .jci-article__post-nav-item:focus-visible {
  color: #18263b !important;
  text-decoration: none !important;
  text-decoration-color: transparent !important;
}

.jci-article__post-nav-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 20px;
  margin-bottom: 0;
}

.jci-article__post-nav-label {
  margin: 0;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #6f7c92;
  font-weight: 700;
}

.jci-article__post-nav-arrow {
  color: #8794a9;
  font-size: 16px;
  line-height: 1;
  transform: translateY(-1px);
}

.jci-article__post-nav-title {
  margin: 0;
  color: #18263b;
  font-size: clamp(20px, 1.55vw, 24px);
  line-height: 1.2;
  letter-spacing: -0.02em;
  font-weight: 620;
  text-wrap: pretty;
  max-width: none;
  text-decoration: none !important;
  overflow-wrap: anywhere;
}

.jci-article__post-nav-item.is-next {
  text-align: right;
  align-items: flex-end;
}

.jci-article__post-nav-item.is-next .jci-article__post-nav-kicker {
  justify-content: flex-end;
}

.jci-article__post-nav.is-single .jci-article__post-nav-item {
  max-width: 100%;
  min-height: 148px;
  max-width: 42rem;
}

.jci-article__post-nav.is-single .jci-article__post-nav-grid {
  justify-items: start;
}

.jci-article__post-nav.is-double .jci-article__post-nav-grid {
  align-items: start;
}

.jci-article__post-nav-item:hover {
  border-color: #1a4fd7;
  box-shadow: none;
  transform: translateY(-1px);
}

.jci-article__post-nav-item:hover .jci-article__post-nav-title {
  color: #18263b;
}

.jci-article__post-nav-item:hover .jci-article__post-nav-arrow,
.jci-article__post-nav-item:hover .jci-article__post-nav-label {
  color: #6f7c92;
}

.jci-article__post-nav.is-single .jci-article__post-nav-title {
  max-width: 32ch;
}

.jci-back-to-top {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 9998;
  border: 1px solid rgba(116, 130, 154, 0.32);
  background: rgba(255, 255, 255, 0.72);
  color: #3b4a62;
  border-radius: 999px;
  height: 34px;
  width: 34px;
  padding: 0;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  opacity: 0;
  pointer-events: none;
  transform: translateY(6px);
  backdrop-filter: blur(2px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.jci-back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

@media (max-width: 1024px) {
  .jci-article__toc {
    margin-bottom: 0;
  }
}

@media (max-width: 680px) {
  .jci-article__post-nav-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .jci-article__post-nav-item,
  .jci-article__post-nav-item.is-next {
    text-align: left;
    align-items: flex-start;
    max-width: none;
    min-height: 116px;
    padding: 20px 0 16px;
  }

  .jci-article__post-nav-item.is-next .jci-article__post-nav-kicker {
    justify-content: flex-start;
  }

  .jci-article__post-nav-title {
    max-width: none;
    font-size: 21px;
  }

  .jci-back-to-top {
    right: 12px;
    bottom: 12px;
  }
}

@media (min-width: 1025px) {
  body.single-post .jci-article__rail {
    display: block !important;
    border-left: 0 !important;
    position: relative !important;
    top: auto !important;
    align-self: flex-start !important;
    height: fit-content !important;
    max-height: none !important;
    overflow: visible !important;
    align-content: normal !important;
    padding-left: 0 !important;
    padding-right: 2px !important;
    z-index: 5 !important;
  }

  body.single-post .jci-article__rail-inner {
    max-height: none !important;
    overflow: visible !important;
    padding-right: 0 !important;
    z-index: 6;
  }
}

@media (prefers-reduced-motion: reduce) {
  .jci-article__post-nav-item {
    transition: none;
  }

  .jci-back-to-top {
    transition: none;
  }
}

/* The Magazine Home: curated editorial hub */
.jci-mag-home {
  --jci-mag-blue: #1a4fd7;
  --jci-mag-navy: #0f1728;
  --jci-mag-ink: #162033;
  --jci-mag-text: #22324a;
  --jci-mag-muted: #74829a;
  --jci-mag-border: #d8e0ec;
  --jci-mag-border-strong: #aebbd0;
  --jci-mag-surface: #f7f9fc;
  --jci-mag-font-body: "Montserrat", "Helvetica Neue", Arial, sans-serif;
  background: #ffffff;
  color: var(--jci-mag-ink);
  font-family: var(--jci-mag-font-body);
  overflow: clip;
}

.jci-mag-home,
.jci-mag-home * {
  box-sizing: border-box;
}

.jci-mag-home * {
  border-radius: 0;
  box-shadow: none;
}

html {
  scroll-padding-top: 92px;
}

.jci-mag-home section[id],
.jci-mag-home [id] {
  scroll-margin-top: 92px;
}

.jci-mag-home__container {
  width: min(1120px, calc(100% - 80px));
  margin: 0 auto;
}

.jci-mag-home__intro {
  padding: clamp(82px, 9vw, 132px) 0 clamp(54px, 7vw, 86px);
  background: #ffffff;
}

.jci-mag-home__intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 392px);
  gap: clamp(44px, 7vw, 92px);
  align-items: center;
}

.jci-mag-home__masthead {
  position: static !important;
  top: auto !important;
  right: auto !important;
  bottom: auto !important;
  left: auto !important;
  z-index: auto !important;
  width: auto !important;
  max-width: 780px;
  transform: none !important;
}

.jci-mag-home__kicker,
.jci-mag-home-card__meta,
.jci-mag-home-topic__latest span {
  color: var(--jci-mag-muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  line-height: 1.35;
  text-transform: uppercase;
}

.jci-mag-home__kicker {
  margin: 0 0 18px;
}

.jci-mag-home h1,
.jci-mag-home h2,
.jci-mag-home h3 {
  margin-top: 0;
  color: var(--jci-mag-navy);
  font-family: var(--jci-mag-font-body);
  font-weight: 780;
  letter-spacing: -0.038em;
  text-wrap: balance;
}

.jci-mag-home h1 {
  max-width: 760px;
  margin-bottom: 22px;
  font-size: clamp(48px, 6.2vw, 88px);
  line-height: 0.92;
}

.jci-mag-home__lede {
  max-width: 690px;
  margin: 0;
  color: #3f516e;
  font-size: clamp(20px, 1.95vw, 22px);
  line-height: 1.68;
  text-wrap: pretty;
}

.jci-mag-home__quick-nav {
  display: grid;
  border-top: 1px solid var(--jci-mag-border);
}

.jci-mag-home__quick-nav-title {
  margin: 0 0 14px;
  color: var(--jci-mag-home-text) !important;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.jci-mag-home__quick-nav--steps {
  padding: 22px;
  border: 1px solid var(--jci-mag-border-strong);
  background: var(--jci-mag-surface);
}

.jci-mag-home__quick-nav-step {
  flex: 0 0 auto;
  width: 30px;
  color: var(--jci-mag-blue);
  font-weight: 800;
}

.jci-mag-home__quick-nav a span:last-child {
  display: grid;
  gap: 5px;
}

.jci-mag-home__quick-nav small {
  display: block;
  max-width: 31ch;
  color: #5a6880;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.45;
}

.jci-mag-home__quick-nav a {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 14px;
  min-height: 64px;
  border-bottom: 1px solid var(--jci-mag-border);
  color: #314157;
  font-size: 13px;
  font-weight: 650;
  line-height: 1.4;
  text-decoration: none;
}

.jci-mag-home__quick-nav a:last-child {
  border-bottom: 0;
}

.jci-mag-home__quick-nav a::after {
  content: "→";
  margin-left: auto;
  color: var(--jci-mag-blue);
  font-size: 16px;
}

.jci-mag-home__quick-nav a:hover,
.jci-mag-home__quick-nav a:focus-visible,
.jci-mag-home-link:hover,
.jci-mag-home-link:focus-visible,
.jci-mag-home-card__title a:hover,
.jci-mag-home-card__title a:focus-visible,
.jci-mag-home-featured__content h2 a:hover,
.jci-mag-home-featured__content h2 a:focus-visible,
.jci-mag-home-topic:hover,
.jci-mag-home-topic:focus-visible,
.jci-mag-home-route:hover,
.jci-mag-home-route:focus-visible,
.jci-mag-home-path:hover,
.jci-mag-home-path:focus-visible,
.jci-mag-home-resource:hover,
.jci-mag-home-resource:focus-visible,
.jci-mag-home-interest:hover,
.jci-mag-home-interest:focus-visible {
  color: var(--jci-mag-blue);
}

.jci-mag-home a:focus-visible,
.jci-mag-home button:focus-visible {
  outline: 2px solid var(--jci-mag-blue);
  outline-offset: 3px;
}

.jci-mag-home__feature {
  padding: 0 0 clamp(72px, 9vw, 118px);
  background: #ffffff;
}

.jci-mag-home-featured {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(320px, 0.82fr);
  gap: 40px;
  align-items: start;
  padding-top: 42px;
  border-top: 1px solid var(--jci-mag-border-strong);
}

.jci-mag-home-featured__media {
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--jci-mag-surface);
  color: var(--jci-mag-muted);
  text-decoration: none;
}

.jci-mag-home-featured__media img,
.jci-mag-home-card__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.jci-mag-home-card__placeholder {
  display: flex;
  align-items: flex-end;
  min-height: 100%;
  padding: 20px;
  border: 1px solid var(--jci-mag-border);
  background: var(--jci-mag-surface);
  color: var(--jci-mag-muted);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.jci-mag-home-featured__content {
  display: grid;
  gap: 18px;
  padding: 0 0 4px;
}

.jci-mag-home-featured__content h2 {
  margin-bottom: 0;
  font-size: clamp(34px, 4vw, 54px);
  line-height: 0.99;
}

.jci-mag-home-featured__content h2 a,
.jci-mag-home-card__title a {
  color: inherit;
  text-decoration: none;
}

.jci-mag-home-featured__content p:not(.jci-mag-home__kicker) {
  max-width: 38rem;
  margin: 0;
  color: var(--jci-mag-text);
  font-size: 17px;
  line-height: 1.72;
}

.jci-mag-home-link,
.jci-mag-home-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: fit-content;
  color: var(--jci-mag-blue, #1a4fd7);
  font-size: 13px;
  font-weight: 750;
  letter-spacing: 0.04em;
  line-height: 1.2;
  text-decoration: none;
}

.jci-mag-home-button {
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid var(--jci-mag-blue, #1a4fd7);
  background: var(--jci-mag-blue, #1a4fd7);
  color: #ffffff;
}

.jci-mag-home__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  margin-top: 24px;
}

.jci-mag-home__section {
  padding: clamp(72px, 9vw, 112px) 0;
  border-top: 1px solid var(--jci-mag-border);
  background: #ffffff;
}

.jci-mag-newsletter-band {
  --jci-newsletter-band: #ecf2ff;
  --jci-newsletter-max: 1280px;
  --jci-newsletter-edge: 40px;
  position: relative;
  left: 50%;
  right: 50%;
  width: 100vw;
  max-width: 100vw;
  margin-left: -50vw;
  margin-right: -50vw;
  margin-bottom: 0;
  padding: clamp(72px, 9vw, 112px) 0 clamp(78px, 10vw, 126px);
  background: var(--jci-newsletter-band);
  border-top: 0;
  border-bottom: 0;
}

.jci-mag-newsletter-band__inner {
  width: min(var(--jci-newsletter-max), calc(100% - (var(--jci-newsletter-edge) * 2)));
  max-width: none;
  margin-left: auto;
  margin-right: auto;
}

.jci-mag-home__section-grid,
.jci-mag-home-closing-grid {
  display: grid;
  grid-template-columns: 278px minmax(0, 1fr);
  gap: 52px;
  align-items: start;
}

.jci-mag-home__section-heading {
  position: sticky;
  top: var(--jci-sticky-top, 112px);
  max-width: 300px;
}

.jci-mag-home__section-intro {
  margin: 20px 0 0;
  color: #4f5f76;
  font-size: 15px;
  line-height: 1.65;
}

.jci-mag-home__section-heading h2,
.jci-mag-home__closing-links h2 {
  margin-bottom: 0;
  font-size: clamp(30px, 2.35vw, 38px);
  line-height: 1.06;
}

.jci-mag-home-topic-grid,
.jci-mag-home-route-grid,
.jci-mag-home-card-grid,
.jci-mag-home-resource-grid {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--jci-mag-border-strong);
}

.jci-mag-home-topic-grid,
.jci-mag-home-route-grid,
.jci-mag-home-resource-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-left: 1px solid var(--jci-mag-border);
}

.jci-mag-home-topic,
.jci-mag-home-route,
.jci-mag-home-resource {
  position: relative;
  display: grid;
  min-height: 210px;
  padding: 24px 54px 24px 24px;
  border-right: 1px solid var(--jci-mag-border);
  border-bottom: 1px solid var(--jci-mag-border);
  background: #ffffff;
  color: var(--jci-mag-ink);
  text-decoration: none;
}

.jci-mag-home-route {
  min-height: 178px;
  gap: 24px;
}

.jci-mag-home-resource {
  min-height: 196px;
  gap: 22px;
}

.jci-mag-home-topic__label,
.jci-mag-home-route__label,
.jci-mag-home-path__title,
.jci-mag-home-resource__title {
  max-width: 18ch;
  font-size: clamp(22px, 1.9vw, 30px);
  font-weight: 760;
  letter-spacing: -0.032em;
  line-height: 1.08;
}

.jci-mag-home-topic__description,
.jci-mag-home-route__description,
.jci-mag-home-path__text,
.jci-mag-home-resource__text {
  align-self: end;
  max-width: 34ch;
  color: #4f5f76;
  font-size: 14px;
  line-height: 1.58;
}

.jci-mag-home-topic__latest {
  display: grid;
  gap: 6px;
  margin-top: 20px;
  padding-top: 14px;
  border-top: 1px solid var(--jci-mag-border);
  color: var(--jci-mag-ink);
  font-size: 13px;
  font-weight: 650;
  line-height: 1.45;
}

.jci-mag-home-topic__latest span {
  font-size: 10px;
  letter-spacing: 0.16em;
}

.jci-mag-home-topic__arrow,
.jci-mag-home-route__arrow,
.jci-mag-home-path__arrow {
  position: absolute;
  top: 22px;
  right: 22px;
  color: var(--jci-mag-blue);
  font-size: 18px;
  line-height: 1;
}

.jci-mag-home-path-list {
  display: grid;
  border-top: 1px solid var(--jci-mag-border-strong);
}

.jci-mag-home-path {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.45fr) minmax(0, 0.55fr);
  gap: 34px;
  min-height: 128px;
  padding: 24px 58px 24px 0;
  border-bottom: 1px solid var(--jci-mag-border);
  color: var(--jci-mag-ink);
  text-decoration: none;
}

.jci-mag-home-interest-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  border-top: 1px solid var(--jci-mag-border-strong);
  border-left: 1px solid var(--jci-mag-border);
}

.jci-mag-home-interest {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 52px;
  padding: 0 16px;
  border-right: 1px solid var(--jci-mag-border);
  border-bottom: 1px solid var(--jci-mag-border);
  background: #ffffff;
  color: var(--jci-mag-ink);
  font-size: 13px;
  font-weight: 720;
  line-height: 1.25;
  text-decoration: none;
}

.jci-mag-home-interest span,
.jci-mag-home-resource__cta {
  color: var(--jci-mag-blue);
}

.jci-mag-home-resource__cta {
  align-self: end;
  font-size: 13px;
  font-weight: 750;
  letter-spacing: 0.04em;
}

.jci-mag-home-card-grid--three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-left: 1px solid var(--jci-mag-border);
}

.jci-mag-home-card-grid--latest,
.jci-mag-home-news-list {
  display: grid;
  border-top: 1px solid var(--jci-mag-border);
}

.jci-mag-home-card {
  display: grid;
  grid-template-rows: auto 1fr;
  border-right: 1px solid var(--jci-mag-border);
  border-bottom: 1px solid var(--jci-mag-border);
  background: #ffffff;
}

.jci-mag-home-card--compact,
.jci-mag-home-card--news {
  grid-template-columns: minmax(168px, 0.34fr) minmax(0, 1fr);
  grid-template-rows: auto;
  border-right: 0;
}

.jci-mag-home-card__media {
  display: block;
  aspect-ratio: 16 / 11;
  overflow: hidden;
  background: var(--jci-mag-surface);
  color: var(--jci-mag-muted);
  text-decoration: none;
}

.jci-mag-home-card--compact .jci-mag-home-card__media,
.jci-mag-home-card--news .jci-mag-home-card__media {
  aspect-ratio: 4 / 3;
}

.jci-mag-home-card__body {
  display: grid;
  align-content: start;
  gap: 13px;
  padding: 22px;
}

.jci-mag-home-card--compact .jci-mag-home-card__body,
.jci-mag-home-card--news .jci-mag-home-card__body {
  padding: 20px 0 20px 24px;
}

.jci-mag-home-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
  font-size: 11px;
  letter-spacing: 0.14em;
}

.jci-mag-home-card__meta a {
  color: var(--jci-mag-blue);
  text-decoration: none;
}

.jci-mag-home-card__title {
  margin-bottom: 0;
  font-size: clamp(22px, 2vw, 30px);
  line-height: 1.12;
}

.jci-mag-home-card--compact .jci-mag-home-card__title,
.jci-mag-home-card--news .jci-mag-home-card__title {
  max-width: 720px;
  font-size: clamp(22px, 2.2vw, 32px);
}

.jci-mag-home-card__excerpt {
  max-width: 42rem;
  margin: 0;
  color: var(--jci-mag-text);
  font-size: 15px;
  line-height: 1.7;
}

.jci-mag-home-faq-list {
  display: grid;
  border-top: 1px solid var(--jci-mag-border-strong);
}

.jci-mag-home-faq {
  display: grid;
  gap: 12px;
  padding: 24px 0;
  border-bottom: 1px solid var(--jci-mag-border);
}

.jci-mag-home-faq h3 {
  max-width: 26ch;
  margin: 0;
  font-size: clamp(22px, 1.8vw, 30px);
  line-height: 1.08;
}

.jci-mag-home-faq p {
  max-width: 66ch;
  margin: 0;
  color: var(--jci-mag-text);
  font-size: 17px;
  line-height: 1.72;
}

.jci-mag-home-empty {
  display: grid;
  gap: 14px;
  padding: 24px 0;
  border-top: 1px solid var(--jci-mag-border);
  border-bottom: 1px solid var(--jci-mag-border);
  background: #ffffff;
  color: var(--jci-mag-text);
}

.jci-mag-home-empty p {
  max-width: 52ch;
  margin: 0;
  font-size: 16px;
  line-height: 1.65;
}

.jci-mag-home__closing {
  padding-bottom: clamp(78px, 10vw, 126px);
}

.jci-mag-home-quote {
  margin: 0;
  padding-top: 18px;
  border-top: 1px solid rgba(7, 24, 58, 0.18);
}

.jci-mag-home-quote p {
  max-width: 18ch;
  margin: 0;
  color: var(--jci-mag-navy);
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 780;
  letter-spacing: -0.04em;
  line-height: 1.04;
  text-wrap: balance;
}

.jci-mag-home-quote cite {
  display: block;
  margin-top: 18px;
  color: var(--jci-mag-muted);
  font-style: normal;
  font-weight: 700;
}

.jci-mag-home__closing-links {
  padding-top: 18px;
  border-top: 1px solid rgba(7, 24, 58, 0.18);
}

.jci-mag-newsletter-band .jci-mag-home__kicker,
.jci-mag-modal__eyebrow {
  color: #1a4fd7;
}

.jci-mag-home__closing-links p:not(.jci-mag-home__kicker) {
  max-width: 56ch;
  margin: 18px 0 0;
  color: var(--jci-mag-text);
  font-size: 17px;
  line-height: 1.7;
}

.jci-mag-newsletter-band .jci-mag-home-button,
.jci-mag-newsletter-band .jci-mag-home-button:hover,
.jci-mag-newsletter-band .jci-mag-home-button:focus-visible {
  min-height: 46px;
  padding: 0 22px;
  border: 0 !important;
  background: var(--jci-mag-blue, #1a4fd7) !important;
  color: #ffffff !important;
}

.jci-mag-newsletter-band .jci-mag-home-link {
  color: var(--jci-mag-blue, #1a4fd7) !important;
}

.jci-mag-home__zoho-embed #embedLink {
  display: inline-flex;
}

.jci-mag-modal-open {
  overflow: hidden;
}

.jci-mag-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  padding: clamp(16px, 3vw, 28px);
}

.jci-mag-modal[hidden] {
  display: none;
}

.jci-mag-modal__backdrop {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top, rgba(26, 79, 215, 0.18), transparent 40%),
    rgba(7, 24, 58, 0.74);
  backdrop-filter: blur(10px);
}

.jci-mag-modal__panel {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 10px;
  width: min(920px, calc(100vw - 32px));
  max-height: min(760px, calc(100vh - 48px));
  padding: clamp(18px, 2.6vw, 28px);
  border: 1px solid rgba(7, 24, 58, 0.1);
  background:
    linear-gradient(180deg, rgba(247, 244, 236, 0.88), rgba(255, 255, 255, 0.98)),
    #ffffff;
  box-shadow: 0 30px 90px rgba(7, 24, 58, 0.24);
  overflow: hidden;
}

.jci-mag-modal__close {
  position: absolute;
  top: 12px;
  right: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(7, 24, 58, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: #07183a;
  cursor: pointer;
  font-size: 24px;
  line-height: 1;
}

.jci-mag-modal__eyebrow {
  color: rgba(7, 24, 58, 0.54);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.jci-mag-modal__title {
  margin: 0;
  max-width: 12ch;
  color: #07183a;
  font-size: clamp(24px, 3.6vw, 46px);
  line-height: 0.94;
}

.jci-mag-modal__intro {
  margin: 0;
  max-width: 48ch;
  color: rgba(7, 24, 58, 0.72);
  font-size: 14px;
  line-height: 1.55;
}

.jci-mag-modal__frame-shell {
  min-height: min(420px, 48vh);
  max-height: min(420px, 48vh);
  border: 1px solid rgba(7, 24, 58, 0.08);
  background:
    linear-gradient(180deg, rgba(248, 248, 246, 0.95), rgba(255, 255, 255, 0.98)),
    #ffffff;
  overflow: hidden;
}

.jci-mag-modal__frame {
  width: 100%;
  height: min(420px, 48vh);
  border: 0;
  background: #ffffff;
}

.jci-mag-modal__fallback {
  margin: 0;
  color: rgba(7, 24, 58, 0.62);
  font-size: 13px;
}

.jci-mag-modal__fallback a {
  color: var(--jci-mag-blue, #1a4fd7);
  font-weight: 700;
}

.jci-mag-modal__close:hover,
.jci-mag-modal__close:focus-visible {
  border-color: rgba(26, 79, 215, 0.34);
  color: var(--jci-mag-blue, #1a4fd7);
}

@media (max-width: 1100px) {
  .jci-mag-home__intro-grid,
  .jci-mag-home-featured,
  .jci-mag-home__section-grid,
  .jci-mag-home-closing-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .jci-mag-home__section-heading {
    position: static;
    max-width: 680px;
  }

  .jci-mag-home__quick-nav {
    max-width: 680px;
  }

  .jci-mag-home__quick-nav--steps {
    padding: 18px;
  }

  .jci-mag-modal__panel {
    width: min(100%, calc(100vw - 24px));
    max-height: calc(100vh - 24px);
    padding: 18px;
  }

  .jci-mag-modal__title {
    max-width: none;
  }

  .jci-mag-modal__frame-shell,
  .jci-mag-modal__frame {
    min-height: min(360px, 44vh);
    max-height: min(360px, 44vh);
  }

  .jci-mag-modal__frame {
    height: min(360px, 44vh);
  }
}

@media (max-width: 820px) {
  .jci-mag-home__container {
    width: min(100% - 40px, 1120px);
  }

  .jci-mag-home__intro {
    padding-top: 86px;
  }

  .jci-mag-home-topic-grid,
  .jci-mag-home-route-grid,
  .jci-mag-home-card-grid--three,
  .jci-mag-home-resource-grid {
    grid-template-columns: minmax(0, 1fr);
    border-left: 0;
  }

  .jci-mag-home-card--compact,
  .jci-mag-home-card--news {
    grid-template-columns: minmax(0, 1fr);
  }

  .jci-mag-home-card--compact .jci-mag-home-card__body,
  .jci-mag-home-card--news .jci-mag-home-card__body {
    padding-left: 0;
  }

  .jci-mag-home-topic,
  .jci-mag-home-route,
  .jci-mag-home-resource,
  .jci-mag-home-interest,
  .jci-mag-home-card {
    border-right: 0;
  }

  .jci-mag-home-path {
    grid-template-columns: minmax(0, 1fr);
    gap: 16px;
  }

  .jci-mag-home-featured__media,
  .jci-mag-home-card__media,
  .jci-mag-home-card--compact .jci-mag-home-card__media,
  .jci-mag-home-card--news .jci-mag-home-card__media {
    aspect-ratio: 16 / 10;
  }
}

@media (max-width: 560px) {
  .jci-mag-home__container {
    width: min(100% - 32px, 1120px);
  }

  html {
    scroll-padding-top: 24px;
  }

  .jci-mag-home section[id],
  .jci-mag-home [id] {
    scroll-margin-top: 24px;
  }

  .jci-mag-home__intro {
    padding-top: 68px;
  }

  .jci-mag-home h1 {
    font-size: clamp(38px, 12vw, 52px);
  }

  .jci-mag-home__lede {
    font-size: 18px;
    line-height: 1.6;
  }

  .jci-mag-home__section,
  .jci-mag-home__closing {
    padding: 58px 0;
  }

  .jci-mag-home-topic,
  .jci-mag-home-route,
  .jci-mag-home-resource {
    min-height: 184px;
  }

  .jci-mag-home__actions {
    align-items: stretch;
    flex-direction: column;
  }

  .jci-mag-home-button,
  .jci-mag-home-link {
    width: 100%;
    justify-content: center;
  }
}

/* The Magazine Home: luxury editorial refinement */
.jci-mag-home__intro {
  padding-top: clamp(96px, 10vw, 156px);
}

.jci-mag-home__intro-grid {
  align-items: start;
}

.jci-mag-home__quick-nav--steps {
  padding: 28px 30px 30px;
  border-color: rgba(174, 187, 208, 0.86);
  background: #fbfcff;
}

.jci-mag-home__quick-nav-title {
  margin-bottom: 22px;
}

.jci-mag-home__quick-nav a {
  align-items: flex-start;
  min-height: 0;
  padding: 9px 0;
  border-bottom: 0;
  color: #25344d;
}

.jci-mag-home__quick-nav a + a {
  margin-top: 10px;
}

.jci-mag-home__quick-nav a::after {
  padding-top: 1px;
}

.jci-mag-home__quick-nav small {
  max-width: 34ch;
  font-size: 12.5px;
  line-height: 1.5;
}

.jci-mag-home__feature {
  padding-bottom: clamp(86px, 10vw, 136px);
}

.jci-mag-home-featured {
  grid-template-columns: minmax(0, 0.96fr) minmax(360px, 0.74fr);
  gap: clamp(44px, 7vw, 88px);
  align-items: start;
  padding-top: clamp(36px, 5vw, 62px);
}

.jci-mag-home-featured__media {
  aspect-ratio: 4 / 3;
}

.jci-mag-home-featured__content {
  padding-top: 0;
  align-self: start;
}

.jci-mag-home-featured__content h2 {
  font-size: clamp(38px, 4.35vw, 64px);
  line-height: 0.98;
}

.jci-mag-home__section-grid,
.jci-mag-home-closing-grid {
  grid-template-columns: 300px minmax(0, 1fr);
  gap: clamp(52px, 7vw, 86px);
}

.jci-mag-home__section-heading h2,
.jci-mag-home__closing-links h2 {
  font-size: clamp(32px, 2.6vw, 44px);
}

.jci-mag-home-card-grid--three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(24px, 3vw, 36px);
  border-left: 0;
}

.jci-mag-home-card-grid--editors {
  display: grid;
  border-top: 1px solid var(--jci-mag-border-strong);
}

.jci-mag-home-card-grid--three .jci-mag-home-card,
.jci-mag-home-card-grid--editors .jci-mag-home-card {
  border-right: 0;
  border-bottom: 0;
  border-top: 1px solid var(--jci-mag-border-strong);
}

.jci-mag-home-card-grid--editors .jci-mag-home-card:first-child {
  border-top: 0;
}

.jci-mag-home-card-grid--three .jci-mag-home-card__body {
  padding: 20px 0 0;
}

.jci-mag-home-card-grid--three .jci-mag-home-card__media {
  aspect-ratio: 5 / 4;
}

.jci-mag-home-card-grid--three .jci-mag-home-card__title {
  font-size: clamp(22px, 1.85vw, 28px);
  line-height: 1.1;
}

.jci-mag-home-card-grid--three .jci-mag-home-card__excerpt {
  font-size: 14.5px;
  line-height: 1.68;
}

.jci-mag-home-card--editor {
  grid-template-columns: minmax(112px, 150px) minmax(0, 1fr);
  grid-template-rows: auto;
  gap: clamp(22px, 3vw, 34px);
  align-items: start;
  padding: 24px 0;
}

.jci-mag-home-card--editor .jci-mag-home-card__media {
  aspect-ratio: 1 / 1;
}

.jci-mag-home-card--editor .jci-mag-home-card__body {
  padding: 0;
  gap: 10px;
}

.jci-mag-home-card--editor .jci-mag-home-card__title {
  max-width: 720px;
  font-size: clamp(22px, 2.2vw, 34px);
  line-height: 1.08;
}

.jci-mag-home-card--editor .jci-mag-home-card__excerpt {
  max-width: 58ch;
  font-size: 14.5px;
  line-height: 1.66;
}

.jci-mag-home-card-grid--latest,
.jci-mag-home-news-list {
  gap: 0;
  border-top: 1px solid var(--jci-mag-border-strong);
}

.jci-mag-home-card--compact,
.jci-mag-home-card--news {
  grid-template-columns: minmax(112px, 172px) minmax(0, 1fr);
  gap: clamp(22px, 3vw, 36px);
  padding: 24px 0;
  border-right: 0;
  border-bottom: 1px solid var(--jci-mag-border);
}

.jci-mag-home-card--compact .jci-mag-home-card__media,
.jci-mag-home-card--news .jci-mag-home-card__media {
  aspect-ratio: 1 / 1;
  align-self: start;
}

.jci-mag-home-card--compact .jci-mag-home-card__body,
.jci-mag-home-card--news .jci-mag-home-card__body {
  padding: 0;
  gap: 10px;
}

.jci-mag-home-card--compact .jci-mag-home-card__title,
.jci-mag-home-card--news .jci-mag-home-card__title {
  max-width: 760px;
  font-size: clamp(20px, 1.9vw, 28px);
  line-height: 1.12;
}

.jci-mag-home-card--compact .jci-mag-home-card__excerpt,
.jci-mag-home-card--news .jci-mag-home-card__excerpt {
  max-width: 62ch;
  font-size: 14.5px;
  line-height: 1.66;
}

@media (max-width: 1100px) {
  .jci-mag-home-featured,
  .jci-mag-home__section-grid,
  .jci-mag-home-closing-grid {
    grid-template-columns: minmax(0, 1fr);
  }

}

@media (max-width: 820px) {
  .jci-mag-home-card-grid--three {
    grid-template-columns: minmax(0, 1fr);
  }

  .jci-mag-home-card--compact,
  .jci-mag-home-card--news,
  .jci-mag-home-card--editor {
    grid-template-columns: minmax(0, 1fr);
    gap: 18px;
  }

  .jci-mag-home-card--compact .jci-mag-home-card__media,
  .jci-mag-home-card--news .jci-mag-home-card__media,
  .jci-mag-home-card--editor .jci-mag-home-card__media {
    aspect-ratio: 16 / 10;
  }
}

/* The Magazine Home: final visual hierarchy pass. */
.jci-mag-home {
  --jci-mag-page-gutter: var(--layout-gutter, 20px);
  --jci-mag-section-space: clamp(180px, 8vw, 112px);
  --jci-mag-section-gap: clamp(38px, 5vw, 68px);
  --jci-mag-left-rail: clamp(238px, 22vw, 304px);
}

.jci-mag-home__container {
  width: min(var(--layout-max-width, 1280px), calc(100% - (var(--jci-mag-page-gutter) * 2)));
}

.jci-mag-home__intro {
  padding-top: clamp(82px, 7.4vw, 122px);
  padding-bottom: clamp(58px, 7vw, 92px);
}

.jci-mag-home__intro-grid {
  grid-template-columns: minmax(0, 0.98fr) minmax(330px, 0.62fr);
  gap: clamp(54px, 8vw, 112px);
  align-items: center;
}

.jci-mag-home__masthead h1 {
  max-width: 8.7ch;
  font-size: clamp(68px, 6vw, 116px);
  line-height: 0.89;
  letter-spacing: -0.072em;
}

.jci-mag-home__lede {
  max-width: 760px;
  margin-top: 0;
  font-size: clamp(20px, 1.55vw, 25px);
  line-height: 1.55;
}

.jci-mag-home__actions {
  margin-top: clamp(28px, 3.2vw, 40px);
  gap: 22px;
}

.jci-mag-home-button {
  min-height: 48px;
  padding: 0 24px;
}

.jci-mag-home__quick-nav--steps {
  width: min(100%, 440px);
  margin-left: auto;
  padding: clamp(26px, 2.7vw, 36px);
}

.jci-mag-home__quick-nav-title {
  margin-bottom: clamp(22px, 2.6vw, 32px);
}

.jci-mag-home__quick-nav a {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr) 18px;
  gap: 18px;
  padding: 8px 0;
}

/*.jci-mag-home__quick-nav a + a {
  margin-top: clamp(18px, 2vw, 26px);
}*/

.jci-mag-home__quick-nav a::after {
  align-self: start;
  margin-left: 0;
}

.jci-mag-home__quick-nav small {
  max-width: 30ch;
  font-size: 13px;
  line-height: 1.48;
}

.jci-mag-home__feature {
  padding-bottom: var(--jci-mag-section-space);
}

.jci-mag-home-featured {
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 0.62fr);
  gap: clamp(48px, 6.5vw, 86px);
  padding-top: clamp(42px, 4.8vw, 64px);
}

.jci-mag-home-featured__content {
  gap: clamp(16px, 1.7vw, 24px);
}

.jci-mag-home-featured__content h2 {
  max-width: 10.4ch;
  font-size: clamp(42px, 4.25vw, 72px);
  line-height: 0.94;
  letter-spacing: -0.058em;
}

.jci-mag-home-featured__content p:not(.jci-mag-home__kicker) {
  max-width: 40rem;
  font-size: clamp(16px, 1.2vw, 18px);
  line-height: 1.68;
}

.jci-mag-home__section,
.jci-mag-home__closing {
  padding: var(--jci-mag-section-space) 0;
}

.jci-mag-home__section-grid,
.jci-mag-home-closing-grid {
  grid-template-columns: var(--jci-mag-left-rail) minmax(0, 1fr);
  gap: var(--jci-mag-section-gap);
}

.jci-mag-home__section-heading {
  max-width: 290px;
}

.jci-mag-home__section-heading h2,
.jci-mag-home__closing-links h2 {
  font-size: clamp(34px, 3vw, 52px);
  line-height: 0.98;
  letter-spacing: -0.048em;
}

.jci-mag-home__section-intro {
  margin-top: clamp(22px, 2vw, 28px);
  font-size: clamp(15px, 1.1vw, 17px);
  line-height: 1.72;
}

.jci-mag-home-topic-grid,
.jci-mag-home-route-grid,
.jci-mag-home-resource-grid {
  border-color: var(--jci-mag-border-strong);
}

.jci-mag-home-topic,
.jci-mag-home-route,
.jci-mag-home-resource {
  min-height: clamp(162px, 13vw, 196px);
  padding: clamp(26px, 2.8vw, 36px) clamp(58px, 4.6vw, 72px) clamp(26px, 2.8vw, 36px) clamp(26px, 2.8vw, 36px);
}

.jci-mag-home-route {
  gap: clamp(26px, 3vw, 38px);
}

.jci-mag-home-topic__label,
.jci-mag-home-route__label,
.jci-mag-home-resource__title {
  max-width: 20ch;
  font-size: clamp(25px, 2.15vw, 38px);
  line-height: 1.02;
  letter-spacing: -0.046em;
}

.jci-mag-home-topic__description,
.jci-mag-home-route__description,
.jci-mag-home-resource__text {
  max-width: 36ch;
  font-size: clamp(14px, 1.02vw, 16px);
  line-height: 1.62;
}

.jci-mag-home-topic__latest {
  margin-top: clamp(18px, 2vw, 24px);
  padding-top: clamp(14px, 1.7vw, 20px);
}

.jci-mag-home-path {
  grid-template-columns: minmax(240px, 0.48fr) minmax(0, 0.52fr);
  min-height: 112px;
  padding: clamp(24px, 2.6vw, 32px) 64px clamp(24px, 2.6vw, 32px) 0;
}

.jci-mag-home-path__title {
  max-width: 18ch;
  font-size: clamp(26px, 2.25vw, 40px);
  line-height: 1.02;
}

.jci-mag-home-path__text {
  align-self: center;
  max-width: 42ch;
  font-size: clamp(15px, 1.1vw, 17px);
}

.jci-mag-home-card-grid--three .jci-mag-home-card__title {
  font-size: clamp(22px, 1.85vw, 30px);
}

.jci-mag-home-card--editor,
.jci-mag-home-card--compact,
.jci-mag-home-card--news {
  grid-template-columns: minmax(132px, 196px) minmax(0, 1fr);
  padding: clamp(24px, 2.7vw, 34px) 0;
}

.jci-mag-home-card--editor .jci-mag-home-card__title,
.jci-mag-home-card--compact .jci-mag-home-card__title,
.jci-mag-home-card--news .jci-mag-home-card__title {
  max-width: 780px;
  font-size: clamp(22px, 2vw, 34px);
  line-height: 1.08;
}

.jci-mag-home-featured__content h2 {
  max-width: 13.2ch;
  font-size: clamp(40px, 3.65vw, 60px);
  line-height: 0.96;
  letter-spacing: -0.056em;
}

.jci-mag-home-quote p {
  max-width: 24ch;
  font-size: clamp(28px, 2.35vw, 38px);
  line-height: 1.02;
}

.jci-mag-home__closing-links h2 {
  max-width: 18ch;
}

/* The Magazine Home: all editorial images use the 1400x818 source ratio. */
.jci-mag-home .jci-mag-home-featured__media,
.jci-mag-home .jci-mag-home-card__media,
.jci-mag-home .jci-mag-home-card-grid--three .jci-mag-home-card__media,
.jci-mag-home .jci-mag-home-card--editor .jci-mag-home-card__media,
.jci-mag-home .jci-mag-home-card--compact .jci-mag-home-card__media,
.jci-mag-home .jci-mag-home-card--news .jci-mag-home-card__media {
  aspect-ratio: 1400 / 818;
}

@media (max-width: 1100px) {
  .jci-mag-home__intro-grid,
  .jci-mag-home-featured,
  .jci-mag-home__section-grid,
  .jci-mag-home-closing-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .jci-mag-home__quick-nav--steps {
    width: 100%;
    margin-left: 0;
  }

  .jci-mag-home__section-heading {
    position: static;
    max-width: 620px;
  }
}

@media (max-width: 820px) {
  .jci-mag-home__masthead h1 {
    font-size: clamp(54px, 17vw, 76px);
  }

  .jci-mag-home-featured__content h2 {
    max-width: 12ch;
    font-size: clamp(38px, 12vw, 58px);
  }

  .jci-mag-home-topic-grid,
  .jci-mag-home-route-grid,
  .jci-mag-home-resource-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .jci-mag-home-card--editor,
  .jci-mag-home-card--compact,
  .jci-mag-home-card--news,
  .jci-mag-home-path {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (prefers-reduced-motion: reduce) {
  .jci-mag-home *,
  .jci-mag-home *::before,
  .jci-mag-home *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}

/* Category archives and single-post image refinements. */
.jci-mag-home__container {
  width: min(var(--layout-max-width, 1280px), calc(100% - (var(--layout-gutter, 20px) * 2)));
}

.jci-magazine-breadcrumb {
  margin: 0 0 28px;
  color: #66758d;
  font-size: 13px;
}

.jci-magazine-breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.jci-magazine-breadcrumb li:not(:last-child)::after {
  content: "/";
  margin-left: 8px;
  color: #9aa7ba;
}

.jci-magazine-breadcrumb a {
  color: inherit;
  text-decoration: none;
}

.jci-magazine-breadcrumb a:hover,
.jci-magazine-breadcrumb a:focus-visible {
  color: #1a4fd7;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.jci-magazine-category__hero {
  max-width: 920px;
}

.jci-magazine-category__grid {
  align-items: stretch;
}

.jci-magazine-pagination ul {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

body.single-post .jci-article__content img,
body.single-post .jci-article__content figure,
body.single-post .jci-article__content .wp-block-image,
body.single-post .jci-article__content .wp-caption,
body.single-post .jci-article__hero img,
body.single-post .jci-article__post-nav-item,
body.single-post .jci-article__related,
body.single-post .jci-related-item {
  border-radius: 0 !important;
}

@media (max-width: 820px) {
  .jci-mag-home__container,
  .jci-magazine-page__inner {
    width: min(100% - 40px, 1480px);
  }
}

@media (max-width: 560px) {
  .jci-mag-home__container,
  .jci-magazine-page__inner {
    width: min(100% - 32px, 1480px);
  }
}


/* 2026-06 The Magazine category hub and embed refinements. */
.jci-magazine-page .jci-magazine-page__header,
.jci-magazine-page .jci-magazine-category__hero {
  position: relative !important;
  top: auto !important;
  left: auto !important;
  right: auto !important;
  bottom: auto !important;
  width: auto !important;
  max-width: none !important;
  z-index: auto !important;
  transform: none !important;
  background: transparent !important;
  box-shadow: none !important;
}

.jci-magazine-category {
  --jci-magazine-category-max: var(--jci-new-max, var(--layout-max-width, 1280px));
  --jci-magazine-category-edge: var(--jci-new-edge, 40px);
  background: #f6f4ef;
  padding-top: calc(var(--jci-header-offset, 150px) + 48px);
}

.jci-magazine-category .jci-magazine-page__inner {
  width: min(var(--jci-magazine-category-max), calc(100% - (var(--jci-magazine-category-edge) * 2)));
  max-width: none;
  margin-inline: auto;
}

.jci-magazine-category__hero {
  max-width: none !important;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.42fr);
  gap: clamp(44px, 5vw, 84px);
  padding: clamp(56px, 6vw, 92px) 0 clamp(44px, 5vw, 68px);
  border-bottom: 1px solid #cfd4da;
  margin-bottom: clamp(36px, 4vw, 52px);
}

.jci-magazine-category__hero-copy {
  max-width: 760px;
}

.jci-magazine-category .jci-magazine-breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.jci-magazine-category .jci-magazine-breadcrumb li:not(:last-child)::after {
  content: '/';
  margin-left: 8px;
  color: #8b929b;
}

.jci-magazine-category .jci-magazine-page__eyebrow {
  color: #4078ff;
  letter-spacing: 0.2em;
}

.jci-magazine-category .jci-magazine-page__title {
  max-width: 11ch;
  font-family: "DM Sans", "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(52px, 5.4vw, 84px);
  font-weight: 500;
  letter-spacing: -0.052em;
  line-height: 0.96;
  color: #111827;
  text-wrap: balance;
}

.jci-magazine-category .jci-magazine-page__intro {
  max-width: 42rem;
  font-size: clamp(18px, 1.45vw, 22px);
  letter-spacing: -0.018em;
  line-height: 1.48;
  color: #252a31;
  text-wrap: pretty;
}

.jci-magazine-category__grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(24px, 3vw, 40px);
}

.jci-magazine-category .jci-magazine-card {
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.jci-magazine-category .jci-magazine-card__media {
  aspect-ratio: 16 / 9;
  background: #e5e1d8;
  overflow: hidden;
}

.jci-magazine-category .jci-magazine-card__media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.jci-magazine-category .jci-magazine-card__body {
  padding: 20px 0 0;
  gap: 12px;
}

.jci-magazine-category .jci-magazine-card__meta a {
  color: #111 !important;
}

.jci-magazine-category .jci-magazine-card__meta time,
.jci-magazine-category .jci-magazine-card__link {
  color: #4078ff !important;
}

.jci-magazine-category .jci-magazine-card__title {
  font-family: "DM Sans", "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(24px, 2.1vw, 34px);
  font-weight: 500;
  line-height: 1.06;
}

.jci-magazine-category .jci-magazine-card__title a {
  color: #111827;
}

.jci-article .wp-block-embed,
.jci-article .wp-block-embed__wrapper,
.jci-article .wp-block-video,
.jci-article .wp-block-video video,
.jci-article iframe,
body.single-post .wp-block-embed,
body.single-post .wp-block-embed__wrapper,
body.single-post .wp-block-video,
body.single-post .wp-block-video video,
body.single-post iframe {
  border-radius: 0 !important;
}

@media (max-width: 1100px) {
  .jci-magazine-category__hero,
  .jci-magazine-category-section,
  .jci-magazine-category-featured .jci-magazine-card--featured {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 900px) {
  .jci-magazine-category .jci-magazine-page__inner {
    width: min(var(--jci-magazine-category-max), calc(100% - 40px));
  }

  .jci-magazine-category__grid {
    grid-template-columns: 1fr;
  }
}


/* 2026-06-28 The Magazine home simplification and category mini-hub. */
.jci-mag-home-topic__count {
  align-self: end;
  width: fit-content;
  margin-top: 18px;
  padding: 6px 0px;
  border: 1px solid var(--jci-mag-border);
  color: var(--jci-mag-blue);
  font-size: 11px;
  font-weight: 760;
  letter-spacing: 0.12em;
  line-height: 1;
  text-transform: uppercase;
}

.jci-magazine-category__count {
  width: fit-content;
  margin: clamp(22px, 2.4vw, 34px) 0 0;
  padding-top: 14px;
  color: #4078ff;
  font-size: 11px;
  font-weight: 600 !important;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.jci-magazine-category-section {
  display: grid;
  grid-template-columns: minmax(230px, 300px) minmax(0, 1fr);
  gap: clamp(40px, 5vw, 72px);
  padding: clamp(56px, 6vw, 80px) 0;
  border-top: 1px solid #cfd4da;
}

.jci-magazine-category-section:first-of-type {
  border-top: 0;
  padding-top: 0;
}

.jci-magazine-category-section__heading {
  position: sticky;
  top: var(--jci-sticky-top, 112px);
  align-self: start;
}

.jci-magazine-category-section__heading h2 {
  max-width: 10.5ch;
  margin: 0;
  color: #111827;
  font-family: "DM Sans", "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(32px, 2.7vw, 44px);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1;
}

.jci-magazine-category-section__intro {
  max-width: 34ch;
  margin: 12px 0 0;
  color: #56627a;
  font-family: "DM Sans", "Helvetica Neue", Arial, sans-serif;
  font-size: 18px;
  line-height: 1.4;
  letter-spacing: 0;
  text-transform: none;
}

.jci-magazine-category-featured .jci-magazine-card--featured {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.78fr);
  gap: 50px !important;
  align-items: start;
}

.jci-magazine-category-featured .jci-magazine-card__media {
  aspect-ratio: 16 / 9;
}

.jci-magazine-category-featured .jci-magazine-card__body {
  padding-top: 0;
}

.jci-magazine-category-featured .jci-magazine-card__title {
  max-width: 14ch;
  font-size: clamp(36px, 3vw, 48px);
  line-height: 1;
}

.jci-magazine-category-rail,
.jci-magazine-category-lane {
  display: grid;
  gap: 0;
  border-top: 1px solid #cfd4da;
}

.jci-magazine-card--rail,
.jci-magazine-card--lane {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: clamp(20px, 2.4vw, 32px);
  padding: clamp(22px, 2.4vw, 30px) 0;
  border-bottom: 1px solid #d8dde4 !important;
}

.jci-magazine-card--rail .jci-magazine-card__media,
.jci-magazine-card--lane .jci-magazine-card__media {
  aspect-ratio: 16 / 9;
  align-self: start;
}

.jci-magazine-card--rail .jci-magazine-card__body,
.jci-magazine-card--lane .jci-magazine-card__body {
  padding: 0;
}

.jci-magazine-card--rail .jci-magazine-card__title,
.jci-magazine-card--lane .jci-magazine-card__title {
  max-width: 760px;
  font-size: clamp(21px, 1.65vw, 28px);
  line-height: 1.12;
}

.jci-magazine-category-related__links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid #cfd4da;
  border-left: 1px solid #d8dde4;
}

.jci-magazine-category-related__links a {
  display: grid;
  gap: 16px;
  min-height: 150px;
  padding: 24px;
  border-right: 1px solid #d8dde4;
  border-bottom: 1px solid #d8dde4;
  color: #111827;
  text-decoration: none;
}

.jci-magazine-category-related__links span {
  max-width: 16ch;
  font-family: "DM Sans", "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(24px, 2.2vw, 36px);
  font-weight: 400;
  letter-spacing: -0.05em;
  line-height: 1.02;
}

.jci-magazine-category-related__links small {
  align-self: end;
  color: #4078ff;
  font-size: 11px;
  font-weight: 760;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.jci-magazine-category-programs__content {
  display: grid;
  gap: 24px;
  max-width: 760px;
  padding-top: 2px;
}

.jci-magazine-category-programs__content p {
  margin: 0;
  color: #252a31;
  font-size: clamp(20px, 2vw, 30px);
  letter-spacing: -0.032em;
  line-height: 1.32;
}

.jci-magazine-category-programs__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.jci-magazine-category .jci-magazine-card__excerpt {
  color: #4d5562;
  font-size: clamp(14px, 1vw, 16px);
  line-height: 1.55;
}

.jci-magazine-category__grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: clamp(32px, 4vw, 52px);
  row-gap: clamp(46px, 5vw, 68px);
}

.jci-magazine-category__grid .jci-magazine-card {
  align-content: start;
  margin-bottom:30px;
}

.jci-magazine-category__grid .jci-magazine-card__body {
  padding-top: 18px;
}

.jci-magazine-category__grid .jci-magazine-card__title {
  font-size: clamp(24px, 2vw, 30px);
  line-height: 1.08;
  letter-spacing: -0.032em;
}

.jci-magazine-category__grid .jci-magazine-card__excerpt {
  max-width: 46ch;
}

.jci-magazine-category .jci-magazine-card__meta {
  gap: 8px 12px;
  font-size: 11px;
  letter-spacing: 0.11em;
  line-height: 1.3;
}

.jci-magazine-category .jci-magazine-pagination {
  grid-column: 2;
  margin-top: clamp(34px, 4vw, 52px);
  padding-top: 20px;
  border-top: 1px solid #cfd4da;
}

.jci-magazine-category .jci-magazine-pagination ul {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.jci-magazine-category .jci-magazine-pagination > ul.page-numbers {
  width: auto;
  height: auto;
  min-width: 0;
  border: 0;
  background: transparent;
}

.jci-magazine-category .jci-magazine-pagination li {
  margin: 0;
  padding: 0;
}

.jci-magazine-category .jci-magazine-pagination .page-numbers:not(ul) {
  min-width: 38px;
  height: 38px;
  padding: 0 12px;
  border: 1px solid #cfd4da;
  border-radius: 0;
  background: transparent;
  color: #111827;
  font-family: "DM Sans", "Helvetica Neue", Arial, sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
  transition: border-color 0.18s ease, color 0.18s ease, background-color 0.18s ease;
}

.jci-magazine-category .jci-magazine-pagination .page-numbers.dots {
  min-width: 22px;
  border-color: transparent;
  color: #7a8492;
}

.jci-magazine-category .jci-magazine-pagination a.page-numbers:hover,
.jci-magazine-category .jci-magazine-pagination a.page-numbers:focus-visible {
  border-color: #111827;
  background: #111827;
  color: #fff;
  text-decoration: none;
}

.jci-magazine-category .jci-magazine-pagination .page-numbers.current {
  border-color: #4078ff;
  background: #4078ff;
  color: #fff;
}

@media (max-width: 1100px) {
  .jci-magazine-category-section,
  .jci-magazine-category-featured .jci-magazine-card--featured {
    grid-template-columns: minmax(0, 1fr);
  }

  .jci-magazine-category-section__heading {
    position: static;
    max-width: 640px;
  }

  .jci-magazine-category .jci-magazine-pagination {
    grid-column: 1;
  }
}

@media (max-width: 760px) {
  .jci-magazine-category .jci-magazine-page__inner {
    width: min(var(--jci-magazine-category-max), calc(100% - 32px));
  }

  .jci-magazine-category__hero {
    max-width: none !important;
  }

  .jci-magazine-category-section,
  .jci-magazine-category__grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .jci-magazine-category-section {
    padding: 48px 0;
  }

  .jci-magazine-card--rail,
  .jci-magazine-card--lane {
    grid-template-columns: minmax(0, 1fr);
  }

  .jci-magazine-category .jci-magazine-pagination {
    grid-column: 1;
  }

  .jci-magazine-category-related__links {
    grid-template-columns: minmax(0, 1fr);
    border-left: 0;
  }

  .jci-magazine-category-related__links a {
    border-right: 0;
  }
}

/* The Magazine 2026 editorial refresh */
.jci-mag-home {
  background: #fff;
}

.jci-mag-home__container {
  width: min(var(--jci-new-max, 1360px), calc(100% - 72px));
}

.jci-mag-home__intro {
  padding-top: 30px;
  padding-bottom: 12px;
}

.jci-mag-home__intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(320px, 0.82fr);
  gap: 24px;
  align-items: stretch;
}

.jci-mag-home__masthead {
  padding: 44px 46px 38px;
  border: 1px solid rgba(4, 28, 64, 0.08);
  background: #fff;
}

.jci-mag-home__masthead h1 {
  max-width: 8.2ch;
  font-size: clamp(58px, 6vw, 88px);
  line-height: 0.9;
  letter-spacing: -0.07em;
  text-wrap: balance;
}

.jci-mag-home__lede {
  max-width: 34rem;
  font-size: 18px;
  line-height: 1.72;
  color: #54627b;
}

.jci-mag-home__intro-panel,
.jci-mag-home-lane,
.jci-mag-home-guide,
.jci-mag-home-program-card,
.jci-magazine-category-outcomes__inner,
.jci-magazine-category-program-card {
  border: 1px solid rgba(4, 28, 64, 0.08);
  background: #fff;
}

.jci-mag-home__intro-panel {
  display: grid;
  gap: 14px;
  padding: 18px 0 0 24px;
  border: 0;
  border-left: 1px solid rgba(4, 28, 64, 0.08);
  background: #fff;
}

.jci-mag-home__intro-panel .jci-mag-home__quick-nav-title {
  color: #041c40;
  margin: 0;
}

.jci-mag-home__topic-list {
  display: grid;
  gap: 0;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid rgba(4, 28, 64, 0.08);
  border-left: 1px solid rgba(4, 28, 64, 0.08);
}

.jci-mag-home__topic-pill {
  display: grid;
  gap: 8px;
  align-content: start;
  min-height: 122px;
  padding: 14px 16px 16px;
  border-right: 1px solid rgba(4, 28, 64, 0.08);
  border-bottom: 1px solid rgba(4, 28, 64, 0.08);
  background: #fff;
  color: #4c5b73;
  text-decoration: none;
  transition: transform 0.18s ease, border-color 0.18s ease, background-color 0.18s ease;
}

.jci-mag-home__topic-pill strong {
  color: #08214a;
  font-size: 14px;
  line-height: 1.15;
}

.jci-mag-home__topic-pill span {
  color: #607089;
  font-size: 12px;
  line-height: 1.5;
}

.jci-mag-home__topic-pill:hover,
.jci-mag-home__topic-pill:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(72, 124, 255, 0.42);
  background: #fff;
}

.jci-mag-home-featured {
  grid-template-columns: minmax(0, 1.28fr) minmax(360px, 0.72fr);
  align-items: stretch;
  border: 1px solid rgba(4, 28, 64, 0.08);
  background: #fff;
}

.jci-mag-home-featured__media {
  min-height: 460px;
}

.jci-mag-home-featured__content {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 40px 38px;
}

.jci-mag-home-featured__content h2 {
  max-width: 8.5ch;
  font-size: clamp(40px, 3.4vw, 60px);
  line-height: 0.93;
  letter-spacing: -0.06em;
}

.jci-mag-home-featured__content p:not(.jci-mag-home__kicker) {
  max-width: 30ch;
  color: #5a6981;
  font-size: 16px;
  line-height: 1.68;
}

.jci-mag-home-route-grid--four {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid rgba(4, 28, 64, 0.08);
  border-left: 1px solid rgba(4, 28, 64, 0.08);
}

.jci-mag-home-route {
  gap: 16px;
  min-height: 236px;
  padding: 26px 24px 24px;
  border-right: 1px solid rgba(4, 28, 64, 0.08);
  border-bottom: 1px solid rgba(4, 28, 64, 0.08);
  background: #fff;
}

.jci-mag-home-route__eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #eb5e4e;
}

.jci-mag-home-route__label {
  font-size: clamp(28px, 2.3vw, 40px);
  line-height: 0.96;
  letter-spacing: -0.05em;
}

.jci-mag-home-route__description {
  max-width: 28ch;
  color: #607089;
  font-size: 15px;
  line-height: 1.64;
}

.jci-mag-home-lanes,
.jci-mag-home-guide-grid,
.jci-mag-home-program-grid,
.jci-magazine-category-programs__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
}

.jci-mag-home-lanes {
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1.2fr) minmax(0, 0.92fr) minmax(0, 0.92fr);
  border-top: 1px solid rgba(4, 28, 64, 0.08);
  border-left: 1px solid rgba(4, 28, 64, 0.08);
}

.jci-mag-home-lane:first-child {
  grid-column: span 2;
}

.jci-mag-home-lane,
.jci-mag-home-guide,
.jci-mag-home-program-card,
.jci-magazine-category-program-card {
  padding: 26px;
  border-right: 1px solid rgba(4, 28, 64, 0.08);
  border-bottom: 1px solid rgba(4, 28, 64, 0.08);
}

.jci-mag-home-lane__header,
.jci-mag-home-guide,
.jci-mag-home-program-card {
  display: grid;
  gap: 12px;
}

.jci-mag-home-lane {
  background: #fff;
  display: grid;
  align-content: start;
}

.jci-mag-home-lane__header h3,
.jci-mag-home-guide h3,
.jci-mag-home-program-card h3,
.jci-magazine-category-program-card h3 {
  margin: 0;
  font-size: clamp(30px, 2.3vw, 42px);
  line-height: 0.94;
  letter-spacing: -0.045em;
}

.jci-mag-home-lane__header p:not(.jci-mag-home__kicker),
.jci-mag-home-guide p:not(.jci-mag-home__kicker),
.jci-mag-home-program-card p:not(.jci-mag-home__kicker),
.jci-magazine-category-program-card p:not(.jci-magazine-page__eyebrow) {
  margin: 0;
  color: #53627a;
}

.jci-mag-home-lane__list {
  display: grid;
  gap: 12px;
  margin-top: 16px;
}

.jci-mag-home-lane .jci-mag-home-card {
  border-radius: 0;
  border: 0;
  box-shadow: none;
  background: transparent;
}

.jci-mag-home-lane .jci-mag-home-card__media {
  display: none;
}

.jci-mag-home-lane .jci-mag-home-card__body {
  padding: 12px 0;
  gap: 10px;
}

.jci-mag-home-lane .jci-mag-home-card + .jci-mag-home-card {
  border-top: 1px solid rgba(4, 28, 64, 0.08);
}

.jci-mag-home-lane .jci-mag-home-card__title {
  font-size: clamp(20px, 1.35vw, 24px);
  line-height: 1;
}

.jci-mag-home-lane .jci-mag-home-card__excerpt {
  font-size: 14px;
  line-height: 1.58;
}

.jci-mag-home-lane:first-child .jci-mag-home-card__title,
.jci-mag-home-guide h3,
.jci-mag-home-program-card h3 {
  text-wrap: balance;
}

.jci-mag-home-guide .jci-mag-home__actions {
  margin-top: auto;
  gap: 12px;
}

.jci-mag-home-guide-grid {
  border-top: 1px solid rgba(4, 28, 64, 0.08);
  border-left: 1px solid rgba(4, 28, 64, 0.08);
}

.jci-mag-home-guide {
  min-height: 100%;
  padding: 26px 24px 24px;
  background: #fff;
}

.jci-mag-home-program-card {
  background: #fff;
  padding: clamp(28px, 3vw, 30px) !important;
}

.jci-mag-home-program-card:nth-child(2) {
  background: #fff;
  padding: clamp(28px, 3vw, 30px) !important;
}

.jci-mag-home-program-card:nth-child(3) {
  background: #041c40;
}

.jci-mag-home__section--programs .jci-mag-home__section-heading {
  max-width: 280px;
}

.jci-mag-home__section--programs .jci-mag-home__section-heading h2 {
  font-size: clamp(34px, 2.65vw, 48px);
  line-height: 0.98;
  letter-spacing: -0.045em;
}

.jci-mag-home__section--programs .jci-mag-home__section-intro {
  margin-top: 16px;
  font-size: 15.5px;
  line-height: 1.66;
}

.jci-mag-home__section--programs .jci-mag-home-program-card {
  padding: 24px 24px 22px !important;
  gap: 12px;
}

.jci-mag-home__section--programs .jci-mag-home-program-card h3 {
  font-size: clamp(25px, 1.95vw, 34px);
  line-height: 1;
  letter-spacing: -0.034em;
}

.jci-mag-home__section--programs .jci-mag-home-program-card p:not(.jci-mag-home__kicker) {
  font-size: 15px;
  line-height: 1.6;
}

.jci-mag-home__section--programs .jci-mag-home-program-card .jci-mag-home-link {
  margin-top: 2px;
}

.jci-mag-home-program-card:nth-child(3) h3,
.jci-mag-home-program-card:nth-child(3) p,
.jci-mag-home-program-card:nth-child(3) .jci-mag-home__kicker,
.jci-mag-home-program-card:nth-child(3) .jci-mag-home-link {
  color: #fff;
}

.jci-mag-home-program-card:nth-child(3) .jci-mag-home-link {
  text-decoration-color: rgba(255, 255, 255, 0.32);
}

.jci-mag-home__section--programs .jci-mag-home-program-card,
.jci-mag-home__section--programs .jci-mag-home-program-card:nth-child(1),
.jci-mag-home__section--programs .jci-mag-home-program-card:nth-child(2),
.jci-mag-home__section--programs .jci-mag-home-program-card:nth-child(3) {
  padding: 24px 24px 22px !important;
}

.jci-mag-home__section--programs .jci-mag-home-program-card p:not(.jci-mag-home__kicker),
.jci-mag-home__section--programs .jci-mag-home-program-card:nth-child(3) p:not(.jci-mag-home__kicker) {
  font-size: 15px;
  line-height: 1.6;
}

.jci-mag-home__section,
.jci-mag-home__closing {
  padding-top: 54px;
  padding-bottom: 54px;
}

.jci-mag-home__section-heading {
  align-content: start;
  gap: 12px;
}

.jci-mag-home__section-heading h2,
.jci-mag-home__closing-links h2 {
  max-width: 11.6ch;
  font-size: clamp(36px, 3vw, 54px);
  line-height: 0.96;
  letter-spacing: -0.05em;
}

.jci-mag-home-topic-grid,
.jci-mag-home-program-grid {
  gap: 0;
  border-top: 1px solid rgba(4, 28, 64, 0.08);
  border-left: 1px solid rgba(4, 28, 64, 0.08);
}

.jci-mag-home-topic,
.jci-mag-home-program-card {
  border-right: 1px solid rgba(4, 28, 64, 0.08);
  border-bottom: 1px solid rgba(4, 28, 64, 0.08);
}

.jci-mag-home-topic {
  min-height: 0;
  padding: 24px 24px 22px;
  border-radius: 0;
  background: #fff;
  box-shadow: none;
}

.jci-mag-home-topic__label {
  max-width: 17ch;
  font-size: clamp(24px, 1.8vw, 31px);
  line-height: 1.02;
  letter-spacing: -0.038em;
}

.jci-mag-home-topic__description {
  font-size: 15px;
  line-height: 1.62;
}

.jci-mag-home-topic__count,
.jci-mag-home-topic__latest {
  margin-top: 10px;
}

.jci-mag-home-topic__latest {
  gap: 8px;
  padding-top: 12px;
  font-size: 14px;
  line-height: 1.5;
}

.jci-mag-home-topic__latest span {
  font-size: 11px;
  letter-spacing: 0.13em;
}

.jci-mag-home-topic__latest a {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.jci-mag-home-featured {
  grid-template-columns: minmax(0, 0.98fr) minmax(360px, 0.74fr);
  gap: clamp(52px, 7vw, 92px);
}

.jci-mag-home-featured__content h2 {
  max-width: 11.4ch;
  font-size: clamp(42px, 4.15vw, 64px);
  line-height: 0.97;
}

.jci-mag-home-featured__content p:not(.jci-mag-home__kicker) {
  font-size: 16px;
  line-height: 1.66;
}

.jci-mag-home__section-grid,
.jci-mag-home-closing-grid {
  grid-template-columns: clamp(255px, 23vw, 320px) minmax(0, 1fr);
}

.jci-mag-home__quick-nav small {
  font-size: 13px;
  line-height: 1.52;
}

.jci-mag-home__quick-nav a {
  font-size: 14px;
  line-height: 1.42;
}

.jci-mag-home__intro-panel {
  gap: 16px;
  padding: 20px 0 0 28px;
}

.jci-mag-home__topic-pill {
  gap: 10px;
  min-height: 132px;
  padding: 16px 18px 18px;
}

.jci-mag-home__topic-pill strong {
  font-size: 16px;
  line-height: 1.14;
}

.jci-mag-home__topic-pill span {
  font-size: 13px;
  line-height: 1.54;
}

.jci-mag-home .jci-mag-home-featured__content h2 {
  max-width: 11.8ch;
  font-size: clamp(42px, 4.2vw, 64px);
  line-height: 0.97;
}

.jci-mag-home .jci-mag-home-featured__content p:not(.jci-mag-home__kicker) {
  max-width: 34ch;
  font-size: 17px;
  line-height: 1.68;
  color: #53627a;
}

.jci-mag-home__intro {
  padding-top: clamp(82px, 7vw, 116px);
  padding-bottom: clamp(52px, 5.5vw, 78px);
}

.jci-mag-home__authority {
  padding-top: clamp(52px, 4.8vw, 64px);
  padding-bottom: clamp(52px, 4.8vw, 64px);
}

.jci-mag-home__feature {
  padding-top: clamp(86px, 6.6vw, 104px);
  padding-bottom: clamp(88px, 6.8vw, 108px);
}

.jci-mag-home-featured {
  gap: clamp(46px, 5.8vw, 72px);
}

.jci-mag-home__section,
.jci-mag-home__closing {
  padding-top: clamp(82px, 6.2vw, 96px);
  padding-bottom: clamp(82px, 6.2vw, 96px);
}

.jci-mag-home__section-grid,
.jci-mag-home-closing-grid {
  gap: clamp(56px, 5.8vw, 76px);
}

.jci-mag-home__section--disciplines {
  padding-top: clamp(74px, 5.6vw, 88px);
}

.jci-mag-home__section--programs {
  padding-top: clamp(78px, 5.8vw, 92px);
}

.jci-mag-home__closing-links {
  padding-top: 14px;
}

.jci-mag-home-program-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.jci-mag-home-program-card {
  box-shadow: none;
}

.jci-mag-home-program-card:nth-child(1),
.jci-mag-home-program-card:nth-child(2) {
  background: #fff;
  padding: clamp(28px, 3vw, 30px) !important;
}

.jci-mag-home-program-card:nth-child(1),.jci-mag-home-program-card:nth-child(1):hover  {
  border: 1px solid rgba(4, 28, 64, 0.1) !important;
  border-color:rgba(4, 28, 64, 0.1) !important;
}

.jci-mag-home-button,
.jci-mag-home-link {
  min-height: 44px;
  font-size: 13px;
  letter-spacing: 0.08em;
}

.jci-mag-home-button {
  padding: 0 16px;
}

.jci-magazine-category__hero {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.8fr);
  gap: 26px;
  align-items: start;
}

.jci-magazine-category__hero-copy {
  display: grid;
  gap: 16px;
}

.jci-magazine-category__hero-panel {
  display: grid;
  gap: 16px;
}

.jci-magazine-category__summary-card {
  padding: 24px;
}

.jci-magazine-category__summary-card p:last-child {
  margin: 0;
  color: #53627a;
  line-height: 1.62;
}

.jci-magazine-category-outcomes__inner {
  display: grid;
  gap: 18px;
  padding: 28px;
}

.jci-magazine-category-outcomes__inner p {
  margin: 0;
  max-width: 760px;
  color: #53627a;
  font-size: 1.04rem;
  line-height: 1.7;
}

.jci-magazine-category-outcomes__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.jci-magazine-category-outcomes__chips span {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid rgba(72, 124, 255, 0.18);
  background: rgba(72, 124, 255, 0.08);
  color: #16305f;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.jci-magazine-category-program-card {
  display: grid;
  gap: 12px;
  min-height: 100%;
}

.jci-magazine-category-program-card p {
  margin: 0;
}

.jci-magazine-category-program-card:nth-child(3) {
  background: #041c40;
}

.jci-magazine-category-program-card:nth-child(3) h3,
.jci-magazine-category-program-card:nth-child(3) p,
.jci-magazine-category-program-card:nth-child(3) .jci-magazine-card__link {
  color: #fff;
}

.jci-magazine-category-program-card:nth-child(3) .jci-magazine-card__link {
  text-decoration-color: rgba(255, 255, 255, 0.32);
}

@media (max-width: 1180px) {
  .jci-mag-home__intro-grid,
  .jci-mag-home-guide-grid,
  .jci-mag-home-program-grid,
  .jci-magazine-category__hero,
  .jci-magazine-category-programs__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .jci-mag-home-route-grid--four,
  .jci-mag-home-lanes {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .jci-mag-home-lane:first-child {
    grid-column: auto;
  }

  .jci-mag-home__masthead,
  .jci-mag-home__intro-panel,
  .jci-mag-home-lane,
  .jci-mag-home-guide,
  .jci-mag-home-program-card {
    padding: 28px;
  }

  .jci-mag-home__topic-list {
    grid-template-columns: minmax(0, 1fr);
  }

  .jci-mag-home-lanes,
  .jci-mag-home-guide-grid,
  .jci-mag-home-program-grid,
  .jci-mag-home-topic-grid,
  .jci-mag-home-route-grid--four {
    border-left: 1px solid rgba(4, 28, 64, 0.08);
  }
}

@media (max-width: 780px) {
  .jci-mag-home__intro,
  .jci-mag-home__feature {
    padding-top: 24px;
  }

  .jci-mag-home__intro-grid,
  .jci-mag-home-featured,
  .jci-mag-home-route-grid--four,
  .jci-mag-home-lanes,
  .jci-mag-home-guide-grid,
  .jci-mag-home-program-grid,
  .jci-magazine-category__hero,
  .jci-magazine-category-programs__grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .jci-mag-home-featured__content,
  .jci-mag-home__masthead,
  .jci-mag-home-route,
  .jci-mag-home-lane,
  .jci-mag-home-guide,
  .jci-mag-home-program-card,
  .jci-magazine-category__summary-card,
  .jci-magazine-category-outcomes__inner,
  .jci-magazine-category-program-card {
    padding: 22px;
  }

  .jci-mag-home-route {
    min-height: 0;
  }

  .jci-mag-home__intro-panel {
    padding: 18px 0 0;
    border-left: 0;
  }

  .jci-mag-home__topic-list,
  .jci-mag-home-route-grid--four,
  .jci-mag-home-topic-grid,
  .jci-mag-home-lanes,
  .jci-mag-home-guide-grid,
  .jci-mag-home-program-grid {
    border-left: 0;
  }

  .jci-mag-home__topic-pill,
  .jci-mag-home-route,
  .jci-mag-home-topic,
  .jci-mag-home-lane,
  .jci-mag-home-guide,
  .jci-mag-home-program-card {
    border-right: 0;
  }

  .jci-mag-home__container {
    width: min(var(--jci-new-max, 1360px), calc(100% - 32px));
  }

  .jci-mag-home__masthead h1,
  .jci-mag-home-featured__content h2,
  .jci-mag-home__section-heading h2,
  .jci-mag-home__closing-links h2,
  .jci-mag-home-route__label,
  .jci-mag-home-lane__header h3,
  .jci-mag-home-guide h3,
  .jci-mag-home-program-card h3 {
    max-width: none;
  }

  .jci-mag-home-featured__media {
    min-height: 320px;
  }

  .jci-mag-home__actions {
    flex-direction: column;
    align-items: flex-start;
  }
}


/* 2026-06-28 The Magazine category pixel-polish pass. */
.jci-magazine-category {
  padding-top: calc(var(--jci-header-offset, 150px) + 36px);
}

.jci-magazine-category .jci-magazine-breadcrumb {
  margin-bottom: 24px;
  color: #4f5868;
  font-size: 12px;
  line-height: 1.45;
}

.jci-magazine-category__hero {
  padding-top: clamp(54px, 5.4vw, 72px);
  padding-bottom: clamp(42px, 4.6vw, 58px);
  margin-bottom: clamp(46px, 4.8vw, 60px);
}

.jci-magazine-category .jci-magazine-page__eyebrow,
.jci-magazine-category__count,
.jci-magazine-category .jci-magazine-card__meta,
.jci-magazine-category .jci-magazine-card__link {
  letter-spacing: 0.13em;
}

.jci-magazine-category .jci-magazine-page__title {
  max-width: 820px;
  font-size: clamp(46px, 4.9vw, 76px);
  line-height: 1.005;
  letter-spacing: -0.046em;
}

.jci-magazine-category .jci-magazine-page__intro {
  max-width: 610px;
  font-size: clamp(17px, 1.32vw, 22px);
  line-height: 1.42;
  letter-spacing: -0.012em;
}

.jci-magazine-category__count {
  margin-top: clamp(20px, 2vw, 26px);
  padding-top: 12px;
  padding-bottom: 10px;
  line-height: 1.25;
}

.jci-magazine-category-section {
  grid-template-columns: minmax(188px, 240px) minmax(0, 1fr);
  gap: clamp(34px, 4vw, 52px);
  padding-top: clamp(50px, 5vw, 66px);
  padding-bottom: clamp(50px, 5vw, 66px);
}

.jci-magazine-category-section__heading h2 {
  max-width: 11.5ch;
  font-size: clamp(27px, 2.2vw, 36px);
  line-height: 1.03;
  letter-spacing: -0.038em;
}

.jci-magazine-category-featured .jci-magazine-card--featured {
  grid-template-columns: minmax(0, 1.12fr) minmax(320px, 0.84fr);
  gap: clamp(34px, 4.4vw, 56px);
}

.jci-magazine-category-featured .jci-magazine-card__title {
  max-width: 15ch;
  font-size: clamp(31px, 2.55vw, 41px);
  line-height: 1.015;
  letter-spacing: -0.034em;
}

.jci-magazine-category-featured .jci-magazine-card__excerpt {
  max-width: 42ch;
}

.jci-magazine-card--rail,
.jci-magazine-card--lane {
  grid-template-columns: 188px minmax(0, 1fr);
  gap: clamp(24px, 2.8vw, 34px);
  padding-top: clamp(24px, 2.3vw, 28px);
  padding-bottom: clamp(24px, 2.3vw, 28px);
}

.jci-magazine-card--rail .jci-magazine-card__title,
.jci-magazine-card--lane .jci-magazine-card__title {
  max-width: 740px;
  font-size: clamp(21px, 1.55vw, 26px);
  line-height: 1.14;
  letter-spacing: -0.026em;
}

.jci-magazine-card--rail .jci-magazine-card__excerpt,
.jci-magazine-card--lane .jci-magazine-card__excerpt {
  max-width: 68ch;
}

.jci-magazine-category-related__links span {
  font-size: clamp(23px, 1.9vw, 31px);
  line-height: 1.05;
}

.jci-magazine-category-programs__content {
  max-width: 720px;
  gap: 20px;
}

.jci-magazine-category-programs__content p {
  font-size: clamp(19px, 1.65vw, 26px);
  line-height: 1.36;
  letter-spacing: -0.026em;
}

.jci-magazine-category__grid {
  column-gap: clamp(36px, 4.2vw, 56px);
  row-gap: clamp(54px, 5.2vw, 72px);
}

.jci-magazine-category__grid .jci-magazine-card__body {
  padding-top: 17px;
  gap: 11px;
}

.jci-magazine-category__grid .jci-magazine-card__title {
  max-width: 18ch;
  font-size: clamp(23px, 1.82vw, 28px);
  line-height: 1.1;
  letter-spacing: -0.028em;
}

.jci-magazine-category__grid .jci-magazine-card__excerpt {
  max-width: 48ch;
  color: #566172;
  font-size: 14.5px;
  line-height: 1.56;
}

.jci-magazine-category .jci-magazine-pagination {
  margin-top: clamp(38px, 4.4vw, 56px);
  padding-top: 18px;
}

.jci-magazine-category .jci-magazine-pagination ul {
  gap: 7px;
}

.jci-magazine-category .jci-magazine-pagination .page-numbers:not(ul) {
  min-width: 36px;
  height: 36px;
  padding-inline: 11px;
  font-size: 11px;
}

@media (max-width: 1100px) {
  .jci-magazine-category-section {
    grid-template-columns: minmax(0, 1fr);
    gap: 28px;
  }

  .jci-magazine-category-section__heading h2,
  .jci-magazine-category__grid .jci-magazine-card__title {
    max-width: none;
  }
}

@media (max-width: 760px) {
  .jci-magazine-category {
    padding-top: calc(var(--jci-header-offset, 120px) + 24px);
  }

  .jci-magazine-category__hero {
    padding-top: 38px;
    padding-bottom: 42px;
  }

  .jci-magazine-category .jci-magazine-page__title {
    font-size: clamp(38px, 12vw, 48px);
    line-height: 1.02;
    letter-spacing: -0.04em;
  }

  .jci-magazine-card--rail,
  .jci-magazine-card--lane,
  .jci-magazine-category__grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .jci-magazine-category .jci-magazine-card__media {
    aspect-ratio: 16 / 10;
  }

  .jci-magazine-category__grid {
    row-gap: 48px;
  }
}


/* 2026-06-28 category hero single-column lock. */
.jci-magazine-category__hero {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) !important;
  gap: 14px !important;
}

.jci-magazine-category__hero > * {
  grid-column: 1 !important;
}


/* 2026-06-28 category separator simplification. */
.jci-magazine-category .jci-magazine-category-section {
  border-top: 0 !important;
}

.jci-magazine-category .jci-magazine-category-section + .jci-magazine-category-section {
  margin-top: clamp(18px, 2.4vw, 34px);
}

.jci-magazine-category .jci-magazine-category-rail,
.jci-magazine-category .jci-magazine-category-lane {
  border-top: 0 !important;
}

.jci-magazine-category .jci-magazine-card--rail,
.jci-magazine-category .jci-magazine-card--lane {
  border-bottom-color: rgba(185, 195, 207, 0.62) !important;
}

.jci-magazine-category .jci-magazine-card--rail:first-child,
.jci-magazine-category .jci-magazine-card--lane:first-child {
  padding-top: 0;
}

.jci-magazine-category .jci-magazine-card--rail:last-child,
.jci-magazine-category .jci-magazine-card--lane:last-child {
  border-bottom: 0 !important;
  padding-bottom: 0;
}

.jci-magazine-category .jci-magazine-category-section__heading {
  padding-top: 0;
}

.jci-magazine-category .jci-magazine-category-section__heading::before {
  content: "";
  display: block;
  width: 42px;
  height: 2px;
  margin: 0 0 18px;
  background: #4078ff;
}

.jci-magazine-category .jci-magazine-category-section:first-of-type .jci-magazine-category-section__heading::before {
  display: none;
}

.jci-magazine-category .jci-magazine-category-related__links {
  border-top-color: rgba(185, 195, 207, 0.62);
  border-left-color: rgba(185, 195, 207, 0.52);
}

.jci-magazine-category .jci-magazine-pagination {
  border-top-color: rgba(185, 195, 207, 0.58) !important;
}

@media (max-width: 760px) {
  .jci-magazine-category .jci-magazine-category-section + .jci-magazine-category-section {
    margin-top: 8px;
  }

  .jci-magazine-category .jci-magazine-category-section__heading::before {
    width: 34px;
    margin-bottom: 14px;
  }
}


/* 2026-06-28 category hero white editorial digest.
   Consolidated to preserve the category hub layout without overriding it into a broken digest.
*/
.jci-magazine-category {
  background: #ffffff !important;
  padding-top: clamp(56px, 5.4vw, 92px) !important;
}

.jci-magazine-category .jci-magazine-page__inner {
  background: #ffffff;
}

.jci-magazine-category .jci-magazine-breadcrumb {
  margin-bottom: clamp(40px, 5vw, 72px);
  color: #566172;
  font-size: clamp(13px, 1vw, 16px);
}

.jci-magazine-category__hero {
  display: grid !important;
  grid-template-columns: minmax(0, 1.12fr) minmax(300px, 0.42fr) !important;
  gap: clamp(34px, 4vw, 56px) !important;
  align-items: start !important;
  max-width: none !important;
  padding-top: clamp(24px, 2vw, 32px) !important;
  padding-bottom: clamp(48px, 5.4vw, 82px) !important;
  margin-bottom: clamp(46px, 4.8vw, 68px) !important;
  border-bottom: 1px solid rgba(185, 195, 207, 0.58) !important;
  background: #ffffff !important;
}

.jci-magazine-category__hero > * {
  grid-column: auto !important;
}

.jci-magazine-category__hero-copy {
  display: grid;
  gap: clamp(16px, 1.8vw, 24px);
  align-self: start;
  max-width: 760px;
}

.jci-magazine-category .jci-magazine-page__title {
  max-width: 11ch;
  font-size: clamp(52px, 5.4vw, 84px);
  line-height: 0.96;
  letter-spacing: -0.055em;
}

.jci-magazine-category .jci-magazine-page__intro {
  max-width: 42rem;
  font-size: clamp(18px, 1.28vw, 22px);
  line-height: 1.48;
}

.jci-magazine-category__count {
  width: fit-content;
  margin-top: clamp(12px, 1.5vw, 20px);
  padding: 14px 0 0;
}

.jci-magazine-category__hero-panel {
  display: grid !important;
  gap: clamp(18px, 2vw, 26px);
  align-self: end;
  padding-bottom: 0;
}


.jci-magazine-category__summary-card {
  position: relative;
  padding: clamp(18px, 2vw, 26px) 0 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

.jci-magazine-category__summary-card::before {
  content: "";
  position: absolute;
  top: -10px;
  left: 0;
  width: 44px;
  height: 2px;
  background: #4078ff;
}

.jci-magazine-category__summary-card .jci-magazine-page__eyebrow {
  letter-spacing: 0.13em;
}

.jci-magazine-category__summary-card p:last-child {
  max-width: 34ch;
  color: #4f5868;
  font-size: clamp(14px, 0.98vw, 16px);
  line-height: 1.58;
}

@media (max-width: 980px) {
  .jci-magazine-category__hero {
    grid-template-columns: minmax(0, 1fr) !important;
  }

  .jci-magazine-category__hero-panel {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-self: start;
  }
}

@media (max-width: 760px) {
  .jci-magazine-category {
    padding-top: 38px !important;
  }

  .jci-magazine-category .jci-magazine-breadcrumb {
    margin-bottom: 34px;
  }

  .jci-magazine-category__hero {
    padding-bottom: 44px !important;
  }

  .jci-magazine-category .jci-magazine-page__title {
    font-size: clamp(42px, 12.5vw, 58px);
    line-height: 0.99;
  }

  .jci-magazine-category__hero-panel {
    grid-template-columns: minmax(0, 1fr);
    gap: 18px;
  }
}


/* 2026-06-29 The Magazine home production synthesis. */
.jci-mag-home {
  --jci-mag-page-edge: var(--jci-new-edge, 40px);
  --jci-mag-page-max: var(--jci-new-max, var(--layout-max-width, 1280px));
  --jci-mag-blue: #1a4fd7;
  --jci-mag-navy: #0f1728;
  --jci-mag-ink: #162033;
  --jci-mag-text: #435066;
  --jci-mag-muted: #647084;
  --jci-mag-border: #e1e7f0;
  --jci-mag-border-strong: #c9d3e2;
  background: #ffffff;
}

.jci-mag-home__container {
  width: min(var(--jci-mag-page-max), calc(100% - (var(--jci-mag-page-edge) * 2))) !important;
  max-width: none;
}

.jci-mag-home__intro {
  padding-top: clamp(48px, 5.5vw, 86px);
  padding-bottom: clamp(38px, 4.6vw, 66px);
}

.jci-mag-home__intro-grid {
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.76fr);
  gap: clamp(44px, 6.2vw, 92px);
  align-items: start;
}

.jci-mag-home__masthead {
  position: relative;
  max-width: none;
  padding: clamp(18px, 2.6vw, 34px) 0 clamp(8px, 1.4vw, 18px) clamp(24px, 2.4vw, 34px) !important;
  border: 0 !important;
  border-left: 4px solid var(--jci-mag-blue) !important;
  background: transparent !important;
}

.jci-mag-home__masthead h1 {
  max-width: 9.3ch;
  margin-bottom: clamp(20px, 2.4vw, 30px);
  font-size: clamp(58px, 6vw, 104px);
  line-height: 0.9;
  letter-spacing: -0.068em;
}

.jci-mag-home__lede {
  max-width: 42rem;
  color: var(--jci-mag-text);
  font-size: clamp(19px, 1.55vw, 24px);
  line-height: 1.58;
}

.jci-mag-home__actions--hero {
  margin-top: clamp(26px, 3vw, 38px);
}

.jci-mag-home__signal-list {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 24px;
}

.jci-mag-home__signal {
  display: grid;
  gap: 4px;
  min-width: 150px;
  padding: 14px 16px;
  border-top: 1px solid var(--jci-mag-border-strong);
  text-decoration: none;
  color: var(--jci-mag-navy);
}

.jci-mag-home__signal strong {
  font-size: 24px;
  line-height: 1;
  font-weight: 700;
}

.jci-mag-home__signal span {
  color: var(--jci-mag-text-soft);
  font-size: 13px;
  line-height: 1.4;
}

.jci-mag-home__signal:hover strong,
.jci-mag-home__signal:focus-visible strong {
  color: var(--jci-mag-link);
}

.jci-mag-home-link--inline {
  margin-top: 6px;
}

.jci-mag-home-button {
  min-height: 46px;
  padding-inline: 22px;
  transition: transform 0.18s ease, background-color 0.18s ease, border-color 0.18s ease;
}

.jci-mag-home-button:hover,
.jci-mag-home-button:focus-visible {
  transform: translateY(-1px);
  background: #0f3fb6;
  border-color: #0f3fb6;
}

.jci-mag-home__intro-panel {
  display: grid;
  align-content: end;
  gap: clamp(22px, 2.4vw, 30px);
  min-height: 0;
  padding: clamp(18px, 2.4vw, 30px) 0 0 clamp(24px, 3vw, 42px) !important;
  border: 0 !important;
  border-left: 1px solid var(--jci-mag-border-strong) !important;
  background: transparent !important;
}

.jci-mag-home__intro-panel .jci-mag-home__quick-nav-title {
  margin: 0;
  color: var(--jci-mag-navy);
}

.jci-mag-home__topic-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--jci-mag-border-strong);
  border-left: 1px solid var(--jci-mag-border);
}

.jci-mag-home__topic-pill {
  min-height: 148px;
  padding: clamp(18px, 2vw, 24px);
  border-right: 1px solid var(--jci-mag-border);
  border-bottom: 1px solid var(--jci-mag-border);
}

.jci-mag-home__topic-pill strong {
  font-size: clamp(15px, 1.2vw, 18px);
  line-height: 1.1;
  letter-spacing: -0.018em;
}

.jci-mag-home__topic-pill span {
  color: var(--jci-mag-text);
  font-size: 13px;
  line-height: 1.5;
}

.jci-mag-home__feature {
  padding-bottom: clamp(72px, 8vw, 112px);
}

.jci-mag-home-featured {
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.7fr);
  gap: clamp(42px, 6vw, 80px);
  align-items: stretch;
  padding-top: clamp(38px, 4.6vw, 60px);
  border-top: 1px solid var(--jci-mag-border-strong);
  border-right: 0;
  border-bottom: 0;
  border-left: 0;
  background: #ffffff;
}

.jci-mag-home-featured__media {
  min-height: clamp(360px, 43vw, 560px);
  aspect-ratio: 16 / 10;
  border: 0;
  background: #eef3fa;
}

.jci-mag-home-featured__content {
  display: grid;
  align-content: center;
  gap: clamp(16px, 2vw, 24px);
  padding: clamp(6px, 1vw, 14px) 0;
}

.jci-mag-home-featured__content h2 {
  max-width: 13.5ch;
  font-size: clamp(42px, 4.3vw, 70px);
  line-height: 0.94;
  letter-spacing: -0.058em;
}

.jci-mag-home-featured__content p:not(.jci-mag-home__kicker) {
  max-width: 42rem;
  color: var(--jci-mag-text);
}

.jci-mag-home__section,
.jci-mag-home__closing {
  padding: clamp(72px, 8vw, 108px) 0;
  border-top: 1px solid var(--jci-mag-border);
}

.jci-mag-home__section-grid,
.jci-mag-home-closing-grid {
  grid-template-columns: clamp(250px, 22vw, 310px) minmax(0, 1fr);
  gap: clamp(42px, 5.8vw, 78px);
}

.jci-mag-home__section-heading h2,
.jci-mag-home__closing-links h2 {
  font-size: clamp(34px, 3vw, 52px);
  line-height: 0.99;
  letter-spacing: -0.05em;
}

.jci-mag-home__section-heading::before,
.jci-mag-home__closing-links::before {
  content: "";
  display: block;
  width: 42px;
  height: 2px;
  margin: 0 0 20px;
  background: var(--jci-mag-blue, #1a4fd7);
}

.jci-mag-home-route,
.jci-mag-home-topic,
.jci-mag-home-guide,
.jci-mag-home-program-card,
.jci-mag-home-lane {
  transition: transform 0.18s ease, border-color 0.18s ease, background-color 0.18s ease;
}

.jci-mag-home-route:hover,
.jci-mag-home-route:focus-visible,
.jci-mag-home-topic:hover,
.jci-mag-home-topic:focus-visible,
.jci-mag-home-guide:hover,
.jci-mag-home-guide:focus-within,
.jci-mag-home-program-card:hover,
.jci-mag-home-program-card:focus-within,
.jci-mag-home-lane:hover,
.jci-mag-home-lane:focus-within {
  transform: translateY(-2px);
  border-color: rgba(26, 79, 215, 0.32);
}

.jci-mag-home-card__media,
.jci-mag-home-card__placeholder {
  background: #eef3fa;
}

.jci-mag-home-card__title,
.jci-mag-home-featured__content h2,
.jci-mag-home__section-heading h2,
.jci-mag-home__masthead h1 {
  overflow-wrap: anywhere;
}

@media (max-width: 1100px) {
  .jci-mag-home__intro-grid,
  .jci-mag-home-featured,
  .jci-mag-home__section-grid,
  .jci-mag-home-closing-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .jci-mag-home__intro-panel {
    padding-left: 0 !important;
    border-left: 0 !important;
  }

  .jci-mag-home__section-heading {
    position: static;
    max-width: 680px;
  }
}

@media (max-width: 760px) {
  .jci-mag-home {
    --jci-mag-page-edge: 24px;
  }

  .jci-mag-home__intro {
    padding-top: 38px;
  }

  .jci-mag-home__masthead {
    padding-left: 22px !important;
  }

  .jci-mag-home__masthead h1 {
    font-size: clamp(48px, 15vw, 70px);
  }

  .jci-mag-home__topic-list,
  .jci-mag-home-route-grid--four,
  .jci-mag-home-topic-grid,
  .jci-mag-home-lanes,
  .jci-mag-home-guide-grid,
  .jci-mag-home-program-grid {
    grid-template-columns: minmax(0, 1fr) !important;
  }

  .jci-mag-home-featured__media {
    min-height: 0;
    aspect-ratio: 16 / 10;
  }
}


/* 2026-06-29 The Magazine home editorial lanes balance. */
.jci-mag-home-lanes {
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
}

.jci-mag-home-lane:first-child {
  grid-column: auto !important;
}

.jci-mag-home-lane {
  min-width: 0;
}

.jci-mag-home-lane__header h3 {
  max-width: 13ch;
  font-size: clamp(30px, 2.55vw, 44px);
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.jci-mag-home-lane__header p:not(.jci-mag-home__kicker) {
  max-width: 32ch;
}

.jci-mag-home-lane .jci-mag-home-card__title {
  overflow-wrap: normal;
  word-break: normal;
  hyphens: auto;
}

@media (max-width: 1180px) {
  .jci-mag-home-lanes {
    grid-template-columns: minmax(0, 1fr) !important;
  }
}

/* 2026-06-29 The Magazine home calm-down pass. */
.jci-mag-home {
  --jci-mag-soft: #f7f9fc;
  --jci-mag-soft-2: #f3f6fb;
  --jci-mag-hairline: rgba(15, 23, 40, 0.08);
}

.jci-mag-home__section,
.jci-mag-home__closing,
.jci-mag-home__feature {
  border-top: 0 !important;
}

.jci-mag-home__section {
  padding-top: clamp(62px, 7vw, 94px);
  padding-bottom: clamp(62px, 7vw, 94px);
}

.jci-mag-home__section + .jci-mag-home__section,
.jci-mag-home__closing {
  background: linear-gradient(180deg, rgba(247, 249, 252, 0.72), #ffffff 220px);
}

.jci-mag-home__section-heading::before,
.jci-mag-home__closing-links::before {
  width: 32px;
  height: 2px;
  margin-bottom: 18px;
}

.jci-mag-home__section-intro,
.jci-mag-home__lede,
.jci-mag-home-route__description,
.jci-mag-home-topic__description,
.jci-mag-home-guide p:not(.jci-mag-home__kicker),
.jci-mag-home-program-card p:not(.jci-mag-home__kicker),
.jci-mag-home-lane__header p:not(.jci-mag-home__kicker) {
  max-width: 34ch;
}

.jci-mag-home__topic-list,
.jci-mag-home-route-grid--four,
.jci-mag-home-topic-grid,
.jci-mag-home-lanes,
.jci-mag-home-guide-grid,
.jci-mag-home-program-grid {
  gap: clamp(14px, 1.6vw, 22px) !important;
  border: 0 !important;
}

.jci-mag-home__topic-pill,
.jci-mag-home-route,
.jci-mag-home-topic,
.jci-mag-home-lane,
.jci-mag-home-guide,
.jci-mag-home-program-card {
  border: 0 !important;
  background: var(--jci-mag-soft) !important;
  box-shadow: inset 0 0 0 1px rgba(15, 23, 40, 0.035);
}

.jci-mag-home-program-card:nth-child(3) {
  background: #041c40 !important;
  box-shadow: none;
}

.jci-mag-home__topic-pill:hover,
.jci-mag-home__topic-pill:focus-visible,
.jci-mag-home-route:hover,
.jci-mag-home-route:focus-visible,
.jci-mag-home-topic:hover,
.jci-mag-home-topic:focus-visible,
.jci-mag-home-guide:hover,
.jci-mag-home-guide:focus-within,
.jci-mag-home-program-card:hover,
.jci-mag-home-program-card:focus-within,
.jci-mag-home-lane:hover,
.jci-mag-home-lane:focus-within {
  transform: translateY(-2px);
  background: #ffffff !important;
  box-shadow: 0 18px 44px rgba(15, 23, 40, 0.07), inset 0 0 0 1px rgba(26, 79, 215, 0.12);
}

.jci-mag-home-featured {
  grid-template-columns: minmax(280px, 390px) minmax(0, 1fr) !important;
  gap: clamp(30px, 4.5vw, 64px) !important;
  align-items: start !important;
  min-height: 0 !important;
  padding: clamp(28px, 4vw, 46px) 0 !important;
  border: 0 !important;
  background: #ffffff !important;
  overflow: visible !important;
}

.jci-mag-home-featured__media {
  position: relative !important;
  inset: auto !important;
  display: block !important;
  width: 100% !important;
  max-width: 390px !important;
  min-height: 0 !important;
  height: auto !important;
  aspect-ratio: 4 / 3 !important;
  overflow: hidden !important;
  background: #eef3fa !important;
  transform: none !important;
}

.jci-mag-home-featured__media img {
  position: static !important;
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  transform: none !important;
}

.jci-mag-home-featured__content {
  position: relative !important;
  z-index: 1 !important;
  display: grid !important;
  align-content: center !important;
  gap: clamp(12px, 1.5vw, 18px) !important;
  min-height: 0 !important;
  padding: 0 !important;
  color: var(--jci-mag-ink) !important;
  background: transparent !important;
}

.jci-mag-home-featured__content h2 {
  max-width: 16ch !important;
  font-size: clamp(34px, 3.4vw, 54px) !important;
  line-height: 0.98 !important;
  letter-spacing: -0.048em !important;
}

.jci-mag-home-featured__content p:not(.jci-mag-home__kicker) {
  max-width: 43rem !important;
  font-size: clamp(15px, 1.1vw, 17px) !important;
  line-height: 1.62 !important;
}

.jci-mag-home-topic__latest,
.jci-mag-home-card__excerpt,
.jci-mag-home-route__description,
.jci-mag-home-topic__description,
.jci-mag-home-guide > p:not(.jci-mag-home__kicker),
.jci-mag-home-program-card > p:not(.jci-mag-home__kicker) {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.jci-mag-home-route__description,
.jci-mag-home-topic__description,
.jci-mag-home-guide > p:not(.jci-mag-home__kicker),
.jci-mag-home-program-card > p:not(.jci-mag-home__kicker) {
  -webkit-line-clamp: 2;
}

.jci-mag-home-topic__latest,
.jci-mag-home-card__excerpt {
  -webkit-line-clamp: 2;
}

.jci-mag-home-topic__latest {
  margin-top: 14px !important;
  padding-top: 0 !important;
  border-top: 0 !important;
  color: #33445f;
}

.jci-mag-home-lane .jci-mag-home-card + .jci-mag-home-card {
  border-top: 0 !important;
  padding-top: 18px;
}

.jci-mag-home-lane__list {
  gap: 4px !important;
}

.jci-mag-home-lane .jci-mag-home-card__body {
  padding: 0 !important;
}

.jci-mag-home-lane .jci-mag-home-card {
  padding: 0 0 18px !important;
}

.jci-mag-home-lane .jci-mag-home-card__title {
  font-size: clamp(19px, 1.45vw, 25px) !important;
  line-height: 1.05 !important;
}

.jci-mag-home-lane .jci-mag-home-card__excerpt {
  color: #53627a;
  font-size: 13.5px !important;
  line-height: 1.52 !important;
}

.jci-mag-home__section-heading h2,
.jci-mag-home__closing-links h2 {
  max-width: 11.5ch;
  font-size: clamp(34px, 2.9vw, 50px) !important;
  line-height: 0.98 !important;
}

.jci-mag-home-route__label,
.jci-mag-home-topic__label,
.jci-mag-home-lane__header h3,
.jci-mag-home-guide h3,
.jci-mag-home-program-card h3 {
  text-wrap: balance;
}

@media (max-width: 1100px) {
  .jci-mag-home-featured {
    grid-template-columns: minmax(0, 1fr) !important;
  }

  .jci-mag-home-featured__media {
    max-width: 520px !important;
  }
}

@media (max-width: 760px) {
  .jci-mag-home__section {
    padding-top: 52px;
    padding-bottom: 52px;
  }

  .jci-mag-home-featured__media {
    max-width: 100% !important;
    aspect-ratio: 16 / 10 !important;
  }

  .jci-mag-home-featured__content h2 {
    max-width: 13ch !important;
    font-size: clamp(32px, 10vw, 46px) !important;
  }
}


/* 2026-06-29 The Magazine home client correction. */
.jci-mag-home,
.jci-mag-home * {
  letter-spacing: normal !important;
}

.jci-mag-home *,
.jci-mag-home *::before,
.jci-mag-home *::after {
  box-shadow: none !important;
  transition: none !important;
}

.jci-mag-home a,
.jci-mag-home article,
.jci-mag-home section,
.jci-mag-home div,
.jci-mag-home p,
.jci-mag-home h1,
.jci-mag-home h2,
.jci-mag-home h3,
.jci-mag-home span,
.jci-mag-home blockquote,
.jci-mag-home img {
  transform: none !important;
}

.jci-mag-home-program-card a {
  align-items: start;
}

.jci-mag-home__masthead {
  padding-left: 0 !important;
  border-left: 0 !important;
}

.jci-mag-home__masthead h1,
.jci-mag-home-featured__content h2,
.jci-mag-home__section-heading h2,
.jci-mag-home__closing-links h2,
.jci-mag-home-route__label,
.jci-mag-home-topic__label,
.jci-mag-home-lane__header h3,
.jci-mag-home-guide h3,
.jci-mag-home-program-card h3,
.jci-mag-home-quote p {
  letter-spacing: normal !important;
}

.jci-mag-home__section-heading::before,
.jci-mag-home__closing-links::before {
  content: none !important;
  display: none !important;
}

.jci-mag-home__intro-panel {
  border-left: 0 !important;
  padding-left: 0 !important;
}

.jci-mag-home__feature,
.jci-mag-home__section,
.jci-mag-home__closing,
.jci-mag-home-featured,
.jci-mag-home__topic-list,
.jci-mag-home__topic-pill,
.jci-mag-home-route-grid--four,
.jci-mag-home-route,
.jci-mag-home-topic-grid,
.jci-mag-home-topic,
.jci-mag-home-lanes,
.jci-mag-home-lane,
.jci-mag-home-guide-grid,
.jci-mag-home-guide,
.jci-mag-home-program-grid,
.jci-mag-home-program-card,
.jci-mag-home-quote,
.jci-mag-home__closing-links,
.jci-mag-home-card,
.jci-mag-home-lane .jci-mag-home-card + .jci-mag-home-card,
.jci-mag-home-topic__latest,
.jci-mag-home-topic__count {
  border: 0 !important;
}

.jci-mag-home__section + .jci-mag-home__section,
.jci-mag-home__closing {
  background: #ffffff !important;
}

.jci-mag-home__intro {
  padding-top: clamp(64px, 7vw, 112px) !important;
  padding-bottom: clamp(74px, 8vw, 124px) !important;
  background: linear-gradient(180deg, #ffffff 0%, #ffffff 62%, #f6f4ef 62%, #f6f4ef 100%) !important;
}

.jci-mag-home__intro-grid {
  align-items: stretch !important;
}

.jci-mag-home__masthead {
  display: grid;
  align-content: end;
  min-height: clamp(520px, 48vw, 650px);
}

.jci-mag-home__intro-panel {
  align-self: end;
  max-width: 430px;
  margin-left: auto;
  padding-top: clamp(28px, 3vw, 42px) !important;
}

.jci-mag-home__topic-list,
.jci-mag-home-route-grid--four,
.jci-mag-home-topic-grid,
.jci-mag-home-lanes,
.jci-mag-home-guide-grid,
.jci-mag-home-program-grid {
  gap: clamp(18px, 2vw, 28px) !important;
}

.jci-mag-home__topic-pill,
.jci-mag-home-route,
.jci-mag-home-topic,
.jci-mag-home-lane,
.jci-mag-home-guide,
.jci-mag-home-program-card {
  background: #f6f4ef !important;
}

.jci-mag-home__topic-pill:hover,
.jci-mag-home__topic-pill:focus-visible,
.jci-mag-home-route:hover,
.jci-mag-home-route:focus-visible,
.jci-mag-home-topic:hover,
.jci-mag-home-topic:focus-visible,
.jci-mag-home-guide:hover,
.jci-mag-home-guide:focus-within,
.jci-mag-home-program-card:hover,
.jci-mag-home-program-card:focus-within,
.jci-mag-home-lane:hover,
.jci-mag-home-lane:focus-within,
.jci-mag-home-button:hover,
.jci-mag-home-button:focus-visible {
  transform: none !important;
  background: rgb(255,255,255,0.5) !important;
  border-color: transparent !important;
  box-shadow: none !important;
}

.jci-mag-home-button:hover,
.jci-mag-home-button:focus-visible {
  background: var(--jci-mag-blue, #1a4fd7) !important;
  color: #ffffff !important;
}

.jci-mag-home__topic-pill:hover,
.jci-mag-home__topic-pill:focus-visible,
.jci-mag-home-route:hover,
.jci-mag-home-route:focus-visible,
.jci-mag-home-topic:hover,
.jci-mag-home-topic:focus-visible,
.jci-mag-home-guide:hover,
.jci-mag-home-guide:focus-within,
.jci-mag-home-lane:hover,
.jci-mag-home-lane:focus-within {
  color: var(--jci-mag-ink) !important;
}

.jci-mag-home__feature {
  padding-top: clamp(42px, 5vw, 72px) !important;
}

.jci-mag-home-featured {
  grid-template-columns: minmax(300px, 470px) minmax(0, 1fr) !important;
  background: #ffffff !important;
}

.jci-mag-home__section:nth-of-type(3),
.jci-mag-home__section:nth-of-type(5),
.jci-mag-home__section:nth-of-type(7) {
  background: #f6f4ef !important;
}

.jci-mag-home__section:nth-of-type(4),
.jci-mag-home__section:nth-of-type(6) {
  background: #ffffff !important;
}

.jci-mag-home__section:nth-of-type(4) .jci-mag-home-topic,
.jci-mag-home__section:nth-of-type(6) .jci-mag-home-guide {
  background: #f7f9fc !important;
}

.jci-mag-home__section:nth-of-type(5) .jci-mag-home-lane {
  background: #ffffff !important;
}

.jci-mag-home-lane:nth-child(1) {
  padding-top: clamp(40px, 4vw, 62px) !important;
}

.jci-mag-home-lane:nth-child(2) {
  background: #f7f9fc !important;
}

.jci-mag-home-lane:nth-child(3) {
  background: #ffffff !important;
  padding-top: clamp(58px, 5vw, 88px) !important;
}

.jci-mag-home-guide:nth-child(2),
.jci-mag-home-program-card:nth-child(2) {
  background: #ffffff !important;
}

.jci-mag-home-program-card:nth-child(3),
.jci-mag-home-program-card:nth-child(3):hover,
.jci-mag-home-program-card:nth-child(3):focus-within {
  background: #041c40 !important;
  color: #ffffff !important;
}

.jci-mag-home-program-card:nth-child(3) h3,
.jci-mag-home-program-card:nth-child(3) p,
.jci-mag-home-program-card:nth-child(3) .jci-mag-home__kicker,
.jci-mag-home-program-card:nth-child(3) .jci-mag-home-link,
.jci-mag-home-program-card:nth-child(3):hover h3,
.jci-mag-home-program-card:nth-child(3):hover p,
.jci-mag-home-program-card:nth-child(3):hover .jci-mag-home__kicker,
.jci-mag-home-program-card:nth-child(3):hover .jci-mag-home-link,
.jci-mag-home-program-card:nth-child(3):focus-within h3,
.jci-mag-home-program-card:nth-child(3):focus-within p,
.jci-mag-home-program-card:nth-child(3):focus-within .jci-mag-home__kicker,
.jci-mag-home-program-card:nth-child(3):focus-within .jci-mag-home-link {
  color: #ffffff !important;
}

.jci-mag-home-program-card > p:not(.jci-mag-home__kicker) {
  display: block !important;
  -webkit-line-clamp: unset !important;
  overflow: visible !important;
}

.jci-mag-home__closing {
  background: #ffffff !important;
}

.jci-mag-home-quote,
.jci-mag-home__closing-links {
  padding-top: 0 !important;
}

@media (max-width: 1100px) {
  .jci-mag-home__masthead {
    min-height: 0;
  }

  .jci-mag-home__intro-panel {
    max-width: none;
    margin-left: 0;
  }
}

@media (max-width: 760px) {
  .jci-mag-home__intro {
    background: #ffffff !important;
  }

  .jci-mag-home__masthead {
    padding-left: 0 !important;
  }
}


/* 2026-06-29 The Magazine home no-border enforcement. */
.jci-mag-home *,
.jci-mag-home *::before,
.jci-mag-home *::after {
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  letter-spacing: normal !important;
  transition: none !important;
}

.jci-mag-home-button,
.jci-mag-home-button:hover,
.jci-mag-home-button:focus-visible {
  border: 0 !important;
  background: var(--jci-mag-blue, #1a4fd7) !important;
  color: #ffffff !important;
}

.jci-mag-home-program-card:nth-child(3),
.jci-mag-home-program-card:nth-child(3):hover,
.jci-mag-home-program-card:nth-child(3):focus-within {
  background: #041c40 !important;
}

.jci-mag-home-program-card:nth-child(3) *,
.jci-mag-home-program-card:nth-child(3):hover *,
.jci-mag-home-program-card:nth-child(3):focus-within * {
  color: #ffffff !important;
}


/* 2026-06-29 The Magazine home coherence correction. */
.jci-mag-home {
  --jci-mag-home-navy: #07183a;
  --jci-mag-home-green: #6bb486;
  --jci-mag-home-cream: #f6f4ef;
  --jci-mag-home-quiet: #f7f9fc;
  --jci-mag-home-text: #4f5f76;
  font-family: "DM Sans", "Montserrat", "Helvetica Neue", Arial, sans-serif !important;
}

.jci-mag-home,
.jci-mag-home * {
  letter-spacing: normal !important;
}

.jci-mag-home__intro {
  padding-top: clamp(82px, 8vw, 136px) !important;
  padding-bottom: clamp(86px, 8vw, 132px) !important;
  background: #ffffff !important;
}

.jci-mag-home__intro-grid {
  grid-template-columns: minmax(0, 0.96fr) minmax(420px, 0.84fr) !important;
  gap: clamp(40px, 6vw, 92px) !important;
  align-items: end !important;
}

.jci-mag-home__masthead {
  min-height: 0 !important;
  align-content: start !important;
  padding: 0 !important;
}

.jci-mag-home__masthead h1 {
  max-width: 10.2ch !important;
  margin-bottom: clamp(24px, 3vw, 40px) !important;
  color: #0f1728 !important;
  font-size: clamp(60px, 6vw, 104px) !important;
  font-weight: 620 !important;
  line-height: 0.98 !important;
  overflow-wrap: normal !important;
  word-break: normal !important;
}

.jci-mag-home__lede {
  max-width: 36rem !important;
  color: var(--jci-mag-home-text) !important;
  font-size: clamp(19px, 1.45vw, 23px) !important;
  line-height: 1.52 !important;
}

.jci-mag-home__intro-panel {
  align-self: end !important;
  width: 100% !important;
  max-width: 560px !important;
  margin-left: auto !important;
  padding: 0 !important;
}

.jci-mag-home__topic-list {
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: clamp(30px, 4vw, 52px) clamp(26px, 3vw, 46px) !important;
}

.jci-mag-home__topic-pill {
  min-height: 0 !important;
  padding: 0 !important;
  background: transparent !important;
}

.jci-mag-home__topic-pill strong {
  max-width: 11ch !important;
  color: var(--jci-mag-home-navy) !important;
  font-size: clamp(17px, 1.2vw, 20px) !important;
  font-weight: 700 !important;
  line-height: 1.08 !important;
}

.jci-mag-home__topic-pill span {
  max-width: 25ch !important;
  color: var(--jci-mag-home-text) !important;
  font-size: 13.5px !important;
  line-height: 1.48 !important;
}

.jci-mag-home__feature {
  padding-top: clamp(72px, 7vw, 112px) !important;
  padding-bottom: clamp(86px, 8vw, 128px) !important;
  background: #ffffff !important;
}

.jci-mag-home-featured {
  grid-template-columns: minmax(330px, 440px) minmax(0, 1fr) !important;
  gap: clamp(58px, 8vw, 112px) !important;
  align-items: start !important;
  padding: 0 !important;
}

.jci-mag-home-featured__media {
  max-width: 600px !important;
  aspect-ratio: 16 / 11 !important;
  background: #eef3fa !important;
}

.jci-mag-home-featured__content h2 {
  max-width: 17ch !important;
  color: #0f1728 !important;
  font-size: clamp(38px, 3.65vw, 58px) !important;
  font-weight: 650 !important;
  line-height: 1.02 !important;
}

.jci-mag-home__section {
  padding-top: clamp(88px, 8vw, 126px) !important;
  padding-bottom: clamp(88px, 8vw, 126px) !important;
}

.jci-mag-home__section:nth-of-type(3),
.jci-mag-home__section:nth-of-type(5),
.jci-mag-home__section:nth-of-type(7),
.jci-mag-home__section:nth-of-type(8) {
  background: var(--jci-mag-home-cream) !important;
}

.jci-mag-home__section:nth-of-type(4),
.jci-mag-home__section:nth-of-type(6) {
  background: #ffffff !important;
}

.jci-mag-home__section-grid,
.jci-mag-home-closing-grid {
  grid-template-columns: clamp(260px, 24vw, 330px) minmax(0, 1fr) !important;
  gap: clamp(56px, 7vw, 96px) !important;
}

.jci-mag-home__section-heading h2,
.jci-mag-home__closing-links h2 {
  max-width: 12.5ch !important;
  color: #0f1728 !important;
  font-size: clamp(34px, 3.05vw, 54px) !important;
  font-weight: 640 !important;
  line-height: 1.02 !important;
}

.jci-mag-home__section-intro,
.jci-mag-home-lane__header p:not(.jci-mag-home__kicker),
.jci-mag-home-guide p:not(.jci-mag-home__kicker),
.jci-mag-home-program-card p:not(.jci-mag-home__kicker) {
  color: var(--jci-mag-home-text) !important;
  font-size: clamp(15px, 1.06vw, 17px) !important;
  line-height: 1.58 !important;
}

.jci-mag-home-route-grid--four,
.jci-mag-home-topic-grid,
.jci-mag-home-lanes,
.jci-mag-home-guide-grid,
.jci-mag-home-program-grid {
  gap: clamp(28px, 3vw, 44px) !important;
}

.jci-mag-home-route,
.jci-mag-home-topic,
.jci-mag-home-guide,
.jci-mag-home-program-card,
.jci-mag-home-lane {
  padding: 0 !important;
  background: transparent !important;
}

.jci-mag-home__section:nth-of-type(4) .jci-mag-home-topic,
.jci-mag-home__section:nth-of-type(6) .jci-mag-home-guide,
.jci-mag-home__section:nth-of-type(8) .jci-mag-home-program-card:nth-child(1),
.jci-mag-home__section:nth-of-type(8) .jci-mag-home-program-card:nth-child(2) {
  padding: clamp(24px, 2.6vw, 34px) !important;
  background: var(--jci-mag-home-quiet) !important;
}

.jci-mag-home-route__label,
.jci-mag-home-topic__label,
.jci-mag-home-lane__header h3,
.jci-mag-home-guide h3,
.jci-mag-home-program-card h3 {
  color: #0f1728 !important;
  font-size: clamp(25px, 2.05vw, 36px) !important;
  font-weight: 650 !important;
  line-height: 1.04 !important;
  overflow-wrap: normal !important;
  word-break: normal !important;
}

.jci-mag-home-route__description,
.jci-mag-home-topic__description,
.jci-mag-home-guide > p:not(.jci-mag-home__kicker) {
  display: block !important;
  -webkit-line-clamp: unset !important;
  overflow: visible !important;
}

.jci-mag-home-topic__latest,
.jci-mag-home-card__excerpt {
  -webkit-line-clamp: 3 !important;
}

.jci-mag-home-lanes {
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr) minmax(0, 1.05fr) !important;
  align-items: start !important;
}

.jci-mag-home-lane {
  padding: clamp(34px, 3.4vw, 48px) !important;
  background: #ffffff !important;
}

.jci-mag-home-lane:nth-child(2) {
  padding-top: clamp(58px, 5vw, 82px) !important;
}

.jci-mag-home-lane:nth-child(3) {
  padding-top: clamp(42px, 4vw, 62px) !important;
}

.jci-mag-home-lane__header h3 {
  max-width: 12.5ch !important;
}

.jci-mag-home-lane .jci-mag-home-card__title {
  font-size: clamp(19px, 1.35vw, 23px) !important;
  line-height: 1.1 !important;
}

.jci-mag-home-lane .jci-mag-home-card__body,
.jci-mag-home-lane .jci-mag-home-card {
  padding: 0 !important;
  background: transparent !important;
}

.jci-mag-home-lane .jci-mag-home-card + .jci-mag-home-card {
  margin-top: 28px !important;
}

.jci-mag-home-guide-grid {
  align-items: stretch !important;
}

.jci-mag-home-guide,
.jci-mag-home-program-card {
  display: grid !important;
  align-content: start !important;
  gap: clamp(14px, 1.6vw, 22px) !important;
}

.jci-mag-home-program-card:nth-child(3),
.jci-mag-home-program-card:nth-child(3):hover,
.jci-mag-home-program-card:nth-child(3):focus-within {
  padding: clamp(28px, 3vw, 30px) !important;
  background: var(--jci-mag-home-navy) !important;
}

.jci-mag-home-program-card:nth-child(3) h3,
.jci-mag-home-program-card:nth-child(3) p,
.jci-mag-home-program-card:nth-child(3) .jci-mag-home__kicker,
.jci-mag-home-program-card:nth-child(3) .jci-mag-home-link {
  color: #ffffff !important;
}

.jci-mag-home__closing {
  padding-top: clamp(88px, 8vw, 126px) !important;
  padding-bottom: clamp(88px, 8vw, 126px) !important;
  background: #ffffff !important;
}

.jci-mag-home-quote p {
  max-width: 20ch !important;
  color: #0f1728 !important;
  font-size: clamp(28px, 2.4vw, 40px) !important;
  font-weight: 640 !important;
  line-height: 1.06 !important;
}

.jci-mag-home a:hover,
.jci-mag-home a:focus-visible {
  transform: none !important;
  box-shadow: none !important;
}

@media (max-width: 1100px) {
  .jci-mag-home__intro-grid,
  .jci-mag-home-featured,
  .jci-mag-home__section-grid,
  .jci-mag-home-closing-grid {
    grid-template-columns: minmax(0, 1fr) !important;
  }

  .jci-mag-home__intro-panel {
    max-width: none !important;
    margin-left: 0 !important;
  }

  .jci-mag-home-lanes,
  .jci-mag-home-program-grid,
  .jci-mag-home-guide-grid {
    grid-template-columns: minmax(0, 1fr) !important;
  }
}

@media (max-width: 760px) {
  .jci-mag-home__intro,
  .jci-mag-home__feature,
  .jci-mag-home__section,
  .jci-mag-home__closing {
    padding-top: 58px !important;
    padding-bottom: 58px !important;
  }

  .jci-mag-home__masthead h1 {
    font-size: clamp(42px, 12vw, 58px) !important;
  }

  .jci-mag-home__topic-list {
    grid-template-columns: minmax(0, 1fr) !important;
  }
}


/* 2026-06-29 The Magazine editorial system pass. */
.jci-mag-home__authority {
  padding: clamp(46px, 5vw, 72px) 0;
  background: #07183a;
  color: #fff;
}

.jci-mag-home-authority-grid {
  display: grid;
  grid-template-columns: minmax(240px, 0.9fr) minmax(320px, 1.25fr) minmax(220px, 0.7fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
}

.jci-mag-home__authority .jci-mag-home__kicker,
.jci-mag-home__authority h2,
.jci-mag-home__authority p,
.jci-mag-home-authority__proof span {
  color: #fff !important;
}

.jci-mag-home__authority h2 {
  max-width: 13ch;
  margin: 0;
  font-size: clamp(28px, 2.6vw, 46px);
  font-weight: 620;
  line-height: 1.04;
}

.jci-mag-home__authority p:not(.jci-mag-home__kicker) {
  max-width: 56ch;
  margin: 0;
  font-size: clamp(17px, 1.25vw, 20px);
  line-height: 1.55;
}

.jci-mag-home-authority__proof {
  display: grid;
  gap: 12px;
}

.jci-mag-home-authority__proof span {
  display: block;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: normal !important;
}

.jci-mag-home #reading-guides {
  display: none !important;
}

.jci-mag-home__section--editorial .jci-mag-home-lanes {
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
}

.jci-mag-home__section--editorial .jci-mag-home-lane {
  min-height: auto !important;
}

.jci-mag-home__section--programs .jci-mag-home-program-card {
  min-height: 0 !important;
}

.jci-magazine-page *,
.jci-article *,
.jci-mag-home * {
  letter-spacing: normal !important;
}

.jci-magazine-card,
.jci-magazine-card:hover,
.jci-magazine-category-program-card,
.jci-magazine-category-program-card:hover,
.jci-magazine-category-related__links a,
.jci-article-next-step,
.jci-article-next-step a,
.jci-article__rail-next {
  box-shadow: none !important;
  transform: none !important;
}

.jci-magazine-category .jci-magazine-category-programs {
  margin-top: clamp(58px, 6vw, 84px) !important;
  margin-bottom: clamp(58px, 6vw, 84px) !important;
}

.jci-magazine-category-programs__grid {
  align-items: stretch;
}

.jci-magazine-category-program-card {
  padding: clamp(26px, 3vw, 40px) !important;
  background: #f7f9fc !important;
}

.jci-magazine-category-program-card:last-child {
  background: #07183a !important;
  color: #fff !important;
}

.jci-magazine-category-program-card:last-child h3,
.jci-magazine-category-program-card:last-child p,
.jci-magazine-category-program-card:last-child a {
  color: #fff !important;
}

.jci-magazine-category-section + .jci-magazine-category-section {
  margin-top: clamp(58px, 7vw, 96px) !important;
}

.jci-magazine-category-rail .jci-magazine-card,
.jci-magazine-category-lane .jci-magazine-card {
  padding-top: 0 !important;
  padding-bottom: clamp(24px, 3vw, 38px) !important;
}

.jci-article-next-step {
  margin: clamp(34px, 5vw, 64px) 0;
  padding: clamp(28px, 3.5vw, 44px);
  background: #f6f4ef;
}

.jci-article-context__kicker,
.jci-article-next-step__kicker {
  margin: 0 0 12px;
  color: #61708a;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: normal !important;
}

.jci-article-next-step h2 {
  max-width: 18ch;
  margin: 0 0 18px;
  color: #07183a;
  font-size: clamp(26px, 2.2vw, 36px);
  line-height: 1.06;
}

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

.jci-article-next-step__grid a {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  gap: 14px;
  min-height: 100%;
  padding: 18px 20px 20px;
  border: 1px solid #e3e7ef;
  background: #fff;
  color: #07183a;
  text-decoration: none;
}

.jci-article-next-step__grid span {
  display: block;
  max-width: 14ch;
  font-size: clamp(19px, 1.45vw, 23px);
  font-weight: 700;
  line-height: 1.08;
  overflow-wrap: anywhere;
  text-wrap: pretty;
}

.jci-article-next-step__grid small,
.jci-article__rail-next p {
  display: block;
  margin-top: auto;
  color: #4f5f76;
  font-size: 14px;
  line-height: 1.5;
  overflow-wrap: anywhere;
}

.jci-article__rail-next {
  background: #07183a !important;
  color: #fff !important;
  padding: 24px !important;
}

.jci-article__rail-next .rail-label,
.jci-article__rail-next p,
.jci-article__rail-next a {
  color: #fff !important;
}

@media (max-width: 1180px) {
  .jci-mag-home-authority-grid,
  .jci-mag-home__section--editorial .jci-mag-home-lanes,
  .jci-article-next-step__grid {
    grid-template-columns: minmax(0, 1fr) !important;
  }

  .jci-article__post-nav-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .jci-article__post-nav-item,
  .jci-article__post-nav.is-single .jci-article__post-nav-item {
    min-height: 0;
    max-width: 100%;
  }
}


/* 2026-06-29 single and sport-management corrections. */
.jci-article,
.jci-article :where(*) {
  letter-spacing: normal !important;
}

.jci-article__breadcrumb {
  max-width: min(1280px, calc(100vw - 80px));
  margin: clamp(34px, 5vw, 72px) auto 0;
}

.jci-magazine-category + .jci-global-prefooter,
.jci-article + .jci-global-prefooter,
body.category .jci-global-prefooter,
body.single-post .jci-global-prefooter {
  display: none !important;
}

.jci-magazine-category .jci-magazine-page__inner {
  padding-bottom: clamp(72px, 8vw, 120px) !important;
}

.jci-magazine-category .jci-magazine-page__header {
  margin-bottom: clamp(54px, 6vw, 82px) !important;
}

.jci-magazine-category-section + .jci-magazine-category-section {
  margin-top: clamp(46px, 5.5vw, 76px) !important;
}

.jci-magazine-category-section {
  scroll-margin-top: 160px;
}

.jci-magazine-category-section__heading h2 {
  max-width: 12.5ch;
  font-size: clamp(25px, 2.1vw, 36px) !important;
  line-height: 1.06 !important;
}

.jci-magazine-category-featured .jci-magazine-card--featured {
  align-items: center !important;
}

.jci-magazine-card__media {
  background: #eef3f7 !important;
}

.jci-magazine-card__media .jci-mag-home-card__placeholder {
  display: grid !important;
  place-items: center !important;
  width: 100% !important;
  height: 100% !important;
  min-height: 120px !important;
  background: #07183a !important;
  color: #fff !important;
  font-size: 12px !important;
  font-weight: 800 !important;
  text-transform: uppercase !important;
  letter-spacing: normal !important;
}

.jci-magazine-card__media.is-image-missing {
  background: #07183a !important;
}

.jci-magazine-card--rail .jci-magazine-card__media,
.jci-magazine-card--lane .jci-magazine-card__media {
  width: clamp(118px, 13vw, 170px) !important;
  min-height: 96px !important;
}

.jci-magazine-card--rail,
.jci-magazine-card--lane {
  gap: clamp(24px, 3vw, 38px) !important;
}

.jci-magazine-card--rail .jci-magazine-card__title,
.jci-magazine-card--lane .jci-magazine-card__title {
  max-width: 42rem !important;
  font-size: clamp(18px, 1.45vw, 24px) !important;
  line-height: 1.12 !important;
}

.jci-magazine-category-program-card,
.jci-magazine-category-related__links a,
.jci-magazine-category__summary-card {
  border: 0 !important;
  box-shadow: none !important;
}

.jci-magazine-category-related__links {
  background: #f7f9fc !important;
}

.jci-magazine-category-related__links a {
  background: transparent !important;
}

.jci-magazine-category-programs__grid {
  background: #f7f9fc !important;
}

.jci-magazine-category-program-card:last-child {
  background: #07183a !important;
}

@media (max-width: 860px) {
  .jci-article__breadcrumb {
    max-width: min(100% - 32px, 1280px);
    margin-top: 28px;
  }
  .jci-magazine-card--rail .jci-magazine-card__media,
  .jci-magazine-card--lane .jci-magazine-card__media {
    width: 100% !important;
  }
}


/* 2026-06-29 single breadcrumb casing correction. */
.jci-article__breadcrumb,
.jci-article__breadcrumb * {
  text-transform: none !important;
  letter-spacing: normal !important;
}

.jci-article__breadcrumb li[aria-current="page"] {
  max-width: 56ch;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}


/* 2026-06-29 requested magazine/category refinements. */
/* Single breadcrumb: subtle, same separator rhythm as category, no post title. */
.jci-article__breadcrumb {
  max-width: min(1280px, calc(100vw - 80px)) !important;
  margin: 0 auto clamp(40px, 5vw, 72px) !important;
  color: #566172 !important;
  font-size: clamp(13px, 1vw, 16px) !important;
  font-weight: 500 !important;
  line-height: 1.45 !important;
}

.jci-article__breadcrumb ol {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 8px !important;
  align-items: center !important;
  margin: 0 !important;
  padding: 0 !important;
  list-style: none !important;
}

.jci-article__breadcrumb li,
.jci-article__breadcrumb a {
  color: #0D0C0C !important;
  font-size: clamp(14px, 1vw, 16px) !important;
  font-weight: 400 !important;
  line-height: 1.35 !important;
  letter-spacing: 0 !important;
}

.jci-article__breadcrumb a:hover,
.jci-article__breadcrumb a:focus-visible {
  color: #1a4fd7 !important;
}

.jci-article__breadcrumb li::after {
  content: '/' !important;
  margin-left: 8px !important;
  color: #9aa6b6 !important;
}

.jci-article__breadcrumb li:last-child::after {
  content: '' !important;
  margin: 0 !important;
}

/* The Magazine home: link the authority topics and cut visual noise below the authority block. */
.jci-mag-home-authority__proof a {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 14px !important;
  color: #fff !important;
  font-size: 13px !important;
  font-weight: 800 !important;
  line-height: 1.25 !important;
  text-transform: none !important;
  text-decoration: none !important;
  letter-spacing: normal !important;
}

.jci-mag-home-authority__proof a:hover,
.jci-mag-home-authority__proof a:focus-visible {
  color: #fff !important;
  transform: none !important;
  box-shadow: none !important;
}

.jci-mag-home__section--routes,
.jci-mag-home__section--editorial {
  display: none !important;
}

.jci-mag-home__feature {
  padding-bottom: clamp(70px, 7vw, 108px) !important;
}

.jci-mag-home__section--disciplines {
  padding-top: clamp(76px, 7vw, 112px) !important;
}

/* Category: remove the line that visually collides with Essential reads items. */
.jci-magazine-category-rail .jci-magazine-card,
.jci-magazine-category-rail .jci-magazine-card--rail,
.jci-magazine-category-rail .jci-magazine-card__body,
.jci-magazine-category-rail .jci-magazine-card__media,
.jci-magazine-category-lane .jci-magazine-card,
.jci-magazine-category-lane .jci-magazine-card__body,
.jci-magazine-category-lane .jci-magazine-card__media {
  border-top: 0 !important;
  border: 0 !important;
}

.jci-magazine-category-rail .jci-magazine-card + .jci-magazine-card,
.jci-magazine-category-lane .jci-magazine-card + .jci-magazine-card {
  border-top: 1px solid rgba(7, 24, 58, 0.10) !important;
  padding-top: clamp(24px, 3vw, 34px) !important;
}

/* Category: Keep exploring as a quiet navigation row, not a boxed module. */
.jci-magazine-category-related__links {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: clamp(24px, 4vw, 52px) !important;
  background: transparent !important;
}

.jci-magazine-category-related__links a {
  display: grid !important;
  gap: 20px !important;
  padding: 0 !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
}

.jci-magazine-category-related__links span {
  color: #07183a !important;
  font-size: clamp(20px, 1.55vw, 28px) !important;
  font-weight: 560 !important;
  line-height: 1.08 !important;
}

.jci-magazine-category-related__links small {
  color: #1556ff !important;
  font-size: 12px !important;
  font-weight: 800 !important;
  text-transform: uppercase !important;
  letter-spacing: normal !important;
}

/* Archive pagination should feel attached to Archive. */
.jci-magazine-pagination {
  margin-top: clamp(34px, 4vw, 58px) !important;
  padding-top: 0 !important;
  border: 0 !important;
}

@media (max-width: 860px) {
  .jci-article__breadcrumb {
    max-width: min(100% - 32px, 1280px) !important;
  }
  .jci-magazine-category-related__links {
    grid-template-columns: minmax(0, 1fr) !important;
  }
}


/* 2026-06-29 remove essential reads divider lines. */
.jci-magazine-category-rail .jci-magazine-card + .jci-magazine-card,
.jci-magazine-category-lane .jci-magazine-card + .jci-magazine-card {
  border-top: 0 !important;
  padding-top: 0 !important;
}

.jci-magazine-category-rail,
.jci-magazine-category-lane {
  row-gap: clamp(30px, 4vw, 48px) !important;
}


/* 2026-06-29 magazine hierarchy, related areas, newsletter cleanup. */
/* Legacy .jci-global-prefooter overrides removed. Magazine uses the shared
   .jci-mag-newsletter-band component only. */
body.category .jci-global-prefooter,
body.single-post .jci-global-prefooter,
body.jci-magazine-latest-news-page .jci-global-prefooter {
  display: none !important;
}

/* Category related areas: card structure instead of broken columns. */
.jci-magazine-category-related {
  padding-top: clamp(56px, 7vw, 92px) !important;
  border-top: 1px solid rgba(7, 24, 58, 0.10) !important;
}

.jci-magazine-category-related__links {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 0 !important;
  background: #fff !important;
  border: 1px solid rgba(7, 24, 58, 0.12) !important;
}

.jci-magazine-category-related__links a {
  position: relative !important;
  min-height: 168px !important;
  padding: 28px 28px 24px !important;
  background: #fff !important;
  border: 0 !important;
  border-right: 1px solid rgba(7, 24, 58, 0.10) !important;
  text-decoration: none !important;
}

.jci-magazine-category-related__links a:last-child {
  border-right: 0 !important;
}

.jci-magazine-category-related__links a::after {
  content: '→' !important;
  position: absolute !important;
  right: 24px !important;
  bottom: 22px !important;
  color: #1556ff !important;
  font-weight: 800 !important;
}

.jci-magazine-category-related__links span {
  max-width: 15ch !important;
  margin: 0 !important;
  color: #07183a !important;
  font-size: clamp(20px, 1.55vw, 27px) !important;
  line-height: 1.06 !important;
  font-weight: 700 !important;
}

.jci-magazine-category-related__links small {
  align-self: end !important;
  margin-top: auto !important;
  color: #1556ff !important;
  font-size: 12px !important;
  font-weight: 800 !important;
  letter-spacing: normal !important;
  text-transform: uppercase !important;
}

/* Home hierarchy: less blank canvas, clearer editorial blocks. */
.jci-mag-home__hero {
  min-height: auto !important;
  padding: clamp(82px, 8vw, 126px) 0 clamp(76px, 8vw, 118px) !important;
  border-bottom: 1px solid rgba(7, 24, 58, 0.10) !important;
}

.jci-mag-home__hero-grid {
  align-items: end !important;
}

.jci-mag-home__masthead h1 {
  max-width: 12ch !important;
  line-height: 0.9 !important;
  letter-spacing: normal !important;
}

.jci-mag-home__lede {
  max-width: 34rem !important;
  margin-top: 0 !important;
  font-size: clamp(22px, 1.55vw, 28px) !important;
  line-height: 1.35 !important;
}

.jci-mag-home-topics {
  padding: clamp(28px, 3vw, 40px) !important;
  background: #f7f6f2 !important;
  border: 1px solid rgba(7, 24, 58, 0.10) !important;
}

.jci-mag-home-topic {
  padding: 18px 0 !important;
  border-top: 1px solid rgba(7, 24, 58, 0.10) !important;
}

.jci-mag-home-topic:first-of-type {
  border-top: 0 !important;
}

.jci-mag-home-topic strong {
  font-size: clamp(20px, 1.5vw, 26px) !important;
  line-height: 1.05 !important;
}

.jci-mag-home-topic p {
  max-width: 26ch !important;
  margin-top: 8px !important;
  font-size: 15px !important;
  line-height: 1.42 !important;
}

.jci-mag-home-authority {
  padding: clamp(76px, 8vw, 118px) 0 !important;
}

.jci-mag-home-authority__grid {
  grid-template-columns: minmax(260px, 0.9fr) minmax(420px, 1.1fr) minmax(240px, 0.62fr) !important;
  gap: clamp(44px, 7vw, 96px) !important;
  align-items: center !important;
}

.jci-mag-home-authority h2 {
  max-width: 11ch !important;
  font-size: clamp(40px, 4vw, 64px) !important;
  line-height: 0.98 !important;
}

.jci-mag-home-authority__text {
  max-width: 44rem !important;
  font-size: clamp(21px, 1.5vw, 28px) !important;
  line-height: 1.45 !important;
}

.jci-mag-home-authority__proof {
  gap: 0 !important;
  border-top: 1px solid rgba(255,255,255,0.25) !important;
}

.jci-mag-home-authority__proof a {
  padding: 18px 0 !important;
  border-bottom: 1px solid rgba(255,255,255,0.25) !important;
}

.jci-mag-home__feature {
  padding: clamp(88px, 9vw, 132px) 0 !important;
  background: #fff !important;
}

.jci-mag-home-featured {
  display: grid !important;
  grid-template-columns: minmax(360px, 0.92fr) minmax(440px, 1.08fr) !important;
  gap: clamp(52px, 8vw, 118px) !important;
  align-items: start !important;
}

.jci-mag-home-featured__media {
  aspect-ratio: 4 / 3 !important;
}

.jci-mag-home-featured__content {
  padding-top: 20px !important;
  border-top: 1px solid rgba(7, 24, 58, 0.16) !important;
}

.jci-mag-home-featured__content h2 {
  max-width: 13ch !important;
  font-size: clamp(46px, 5vw, 82px) !important;
  line-height: 0.96 !important;
  letter-spacing: normal !important;
}

.jci-mag-home__section--disciplines {
  background: #f7f6f2 !important;
}

.jci-mag-home__section--disciplines .jci-mag-home__section-grid,
.jci-mag-home__section--programs .jci-mag-home__section-grid {
  grid-template-columns: minmax(240px, 0.72fr) minmax(0, 1.28fr) !important;
  gap: clamp(56px, 8vw, 116px) !important;
}

.jci-mag-home__section-heading {
  position: sticky !important;
  top: 110px !important;
  align-self: start !important;
}

.jci-mag-home__section-heading h2 {
  max-width: 9ch !important;
  font-size: clamp(42px, 4.2vw, 70px) !important;
  line-height: 0.96 !important;
}

.jci-mag-home-discipline {
  padding: 28px 0 34px !important;
  border-top: 1px solid rgba(7, 24, 58, 0.12) !important;
}

.jci-mag-home-discipline h3 {
  font-size: clamp(28px, 2.2vw, 40px) !important;
  line-height: 1.02 !important;
}

.jci-mag-home-programs {
  align-items: stretch !important;
}

.jci-mag-home-program {
  min-height: 360px !important;
  padding: 34px !important;
  background: #fff !important;
  border: 1px solid rgba(7, 24, 58, 0.10) !important;
}

.jci-mag-home-program.is-dark {
  background: #07183a !important;
}

@media (max-width: 900px) {
  body.category .jci-global-prefooter,
  body.single-post .jci-global-prefooter,
  .jci-mag-home-authority__grid,
  .jci-mag-home-featured,
  .jci-mag-home__section--disciplines .jci-mag-home__section-grid,
  .jci-mag-home__section--programs .jci-mag-home__section-grid {
    grid-template-columns: minmax(0, 1fr) !important;
  }
  .jci-magazine-category-related__links {
    grid-template-columns: minmax(0, 1fr) !important;
  }
  .jci-magazine-category-related__links a {
    border-right: 0 !important;
    border-bottom: 1px solid rgba(7, 24, 58, 0.10) !important;
  }
  .jci-mag-home__section-heading {
    position: static !important;
  }
}


/* 2026-06-29 magazine hierarchy cleanup round 2. */
/* Home cleanup: prevent bad line breaks and reduce oversized editorial blocks. */
.jci-mag-home__masthead h1 {
  font-size: clamp(70px, 6vw, 116px) !important;
  max-width: 10.5ch !important;
}

.jci-mag-home-featured__content h2 {
  max-width: 25ch !important;
  font-size: clamp(38px, 3vw, 66px) !important;
}

.jci-mag-home__section-heading h2 {
  max-width: 12.5ch !important;
  overflow-wrap: normal !important;
  word-break: normal !important;
  hyphens: none !important;
  font-size: clamp(38px, 3vw, 58px) !important;
}

.jci-mag-home__section-heading p:not(.jci-mag-home__kicker),
.jci-mag-home__section-intro {
  max-width: 24rem !important;
  font-size: clamp(17px, 1.15vw, 20px) !important;
  line-height: 1.55 !important;
}

.jci-mag-home__section--disciplines .jci-mag-home__section-grid,
.jci-mag-home__section--programs .jci-mag-home__section-grid {
  grid-template-columns: minmax(320px, 0.58fr) minmax(0, 1.42fr) !important;
  gap: clamp(52px, 7vw, 104px) !important;
}

.jci-mag-home-disciplines {
  column-gap: clamp(42px, 5vw, 72px) !important;
  row-gap: clamp(34px, 5vw, 58px) !important;
}

.jci-mag-home-discipline {
  min-height: 230px !important;
}

.jci-mag-home-programs {
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: clamp(24px, 3vw, 42px) !important;
}

.jci-mag-home-program {
  min-height: 330px !important;
  padding: clamp(28px, 3vw, 42px) !important;
}

.jci-mag-home-program h3 {
  max-width: 12ch !important;
  font-size: clamp(28px, 2.35vw, 40px) !important;
  line-height: 1.02 !important;
  overflow-wrap: normal !important;
  word-break: normal !important;
}

.jci-mag-home-program p {
  font-size: clamp(16px, 1.1vw, 19px) !important;
  line-height: 1.55 !important;
}

/* Newsletter prefooter: make the synthetic heading order read correctly. */
body.category .jci-global-prefooter p,
body.single-post .jci-global-prefooter p {
  font-size: 0 !important;
  line-height: 1 !important;
}

body.category .jci-global-prefooter p::before,
body.single-post .jci-global-prefooter p::before {
  content: 'NewsletterAAKeep in touch with The MagazineAAReceive new articles and selected stories from the archive.' !important;
  white-space: pre-line !important;
  display: block !important;
  max-width: 58ch !important;
  color: #07183a !important;
  font-family: "DM Sans", "Helvetica Neue", Arial, sans-serif !important;
  font-size: clamp(22px, 1.5vw, 28px) !important;
  font-weight: 500 !important;
  line-height: 1.35 !important;
  text-transform: none !important;
}

body.category .jci-global-prefooter p::after,
body.single-post .jci-global-prefooter p::after {
  content: '' !important;
  display: none !important;
}

@media (min-width: 901px) {
  body.category .jci-global-prefooter p::before,
  body.single-post .jci-global-prefooter p::before {
    max-width: 17ch !important;
    font-size: clamp(40px, 4.4vw, 64px) !important;
    font-weight: 760 !important;
    line-height: 0.98 !important;
  }
}

/* The real shared newsletter module renders on The Magazine templates and article routes.
   Hide the older global prefooter there so only one newsletter block remains. */
body.category .jci-global-prefooter,
body.single-post .jci-global-prefooter,
body.jci-magazine-latest-news-page .jci-global-prefooter {
  display: none !important;
}

@media (max-width: 900px) {
  .jci-mag-home-programs {
    grid-template-columns: minmax(0, 1fr) !important;
  }
}


/* 2026-06-29 real prefooter markup styles. */
body.category .jci-mag-prefooter,
body.single-post .jci-mag-prefooter {
  display: grid !important;
  grid-template-columns: minmax(240px, 0.78fr) minmax(420px, 1.22fr) !important;
  gap: clamp(56px, 8vw, 140px) !important;
  align-items: center !important;
  padding: clamp(76px, 8vw, 116px) max(40px, calc((100vw - 1280px) / 2)) !important;
  background: #f7f6f2 !important;
  color: #07183a !important;
  border-top: 0 !important;
}

body.category .jci-mag-prefooter *,
body.single-post .jci-mag-prefooter * {
  letter-spacing: normal !important;
  text-transform: none !important;
}

body.category .jci-mag-prefooter__quote,
body.single-post .jci-mag-prefooter__quote {
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
}

body.category .jci-mag-prefooter__quote p,
body.single-post .jci-mag-prefooter__quote p {
  max-width: 11.5ch !important;
  margin: 0 !important;
  color: #07183a !important;
  font-family: "DM Sans", "Helvetica Neue", Arial, sans-serif !important;
  font-size: clamp(30px, 3vw, 46px) !important;
  font-weight: 760 !important;
  line-height: 1.03 !important;
}

body.category .jci-mag-prefooter__quote p::before,
body.category .jci-mag-prefooter__quote p::after,
body.single-post .jci-mag-prefooter__quote p::before,
body.single-post .jci-mag-prefooter__quote p::after,
body.category .jci-mag-prefooter__content p::before,
body.category .jci-mag-prefooter__content p::after,
body.single-post .jci-mag-prefooter__content p::before,
body.single-post .jci-mag-prefooter__content p::after {
  content: none !important;
  display: none !important;
}

body.category .jci-mag-prefooter__quote cite,
body.single-post .jci-mag-prefooter__quote cite {
  display: block !important;
  margin-top: 28px !important;
  color: #66738a !important;
  font-style: normal !important;
  font-size: 17px !important;
  font-weight: 800 !important;
}

body.category .jci-mag-prefooter__content,
body.single-post .jci-mag-prefooter__content {
  display: grid !important;
  justify-items: start !important;
}

body.category .jci-mag-prefooter__kicker,
body.single-post .jci-mag-prefooter__kicker {
  margin: 0 0 24px !important;
  color: #66738a !important;
  font-size: 13px !important;
  font-weight: 800 !important;
  line-height: 1 !important;
  text-transform: uppercase !important;
}

body.category .jci-mag-prefooter h2,
body.single-post .jci-mag-prefooter h2 {
  max-width: 12ch !important;
  margin: 0 !important;
  color: #07183a !important;
  font-family: "DM Sans", "Helvetica Neue", Arial, sans-serif !important;
  font-size: clamp(40px, 4.4vw, 64px) !important;
  font-weight: 760 !important;
  line-height: 0.98 !important;
}

body.category .jci-mag-prefooter__content p:not(.jci-mag-prefooter__kicker),
body.single-post .jci-mag-prefooter__content p:not(.jci-mag-prefooter__kicker) {
  max-width: 58ch !important;
  margin: 28px 0 0 !important;
  color: #4a5a73 !important;
  font-size: clamp(18px, 1.35vw, 22px) !important;
  line-height: 1.55 !important;
}

body.category .jci-mag-prefooter a,
body.single-post .jci-mag-prefooter a {
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  margin-top: 34px !important;
  padding: 18px 28px !important;
  background: #1556ff !important;
  color: #fff !important;
  border: 0 !important;
  border-radius: 0 !important;
  font-size: 14px !important;
  font-weight: 800 !important;
  line-height: 1 !important;
  text-decoration: none !important;
}

body.category .jci-mag-prefooter a::after,
body.single-post .jci-mag-prefooter a::after {
  content: none !important;
}

@media (max-width: 900px) {
  body.category .jci-mag-prefooter,
  body.single-post .jci-mag-prefooter {
    grid-template-columns: minmax(0, 1fr) !important;
    padding-left: 24px !important;
    padding-right: 24px !important;
  }
}


/* 2026-06-29 prefooter alignment fix. */
body.category .jci-mag-prefooter,
body.single-post .jci-mag-prefooter,
body.category .jci-mag-prefooter *,
body.single-post .jci-mag-prefooter * {
  text-align: left !important;
}

body.category .jci-mag-prefooter__quote p,
body.single-post .jci-mag-prefooter__quote p {
  margin-left: 0 !important;
  margin-right: 0 !important;
}

body.category .jci-mag-prefooter__content,
body.single-post .jci-mag-prefooter__content {
  justify-items: start !important;
  align-items: start !important;
}


/* 2026-06-30 category UX/content refinements requested in production. */
.jci-magazine-category [id] {
  scroll-margin-top: calc(var(--jci-header-offset, 112px) + 22px) !important;
}

.jci-magazine-category-featured .jci-magazine-card--featured {
  grid-template-columns: minmax(240px, 0.78fr) minmax(360px, 1fr) !important;
  align-items: start !important;
}

.jci-magazine-category-featured .jci-magazine-card__media {
  align-self: start !important;
  width: min(100%, 520px) !important;
}

.jci-magazine-category-featured .jci-magazine-card__body {
  align-self: start !important;
}

.jci-magazine-category .jci-magazine-card__meta {
  gap: 0 !important;
}

.jci-magazine-category-related__links small {
  align-self: end !important;
  max-width: 34ch !important;
  color: #53627a !important;
  font-size: 14px !important;
  font-weight: 500 !important;
  letter-spacing: normal !important;
  line-height: 1.55 !important;
  text-transform: none !important;
}

.jci-magazine-category .jci-magazine-category-section:last-child {
  padding-bottom: clamp(24px, 3vw, 42px) !important;
}

.jci-magazine-category .jci-magazine-pagination {
  margin-top: clamp(24px, 3vw, 36px) !important;
  padding-top: 14px !important;
}

body.category .jci-mag-prefooter {
  grid-template-columns: minmax(220px, 0.72fr) minmax(360px, 1fr) !important;
  gap: clamp(40px, 6vw, 92px) !important;
  padding-top: clamp(48px, 5.4vw, 74px) !important;
  padding-bottom: clamp(50px, 5.6vw, 78px) !important;
}

body.category .jci-mag-prefooter__quote p {
  max-width: 16ch !important;
  font-size: clamp(24px, 2.35vw, 36px) !important;
  line-height: 1.08 !important;
  font-weight: 700 !important;
}

body.category .jci-mag-prefooter__quote cite {
  margin-top: 18px !important;
  font-size: 14px !important;
}

body.category .jci-mag-prefooter__kicker {
  margin-bottom: 16px !important;
}

body.category .jci-mag-prefooter h2 {
  max-width: 14ch !important;
  font-size: clamp(30px, 3vw, 46px) !important;
  line-height: 1.02 !important;
}

body.category .jci-mag-prefooter__content p:not(.jci-mag-prefooter__kicker) {
  margin-top: 18px !important;
  font-size: clamp(16px, 1.15vw, 19px) !important;
  line-height: 1.55 !important;
}

body.category .jci-mag-prefooter a {
  margin-top: 24px !important;
  padding: 15px 24px !important;
  font-size: 13px !important;
}

@media (max-width: 760px) {
  .jci-magazine-category-featured .jci-magazine-card--featured {
    grid-template-columns: minmax(0, 1fr) !important;
  }

  .jci-magazine-category [id] {
    scroll-margin-top: 88px !important;
  }

  body.category .jci-mag-prefooter {
    gap: 28px !important;
  }
}


/* 2026-06-30 category anchor offset tune after live click test. */
.jci-magazine-category [id] {
  scroll-margin-top: 148px !important;
}

@media (max-width: 760px) {
  .jci-magazine-category [id] {
    scroll-margin-top: 92px !important;
  }
}


/* 2026-06-30 category anchor offset final production tune. */
.jci-magazine-category [id] {
  scroll-margin-top: 206px !important;
}

@media (max-width: 760px) {
  .jci-magazine-category [id] {
    scroll-margin-top: 112px !important;
  }
}


/* 2026-06-30 archive section anchor uses section top, not sticky rail heading. */
.jci-magazine-category #jci-category-all {
  scroll-margin-top: 58px !important;
}

@media (max-width: 760px) {
  .jci-magazine-category #jci-category-all {
    scroll-margin-top: 92px !important;
  }
}


/* 2026-06-30 requested category featured and next-step refinements. */
.jci-magazine-category-featured .jci-magazine-card--featured {
  grid-template-columns: minmax(0, 1fr) !important;
  gap: clamp(24px, 3vw, 34px) !important;
}

.jci-magazine-category-featured .jci-magazine-card__media {
  width: 100% !important;
  max-width: none !important;
  aspect-ratio: 16 / 7.8 !important;
  align-self: start !important;
}

.jci-magazine-category-featured .jci-magazine-card__body {
  display: grid !important;
  grid-template-columns: minmax(0, 0.72fr) minmax(280px, 0.28fr) !important;
  column-gap: clamp(34px, 5vw, 72px) !important;
  row-gap: 14px !important;
  align-items: start !important;
  padding-top: 0 !important;
}

.jci-magazine-category-featured .jci-magazine-card__meta,
.jci-magazine-category-featured .jci-magazine-card__title,
.jci-magazine-category-featured .jci-magazine-card__excerpt,
.jci-magazine-category-featured .jci-magazine-card__link {
  grid-column: 1 !important;
}

.jci-magazine-category-featured .jci-magazine-card__title {
  max-width: 17ch !important;
}

.jci-magazine-category-section__description {
  max-width: 25ch;
  margin: 16px 0 0;
  color: #53627a;
  font-size: 14.5px;
  line-height: 1.58;
}

@media (max-width: 900px) {
  .jci-magazine-category-featured .jci-magazine-card__body {
    grid-template-columns: minmax(0, 1fr) !important;
  }

  .jci-magazine-category-featured .jci-magazine-card__media {
    aspect-ratio: 16 / 10 !important;
  }

  .jci-magazine-category-section__description {
    max-width: 46ch;
  }
}


/* 2026-06-30 category refinement: full-width featured text, calmer pagination and subtle section rhythm. */
.jci-magazine-category-featured .jci-magazine-card__body {
  grid-template-columns: minmax(0, 1fr) !important;
  max-width: none !important;
}

.jci-magazine-category-featured .jci-magazine-card__meta,
.jci-magazine-category-featured .jci-magazine-card__title,
.jci-magazine-category-featured .jci-magazine-card__excerpt,
.jci-magazine-category-featured .jci-magazine-card__link {
  grid-column: 1 / -1 !important;
  width: min(100%, 934px) !important;
  max-width: none !important;
}

.jci-magazine-category-featured .jci-magazine-card__title {
  max-width: 934px !important;
}

.jci-magazine-category-featured .jci-magazine-card__excerpt {
  max-width: 934px !important;
}

.jci-magazine-category .jci-magazine-pagination {
  margin-top: 18px !important;
  padding-top: 12px !important;
}

.jci-magazine-category #jci-category-all {
  padding-bottom: 100px !important;
}

body.category .jci-mag-prefooter {
  margin-top: 0 !important;
  padding-top: clamp(38px, 4.2vw, 58px) !important;
}

.jci-magazine-category .jci-magazine-category-section {
  position: relative;
}

.jci-magazine-category .jci-magazine-category-section:not(:first-of-type)::after {
  content: "";
  position: absolute;
  top: clamp(8px, 1.2vw, 16px);
  left: min(260px, 22vw);
  right: 0;
  height: 1px;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(26, 79, 215, 0.16), rgba(15, 23, 40, 0.045) 36%, transparent 100%);
}

.jci-magazine-category .jci-magazine-category-programs,
.jci-magazine-category .jci-magazine-category-related {
  background: linear-gradient(90deg, transparent 0, transparent min(260px, 22vw), rgba(247, 249, 252, 0.52) min(260px, 22vw), rgba(247, 249, 252, 0.52) 100%);
  margin-left: calc(var(--jci-magazine-category-edge, 40px) * -0.5);
  margin-right: calc(var(--jci-magazine-category-edge, 40px) * -0.5);
  padding-left: calc(var(--jci-magazine-category-edge, 40px) * 0.5);
  padding-right: calc(var(--jci-magazine-category-edge, 40px) * 0.5);
}

@media (max-width: 900px) {
  .jci-magazine-category .jci-magazine-category-section:not(:first-of-type)::after {
    left: 0;
  }

  .jci-magazine-category .jci-magazine-category-programs,
  .jci-magazine-category .jci-magazine-category-related {
    margin-left: 0;
    margin-right: 0;
    padding-left: 0;
    padding-right: 0;
    background: transparent;
  }
}


/* 2026-06-30 reduce category archive to newsletter gap. */
body.category .jci-magazine-category {
  padding-bottom: 0 !important;
}

body.category .jci-mag-prefooter {
  padding-top: clamp(28px, 3.2vw, 44px) !important;
}


/* 2026-06-30 category corrections: remove failed separators, match home title weight and make pagination anchor instant. */
body.category .jci-magazine-page__title,
body.category .jci-magazine-category__hero .jci-magazine-page__title {
  font-weight: 620 !important;
}

body.category,
body.category .jci-magazine-page,
body.category .jci-magazine-category {
  scroll-behavior: auto !important;
}

body.category .jci-magazine-category .jci-magazine-category-section:not(:first-of-type)::after {
  content: none !important;
  display: none !important;
}

body.category .jci-magazine-category-programs,
body.category .jci-magazine-category-related {
  background: transparent !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}

body.category .jci-magazine-category-programs__grid,
body.category .jci-magazine-category-related__links {
  border-top: 1px solid rgba(16, 34, 64, 0.12);
}

/* 2026-06-30 latest news landing page */
.jci-magazine-page--latest-news {
  --jci-latest-border: rgba(4, 28, 64, 0.08);
}

body.jci-magazine-latest-news-page .jci-magazine-category-programs,
body.jci-magazine-latest-news-page .jci-magazine-category-related {
  margin-left: 0 !important;
  margin-right: 0 !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
  background: transparent !important;
}

body.jci-magazine-latest-news-page .jci-magazine-category-programs::before,
body.jci-magazine-latest-news-page .jci-magazine-category-related::before {
  content: none !important;
}

body.jci-magazine-latest-news-page .jci-magazine-category-section::after,
body.jci-magazine-latest-news-page .jci-magazine-category-section:not(:first-of-type)::after {
  content: none !important;
  display: none !important;
}

body.jci-magazine-latest-news-page .jci-magazine-category-related__links {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: clamp(24px, 4vw, 52px) !important;
  background: transparent !important;
  border-top: 1px solid #cfd4da !important;
  border-left: 1px solid #d8dde4 !important;
}

body.jci-magazine-latest-news-page .jci-magazine-category-related__links a {
  display: grid !important;
  gap: 16px !important;
  min-height: 150px !important;
  padding: 24px !important;
  border-right: 1px solid #d8dde4 !important;
  border-bottom: 1px solid #d8dde4 !important;
  color: #111827 !important;
  text-decoration: none !important;
}

body.jci-magazine-latest-news-page .jci-magazine-category-related__links span {
  max-width: 16ch !important;
  color: #111827 !important;
  font-size: clamp(24px, 2.2vw, 36px) !important;
  font-weight: 400 !important;
  letter-spacing: -0.05em !important;
  line-height: 1.02 !important;
}

body.jci-magazine-latest-news-page .jci-magazine-category-related__links small {
  display: block !important;
  align-self: end !important;
  color: #4078ff !important;
  font-size: 11px !important;
  font-weight: 760 !important;
  letter-spacing: 0.12em !important;
  line-height: 1.35 !important;
  text-transform: uppercase !important;
}

body.jci-magazine-latest-news-page #jci-latest-all .jci-magazine-category-section__heading {
  position: static !important;
  margin-bottom: 24px !important;
}

body.jci-magazine-latest-news-page #jci-latest-all .jci-magazine-category-section__heading h2 {
  max-width: 12ch !important;
}

body.jci-magazine-latest-news-page #jci-latest-all {
  display: flex !important;
  flex-direction: column !important;
  align-items: stretch !important;
}

body.jci-magazine-latest-news-page #jci-latest-all .jci-magazine-grid {
  display: grid !important;
  width: 100% !important;
  margin-top: 0 !important;
}

body.jci-magazine-latest-news-page #jci-latest-all .jci-magazine-category-section__heading,
body.jci-magazine-latest-news-page #jci-latest-all .jci-magazine-grid {
  order: initial !important;
}

body.jci-magazine-latest-news-page .jci-magazine-category-programs {
  margin-top: clamp(40px, 4.8vw, 64px) !important;
}

body.jci-magazine-latest-news-page .jci-magazine-category-related {
  margin-top: clamp(40px, 4.8vw, 64px) !important;
}

body.jci-magazine-latest-news-page,
body.category {
  scroll-padding-top: clamp(140px, 18vw, 220px) !important;
}

body.jci-magazine-latest-news-page #jci-latest-all,
body.category #jci-category-all {
  scroll-margin-top: clamp(140px, 18vw, 220px) !important;
}

body.category #jci-category-all {
  display: flex !important;
  flex-direction: column !important;
  align-items: stretch !important;
}

body.category #jci-category-all .jci-magazine-category-section__heading,
body.category #jci-category-all .jci-magazine-grid,
body.category #jci-category-all .jci-magazine-pagination {
  width: 100% !important;
  max-width: 100% !important;
}

body.category #jci-category-all .jci-magazine-category-section__heading {
  position: static !important;
  margin-bottom: 24px !important;
}

body.category #jci-category-all .jci-magazine-grid {
  display: grid !important;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

body.category #jci-category-all .jci-magazine-pagination {
  clear: both !important;
  display: block !important;
  margin-top: 32px !important;
}

body.jci-magazine-latest-news-page .jci-mag-home__closing {
  padding-top: clamp(48px, 5vw, 72px) !important;
  padding-bottom: 28px !important;
}

body.jci-magazine-latest-news-page .jci-mag-home__closing .jci-mag-home__actions {
  margin-top: 18px !important;
}

.jci-magazine-page--latest-news .jci-magazine-page__header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.62fr);
  gap: clamp(24px, 3.8vw, 56px);
  align-items: start;
  margin-bottom: clamp(28px, 3vw, 42px);
}

.jci-magazine-page--latest-news .jci-magazine-latest-news__hero-copy {
  display: grid;
  gap: 0;
}

.jci-magazine-page__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 10px;
}

.jci-magazine-latest-signals {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 14px;
  margin-top: 0;
}

.jci-magazine-latest-signals__item {
  display: grid;
  gap: 8px;
  min-height: 0;
  align-content: start;
  padding: 20px 22px 18px;
  border: 1px solid var(--jci-latest-border);
  border-radius: 22px;
  background: #fff;
  text-decoration: none;
  color: #162033;
}

.jci-magazine-latest-signals__item strong {
  font-size: clamp(20px, 1.9vw, 28px);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.jci-magazine-latest-signals__item span {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #67758b;
}

.jci-magazine-latest-signals__item:hover,
.jci-magazine-latest-signals__item:focus-visible {
  background: #fbfcff;
}

.jci-magazine-page__pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid #d9e0ec;
  border-radius: 999px;
  background: #fff;
  color: #162033;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-decoration: none;
  text-transform: uppercase;
}

.jci-magazine-page__section-heading {
  margin: 0 0 24px;
}

.jci-magazine-page__section-heading h2 {
  margin: 0;
  font-size: clamp(30px, 3vw, 42px);
  line-height: 1.02;
}

.jci-magazine-page__section-heading p {
  max-width: 720px;
  margin: 10px 0 0;
  font-size: 16px;
  line-height: 1.65;
  color: #5a6679;
}

.jci-magazine-topics {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 0 0 32px;
}

.jci-magazine-latest-context {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 0;
  margin: 0 0 32px;
  padding: 0;
  border: 1px solid var(--jci-latest-border);
  background: #fff;
}

.jci-magazine-latest-context__intro,
.jci-magazine-latest-context__notes {
  padding: 28px;
}

.jci-magazine-latest-context__intro h2 {
  margin: 0 0 14px;
  font-size: clamp(30px, 3vw, 44px);
  line-height: 0.96;
  letter-spacing: -0.05em;
}

.jci-magazine-latest-context__intro p:last-child {
  margin-bottom: 0;
}

.jci-magazine-latest-context__notes {
  display: grid;
  gap: 0;
  border-left: 1px solid var(--jci-latest-border);
}

.jci-magazine-latest-context__notes article {
  padding: 0 0 18px;
  background: #fff;
}

.jci-magazine-latest-context__notes h3 {
  margin: 0 0 8px;
  font-size: 18px;
  line-height: 1.2;
}

.jci-magazine-latest-context__notes p {
  margin: 0;
  font-size: 15px;
  line-height: 1.65;
  color: #536074;
}

.jci-magazine-latest-context__notes article + article {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--jci-latest-border);
}

.jci-magazine-featured {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
  gap: 0;
  margin: 0 0 32px;
  padding: 0;
  border: 1px solid var(--jci-latest-border);
  background: #fff;
}

.jci-magazine-featured__media {
  min-height: 100%;
  overflow: hidden;
  background: linear-gradient(135deg, #eef4ff 0%, #dbe7ff 100%);
}

.jci-magazine-featured__media a,
.jci-magazine-featured__media img {
  display: block;
  width: 100%;
  height: 100%;
}

.jci-magazine-featured__media img {
  object-fit: cover;
}

.jci-magazine-featured__body {
  display: grid;
  align-content: center;
  gap: 16px;
  padding: 30px 28px;
  border-left: 1px solid var(--jci-latest-border);
}

.jci-magazine-featured__title {
  margin: 0;
  font-size: clamp(34px, 4vw, 58px);
  line-height: 0.94;
  letter-spacing: -0.06em;
}

.jci-magazine-featured__title a {
  color: inherit;
  text-decoration: none;
}

.jci-magazine-featured__excerpt {
  margin: 0;
  font-size: 17px;
  line-height: 1.7;
  color: #4d5562;
}

@media (max-width: 960px) {
  .jci-magazine-latest-signals,
  .jci-magazine-latest-context {
    grid-template-columns: 1fr;
  }

  .jci-magazine-latest-context__notes {
    border-left: 0;
    border-top: 1px solid var(--jci-latest-border);
  }

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

  .jci-magazine-featured__body {
    border-left: 0;
    border-top: 1px solid var(--jci-latest-border);
    padding: 24px 22px;
  }
}

@media (max-width: 760px) {
  .jci-magazine-page__inner {
    width: min(var(--layout-max-width, 1280px), calc(100% - 32px));
  }

  .jci-magazine-latest-context__intro,
  .jci-magazine-latest-context__notes,
  .jci-magazine-latest-signals__item {
    padding: 22px;
  }
}

/* 2026-06-30 editorial cohesion pass */
.jci-mag-home,
.jci-magazine-page,
.jci-article {
  --jci-editorial-border: rgba(4, 28, 64, 0.08);
  --jci-editorial-ink: #121b33;
  --jci-editorial-muted: #55657d;
  --jci-editorial-accent: #2a62ff;
}

.jci-magazine-page__eyebrow,
.jci-mag-home__kicker,
.jci-mag-home-route__eyebrow,
.jci-article-context__kicker,
.jci-article-next-step__kicker {
  color: var(--jci-editorial-accent);
}

.jci-mag-home__masthead h1,
.jci-magazine-page__title,
.jci-magazine-featured__title,
.jci-mag-home-featured__content h2,
.jci-article__header h1,
.jci-magazine-category .jci-magazine-page__title {
  color: var(--jci-editorial-ink);
  text-wrap: balance;
}

.jci-magazine-page__intro,
.jci-magazine-featured__excerpt,
.jci-mag-home__lede,
.jci-article__standfirst,
.jci-magazine-latest-context__notes p,
.jci-magazine-page__section-heading p,
.jci-magazine-card__excerpt {
  color: var(--jci-editorial-muted);
}

.jci-magazine-card,
.jci-magazine-featured,
.jci-magazine-latest-context,
.jci-magazine-latest-signals__item,
.jci-magazine-category-outcomes__inner,
.jci-mag-home__masthead,
.jci-mag-home-featured,
.jci-mag-home-lane,
.jci-mag-home-guide,
.jci-mag-home-program-card,
.jci-mag-home-route,
.jci-mag-home-topic {
  border-color: var(--jci-editorial-border);
  box-shadow: none;
}

.jci-magazine-card {
  border-radius: 22px;
}

.jci-magazine-card__body {
  gap: 12px;
  padding: 22px;
}

.jci-magazine-card__title {
  font-size: clamp(22px, 1.7vw, 25px);
  line-height: 1.04;
  letter-spacing: -0.03em;
}

.jci-magazine-card__meta {
  color: #70809a;
}

.jci-magazine-page__pill,
.jci-mag-home-button,
.jci-mag-home-link {
  border-color: var(--jci-editorial-border);
}

/* 2026-06-30 design review polish */
.jci-magazine-page--latest-news .jci-magazine-page__header {
  margin-bottom: clamp(28px, 3vw, 42px);
}

.jci-magazine-page--latest-news .jci-magazine-page__title {
  max-width: 9ch;
}

.jci-magazine-page--latest-news .jci-magazine-page__actions {
  margin-top: 10px;
}

.jci-magazine-page--latest-news .jci-magazine-latest-signals__item {
  min-height: 0;
  padding: 22px 24px;
  align-content: start;
  border: 1px solid var(--jci-editorial-border);
  border-radius: 24px;
}

.jci-magazine-page--latest-news .jci-magazine-latest-signals__item strong {
  margin-bottom: 8px;
}

.jci-magazine-page--latest-news .jci-magazine-latest-context,
.jci-magazine-page--latest-news .jci-magazine-featured {
  border-radius: 28px;
  overflow: hidden;
}

.jci-magazine-page--latest-news .jci-magazine-featured {
  grid-template-columns: minmax(360px, 0.92fr) minmax(0, 1.08fr);
  align-items: stretch;
}

.jci-magazine-page--latest-news .jci-magazine-featured__media {
  min-height: 360px;
}

.jci-magazine-page--latest-news .jci-magazine-featured__body {
  align-content: start;
  padding: 32px 34px 30px;
}

.jci-magazine-page--latest-news .jci-magazine-featured__title {
  max-width: 16ch;
  font-size: clamp(34px, 3.1vw, 50px);
  line-height: 0.98;
}

.jci-magazine-page--latest-news .jci-magazine-card {
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

.jci-magazine-page--latest-news .jci-magazine-card__media {
  aspect-ratio: 16 / 9;
  background: #e5e1d8;
  overflow: hidden;
}

.jci-magazine-page--latest-news .jci-magazine-card__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.jci-magazine-page--latest-news .jci-magazine-card__body {
  padding: 20px 0 0;
  gap: 12px;
}

.jci-magazine-page--latest-news .jci-magazine-card__meta a {
  color: #111 !important;
}

.jci-magazine-page--latest-news .jci-magazine-card__meta time,
.jci-magazine-page--latest-news .jci-magazine-card__link {
  color: #4078ff !important;
}

.jci-magazine-page--latest-news .jci-magazine-card__title {
  max-width: 90%;
  font-family: "DM Sans", "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(24px, 2.1vw, 34px);
  font-weight: 500;
  line-height: 1.06;
  letter-spacing: -0.032em;
}

.jci-magazine-page--latest-news .jci-magazine-card__title a {
  color: #111827;
}

.jci-magazine-page--latest-news .jci-magazine-card__excerpt {
  max-width: 46ch;
  color: #4d5562;
  font-size: clamp(14px, 1vw, 16px);
  line-height: 1.55;
}

.jci-magazine-page--latest-news .jci-magazine-pagination {
  margin-top: clamp(34px, 4vw, 52px);
  padding-top: 20px;
  border-top: 1px solid #cfd4da;
}

.jci-magazine-page--latest-news .jci-magazine-pagination ul {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.jci-magazine-page--latest-news .jci-magazine-pagination > ul.page-numbers {
  width: auto;
  height: auto;
  min-width: 0;
  border: 0;
  background: transparent;
}

.jci-magazine-page--latest-news .jci-magazine-pagination li {
  margin: 0;
  padding: 0;
}

.jci-magazine-page--latest-news .jci-magazine-pagination .page-numbers:not(ul) {
  min-width: 38px;
  height: 38px;
  padding: 0 12px;
  border: 1px solid #cfd4da;
  border-radius: 0;
  background: transparent;
  color: #111827;
  font-family: "DM Sans", "Helvetica Neue", Arial, sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
  transition: border-color 0.18s ease, color 0.18s ease, background-color 0.18s ease;
}

.jci-magazine-page--latest-news .jci-magazine-pagination .page-numbers.dots {
  min-width: 22px;
  border-color: transparent;
  color: #7a8492;
}

.jci-magazine-page--latest-news .jci-magazine-pagination a.page-numbers:hover,
.jci-magazine-page--latest-news .jci-magazine-pagination a.page-numbers:focus-visible {
  border-color: #111827;
  background: #111827;
  color: #fff;
  text-decoration: none;
}

.jci-magazine-page--latest-news .jci-magazine-pagination .page-numbers.current {
  border-color: #4078ff;
  background: #4078ff;
  color: #fff;
}

.jci-magazine-page--latest-news .jci-magazine-latest-context__intro {
  background: linear-gradient(180deg, #ffffff 0%, #fbfcfe 100%);
}

.jci-magazine-page--latest-news .jci-magazine-latest-context__intro h2 {
  max-width: 14ch;
}

.jci-magazine-page--latest-news .jci-magazine-latest-context__notes article {
  padding-bottom: 22px;
}

.jci-magazine-page--latest-news .jci-magazine-featured__body {
  padding: 34px 32px;
}

.jci-magazine-page--latest-news .jci-magazine-page__section-heading {
  margin-bottom: 28px;
}

.jci-article__breadcrumb {
  margin-top: clamp(44px, 5vw, 78px);
  margin-bottom: 18px;
}

.jci-article__header {
  max-width: min(1100px, calc(100vw - 80px));
  margin-bottom: 46px;
}

.jci-article__hero {
  margin-bottom: 58px;
}

.jci-article__hero img {
  border-radius: 26px;
}

.jci-article__body-grid {
  gap: 46px;
}

.jci-article__rail-inner {
  gap: 26px;
}

.jci-article__rail-card + .jci-article__rail-card {
  padding-top: 22px;
  border-top: 1px solid var(--jci-editorial-border);
}

@media (max-width: 960px) {
  .jci-magazine-page--latest-news .jci-magazine-latest-signals {
    gap: 12px;
  }

  .jci-magazine-page--latest-news .jci-magazine-featured__body {
    padding: 24px 22px;
  }

  .jci-article__header {
    max-width: min(100%, calc(100vw - 40px));
  }
}

/* 2026-06-30 mobile rescue pass */
@media (max-width: 760px) {
  .jci-mag-home__section--disciplines .jci-mag-home__section-grid,
  .jci-mag-home__section--programs .jci-mag-home__section-grid,
  .jci-mag-home__section--routes .jci-mag-home__section-grid,
  .jci-mag-home__section--editorial .jci-mag-home__section-grid,
  .jci-mag-home-closing-grid {
    display: block !important;
  }

  .jci-mag-home__section-heading,
  .jci-mag-home__closing-links,
  .jci-mag-home-quote {
    position: static !important;
    width: 100% !important;
    max-width: none !important;
  }

  .jci-mag-home__section-heading {
    margin-bottom: 24px !important;
  }

  .jci-mag-home__intro-panel {
    gap: 10px !important;
  }

  .jci-mag-home__topic-list {
    gap: 10px !important;
    border: 0 !important;
  }

  .jci-mag-home__topic-pill {
    min-height: 0 !important;
    padding: 16px 18px !important;
    border: 1px solid rgba(4, 28, 64, 0.08) !important;
    border-radius: 18px !important;
  }

  .jci-mag-home-topic-grid,
  .jci-mag-home-program-grid,
  .jci-mag-home-route-grid--four,
  .jci-mag-home-lanes {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) !important;
    width: 100% !important;
    max-width: 100% !important;
    gap: 14px !important;
    margin: 0 !important;
    border: 0 !important;
  }

  .jci-mag-home-topic,
  .jci-mag-home-program-card,
  .jci-mag-home-route,
  .jci-mag-home-lane {
    width: 100% !important;
    min-width: 0 !important;
    min-height: 0 !important;
    margin: 0 !important;
    padding: 18px !important;
    border: 1px solid rgba(4, 28, 64, 0.08) !important;
    border-radius: 20px !important;
    background: #fff !important;
  }

  .jci-mag-home-topic__label,
  .jci-mag-home-program-card h3,
  .jci-mag-home-route__label,
  .jci-mag-home-lane__header h3 {
    max-width: none !important;
    font-size: clamp(28px, 8.2vw, 36px) !important;
  }

  .jci-mag-home-lane .jci-mag-home-card + .jci-mag-home-card {
    margin-top: 16px !important;
    padding-top: 16px !important;
    border-top: 1px solid rgba(4, 28, 64, 0.08) !important;
  }

  .jci-mag-home__closing {
    padding-top: 56px !important;
    padding-bottom: 56px !important;
  }

  .jci-mag-home-quote {
    margin-bottom: 24px !important;
  }

  .jci-mag-home-quote p,
  .jci-mag-home__closing-links h2 {
    max-width: none !important;
  }

  .jci-magazine-category .jci-magazine-page__inner {
    width: calc(100% - 32px) !important;
  }

  .jci-magazine-category__hero {
    row-gap: 22px !important;
    margin-bottom: 34px !important;
    padding-bottom: 34px !important;
  }

  .jci-magazine-category-section {
    gap: 18px !important;
    padding-top: 30px !important;
    padding-bottom: 30px !important;
  }

  .jci-magazine-category-section + .jci-magazine-category-section {
    margin-top: 0 !important;
  }

  .jci-magazine-card--rail,
  .jci-magazine-card--lane {
    display: grid !important;
    grid-template-columns: 108px minmax(0, 1fr) !important;
    align-items: start !important;
    gap: 14px !important;
    padding: 0 !important;
  }

  .jci-magazine-card--rail .jci-magazine-card__media,
  .jci-magazine-card--lane .jci-magazine-card__media {
    display: block !important;
    width: 108px !important;
    min-width: 108px !important;
    aspect-ratio: 4 / 3 !important;
    min-height: 0 !important;
  }

  .jci-magazine-card--rail .jci-magazine-card__body,
  .jci-magazine-card--lane .jci-magazine-card__body {
    padding: 0 !important;
    gap: 8px !important;
  }

  .jci-magazine-card--rail .jci-magazine-card__title,
  .jci-magazine-card--lane .jci-magazine-card__title {
    font-size: 20px !important;
    line-height: 1.08 !important;
  }

  .jci-magazine-card--rail .jci-magazine-card__excerpt,
  .jci-magazine-card--lane .jci-magazine-card__excerpt {
    display: none !important;
  }

  .jci-magazine-category__grid {
    row-gap: 32px !important;
  }

  .jci-magazine-category__grid .jci-magazine-card__body {
    padding: 18px 0 0 !important;
  }

  .jci-magazine-category-related__links {
    gap: 18px !important;
  }
}

/* 2026-06-30 desktop repair pass */
@media (min-width: 961px) {
  .jci-magazine-category__hero {
    grid-template-columns: minmax(0, 1.12fr) minmax(280px, 0.42fr) !important;
    column-gap: clamp(34px, 4vw, 64px) !important;
    row-gap: 18px !important;
    margin-bottom: 40px !important;
    padding-bottom: 32px !important;
  }

  .jci-magazine-category .jci-magazine-page__title {
    max-width: 12ch !important;
    font-size: clamp(50px, 5vw, 74px) !important;
    line-height: 0.98 !important;
  }

  .jci-magazine-category .jci-magazine-page__intro {
    max-width: 42rem !important;
    font-size: 18px !important;
    line-height: 1.5 !important;
  }

  .jci-magazine-category-section {
    grid-template-columns: minmax(190px, 220px) minmax(0, 1fr) !important;
    gap: 24px !important;
    padding-top: 34px !important;
    padding-bottom: 34px !important;
    align-items: start !important;
  }

  .jci-magazine-category-section + .jci-magazine-category-section {
    margin-top: 0 !important;
  }

  .jci-magazine-category-section__heading {
    display: grid !important;
    align-content: start !important;
    gap: 12px !important;
  }

  .jci-magazine-category-section__heading h2 {
    max-width: 8.5ch !important;
    font-size: clamp(24px, 2vw, 32px) !important;
    line-height: 1.02 !important;
  }

  .jci-magazine-category-section__description {
    max-width: 22ch !important;
    margin-top: 8px !important;
    font-size: 14px !important;
    line-height: 1.5 !important;
  }

  .jci-magazine-category-featured .jci-magazine-card--featured {
    grid-template-columns: minmax(260px, 0.68fr) minmax(0, 1fr) !important;
    gap: 22px !important;
    align-items: start !important;
  }

  .jci-magazine-category-featured .jci-magazine-card__media {
    aspect-ratio: 4 / 3 !important;
  }

  .jci-magazine-category-featured .jci-magazine-card__body {
    padding: 0 !important;
    gap: 10px !important;
  }

  .jci-magazine-category-featured .jci-magazine-card__title {
    width: 100% !important;
    max-width: 16ch !important;
    font-size: clamp(28px, 2.6vw, 40px) !important;
    line-height: 1.02 !important;
  }

  .jci-magazine-category-featured .jci-magazine-card__excerpt {
    max-width: 56ch !important;
    font-size: 15px !important;
    line-height: 1.58 !important;
  }

  .jci-magazine-category-rail,
  .jci-magazine-category-lane {
    display: grid !important;
    gap: 18px !important;
  }

  .jci-magazine-card--rail,
  .jci-magazine-card--lane {
    grid-template-columns: 132px minmax(0, 1fr) !important;
    gap: 18px !important;
    padding: 0 !important;
    align-items: start !important;
  }

  .jci-magazine-card--rail .jci-magazine-card__media,
  .jci-magazine-card--lane .jci-magazine-card__media {
    width: 132px !important;
    min-width: 132px !important;
    aspect-ratio: 4 / 3 !important;
    min-height: 0 !important;
  }

  .jci-magazine-card--rail .jci-magazine-card__body,
  .jci-magazine-card--lane .jci-magazine-card__body {
    padding: 0 !important;
    gap: 8px !important;
  }

  .jci-magazine-card--rail .jci-magazine-card__title,
  .jci-magazine-card--lane .jci-magazine-card__title {
    max-width: 34ch !important;
    font-size: 20px !important;
    line-height: 1.08 !important;
  }

  .jci-magazine-card--rail .jci-magazine-card__excerpt,
  .jci-magazine-card--lane .jci-magazine-card__excerpt {
    max-width: 54ch !important;
    font-size: 14px !important;
    line-height: 1.5 !important;
  }

  .jci-magazine-category-programs__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  }

  .jci-magazine-category-program-card {
    padding: 22px !important;
  }

  .jci-magazine-category-program-card h3 {
    font-size: clamp(18px, 1.75vw, 28px) !important;
    line-height: 1.06 !important;
  }

  .jci-magazine-category-related__links {
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    gap: 0 !important;
    border-top: 0 !important;
  }

  .jci-magazine-category-related__links a {
    min-height: 0 !important;
    padding: 20px 18px 34px !important;
  }

  .jci-magazine-category-related__links span {
    font-size: 18px !important;
    line-height: 1.08 !important;
  }

  .jci-article {
    --jci-reading-width: 780px;
    --jci-rail-width: 248px;
    padding-top: 138px !important;
  }

  .jci-article__header {
    max-width: min(1180px, calc(100vw - 80px)) !important;
    margin-bottom: 34px !important;
  }

  .jci-article__header h1 {
    max-width: 15ch !important;
    font-size: clamp(44px, 4.4vw, 62px) !important;
  }

  .jci-article__standfirst {
    max-width: 48rem !important;
    font-size: 19px !important;
    line-height: 1.62 !important;
  }

  .jci-article__hero {
    max-width: min(1180px, calc(100vw - 80px)) !important;
    margin-bottom: 42px !important;
  }

  .jci-article__body-grid {
    max-width: 1180px !important;
    gap: 34px !important;
    padding-top: 0 !important;
  }

  .jci-article__content h2 {
    margin-top: 58px !important;
  }

  .jci-article-next-step {
    margin: 28px 0 34px !important;
    padding: 24px 26px !important;
  }

  .jci-article-next-step h2 {
    max-width: 16ch !important;
    font-size: clamp(24px, 2vw, 32px) !important;
  }

  .jci-article__rail-inner {
    gap: 20px !important;
    padding-left: 22px !important;
  }

  .jci-article__rail-card + .jci-article__rail-card {
    padding-top: 18px !important;
  }
}

/* 2026-06-30 category/latest desktop correction */
@media (min-width: 961px) {
  .jci-magazine-category-section {
    grid-template-columns: minmax(0, 1fr) !important;
    gap: 18px !important;
  }

  .jci-magazine-category-section__heading {
    max-width: 720px !important;
  }

  .jci-magazine-category-section__heading h2,
  .jci-magazine-category-section__description {
    max-width: none !important;
  }

  .jci-magazine-category-featured .jci-magazine-card--featured {
    grid-template-columns: minmax(320px, 0.78fr) minmax(0, 1fr) !important;
  }

  .jci-magazine-page--latest-news .jci-magazine-latest-context {
    grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr) !important;
  }

  .jci-magazine-page--latest-news .jci-magazine-latest-context__intro,
  .jci-magazine-page--latest-news .jci-magazine-latest-context__notes {
    padding: 30px 32px !important;
  }

  .jci-magazine-page--latest-news .jci-magazine-latest-context__intro h2 {
    max-width: 14ch !important;
    font-size: clamp(34px, 3vw, 48px) !important;
  }

  .jci-magazine-page--latest-news .jci-magazine-latest-context__intro p {
    max-width: 48ch !important;
  }

  .jci-magazine-page--latest-news .jci-magazine-featured {
    grid-template-columns: minmax(360px, 0.92fr) minmax(0, 1.08fr) !important;
    align-items: stretch !important;
  }

  .jci-magazine-page--latest-news .jci-magazine-featured__media {
    min-height: 360px !important;
  }

  .jci-magazine-page--latest-news .jci-magazine-featured__body {
    align-content: start !important;
    padding: 32px 34px 30px !important;
  }

  .jci-magazine-page--latest-news .jci-magazine-featured__title {
    max-width: 16ch !important;
    font-size: clamp(34px, 3.1vw, 50px) !important;
    line-height: 0.98 !important;
  }

  .jci-magazine-page--latest-news .jci-magazine-featured__excerpt {
    max-width: 52ch !important;
  }
}

/* 2026-06-30 category archive cards desktop conversion */
@media (min-width: 961px) {
  .jci-magazine-category-rail,
  .jci-magazine-category-lane {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 26px !important;
  }

  .jci-magazine-category-rail .jci-magazine-card,
  .jci-magazine-category-lane .jci-magazine-card {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) !important;
    gap: 0 !important;
    align-items: start !important;
  }

  .jci-magazine-category-rail .jci-magazine-card__media,
  .jci-magazine-category-lane .jci-magazine-card__media {
    width: 100% !important;
    min-width: 0 !important;
    aspect-ratio: 16 / 10 !important;
  }

  .jci-magazine-category-rail .jci-magazine-card__body,
  .jci-magazine-category-lane .jci-magazine-card__body {
    padding: 16px 0 0 !important;
    gap: 10px !important;
  }

  .jci-magazine-category-rail .jci-magazine-card__title,
  .jci-magazine-category-lane .jci-magazine-card__title {
    max-width: 18ch !important;
    font-size: 24px !important;
    line-height: 1.08 !important;
  }

  .jci-magazine-category-rail .jci-magazine-card__excerpt,
  .jci-magazine-category-lane .jci-magazine-card__excerpt {
    display: block !important;
    max-width: 34ch !important;
    font-size: 14px !important;
    line-height: 1.54 !important;
  }
}

/* 2026-06-30 category compact editorial grids */
.jci-magazine-category__grid--compact {
  row-gap: 26px !important;
}

.jci-magazine-category-card--compact .jci-magazine-card__body {
  padding-top: 16px !important;
}

.jci-magazine-category-card--compact .jci-magazine-card__title {
  max-width: 18ch !important;
  font-size: clamp(22px, 1.75vw, 28px) !important;
  line-height: 1.08 !important;
}

.jci-magazine-category-card--compact .jci-magazine-card__excerpt {
  max-width: 80% !important;
  font-size: 14px !important;
  line-height: 1.56 !important;
}

/* 2026-07-01 final cross-template polish */
.jci-magazine-page .jci-magazine-card,
.jci-magazine-page--latest-news .jci-magazine-latest-signals__item,
.jci-magazine-page--latest-news .jci-magazine-latest-context,
.jci-magazine-page--latest-news .jci-magazine-latest-context__notes article,
.jci-magazine-category-outcomes__inner,
.jci-magazine-category-program-card,
.jci-magazine-category-related__links a,
.jci-article__context,
.jci-article__toc,
.jci-article__aside-card,
.jci-article__next-step {
  border-color: #dce5f0 !important;
  box-shadow: none !important;
}

.jci-magazine-page .jci-magazine-card:hover,
.jci-magazine-page .jci-magazine-card:focus-within,
.jci-magazine-page--latest-news .jci-magazine-latest-signals__item:hover,
.jci-magazine-page--latest-news .jci-magazine-latest-signals__item:focus-within,
.jci-magazine-category-related__links a:hover,
.jci-magazine-category-related__links a:focus-within {
  box-shadow: none !important;
  border-color: #b8c7de !important;
}

.jci-magazine-page--latest-news .jci-magazine-latest-context__notes article,
.jci-magazine-category__summary-card,
.jci-article__context,
.jci-article__toc {
  background: linear-gradient(180deg, #ffffff 0%, #fbfcfe 100%) !important;
}

.jci-magazine-page--latest-news .jci-magazine-featured__body {
  gap: 16px !important;
}

.jci-magazine-page--latest-news .jci-magazine-featured__title {
  max-width: 16ch !important;
  letter-spacing: -0.035em !important;
}

.jci-magazine-page--latest-news .jci-magazine-featured__excerpt,
.jci-magazine-page--latest-news .jci-magazine-latest-context__intro p,
.jci-magazine-page--latest-news .jci-magazine-latest-context__notes p,
.jci-magazine-category .jci-magazine-page__intro,
.jci-magazine-category-section__description,
.jci-article__standfirst {
  text-wrap: pretty;
}

.jci-magazine-category__hero {
  gap: clamp(28px, 4vw, 46px) !important;
}

.jci-magazine-category .jci-magazine-page__title {
  max-width: 10ch !important;
}

.jci-magazine-category-outcomes__inner {
  gap: 22px !important;
}

.jci-magazine-category-related__links a {
  min-height: 100% !important;
}

.jci-magazine-category-card--compact .jci-magazine-card__title {
  letter-spacing: -0.028em !important;
}

.jci-magazine-category-card--compact .jci-magazine-card__excerpt {
  color: #53627a !important;
}

.jci-article__header h1 {
  max-width: 15ch !important;
}

.jci-article__hero img,
.jci-article__content iframe,
.jci-article__content video,
.jci-article__content .responsive-video,
.jci-article__content .wp-block-video video {
  border-radius: 20px !important;
  overflow: hidden;
}

.jci-article__context,
.jci-article__toc,
.jci-article__aside-card,
.jci-article__next-step {
  border-radius: 24px !important;
}

.jci-article__content > h2,
.jci-article__content > h3 {
  letter-spacing: -0.03em;
}

@media (max-width: 960px) {
  .jci-magazine-category .jci-magazine-page__title,
  .jci-article__header h1,
  .jci-magazine-page--latest-news .jci-magazine-featured__title {
    max-width: none !important;
  }
}

/* 2026-07-01 Magazine polish pass */
.jci-mag-home__signal-list {
  display: none !important;
}

.jci-mag-home__feature {
  scroll-margin-top: clamp(140px, 18vw, 220px) !important;
  padding-top: clamp(92px, 7vw, 108px) !important;
  padding-bottom: clamp(92px, 7vw, 108px) !important;
}

.jci-mag-home-featured__media img {
  object-position: top center !important;
}

.jci-mag-home-authority__proof {
  grid-template-rows: repeat(4, minmax(0, 1fr)) !important;
  gap: 0 !important;
}

.jci-mag-home-authority__proof a {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 14px !important;
}

.jci-mag-home-authority__proof a span,
.jci-mag-home-link span,
.jci-mag-home-button span,
.jci-mag-home-route__arrow,
.jci-mag-home-topic__arrow,
.jci-magazine-card__link span[aria-hidden="true"],
.jci-related-link span[aria-hidden="true"],
.jci-article__post-nav-arrow,
.jci-magazine-category-related__links a::after,
.jci-magazine-category__hero-panel .jci-article__toc a > span[aria-hidden="true"] {
  display: inline-block;
  transition: transform 0.18s ease;
}

.jci-mag-home-button:hover span[aria-hidden="true"],
.jci-mag-home-button:focus-visible span[aria-hidden="true"],
.jci-mag-home-link:hover span[aria-hidden="true"],
.jci-mag-home-link:focus-visible span[aria-hidden="true"],
.jci-mag-home-route:hover .jci-mag-home-route__arrow,
.jci-mag-home-route:focus-visible .jci-mag-home-route__arrow,
.jci-mag-home-topic:hover .jci-mag-home-topic__arrow,
.jci-mag-home-topic:focus-visible .jci-mag-home-topic__arrow,
.jci-magazine-card__link:hover span[aria-hidden="true"],
.jci-magazine-card__link:focus-visible span[aria-hidden="true"],
.jci-related-link:hover span[aria-hidden="true"],
.jci-related-link:focus-visible span[aria-hidden="true"],
.jci-article__post-nav-item:hover .jci-article__post-nav-arrow,
.jci-article__post-nav-item:focus-visible .jci-article__post-nav-arrow,
.jci-magazine-category-related__links a:hover::after,
.jci-magazine-category-related__links a:focus-visible::after,
.jci-magazine-category__hero-panel .jci-article__toc a:hover > span[aria-hidden="true"],
.jci-magazine-category__hero-panel .jci-article__toc a:focus-visible > span[aria-hidden="true"] {
  transform: translateX(4px);
}

.jci-mag-home-topic-grid {
  gap: 14px !important;
}

.jci-mag-home-topic {
  min-height: 300px !important;
  padding: 24px 22px 22px !important;
  background: #fff !important;
  border: 1px solid rgba(4, 28, 64, 0.08) !important;
  box-shadow: none !important;
}

.jci-mag-home-topic__latest {
  margin-top: auto !important;
  padding-top: 14px !important;
  border-top: 1px solid rgba(4, 28, 64, 0.08) !important;
}

.jci-mag-home-featured__content {
  align-self: start !important;
}

.jci-mag-home-featured {
  gap: clamp(54px, 6vw, 78px) !important;
}

.jci-mag-home-featured__content p:not(.jci-mag-home__kicker) {
  max-width: 50ch !important;
  font-size: 16px !important;
  line-height: 1.66 !important;
}

.jci-mag-home-program-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  align-items: stretch !important;
  gap: 14px !important;
}

.jci-mag-home-program-card {
  min-height: 100% !important;
  overflow: hidden !important;
}

.jci-mag-home__intro {
  padding-top: clamp(82px, 7vw, 116px) !important;
  padding-bottom: clamp(56px, 5.8vw, 80px) !important;
}

.jci-mag-home__authority {
  padding-top: clamp(56px, 5vw, 68px) !important;
  padding-bottom: clamp(56px, 5vw, 68px) !important;
}

.jci-mag-home__section,
.jci-mag-home__closing {
  padding-top: clamp(84px, 6.3vw, 98px) !important;
  padding-bottom: clamp(84px, 6.3vw, 98px) !important;
}

.jci-mag-home__section--disciplines {
  padding-top: clamp(76px, 5.7vw, 90px) !important;
}

.jci-mag-home__section--programs {
  padding-top: clamp(80px, 5.9vw, 94px) !important;
}

.jci-mag-home__section-grid,
.jci-mag-home-closing-grid {
  gap: clamp(60px, 5.8vw, 80px) !important;
}

.jci-mag-home__closing-links {
  padding-top: 14px !important;
}

.jci-mag-home-program-card:nth-child(3) {
  background: #07183a !important;
}

.jci-mag-home-program-card:nth-child(3) *,
.jci-mag-home-program-card:nth-child(3):hover *,
.jci-mag-home-program-card:nth-child(3):focus-within * {
  color: #fff !important;
}

.jci-magazine-category .jci-magazine-card,
.jci-magazine-category .jci-magazine-card:hover,
.jci-magazine-category-program-card,
.jci-magazine-category-program-card:hover,
.jci-magazine-category-related__links a,
.jci-magazine-category-related__links a:hover,
.jci-magazine-category__summary-card {
  box-shadow: none !important;
}

.jci-magazine-category .jci-magazine-card,
.jci-magazine-category .jci-magazine-card:hover,
.jci-magazine-category-program-card,
.jci-magazine-category-related__links a {
  background: transparent !important;
}

.jci-magazine-category__hero-panel {
  display: grid !important;
  gap: 16px !important;
}

.jci-magazine-category__summary-card {
  padding: 0 0 16px !important;
  border: 0 !important;
  background: transparent !important;
}

.jci-magazine-category__summary-card:last-of-type {
  border-bottom: 0 !important;
  padding-bottom: 0 !important;
}

.jci-magazine-category__latest-link {
  margin: 0 !important;
}

.jci-magazine-category .jci-magazine-page__title {
  max-width: 14ch !important;
}

.jci-magazine-category .jci-magazine-page__intro {
  max-width: 50ch !important;
}

.jci-magazine-category-programs__grid {
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  align-items: stretch !important;
}

.jci-magazine-category-program-card {
  height: 100% !important;
  padding: 28px !important;
  border: 1px solid rgba(4, 28, 64, 0.08) !important;
  background: #fff !important;
}

.jci-magazine-category-program-card:last-child {
  background: #07183a !important;
  color: #fff !important;
}

.jci-magazine-category-program-card:last-child h3,
.jci-magazine-category-program-card:last-child p,
.jci-magazine-category-program-card:last-child a {
  color: #fff !important;
}

/* 2026-07-17 pass: homepage hero topic navigation redesign. */
.jci-mag-home__intro-panel.jci-mag-home__intro-topics {
  display: block !important;
  align-self: end !important;
  width: min(100%, 520px) !important;
  max-width: 520px !important;
  margin-left: auto !important;
  padding: 8px 0 0 !important;
  background: transparent !important;
}

.jci-mag-home__topics-eyebrow {
  margin: 0 0 10px !important;
  color: #5c6b84 !important;
  font-size: 12px !important;
  font-weight: 700 !important;
  line-height: 1 !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
}

.jci-mag-home__topics-title {
  margin: 0 0 26px !important;
  color: #0d1b3d !important;
  font-size: clamp(22px, 2vw, 28px) !important;
  font-weight: 700 !important;
  line-height: 1.05 !important;
  letter-spacing: -0.02em !important;
}

.jci-mag-home__topics-nav {
  display: block;
}

.jci-mag-home__topic-list {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 18px 28px !important;
  margin: 0 !important;
  padding: 0 !important;
  list-style: none !important;
  border: 0 !important;
  background: transparent !important;
}

.jci-mag-home__topic-item {
  margin: 0;
  padding: 0;
  list-style: none;
}

.jci-mag-home__topic-pill {
  display: block !important;
  min-height: 100%;
  padding: 16px 0 14px !important;
  border-top: 1px solid rgba(13, 27, 61, 0.14) !important;
  background: transparent !important;
  color: inherit !important;
  text-decoration: none !important;
  transition: color 180ms ease, border-color 180ms ease !important;
}

.jci-mag-home__topic-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 8px;
}

.jci-mag-home__topic-pill strong {
  max-width: none !important;
  color: #0d1b3d !important;
  font-size: clamp(18px, 1.5vw, 24px) !important;
  font-weight: 700 !important;
  line-height: 1.04 !important;
  letter-spacing: -0.025em !important;
}

.jci-mag-home__topic-arrow {
  flex: 0 0 auto;
  color: #2554eb;
  font-size: 16px;
  line-height: 1;
}

.jci-mag-home__topic-pill > span:last-child {
  display: block;
  max-width: 30ch;
  color: #4f607d !important;
  font-size: 15px !important;
  line-height: 1.45 !important;
}

.jci-mag-home__topic-pill:hover,
.jci-mag-home__topic-pill:focus-visible {
  border-color: #2554eb !important;
  background: transparent !important;
  color: inherit !important;
}

.jci-mag-home__topic-pill:hover strong,
.jci-mag-home__topic-pill:focus-visible strong {
  color: #2554eb !important;
}

.jci-mag-home__topic-pill:focus-visible {
  outline: 2px solid #2554eb;
  outline-offset: 6px;
}

@media (max-width: 1100px) {
  .jci-mag-home__intro-panel.jci-mag-home__intro-topics {
    width: 100% !important;
    max-width: none !important;
  }

  .jci-mag-home__topic-list {
    gap: 16px 22px !important;
  }

  .jci-mag-home__topic-pill strong {
    font-size: 20px !important;
  }

  .jci-mag-home__topic-pill > span:last-child {
    font-size: 14px !important;
  }
}

@media (max-width: 760px) {
  .jci-mag-home__intro-panel.jci-mag-home__intro-topics {
    padding-top: 0 !important;
  }

  .jci-mag-home__topics-title {
    margin-bottom: 18px !important;
  }

  .jci-mag-home__topic-list {
    grid-template-columns: minmax(0, 1fr) !important;
    gap: 0 !important;
  }

  .jci-mag-home__topic-pill {
    padding: 16px 0 !important;
  }

  .jci-mag-home__topic-pill > span:last-child {
    max-width: none;
  }
}

html[lang^="nl"] .jci-mag-home__section--programs .jci-mag-home-program-card h3 {
  max-width: 100% !important;
  min-width: 0 !important;
  font-size: clamp(22px, 1.7vw, 29px) !important;
  line-height: 1.02 !important;
  text-wrap: wrap !important;
  overflow-wrap: anywhere !important;
  hyphens: auto !important;
}

html[lang^="nl"] .jci-mag-home__section--programs .jci-mag-home-program-card p:not(.jci-mag-home__kicker) {
  font-size: 14px !important;
  line-height: 1.52 !important;
}

html[lang^="nl"] .jci-mag-home__section--programs .jci-mag-home-program-card .jci-mag-home-link__label {
  font-size: 12px !important;
  line-height: 1.45 !important;
}

.jci-mag-home-program-card .jci-mag-home-link {
  position: relative !important;
  display: block !important;
  width: 100% !important;
  max-width: 100% !important;
  min-width: 0 !important;
  box-sizing: border-box !important;
  padding-right: 18px !important;
}

.jci-mag-home-program-card .jci-mag-home-link__label {
  display: block !important;
  min-width: 0 !important;
  overflow-wrap: anywhere !important;
}

.jci-mag-home-program-card .jci-mag-home-link span[aria-hidden="true"] {
  position: absolute !important;
  right: 0 !important;
  bottom: 0 !important;
  transition: none !important;
  transform: none !important;
}

.jci-mag-home-program-card .jci-mag-home-link:hover span[aria-hidden="true"],
.jci-mag-home-program-card .jci-mag-home-link:focus-visible span[aria-hidden="true"] {
  transform: none !important;
}

.jci-mag-home-program-card:nth-child(3),
.jci-mag-home-program-card:nth-child(3):hover,
.jci-mag-home-program-card:nth-child(3):focus-within,
.jci-mag-home-program-card:nth-child(3) h3,
.jci-mag-home-program-card:nth-child(3) p,
.jci-mag-home-program-card:nth-child(3) .jci-mag-home-link,
.jci-mag-home-program-card:nth-child(3) .jci-mag-home-link:hover,
.jci-mag-home-program-card:nth-child(3) .jci-mag-home-link:focus-visible,
.jci-mag-home-program-card:nth-child(3) .jci-mag-home-link span[aria-hidden="true"],
.jci-mag-home-program-card:nth-child(3) .jci-mag-home-link:hover span[aria-hidden="true"],
.jci-mag-home-program-card:nth-child(3) .jci-mag-home-link:focus-visible span[aria-hidden="true"] {
  transform: none !important;
  translate: none !important;
  transition-property: color, background-color, border-color, text-decoration-color, opacity, box-shadow !important;
}

.jci-magazine-category #jci-category-all .jci-magazine-category-section__heading {
  position: static !important;
  margin-bottom: 24px !important;
}

.jci-magazine-category #jci-category-all .jci-magazine-category-section__heading h2 {
  max-width: 14ch !important;
}

.jci-magazine-category .jci-magazine-grid {
  gap: 24px !important;
}

.jci-magazine-category .jci-magazine-card__title {
  max-width: 90% !important;
}

.jci-magazine-category-related__links {
  gap: 0 !important;
}

.jci-magazine-category-related__links a {
  border: 0 !important;
  border-top: 1px solid rgba(4, 28, 64, 0.08) !important;
}

.jci-magazine-page--latest-news .jci-magazine-featured__media {
  align-self: start !important;
}

.jci-magazine-page--latest-news .jci-magazine-featured__media img {
  object-position: top center !important;
}

.jci-magazine-page--latest-news .jci-magazine-latest-context,
.jci-magazine-page--latest-news .jci-magazine-latest-context__notes article,
.jci-magazine-page--latest-news .jci-magazine-latest-signals__item {
  box-shadow: none !important;
}

.jci-article__toc {
  background: transparent !important;
  border: 0 !important;
  padding: 0 !important;
}

.jci-article__toc a::before {
  display: none !important;
}

.jci-article__rail-inner {
  border-left: 0 !important;
  padding-left: 0 !important;
}

.jci-article-next-step {
  background: #f6f4ef !important;
}

.jci-article-next-step__grid {
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
}

.jci-article__post-nav {
  margin-top: clamp(42px, 6vw, 80px) !important;
  padding-top: 26px !important;
  border-top: 1px solid rgba(4, 28, 64, 0.08) !important;
}

.jci-article__post-nav-grid {
  gap: 18px !important;
}

.jci-article__post-nav-item {
  padding: 24px !important;
  border: 1px solid rgba(4, 28, 64, 0.08) !important;
  background: #fff !important;
}

.jci-article__post-nav-title {
  max-width: 18ch !important;
  font-size: clamp(22px, 2vw, 30px) !important;
  line-height: 1.06 !important;
}

.jci-mag-prefooter {
  margin-top: clamp(56px, 7vw, 92px) !important;
}

@media (max-width: 960px) {
  .jci-mag-home-authority__proof {
    grid-template-columns: 1fr !important;
  }

  .jci-mag-home-program-grid,
  .jci-magazine-category-programs__grid,
  .jci-article-next-step__grid {
    grid-template-columns: 1fr !important;
  }

  .jci-magazine-category .jci-magazine-page__title,
  .jci-magazine-category .jci-magazine-page__intro,
  .jci-magazine-category .jci-magazine-card__title,
  .jci-magazine-category .jci-magazine-card__excerpt {
    max-width: none !important;
  }

  .jci-magazine-category #jci-category-all .jci-magazine-category-section__heading {
    margin-bottom: 18px !important;
  }
}

body.jci-magazine-latest-news-page .jci-magazine-category-related {
  padding-top: clamp(56px, 7vw, 92px) !important;
  border-top: 1px solid rgba(7, 24, 58, 0.10) !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
  background: transparent !important;
}

body.jci-magazine-latest-news-page .jci-magazine-category-related__links {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: 0 !important;
  background: #fff !important;
  border: 1px solid rgba(7, 24, 58, 0.12) !important;
}

body.jci-magazine-latest-news-page .jci-magazine-category-related__links a {
  display: grid !important;
  position: relative !important;
  gap: 16px !important;
  min-height: 168px !important;
  padding: 28px 28px 24px !important;
  background: #fff !important;
  border: 0 !important;
  border-right: 1px solid rgba(7, 24, 58, 0.10) !important;
  border-bottom: 1px solid rgba(7, 24, 58, 0.10) !important;
  color: #111827 !important;
  text-decoration: none !important;
}

body.jci-magazine-latest-news-page .jci-magazine-category-related__links a:last-child {
  border-right: 0 !important;
}

body.jci-magazine-latest-news-page .jci-magazine-category-related__links a::after {
  content: '→' !important;
  position: absolute !important;
  right: 24px !important;
  bottom: 22px !important;
  color: #1556ff !important;
  font-weight: 800 !important;
}

body.jci-magazine-latest-news-page .jci-magazine-category-related__links span {
  max-width: 15ch !important;
  margin: 0 !important;
  color: #07183a !important;
  font-size: clamp(20px, 1.55vw, 27px) !important;
  font-weight: 700 !important;
  letter-spacing: normal !important;
  line-height: 1.06 !important;
}

body.jci-magazine-latest-news-page .jci-magazine-category-related__links small {
  display: block !important;
  align-self: end !important;
  margin-top: auto !important;
  color: #53627a !important;
  font-size: 14px !important;
  font-weight: 500 !important;
  letter-spacing: normal !important;
  line-height: 1.55 !important;
  text-transform: none !important;
}

body.jci-magazine-latest-news-page .jci-magazine-category-related__links a:last-child {
  border-right: 0 !important;
}

/* 2026-07-02 latest news parity correction. */
body.jci-magazine-latest-news-page .jci-magazine-category-section::after,
body.jci-magazine-latest-news-page .jci-magazine-category-section:not(:first-of-type)::after {
  content: none !important;
  display: none !important;
}

body.jci-magazine-latest-news-page .jci-magazine-category-programs,
body.jci-magazine-latest-news-page .jci-magazine-category-related {
  margin-left: 0 !important;
  margin-right: 0 !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
  background: transparent !important;
}

body.jci-magazine-latest-news-page #jci-latest-all {
  display: flex !important;
  flex-direction: column !important;
  align-items: stretch !important;
}

body.jci-magazine-latest-news-page #jci-latest-all .jci-magazine-category-section__heading,
body.jci-magazine-latest-news-page #jci-latest-all .jci-magazine-grid {
  width: 100% !important;
  max-width: 100% !important;
}

body.jci-magazine-latest-news-page #jci-latest-all .jci-magazine-category-section__heading {
  position: static !important;
  margin-bottom: 24px !important;
}

body.jci-magazine-latest-news-page #jci-latest-all .jci-magazine-grid {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  column-gap: clamp(32px, 4vw, 52px) !important;
  row-gap: clamp(46px, 5vw, 68px) !important;
  margin-top: 0 !important;
}

body.jci-magazine-latest-news-page .jci-magazine-category .jci-magazine-pagination {
  grid-column: 2 !important;
}

body.jci-magazine-latest-news-page .jci-magazine-category-related__links {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: 0 !important;
  border-top: 1px solid #cfd4da !important;
  border-left: 1px solid #d8dde4 !important;
  background: #fff !important;
}

body.jci-magazine-latest-news-page .jci-magazine-category-related__links a {
  display: grid !important;
  gap: 16px !important;
  min-height: 150px !important;
  padding: 24px !important;
  background: #fff !important;
  border-right: 1px solid #d8dde4 !important;
  border-bottom: 1px solid #d8dde4 !important;
  color: #111827 !important;
  text-decoration: none !important;
}

body.jci-magazine-latest-news-page .jci-magazine-category-related__links span {
  max-width: none !important;
  margin: 0 !important;
  color: #111827 !important;
  font-family: "DM Sans", "Helvetica Neue", Arial, sans-serif !important;
  font-size: clamp(23px, 1.9vw, 31px) !important;
  font-weight: 400 !important;
  letter-spacing: -0.05em !important;
  line-height: 1.05 !important;
  text-transform: none !important;
}

body.jci-magazine-latest-news-page .jci-magazine-category-related__links small {
  align-self: end !important;
  margin-top: auto !important;
  color: #53627a !important;
  font-size: 14px !important;
  font-weight: 500 !important;
  letter-spacing: normal !important;
  line-height: 1.55 !important;
  text-transform: none !important;
}

body.jci-magazine-latest-news-page .jci-mag-home__closing {
  padding: clamp(72px, 9vw, 112px) 0 !important;
  border-top: 1px solid var(--jci-mag-border) !important;
  background: #ffffff !important;
}

body.jci-magazine-latest-news-page .jci-mag-home__closing .jci-mag-home__actions {
  margin-top: 24px !important;
}

body.jci-magazine-latest-news-page .jci-mag-home__closing .jci-mag-home-button {
  min-height: 44px !important;
  padding: 0 18px !important;
}

body.jci-magazine-latest-news-page .jci-mag-home__closing .jci-mag-home-link {
  color: var(--jci-mag-blue, #1a4fd7) !important;
}

/* Single article final polish. */
body.single-post .jci-article {
  --jci-reading-width: 760px;
  --jci-rail-width: 302px;
  padding-top: 158px !important;
}

body.single-post .jci-article__breadcrumb {
  width: min(1280px, calc(100% - 80px)) !important;
  margin: 0 auto clamp(40px, 5vw, 72px) !important;
  color: #566172 !important;
  font-size: clamp(13px, 1vw, 16px) !important;
  line-height: 1.45 !important;
}

body.single-post .jci-article__header {
  margin-bottom: 34px !important;
}

body.single-post .jci-article__header h1 {
  max-width: 18ch !important;
  font-size: clamp(42px, 4vw, 60px) !important;
  font-weight: 760 !important;
  line-height: 0.96 !important;
  letter-spacing: -0.038em !important;
}

body.single-post .jci-article__standfirst {
  max-width: 54rem !important;
  font-size: clamp(18px, 1.3vw, 21px) !important;
  line-height: 1.54 !important;
  font-weight: 450 !important;
  color: #38465f !important;
}

body.single-post .jci-article__content {
  font-size: clamp(14px, 0.88vw, 15px) !important;
  line-height: 1.88 !important;
}

body.single-post .jci-article__content p {
  max-width: 54ch !important;
}

body.single-post .jci-article__content h2 {
  font-size: clamp(24px, 2.05vw, 32px) !important;
  line-height: 1.08 !important;
  letter-spacing: -0.03em !important;
}

body.single-post .jci-article__content h3 {
  font-size: clamp(19px, 1.55vw, 24px) !important;
  line-height: 1.12 !important;
  letter-spacing: -0.024em !important;
}

body.single-post .jci-article__content .wp-caption,
body.single-post .jci-article__content .wp-block-image,
body.single-post .jci-article__content figure {
  width: 100% !important;
  max-width: 100% !important;
}

body.single-post .jci-article__content .wp-caption-text,
body.single-post .jci-article__content figcaption {
  width: 100% !important;
  max-width: 100% !important;
}

body.single-post .jci-article__body-grid {
  gap: 40px !important;
}

body.single-post .jci-article__rail-inner {
  gap: 24px !important;
}

body.single-post .jci-article__toc a {
  font-size: 13px !important;
  padding: 7px 8px 7px 12px !important;
}

body.single-post .jci-article__related {
  margin-bottom: 18px !important;
}

body.single-post .jci-article-next-step {
  margin: 26px 0 34px !important;
  padding: 28px 28px 30px !important;
}

body.single-post .jci-article-next-step__kicker {
  color: var(--jci-editorial-accent) !important;
}

body.single-post .jci-article-next-step h2 {
  max-width: 20ch !important;
  font-size: clamp(22px, 1.95vw, 30px) !important;
  line-height: 1.08 !important;
}

body.single-post .jci-article-next-step__grid {
  gap: 16px !important;
}

body.single-post .jci-article-next-step__grid a {
  min-height: 152px !important;
  padding: 20px 20px 18px !important;
  border: 1px solid rgba(4, 28, 64, 0.10) !important;
  background: #fff !important;
  align-content: start !important;
  gap: 8px !important;
}

body.single-post .jci-article-next-step__grid span {
  font-size: clamp(17px, 1.35vw, 21px) !important;
  line-height: 1.12 !important;
}

body.single-post .jci-article-next-step__grid small {
  font-size: 13px !important;
  line-height: 1.5 !important;
}

body.single-post .jci-article__post-nav {
  margin-top: clamp(24px, 3vw, 44px) !important;
  padding-top: 0 !important;
  border-top: 0 !important;
}

body.single-post .jci-article__post-nav-item {
  border-top: 1px solid rgba(176, 188, 207, 0.9) !important;
}

body.single-post .jci-article__post-nav-title {
  max-width: 18ch !important;
  font-size: clamp(15px, 1.15vw, 18px) !important;
  line-height: 1.12 !important;
  letter-spacing: -0.02em !important;
}

body.single-post .jci-article__toc a.is-active,
body.single-post .jci-article__toc a[aria-current="true"],
body.single-post .jci-article__toc li.is-sub a.is-active,
body.single-post .jci-article__toc li.is-sub a[aria-current="true"] {
  color: #3f516e !important;
  font-weight: 400 !important;
  background: rgba(26, 79, 215, 0.10) !important;
}

body.single-post .jci-mag-home__closing {
  padding: clamp(72px, 9vw, 112px) 0 !important;
  border-top: 1px solid var(--jci-mag-border) !important;
  background: #ffffff !important;
}

body.single-post .jci-mag-home__closing .jci-mag-home__actions {
  margin-top: 24px !important;
}

body.single-post .jci-mag-home__closing .jci-mag-home-button {
  min-height: 44px !important;
  padding: 0 18px !important;
}

body.single-post .jci-mag-home__closing .jci-mag-home-link {
  color: var(--jci-mag-blue, #1a4fd7) !important;
}
