@charset "UTF-8";
@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url("../fonts/manrope-latin-400-800.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Newsreader";
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url("../fonts/newsreader-latin-400-800.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Patrick Hand";
  font-style: normal;
  font-weight: 400;
  font-display: block;
  src: url("../fonts/patrick-hand-latin-400.woff2") format("woff2");
  unicode-range: U+0020-007E, U+00A0;
}
:root {
  --jtb-yellow: #ffe600;
  --jtb-black: #111;
  --jtb-white: #fff;
  --jtb-grey-bg: #f5f5f3;
  --jtb-text: #111;
  --jtb-text-muted: #6e6e6b;
  --jtb-rule: #e4e4e0;
  --jtb-font: "Manrope", Arial, sans-serif;
  --jtb-font-heading: "Newsreader", Georgia, serif;
  --jtb-font-logo: "Patrick Hand", "Segoe Script", cursive;
  --jtb-fs-eyebrow: .875rem;
  --jtb-fs-small: .875rem;
  --jtb-fs-nav: .9375rem;
  --jtb-fs-body: 1.0625rem;
  --jtb-fs-logo: 1.4375rem;
  --jtb-fs-h3: 1.25rem;
  --jtb-fs-h2: clamp(1.5rem, 1rem + 1.4vw, 2rem);
  --jtb-fs-h1: clamp(2.25rem, .25rem + 5.4vw, 5rem);
  --jtb-lh-tight: 1.14;
  --jtb-lh-heading: 1.22;
  --jtb-lh-body: 1.65;
  --jtb-tracking-eyebrow: .18em;
  --jtb-tracking-action: .12em;
  --jtb-space-1: .5rem;
  --jtb-space-2: 1rem;
  --jtb-space-3: 1.5rem;
  --jtb-space-4: 2rem;
  --jtb-space-5: 3rem;
  --jtb-space-6: 4.5rem;
  --jtb-space-7: 6rem;
  --jtb-container: 1120px;
  --jtb-gutter: 1.5rem;
  --jtb-measure-hero: 640px;
  --jtb-measure-hero-lead: 700px;
  --jtb-measure-lead: 720px;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--jtb-white);
  color: var(--jtb-text);
  font-family: var(--jtb-font);
  font-size: var(--jtb-fs-body);
  line-height: var(--jtb-lh-body);
  -webkit-font-smoothing: antialiased;
}

img,
svg,
video {
  max-width: 100%;
  height: auto;
}

h1,
h2,
h3,
h4 {
  margin: 0 0 var(--jtb-space-3);
  color: var(--jtb-black);
  font-family: var(--jtb-font-heading);
  font-weight: 400;
  font-optical-sizing: auto;
  line-height: var(--jtb-lh-heading);
}

h1 {
  font-size: var(--jtb-fs-h1);
  line-height: var(--jtb-lh-tight);
}

h2 {
  font-size: var(--jtb-fs-h2);
}

h3 {
  font-size: var(--jtb-fs-h3);
}

p {
  margin: 0 0 var(--jtb-space-3);
}

a {
  color: var(--jtb-black);
  text-decoration-color: var(--jtb-rule);
  text-underline-offset: 0.2em;
}
a:hover, a:focus-visible {
  text-decoration-color: var(--jtb-yellow);
}

:focus-visible {
  outline: 2px solid var(--jtb-black);
  outline-offset: 3px;
}

hr {
  height: 1px;
  margin: var(--jtb-space-6) 0;
  border: 0;
  background: var(--jtb-rule);
}

.container {
  width: 100%;
  max-width: calc(var(--jtb-container) + var(--jtb-gutter) * 2);
  margin: 0 auto;
  padding: 0 var(--jtb-gutter);
}

.screen-reader-text {
  position: absolute !important;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}

.skip-link {
  position: absolute;
  top: -100px;
  left: var(--jtb-gutter);
  z-index: 100;
  padding: var(--jtb-space-1) var(--jtb-space-2);
  background: var(--jtb-yellow);
  color: var(--jtb-black);
  text-decoration: none;
}
.skip-link:focus {
  top: var(--jtb-space-1);
}

.eyebrow {
  display: block;
  color: var(--jtb-text-muted);
  font-family: var(--jtb-font);
  font-size: var(--jtb-fs-eyebrow);
  letter-spacing: var(--jtb-tracking-eyebrow);
  line-height: 1.5;
  text-transform: uppercase;
}

.link-action {
  display: inline-block;
  border-bottom: 3px solid var(--jtb-yellow);
  padding-bottom: 0.2rem;
  color: var(--jtb-black);
  font-size: var(--jtb-fs-small);
  font-weight: 600;
  letter-spacing: var(--jtb-tracking-action);
  text-decoration: none;
  text-transform: uppercase;
}

.link-arrow {
  color: var(--jtb-text);
  font-size: var(--jtb-fs-small);
  text-decoration: none;
}
.link-arrow:hover, .link-arrow:focus-visible {
  text-decoration: underline;
  text-decoration-color: var(--jtb-yellow);
}

.rule-accent {
  width: 44px;
  height: 4px;
  margin: var(--jtb-space-4) auto 0;
  border: 0;
  background: var(--jtb-yellow);
}

.button {
  display: inline-block;
  border: 0;
  padding: 0.85rem 1.6rem;
  background: var(--jtb-black);
  color: var(--jtb-white);
  font-family: var(--jtb-font);
  font-size: var(--jtb-fs-small);
  font-weight: 600;
  letter-spacing: var(--jtb-tracking-action);
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
}
.button:hover, .button:focus-visible {
  background: var(--jtb-yellow);
  color: var(--jtb-black);
}

.reveal {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}

.site-logo-heading {
  min-width: 0;
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: 1;
}

.site-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.35em;
  min-width: 0;
  max-width: 100%;
  color: var(--jtb-black);
  font-family: var(--jtb-font-logo);
  font-size: var(--jtb-fs-logo);
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
}

.site-logo__mark {
  flex: none;
  width: 0.82em;
  height: 0.95em;
}

.site-logo__name {
  padding-top: 0.1em;
}

.site-header {
  background: var(--jtb-white);
}

.site-header__inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--jtb-space-3);
  border-bottom: 1px solid var(--jtb-rule);
  padding: var(--jtb-space-3) 0;
}

.menu-toggle {
  display: none;
  flex: none;
  border: 0;
  padding: 0.35rem;
  background: none;
  color: var(--jtb-black);
  cursor: pointer;
}
.menu-toggle svg {
  display: block;
  flex: none;
  width: 26px;
  height: 26px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: var(--jtb-space-4);
  margin: 0;
  padding: 0;
  list-style: none;
}
.nav-menu a {
  display: inline-block;
  border-bottom: 4px solid transparent;
  padding-bottom: 0.25rem;
  color: var(--jtb-text);
  font-size: var(--jtb-fs-nav);
  text-decoration: none;
}
.nav-menu a:hover, .nav-menu a:focus-visible {
  border-bottom-color: var(--jtb-rule);
}
.nav-menu .current-menu-item > a,
.nav-menu .current_page_item > a,
.nav-menu .current-menu-parent > a,
.nav-menu .current_page_parent > a,
.nav-menu .current-menu-ancestor > a {
  border-bottom-color: var(--jtb-yellow);
}

@media (max-width: 767px) {
  .menu-toggle {
    display: inline-flex;
  }
  .primary-nav {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    z-index: 20;
    display: none;
    border-bottom: 1px solid var(--jtb-rule);
    padding: var(--jtb-space-2) 0 var(--jtb-space-3);
    background: var(--jtb-white);
  }
  .primary-nav.is-open {
    display: block;
  }
  .nav-menu {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--jtb-space-2);
  }
}
.site-footer {
  padding-bottom: var(--jtb-space-5);
  background: var(--jtb-white);
}

.site-footer__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--jtb-space-4);
  border-top: 1px solid var(--jtb-rule);
  padding-top: var(--jtb-space-4);
}

.site-footer__brand .site-logo {
  font-size: 1.3125rem;
}

.site-footer__nav {
  flex: 1 1 auto;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: var(--jtb-space-4);
  margin: 0;
  padding: 0;
  list-style: none;
}
.footer-links a {
  display: inline-flex;
  align-items: center;
  color: var(--jtb-text);
  font-size: var(--jtb-fs-small);
  font-weight: 600;
  gap: 0.35rem;
  text-decoration: none;
}
.footer-links a:hover, .footer-links a:focus-visible {
  text-decoration: underline;
  text-decoration-color: var(--jtb-yellow);
  text-underline-offset: 0.3em;
}

.social-icon {
  width: 16px;
  height: 16px;
}

.site-footer__inner--home {
  flex-wrap: nowrap;
  border-top: 0;
  padding-top: var(--jtb-space-4);
}
.site-footer__inner--home .site-footer__home-meta {
  flex: none;
}
.site-footer__inner--home .site-footer__copy,
.site-footer__inner--home .site-footer__credit {
  margin: 0;
  color: var(--jtb-text-muted);
  font-size: var(--jtb-fs-small);
  line-height: 1.6;
}
.site-footer__inner--home .site-footer__credit a {
  color: inherit;
}
.site-footer__inner--home .site-footer__nav {
  flex: 0 1 auto;
}
.site-footer__inner--home .footer-links {
  justify-content: flex-end;
  gap: var(--jtb-space-3);
}
.site-footer__inner--home .footer-links a {
  font-weight: 400;
}

.site-footer__meta {
  text-align: right;
}
.site-footer__meta p {
  margin: 0;
  color: var(--jtb-text-muted);
  font-size: var(--jtb-fs-small);
  line-height: 1.6;
}
.site-footer__meta a {
  color: inherit;
}

@media (max-width: 767px) {
  .site-footer__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--jtb-space-3);
  }
  .footer-links {
    justify-content: flex-start;
    gap: var(--jtb-space-3);
  }
  .site-footer__meta {
    text-align: left;
  }
  .site-footer__inner--home {
    align-items: flex-start;
    gap: var(--jtb-space-2);
    max-width: 280px;
    margin: 0 auto;
    padding-top: var(--jtb-space-3);
  }
  .site-footer__inner--home .site-footer__nav {
    width: 100%;
  }
  .site-footer__inner--home .footer-links {
    display: grid;
    grid-template-columns: repeat(4, max-content);
    justify-content: start;
    gap: 0.65rem 1rem;
  }
  .site-footer--home {
    padding-bottom: var(--jtb-space-3);
  }
  .site-footer--read .site-footer__inner {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: start;
    gap: var(--jtb-space-2);
    max-width: 260px;
    margin: 0 auto;
    border-top: 0;
    padding-top: var(--jtb-space-2);
  }
  .site-footer--read .site-footer__brand {
    grid-column: 1;
    grid-row: 1;
  }
  .site-footer--read .site-footer__meta {
    grid-column: 2;
    grid-row: 1;
    max-width: 115px;
    font-size: 0.5rem;
    text-align: right;
  }
  .site-footer--read .site-footer__meta p {
    font-size: 0.5rem;
  }
  .site-footer--read .site-footer__meta .site-footer__credit {
    font-size: 0.375rem;
    white-space: nowrap;
  }
  .site-footer--read .site-footer__nav {
    grid-column: 1/-1;
    grid-row: 2;
    width: 100%;
    border-top: 1px solid var(--jtb-rule);
    padding-top: var(--jtb-space-2);
  }
  .site-footer--read .footer-links {
    display: grid;
    grid-template-columns: repeat(4, max-content);
    justify-content: space-between;
    gap: 0.75rem;
  }
  .site-footer--read .footer-links a {
    font-size: 0.625rem;
  }
}
.hero__inner {
  border-bottom: 1px solid var(--jtb-rule);
  padding-block: clamp(3rem, 6vw, 6rem) clamp(2.5rem, 5vw, 4.5rem);
  text-align: center;
}

.hero__eyebrow {
  margin: 0 0 var(--jtb-space-2);
}

.hero__title {
  max-width: var(--jtb-measure-hero);
  margin: 0 auto;
  font-size: var(--jtb-fs-h1);
  line-height: var(--jtb-lh-tight);
}

.hero__lead {
  max-width: var(--jtb-measure-hero-lead);
  margin: var(--jtb-space-3) auto 0;
  color: var(--jtb-text-muted);
  font-size: clamp(1.1875rem, 0.85rem + 0.6vw, 1.375rem);
}

.section__inner {
  border-bottom: 1px solid var(--jtb-rule);
  padding-block: clamp(2.5rem, 5vw, 4rem);
}

.section__head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: var(--jtb-space-2) var(--jtb-space-4);
  margin-bottom: var(--jtb-space-4);
}

.section__title {
  margin: 0;
  font-size: var(--jtb-fs-h2);
}

.feature-card {
  display: grid;
  grid-template-columns: 55fr 45fr;
  border: 1px solid var(--jtb-rule);
}

.feature-card__body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: clamp(1.5rem, 3vw, 2.5rem);
}

.feature-card__title {
  margin: var(--jtb-space-2) 0 var(--jtb-space-3);
  font-size: var(--jtb-fs-h2);
}
.feature-card__title a {
  color: inherit;
  text-decoration: none;
}
.feature-card__title a:hover, .feature-card__title a:focus-visible {
  text-decoration: underline;
  text-decoration-color: var(--jtb-yellow);
  text-underline-offset: 0.15em;
}

.feature-card__lead {
  margin: 0 0 var(--jtb-space-4);
  color: var(--jtb-text-muted);
}

.feature-card__media {
  aspect-ratio: 3/2;
  background: var(--jtb-grey-bg);
}
.feature-card__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 767px) {
  .feature-card {
    grid-template-columns: 1fr;
  }
  .feature-card__media img {
    height: auto;
  }
}
.section--ways .section__head {
  margin-bottom: var(--jtb-space-3);
}

.ways-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--jtb-space-3);
}

.ways-card {
  border-top: 4px solid var(--jtb-black);
  padding-top: var(--jtb-space-2);
}

.ways-card__title {
  margin: 0 0 0.35rem;
  font-size: var(--jtb-fs-h3);
}

.ways-card__text {
  margin: 0;
  color: var(--jtb-text-muted);
  font-size: var(--jtb-fs-small);
  line-height: 1.55;
}

@media (max-width: 767px) {
  .section--ways .section__head {
    flex-wrap: nowrap;
    align-items: center;
    margin-bottom: var(--jtb-space-3);
  }
  .section--ways .section__title {
    max-width: 10ch;
  }
  .ways-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .ways-card {
    min-height: 8.25rem;
    border-top-width: 3px;
    padding: var(--jtb-space-2) 0 var(--jtb-space-4);
  }
  .ways-card__title {
    font-size: 1.375rem;
  }
}
.section--practical {
  padding-block: clamp(4.5rem, 9vw, 7.5rem);
}

.practical-tools {
  display: grid;
  grid-template-columns: minmax(280px, 360px) minmax(0, 1fr);
  align-items: center;
  gap: clamp(3rem, 7vw, 6rem);
  max-width: 960px;
  margin: 0 auto;
}

.practical-tools__media {
  aspect-ratio: 4/3;
}
.practical-tools__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.practical-tools__eyebrow {
  margin-bottom: var(--jtb-space-2);
  color: var(--jtb-black);
  font-weight: 600;
}

.practical-tools__title {
  margin: 0 0 var(--jtb-space-2);
  font-size: clamp(2rem, 1.5rem + 1.25vw, 2.75rem);
}

.practical-tools__text {
  max-width: 600px;
  margin: 0 0 var(--jtb-space-2);
  color: var(--jtb-text);
  font-size: var(--jtb-fs-small);
  line-height: 1.65;
}

.newsletter-panel {
  padding: clamp(4rem, 8vw, 6rem) var(--jtb-gutter);
  background: var(--jtb-grey-bg);
}

.newsletter-panel__inner {
  max-width: 620px;
  margin: 0 auto;
  text-align: center;
}

.newsletter-panel__eyebrow {
  margin-bottom: var(--jtb-space-2);
  color: var(--jtb-black);
  font-weight: 600;
}

.newsletter-panel__title {
  margin: 0 0 var(--jtb-space-2);
  font-size: clamp(2rem, 1.5rem + 1.5vw, 2.75rem);
}

.newsletter-panel__text {
  margin: 0 0 var(--jtb-space-4);
  font-size: var(--jtb-fs-small);
}

.newsletter-form {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  border-bottom: 2px solid var(--jtb-black);
}

.newsletter-form__email,
.newsletter-form__submit {
  border: 0;
  border-radius: 0;
  background: transparent;
  font-family: var(--jtb-font);
}

.newsletter-form__email {
  min-width: 0;
  padding: 0.75rem 0;
  color: var(--jtb-text);
  font-size: var(--jtb-fs-small);
}
.newsletter-form__email::placeholder {
  color: var(--jtb-text-muted);
  opacity: 1;
}

.newsletter-form__submit {
  padding: 0.75rem 0 0.75rem var(--jtb-space-2);
  color: var(--jtb-black);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
}
.newsletter-form__submit:hover, .newsletter-form__submit:focus-visible {
  box-shadow: inset 0 -4px var(--jtb-yellow);
}

.newsletter-form__honeypot {
  position: absolute;
  left: -9999px;
}

.newsletter-panel__status {
  margin: var(--jtb-space-2) 0 0;
  font-size: var(--jtb-fs-small);
}

@media (max-width: 767px) {
  .section--practical {
    padding-block: 0 var(--jtb-space-4);
  }
  .practical-tools {
    grid-template-columns: 1fr;
    gap: var(--jtb-space-2);
    max-width: 235px;
  }
  .practical-tools__title {
    font-size: 2rem;
    line-height: 1.12;
  }
  .practical-tools__text {
    margin-bottom: var(--jtb-space-2);
    font-size: 0.75rem;
    line-height: 1.55;
  }
  .practical-tools__eyebrow,
  .practical-tools .link-action {
    font-size: 0.75rem;
  }
  .section--newsletter {
    padding-inline: var(--jtb-gutter);
  }
  .newsletter-panel {
    max-width: 264px;
    margin: 0 auto;
    padding: 2.5rem var(--jtb-space-2);
  }
  .newsletter-panel__title {
    font-size: 1.875rem;
    line-height: 1.15;
  }
  .newsletter-panel__text {
    margin-bottom: var(--jtb-space-3);
    font-size: 0.75rem;
  }
}
.read-page [hidden] {
  display: none !important;
}

.read-hero__inner {
  border-bottom: 1px solid var(--jtb-rule);
  padding-block: clamp(4.5rem, 8vw, 7rem) clamp(4rem, 7vw, 6rem);
  text-align: center;
}

.read-hero__eyebrow {
  margin: 0 0 var(--jtb-space-2);
  color: var(--jtb-black);
  font-weight: 600;
}

.read-hero__title {
  max-width: 700px;
  margin: 0 auto;
  font-size: clamp(3rem, 2rem + 3.3vw, 4.75rem);
  line-height: 1.02;
}

.read-hero__lead {
  max-width: 650px;
  margin: var(--jtb-space-3) auto 0;
  color: var(--jtb-text-muted);
  font-size: 1rem;
  line-height: 1.65;
}

.read-featured__inner {
  border-bottom: 1px solid var(--jtb-rule);
  padding-block: clamp(3.5rem, 6vw, 5.5rem);
}

.read-section-head,
.library-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: var(--jtb-space-4);
  margin-bottom: var(--jtb-space-4);
}

.read-section-head__eyebrow,
.library-head__eyebrow {
  margin: 0 0 0.35rem;
  color: var(--jtb-black);
  font-weight: 600;
}

.read-section-head__title,
.library-head__title {
  margin: 0;
  font-size: clamp(2rem, 1.5rem + 1.2vw, 2.625rem);
}

.series-feature-card {
  display: grid;
  grid-template-columns: 58fr 42fr;
  min-height: 330px;
}

.series-feature-card__media {
  min-width: 0;
  overflow: hidden;
  background: var(--jtb-grey-bg);
}
.series-feature-card__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.series-feature-card__body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: clamp(2rem, 4vw, 4rem);
  background: var(--jtb-black);
  color: var(--jtb-white);
}

.series-feature-card__eyebrow {
  margin: 0 0 var(--jtb-space-2);
  color: var(--jtb-yellow);
  font-weight: 700;
}

.series-feature-card__title {
  max-width: 13ch;
  margin: 0 0 var(--jtb-space-2);
  color: var(--jtb-white);
  font-size: clamp(2rem, 1.5rem + 1.3vw, 2.75rem);
  line-height: 1.08;
}

.series-feature-card__text {
  max-width: 40ch;
  margin: 0 0 var(--jtb-space-2);
  color: #d8d8d4;
  font-size: var(--jtb-fs-small);
  line-height: 1.65;
}

.series-feature-card__meta {
  display: flex;
  gap: 0.5rem;
  margin: 0 0 var(--jtb-space-3);
  color: #aaa;
  font-size: 0.75rem;
}

.series-feature-card__link {
  border-bottom: 2px solid var(--jtb-yellow);
  padding-bottom: 0.2rem;
  color: var(--jtb-white);
  font-size: 0.75rem;
  font-weight: 700;
  text-decoration: none;
}

.series-navigation ol {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 0;
  padding: 0;
  list-style: none;
}
.series-navigation li {
  min-width: 0;
  border-right: 1px solid var(--jtb-rule);
  border-bottom: 1px solid var(--jtb-rule);
  padding: var(--jtb-space-2);
}
.series-navigation li:last-child {
  border-right: 0;
}
.series-navigation li.is-current {
  border-top: 4px solid var(--jtb-yellow);
  padding-top: calc(var(--jtb-space-2) - 4px);
}
.series-navigation li > a,
.series-navigation li > span:not(.series-navigation__number) {
  display: block;
  overflow: hidden;
  color: var(--jtb-text);
  font-size: 0.75rem;
  font-weight: 600;
  text-decoration: none;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.series-navigation__number {
  display: block;
  margin-bottom: 0.4rem;
  color: var(--jtb-text-muted);
  font-size: 0.6875rem;
}

.read-library__inner {
  padding-block: clamp(5rem, 9vw, 8rem);
}

.library-head {
  align-items: flex-end;
}

.library-head__text {
  max-width: 240px;
  margin: 0;
  color: var(--jtb-text-muted);
  font-size: var(--jtb-fs-small);
  line-height: 1.6;
}

.library-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: var(--jtb-space-3);
}

.library-filter {
  border: 1px solid var(--jtb-rule);
  border-radius: 999px;
  padding: 0.45rem 0.9rem;
  background: var(--jtb-white);
  color: var(--jtb-text);
  font-family: var(--jtb-font);
  font-size: 0.75rem;
  cursor: pointer;
}
.library-filter:hover, .library-filter:focus-visible {
  border-color: var(--jtb-black);
}
.library-filter.is-active {
  border-color: var(--jtb-black);
  background: var(--jtb-black);
  color: var(--jtb-white);
}

.article-library-list {
  border-top: 1px solid var(--jtb-rule);
}

.library-article {
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr) 130px 28px;
  align-items: center;
  gap: var(--jtb-space-2);
  border-bottom: 1px solid var(--jtb-rule);
  padding: var(--jtb-space-3) 0;
}

.library-article__number {
  color: var(--jtb-text-muted);
  font-size: 0.75rem;
}

.library-article__subject {
  margin: 0 0 0.2rem;
  color: var(--jtb-black);
  font-size: 0.6875rem;
  font-weight: 700;
}

.library-article__title {
  margin: 0 0 0.2rem;
  font-size: 1.375rem;
  line-height: 1.15;
}
.library-article__title a {
  color: inherit;
  text-decoration: none;
}
.library-article__title a:hover, .library-article__title a:focus-visible {
  text-decoration: underline;
  text-decoration-color: var(--jtb-yellow);
}

.library-article__excerpt {
  margin: 0;
  color: var(--jtb-text-muted);
  font-size: 0.75rem;
  line-height: 1.5;
}

.library-article__meta {
  margin: 0;
  color: var(--jtb-text-muted);
  font-size: 0.6875rem;
  line-height: 1.7;
}
.library-article__meta span {
  display: block;
}

.library-article__arrow {
  color: var(--jtb-black);
  font-size: 1rem;
  text-align: right;
  text-decoration: none;
}

.article-library-list__empty {
  margin: 0;
  border-bottom: 1px solid var(--jtb-rule);
  padding: var(--jtb-space-4) 0;
  color: var(--jtb-text-muted);
}

.read-subjects__inner {
  border-top: 1px solid var(--jtb-rule);
  padding-block: clamp(4.5rem, 8vw, 7rem);
}

.read-subjects__eyebrow {
  margin: 0 0 0.35rem;
  color: var(--jtb-black);
  font-weight: 700;
}

.read-subjects__title {
  max-width: 22ch;
  margin: 0 0 var(--jtb-space-4);
  font-size: clamp(2rem, 1.5rem + 1.4vw, 2.75rem);
  line-height: 1.05;
}

.subject-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 2px solid var(--jtb-black);
  border-bottom: 1px solid var(--jtb-black);
}

.subject-card {
  display: flex;
  min-height: 210px;
  flex-direction: column;
  align-items: flex-start;
  border-right: 1px solid var(--jtb-rule);
  padding: var(--jtb-space-2);
}
.subject-card:last-child {
  border-right: 0;
}

.subject-card__number {
  margin-bottom: var(--jtb-space-3);
  color: var(--jtb-text-muted);
  font-size: 0.6875rem;
}

.subject-card__title {
  margin: 0 0 0.5rem;
  font-size: 1.625rem;
}

.subject-card__text {
  max-width: 24ch;
  margin: 0 0 var(--jtb-space-2);
  color: var(--jtb-text-muted);
  font-size: 0.75rem;
  line-height: 1.55;
}

.subject-card__link {
  margin-top: auto;
  color: var(--jtb-black);
  font-size: 0.6875rem;
  font-weight: 700;
  text-decoration: none;
}
.subject-card__link:hover, .subject-card__link:focus-visible {
  text-decoration: underline;
  text-decoration-color: var(--jtb-yellow);
  text-underline-offset: 0.3em;
}

.read-newsletter {
  background: var(--jtb-yellow);
}

.read-newsletter__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: clamp(3rem, 8vw, 8rem);
  min-height: 210px;
  padding-block: var(--jtb-space-4);
}

.read-newsletter__eyebrow {
  margin: 0 0 0.5rem;
  color: var(--jtb-black);
  font-weight: 700;
}

.read-newsletter__title {
  max-width: 20ch;
  margin: 0;
  font-size: clamp(2rem, 1.5rem + 1vw, 2.5rem);
  line-height: 1.03;
}

.read-newsletter__text {
  margin: 0 0 var(--jtb-space-2);
  font-size: 0.8125rem;
}

.read-newsletter-form {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  border-bottom: 2px solid var(--jtb-black);
}

.read-newsletter-form__email,
.read-newsletter-form__submit {
  min-width: 0;
  border: 0;
  border-radius: 0;
  font-family: var(--jtb-font);
}

.read-newsletter-form__email {
  padding: 0.75rem 0;
  background: transparent;
  color: var(--jtb-black);
  font-size: 0.75rem;
}
.read-newsletter-form__email::placeholder {
  color: rgba(17, 17, 17, 0.55);
  opacity: 1;
}

.read-newsletter-form__submit {
  padding: 0.75rem var(--jtb-space-2);
  background: var(--jtb-black);
  color: var(--jtb-white);
  font-size: 0.6875rem;
  font-weight: 700;
  cursor: pointer;
}
.read-newsletter-form__submit:hover, .read-newsletter-form__submit:focus-visible {
  background: #2b2b2b;
}

.read-newsletter__legal,
.read-newsletter__status {
  margin: 0.5rem 0 0;
  font-size: 0.5625rem;
  line-height: 1.5;
}

@media (max-width: 767px) {
  .read-hero__inner {
    padding-block: 4rem;
  }
  .read-hero__title {
    max-width: 12ch;
    font-size: 2.625rem;
  }
  .read-hero__lead {
    max-width: 30ch;
    font-size: 0.8125rem;
    line-height: 1.6;
  }
  .read-featured__inner {
    padding-block: var(--jtb-space-5) var(--jtb-space-6);
  }
  .read-section-head,
  .library-head {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--jtb-space-2);
    margin-bottom: var(--jtb-space-3);
  }
  .read-section-head__title,
  .library-head__title {
    font-size: 2rem;
  }
  .series-feature-card {
    grid-template-columns: 1fr;
    min-height: 0;
  }
  .series-feature-card__media {
    aspect-ratio: 1.5/1;
  }
  .series-feature-card__body {
    min-height: 330px;
    padding: var(--jtb-space-4) var(--jtb-space-3);
  }
  .series-feature-card__title {
    font-size: 2rem;
  }
  .series-navigation ol {
    grid-template-columns: 1fr;
  }
  .series-navigation li {
    border-right: 0;
    padding: var(--jtb-space-2) 0;
  }
  .series-navigation li.is-current {
    padding-top: calc(var(--jtb-space-2) - 4px);
  }
  .read-library__inner {
    padding-block: var(--jtb-space-6);
  }
  .library-head__text {
    max-width: 30ch;
  }
  .library-filters {
    gap: 0.45rem;
  }
  .library-filter {
    padding: 0.4rem 0.75rem;
    font-size: 0.6875rem;
  }
  .library-article {
    grid-template-columns: 26px minmax(0, 1fr) 20px;
    align-items: start;
    gap: 0.25rem var(--jtb-space-2);
    padding: var(--jtb-space-3) 0;
  }
  .library-article__number {
    grid-column: 1;
    grid-row: 1/span 2;
  }
  .library-article__body {
    grid-column: 2;
    grid-row: 1;
  }
  .library-article__meta {
    grid-column: 2;
    grid-row: 2;
  }
  .library-article__meta span {
    display: inline;
  }
  .library-article__meta span + span::before {
    content: " · ";
  }
  .library-article__arrow {
    grid-column: 3;
    grid-row: 1;
  }
  .library-article__title {
    font-size: 1.25rem;
  }
  .read-subjects__inner {
    max-width: 260px;
    margin: 0 auto;
    padding-block: var(--jtb-space-5);
  }
  .read-subjects__title {
    max-width: none;
    margin-bottom: var(--jtb-space-4);
    font-size: 1.5rem;
  }
  .subject-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .subject-card {
    min-height: 190px;
    border-bottom: 1px solid var(--jtb-rule);
    padding: var(--jtb-space-2) 0.75rem;
  }
  .subject-card:nth-child(2n) {
    border-right: 0;
  }
  .subject-card:nth-last-child(-n+2) {
    border-bottom: 0;
  }
  .subject-card__number {
    margin-bottom: var(--jtb-space-2);
  }
  .subject-card__title {
    font-size: 1.375rem;
  }
  .subject-card__text {
    font-size: 0.6875rem;
  }
  .read-newsletter {
    max-width: 258px;
    margin: 0 auto var(--jtb-space-3);
  }
  .read-newsletter__inner {
    display: block;
    min-height: 0;
    padding: var(--jtb-space-3) 0.75rem;
  }
  .read-newsletter__intro {
    margin-bottom: var(--jtb-space-3);
  }
  .read-newsletter__title {
    max-width: none;
    font-size: 1.5rem;
  }
  .read-newsletter__text {
    font-size: 0.6875rem;
  }
  .read-newsletter-form {
    grid-template-columns: 1fr;
    gap: 0.4rem;
    border-bottom: 0;
  }
  .read-newsletter-form__email {
    border-bottom: 2px solid var(--jtb-black);
  }
  .read-newsletter-form__submit {
    width: 100%;
  }
}
.shop-page .hero__inner {
  max-width: 840px;
  margin: 0 auto;
  border-bottom: 1px solid var(--jtb-rule);
  padding-block: clamp(4.5rem, 8vw, 7rem);
  text-align: center;
}
.shop-page .hero__title {
  max-width: 13ch;
}
.shop-page .hero__lead {
  max-width: 650px;
}

.shop-digital .container,
.shop-objects .container {
  border-bottom: 1px solid var(--jtb-rule);
  padding-block: clamp(4rem, 7vw, 6rem);
}

.shop-section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: var(--jtb-space-3);
  margin-bottom: var(--jtb-space-4);
}
.shop-section-head .eyebrow {
  margin-bottom: 0.5rem;
}
.shop-section-head h2 {
  margin: 0;
  font-size: clamp(2rem, 1.5rem + 1vw, 2.75rem);
}

.shop-section-head__note {
  margin: 0 0 0.5rem;
  color: var(--jtb-text-muted);
  font-size: 0.6875rem;
  letter-spacing: 0.08em;
  text-align: right;
}

.shop-system-card {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
}

.shop-system-card__media {
  min-height: 500px;
  margin: 0;
  background: var(--jtb-yellow);
}
.shop-system-card__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.shop-system-card__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  border: 1px solid var(--jtb-rule);
  border-left: 0;
  padding: clamp(2rem, 4vw, 3.5rem);
}
.shop-system-card__body .eyebrow {
  margin-bottom: var(--jtb-space-2);
}
.shop-system-card__body h3 {
  max-width: 12ch;
  margin-bottom: var(--jtb-space-2);
  font-size: clamp(2.25rem, 1.6rem + 1.5vw, 3rem);
  line-height: 1.02;
}

.shop-system-card__excerpt {
  margin-bottom: var(--jtb-space-2);
  font-size: 0.875rem;
  line-height: 1.65;
}

.shop-system-card__items {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.35rem var(--jtb-space-3);
  margin: 0 0 var(--jtb-space-3);
  padding: 0;
  font-size: 0.75rem;
  list-style: none;
}
.shop-system-card__items li::before {
  content: "— ";
}

.shop-system-card__meta {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: var(--jtb-space-2);
  border-top: 1px solid var(--jtb-rule);
  padding-block: var(--jtb-space-2);
  font-size: 0.75rem;
}

.shop-product-button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem var(--jtb-space-2);
  background: var(--jtb-black);
  color: var(--jtb-white);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}
.shop-product-button span {
  color: var(--jtb-yellow);
  font-size: 1rem;
}
.shop-product-button:hover, .shop-product-button:focus-visible {
  background: #2b2b2b;
}

.shop-object-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--jtb-space-3);
}

.shop-object-card {
  border-top: 4px solid var(--jtb-black);
  padding-top: var(--jtb-space-2);
}
.shop-object-card > p {
  margin: 0.25rem 0 var(--jtb-space-2);
  color: var(--jtb-text-muted);
  font-size: 0.75rem;
}
.shop-object-card .link-action {
  font-size: 0.6875rem;
}

.shop-object-card__media {
  aspect-ratio: 4/3;
  margin: 0 0 var(--jtb-space-2);
  overflow: hidden;
  background: var(--jtb-grey-bg);
}
.shop-object-card__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.shop-object-card__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: var(--jtb-space-2);
}
.shop-object-card__head h3 {
  margin: 0;
  font-size: 1.5rem;
}

@media (max-width: 767px) {
  .shop-page .hero__inner {
    max-width: 280px;
    padding-block: 4rem;
  }
  .shop-page .hero__title {
    font-size: 2.625rem;
  }
  .shop-page .hero__lead {
    max-width: 30ch;
    font-size: 0.8125rem;
    line-height: 1.6;
  }
  .shop-digital .container,
  .shop-objects .container {
    max-width: 280px;
    padding-inline: 0;
    padding-block: var(--jtb-space-5);
  }
  .shop-section-head {
    align-items: flex-start;
    margin-bottom: var(--jtb-space-3);
  }
  .shop-section-head h2 {
    max-width: 9ch;
    font-size: 2rem;
  }
  .shop-section-head__note {
    max-width: 10ch;
    margin-top: 1.5rem;
    font-size: 0.5625rem;
    line-height: 1.4;
  }
  .shop-system-card {
    grid-template-columns: 1fr;
  }
  .shop-system-card__media {
    min-height: 0;
    aspect-ratio: 1/1;
  }
  .shop-system-card__body {
    border: 1px solid var(--jtb-rule);
    border-top: 0;
    padding: var(--jtb-space-3);
  }
  .shop-system-card__body h3 {
    font-size: 2rem;
  }
  .shop-system-card__items {
    grid-template-columns: 1fr;
  }
  .shop-object-grid {
    grid-template-columns: 1fr;
    gap: var(--jtb-space-5);
  }
  .shop-object-card__head h3 {
    font-size: 1.375rem;
  }
}
.product-page .eyebrow {
  color: inherit;
  font-size: 0.6875rem;
  font-weight: 700;
}

.single-jtb_product .nav-menu .current_page_parent > a {
  border-bottom-color: transparent;
}
.single-jtb_product .nav-menu a[href$="/shop/"] {
  border-bottom-color: var(--jtb-yellow);
}

.product-hero {
  padding-block: clamp(3rem, 6vw, 5rem);
}

.product-hero__grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: stretch;
  max-width: 900px;
}

.product-hero__media {
  position: relative;
  min-height: 420px;
  margin: 0;
  background: var(--jtb-grey-bg);
}
.product-hero__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.product-hero__media figcaption {
  position: absolute;
  right: var(--jtb-space-3);
  bottom: var(--jtb-space-2);
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-hero__body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  border: 1px solid var(--jtb-rule);
  border-left: 0;
  padding: clamp(2rem, 4vw, 4rem);
}
.product-hero__body h1 {
  max-width: 11ch;
  margin: var(--jtb-space-2) 0;
  font-size: clamp(2.5rem, 1.75rem + 1.5vw, 3.25rem);
  line-height: 0.98;
}

.product-hero__lead {
  margin-bottom: var(--jtb-space-3);
  font-size: 0.875rem;
  line-height: 1.65;
}

.product-hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 0;
  margin: 0 0 var(--jtb-space-3);
  padding: 0;
  font-size: 0.6875rem;
  list-style: none;
}
.product-hero__meta li + li::before {
  content: "·";
  padding-inline: 0.7rem;
}

.product-hero__price {
  margin: 0 0 var(--jtb-space-2);
  font-family: var(--jtb-font-heading);
  font-size: 1.75rem;
}

.product-buy-button {
  display: inline-flex;
  min-width: 150px;
  align-items: center;
  justify-content: center;
  padding: 1rem var(--jtb-space-3);
  background: var(--jtb-black);
  color: var(--jtb-white);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}
.product-buy-button:hover, .product-buy-button:focus-visible {
  background: #2b2b2b;
}

.product-intro__inner {
  max-width: 760px;
  border-top: 1px solid var(--jtb-rule);
  padding-block: clamp(5rem, 9vw, 8rem);
  text-align: center;
}
.product-intro__inner h2 {
  margin: 0.5rem 0 var(--jtb-space-2);
  font-size: clamp(2.25rem, 1.5rem + 1.5vw, 3rem);
  line-height: 1.05;
}
.product-intro__inner > p:last-child {
  max-width: 680px;
  margin: 0 auto;
  color: var(--jtb-text-muted);
  font-size: 0.875rem;
}

.product-kit {
  padding-bottom: clamp(5rem, 9vw, 8rem);
}
.product-kit .container {
  max-width: 900px;
}

.product-section-head {
  display: grid;
  grid-template-columns: 1fr 300px;
  align-items: end;
  gap: var(--jtb-space-4);
  border-bottom: 2px solid var(--jtb-black);
  padding-bottom: var(--jtb-space-3);
}
.product-section-head h2 {
  margin: 0.5rem 0 0;
  font-size: clamp(2.25rem, 1.5rem + 1.5vw, 3rem);
}
.product-section-head > p {
  margin: 0;
  color: var(--jtb-text-muted);
  font-size: 0.75rem;
}

.product-kit-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.product-kit-card {
  grid-column: span 2;
  border-right: 1px solid var(--jtb-rule);
  border-bottom: 1px solid var(--jtb-rule);
  padding: var(--jtb-space-3);
}
.product-kit-card:nth-child(3n) {
  border-right: 0;
}
.product-kit-card:nth-child(4) {
  grid-column: 2/span 2;
}
.product-kit-card figure {
  aspect-ratio: 4/3;
  margin: 0 0 var(--jtb-space-3);
  background: var(--jtb-grey-bg);
}
.product-kit-card figure img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.product-kit-card h3 {
  margin: 0 0 0.35rem;
  font-size: 1.375rem;
}
.product-kit-card > p:last-child {
  margin: 0;
  color: var(--jtb-text-muted);
  font-size: 0.6875rem;
}

.product-kit-card__number {
  margin: 0 0 0.2rem;
  color: var(--jtb-text-muted);
  font-size: 0.5625rem;
}

.product-guide {
  padding-bottom: var(--jtb-space-6);
}

.product-guide__inner {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  align-items: center;
  gap: clamp(2rem, 7vw, 6rem);
  max-width: 800px;
  padding: clamp(2rem, 5vw, 4rem);
  background: var(--jtb-yellow);
}
.product-guide__inner figure {
  margin: 0;
}
.product-guide__inner figure img {
  display: block;
  width: 100%;
  height: auto;
}
.product-guide__inner h2 {
  max-width: 17ch;
  margin: 0.5rem 0 var(--jtb-space-2);
  font-size: 2.25rem;
  line-height: 1.08;
}
.product-guide__inner p,
.product-guide__inner li {
  font-size: 0.75rem;
}
.product-guide__inner ul {
  columns: 2;
  margin: var(--jtb-space-2) 0 0;
  padding: 0;
  list-style: none;
}

.product-connection {
  max-width: 900px;
  margin: 0 auto;
  color: var(--jtb-white);
}

.product-connection__inner {
  padding: clamp(3rem, 6vw, 5rem);
  background: var(--jtb-black);
}
.product-connection__inner h2 {
  margin: 0.5rem 0 var(--jtb-space-4);
  color: var(--jtb-white);
  font-size: 2.5rem;
}
.product-connection__inner ol {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  border-block: 1px solid #383838;
  list-style: none;
}
.product-connection__inner li {
  display: flex;
  min-height: 120px;
  flex-direction: column;
  justify-content: center;
  border-right: 1px solid #383838;
  padding: var(--jtb-space-2);
}
.product-connection__inner li:last-child {
  border-right: 0;
}
.product-connection__inner li span {
  margin-bottom: var(--jtb-space-2);
  color: var(--jtb-yellow);
  font-size: 0.5625rem;
}
.product-connection__inner li strong {
  color: var(--jtb-white);
  font-family: var(--jtb-font-heading);
  font-size: 1rem;
  font-weight: 400;
}
.product-connection__inner li small {
  color: #aaa;
  font-size: 0.5625rem;
}

.product-connection__note {
  margin: var(--jtb-space-2) 0 0;
  color: #aaa;
  font-size: 0.6875rem;
}

.product-details {
  padding-block: clamp(5rem, 9vw, 8rem);
}

.product-details__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 8vw, 7rem);
  max-width: 760px;
}
.product-details__grid h2 {
  margin: 0.5rem 0 0;
  font-size: 2.5rem;
  line-height: 1.05;
}
.product-details__grid dl {
  margin: 0;
}
.product-details__grid dl div {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: var(--jtb-space-2);
  border-top: 1px solid var(--jtb-rule);
  padding: 0.8rem 0;
}
.product-details__grid dt {
  font-size: 0.5625rem;
  font-weight: 700;
}
.product-details__grid dd {
  margin: 0;
  color: var(--jtb-text-muted);
  font-size: 0.6875rem;
}

.product-printing {
  padding-bottom: clamp(5rem, 9vw, 8rem);
}

.product-printing__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: clamp(3rem, 8vw, 7rem);
  max-width: 760px;
}
.product-printing__grid figure {
  margin: 0;
  background: var(--jtb-grey-bg);
}
.product-printing__grid figure img {
  display: block;
  width: 100%;
  height: auto;
}
.product-printing__grid h2 {
  margin: 0.5rem 0 var(--jtb-space-2);
  font-size: 2.25rem;
  line-height: 1.08;
}
.product-printing__grid p {
  font-size: 0.75rem;
}

.product-printing__note {
  border-left: 4px solid var(--jtb-yellow);
  padding-left: var(--jtb-space-2);
  font-size: 0.625rem !important;
  font-weight: 600;
}

.product-faq {
  padding-bottom: clamp(5rem, 9vw, 8rem);
}
.product-faq .container {
  max-width: 900px;
}
.product-faq h2 {
  margin: 0.5rem 0 var(--jtb-space-3);
  font-size: 2.5rem;
}

.product-faq__items {
  border-top: 2px solid var(--jtb-black);
}
.product-faq__items details {
  border-bottom: 1px solid var(--jtb-rule);
}
.product-faq__items summary {
  padding: var(--jtb-space-2) 0;
  font-size: 0.75rem;
  cursor: pointer;
}
.product-faq__items p {
  margin: 0;
  padding: 0 0 var(--jtb-space-2);
  color: var(--jtb-text-muted);
  font-size: 0.6875rem;
}

.product-final-cta {
  max-width: 900px;
  margin: 0 auto;
  color: var(--jtb-white);
}

.product-final-cta__inner {
  display: flex;
  min-height: 210px;
  align-items: center;
  justify-content: space-between;
  gap: var(--jtb-space-4);
  padding: clamp(2rem, 5vw, 4rem);
  background: var(--jtb-black);
}
.product-final-cta__inner h2 {
  max-width: 15ch;
  margin: 0.5rem 0 0;
  color: var(--jtb-white);
  font-size: 2.5rem;
  line-height: 1.05;
}

.product-buy-button--yellow {
  background: var(--jtb-yellow);
  color: var(--jtb-black);
}
.product-buy-button--yellow:hover, .product-buy-button--yellow:focus-visible {
  background: #fff16a;
}

.product-page .read-newsletter,
.single-jtb_product .site-footer .container {
  max-width: 900px;
  margin-inline: auto;
}

@media (max-width: 767px) {
  .product-hero {
    padding-block: var(--jtb-space-3) var(--jtb-space-5);
  }
  .product-hero__grid,
  .product-details__grid,
  .product-printing__grid {
    grid-template-columns: 1fr;
    max-width: 280px;
    padding-inline: 0;
  }
  .product-hero__media {
    min-height: 0;
    aspect-ratio: 4/3;
  }
  .product-hero__body {
    border: 1px solid var(--jtb-rule);
    border-top: 0;
    padding: var(--jtb-space-3);
  }
  .product-hero__body h1 {
    font-size: 2.25rem;
  }
  .product-buy-button {
    width: 100%;
  }
  .product-intro__inner {
    max-width: 280px;
    padding-inline: 0;
    padding-block: var(--jtb-space-5);
  }
  .product-intro__inner h2 {
    font-size: 2rem;
  }
  .product-intro__inner > p:last-child {
    font-size: 0.75rem;
  }
  .product-kit {
    padding-bottom: var(--jtb-space-5);
  }
  .product-kit .container,
  .product-faq .container {
    max-width: 280px;
    padding-inline: 0;
  }
  .product-section-head {
    grid-template-columns: 1fr;
    gap: var(--jtb-space-2);
  }
  .product-section-head h2 {
    font-size: 2rem;
  }
  .product-kit-grid {
    grid-template-columns: 1fr;
  }
  .product-kit-card,
  .product-kit-card:nth-child(4) {
    grid-column: auto;
    border-right: 0;
    padding: var(--jtb-space-3) 0;
  }
  .product-guide {
    padding-bottom: var(--jtb-space-4);
  }
  .product-guide__inner {
    grid-template-columns: 1fr;
    gap: var(--jtb-space-3);
    max-width: 280px;
    padding: var(--jtb-space-3);
  }
  .product-guide__inner figure {
    max-width: 150px;
    margin: 0 auto;
  }
  .product-guide__inner h2 {
    font-size: 1.75rem;
  }
  .product-guide__inner ul {
    columns: 1;
  }
  .product-connection {
    max-width: 280px;
    margin: 0 auto;
  }
  .product-connection__inner {
    padding: var(--jtb-space-3);
  }
  .product-connection__inner h2 {
    font-size: 1.75rem;
  }
  .product-connection__inner ol {
    grid-template-columns: 1fr;
  }
  .product-connection__inner li {
    min-height: 78px;
    border-right: 0;
    border-bottom: 1px solid #383838;
  }
  .product-connection__inner li:last-child {
    border-bottom: 0;
  }
  .product-details {
    padding-block: var(--jtb-space-5);
  }
  .product-details__grid,
  .product-printing__grid {
    gap: var(--jtb-space-3);
  }
  .product-details__grid h2,
  .product-printing__grid h2 {
    font-size: 2rem;
  }
  .product-details__grid dl div {
    grid-template-columns: 92px 1fr;
  }
  .product-printing {
    padding-bottom: var(--jtb-space-5);
  }
  .product-faq {
    padding-bottom: var(--jtb-space-5);
  }
  .product-faq h2 {
    font-size: 2rem;
  }
  .product-final-cta {
    max-width: 280px;
    margin: 0 auto;
  }
  .product-final-cta__inner {
    display: block;
    min-height: 0;
    padding: var(--jtb-space-3);
  }
  .product-final-cta__inner h2 {
    margin-bottom: var(--jtb-space-3);
    font-size: 1.75rem;
  }
  .product-page .read-newsletter {
    max-width: 258px;
    margin-top: 0;
  }
}
.article-hero__inner {
  max-width: 860px;
  margin: 0 auto;
  padding-block: clamp(4rem, 8vw, 7rem) clamp(3rem, 6vw, 5rem);
  text-align: center;
}

.article-hero__eyebrow {
  margin: 0 0 var(--jtb-space-2);
  color: var(--jtb-black);
  font-weight: 700;
}

.article-hero__title {
  max-width: 12ch;
  margin: 0 auto var(--jtb-space-2);
  font-size: clamp(3.25rem, 2rem + 3.5vw, 5.25rem);
  line-height: 0.98;
}

.article-hero__lead {
  max-width: 640px;
  margin: 0 auto var(--jtb-space-3);
  color: var(--jtb-text-muted);
  font-family: var(--jtb-font-heading);
  font-size: 1.25rem;
  line-height: 1.45;
}

.article-hero__meta {
  margin: 0;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.article-featured {
  max-width: 900px;
  margin: 0 auto;
}
.article-featured img {
  display: block;
  width: 100%;
  height: auto;
}

.article-reading {
  display: grid;
  grid-template-columns: 180px minmax(0, 680px);
  justify-content: center;
  gap: clamp(2.5rem, 7vw, 6rem);
  padding-block: clamp(4rem, 8vw, 7rem);
}

.article-toc {
  align-self: start;
  border-top: 4px solid var(--jtb-yellow);
  padding-top: var(--jtb-space-2);
}
.article-toc h2 {
  margin: 0 0 0.5rem;
  font-family: var(--jtb-font);
  font-size: 0.6875rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.article-toc ol {
  margin: 0;
  padding: 0;
  list-style: none;
}
.article-toc a {
  color: var(--jtb-text);
  font-size: 0.6875rem;
  line-height: 1.75;
  text-decoration: none;
}
.article-toc a:hover, .article-toc a:focus-visible {
  text-decoration: underline;
  text-decoration-color: var(--jtb-yellow);
}

.article-body {
  min-width: 0;
  color: var(--jtb-black);
  font-family: var(--jtb-font-heading);
  font-size: 1.125rem;
  line-height: 1.75;
}
.article-body > p {
  margin: 0 0 var(--jtb-space-4);
}
.article-body > h2 {
  margin: var(--jtb-space-6) 0 var(--jtb-space-2);
  font-family: var(--jtb-font);
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.2;
}
.article-body > h2:first-of-type {
  margin-top: var(--jtb-space-5);
}
.article-body .has-drop-cap::first-letter {
  float: left;
  margin: 0.05em 0.08em 0 0;
  box-shadow: inset 0 -0.48em var(--jtb-yellow);
  font-family: var(--jtb-font-heading);
  font-size: 4.5rem;
  line-height: 0.8;
}
.article-body .jtb-pullquote {
  margin: var(--jtb-space-5) 0;
  border-left: 8px solid var(--jtb-yellow);
  padding: 0.5rem 0 0.5rem var(--jtb-space-3);
}
.article-body .jtb-pullquote p {
  max-width: 24ch;
  margin: 0;
  font-size: 1.75rem;
  line-height: 1.25;
}
.article-body #the-model {
  display: none;
}
.article-body .jtb-model {
  margin: var(--jtb-space-5) 0;
  border: 1px solid var(--jtb-rule);
  padding: var(--jtb-space-4);
  text-align: center;
}
.article-body .jtb-model__label {
  margin: 0 0 var(--jtb-space-3);
  font-family: var(--jtb-font);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.article-body .jtb-model__flow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--jtb-space-2);
  margin: 0;
  font-family: var(--jtb-font);
  font-size: 0.6875rem;
}
.article-body .jtb-model__flow span {
  padding: 0.75rem var(--jtb-space-2);
  background: var(--jtb-grey-bg);
}
.article-body .jtb-model__flow b {
  font-weight: 400;
}

.article-share {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--jtb-space-3);
  margin-top: var(--jtb-space-6);
  border-top: 1px solid var(--jtb-rule);
  padding-top: var(--jtb-space-3);
  font-family: var(--jtb-font);
}
.article-share strong,
.article-share a,
.article-share button {
  color: var(--jtb-text);
  font-family: inherit;
  font-size: 0.6875rem;
  letter-spacing: 0.04em;
  text-decoration: none;
  text-transform: uppercase;
}
.article-share button {
  border: 0;
  padding: 0;
  background: transparent;
  cursor: pointer;
}
.article-share a:hover,
.article-share a:focus-visible,
.article-share button:hover,
.article-share button:focus-visible {
  text-decoration: underline;
  text-decoration-color: var(--jtb-yellow);
  text-underline-offset: 0.3em;
}

.article-next {
  border-top: 1px solid var(--jtb-rule);
  padding-block: clamp(3rem, 6vw, 5rem);
}
.article-next .eyebrow {
  margin: 0 0 0.4rem;
  font-weight: 600;
}
.article-next h2 {
  max-width: none;
  margin: 0 0 var(--jtb-space-2);
  font-size: clamp(2rem, 1.5rem + 1vw, 2.75rem);
}
.article-next .link-action[aria-disabled=true] {
  cursor: default;
}

.article-newsletter {
  padding-bottom: var(--jtb-space-4);
}
.article-newsletter .newsletter-panel {
  padding-block: clamp(4rem, 7vw, 5.5rem);
}

@media (max-width: 767px) {
  .article-hero__inner {
    max-width: 280px;
    padding-block: 0.875rem;
  }
  .article-hero__eyebrow {
    margin-bottom: 0.5rem;
    font-size: 0.625rem;
  }
  .article-hero__title {
    margin-bottom: 0.75rem;
    font-size: 2rem;
    line-height: 1;
  }
  .article-hero__lead {
    margin-bottom: 1rem;
    font-size: 0.875rem;
    line-height: 1.4;
  }
  .article-hero__meta {
    font-size: 0.5625rem;
  }
  .article-featured {
    max-width: 170px;
  }
  .article-reading {
    display: block;
    max-width: 280px;
    padding-block: 1.5rem var(--jtb-space-6);
  }
  .article-toc {
    margin-bottom: 1.5rem;
  }
  .article-toc h2 {
    font-size: 0.625rem;
  }
  .article-toc a {
    display: block;
    padding-block: 0.18rem;
    font-size: 0.625rem;
    line-height: 1.2;
  }
  .article-toc li {
    margin: 0;
    line-height: 1;
  }
  .article-body {
    font-size: 1rem;
    line-height: 1.7;
  }
  .article-body > h2 {
    margin-top: var(--jtb-space-5);
    font-size: 1.25rem;
  }
  .article-body .has-drop-cap::first-letter {
    font-size: 3.75rem;
  }
  .article-body .jtb-pullquote {
    margin-block: var(--jtb-space-4);
  }
  .article-body .jtb-pullquote p {
    font-size: 1.5rem;
  }
  .article-body .jtb-model {
    padding: var(--jtb-space-3);
  }
  .article-body .jtb-model__flow {
    display: grid;
    grid-template-columns: auto 18px;
    gap: 0.5rem;
  }
  .article-body .jtb-model__flow b {
    align-self: center;
    transform: none;
  }
  .article-body .jtb-model__flow span {
    min-width: 145px;
  }
  .article-body .jtb-model__flow span:nth-of-type(3) {
    grid-column: 1;
  }
  .article-share {
    gap: 0.75rem var(--jtb-space-2);
  }
  .article-next {
    max-width: 280px;
  }
  .article-next h2 {
    max-width: 11ch;
    font-size: 2rem;
  }
  .article-newsletter {
    padding-bottom: var(--jtb-space-3);
  }
}
.site-main {
  display: block;
}

.page-content,
.error-page {
  padding-top: var(--jtb-space-6);
}

.entry-content {
  max-width: var(--jtb-measure-lead);
}
.entry-content > * + * {
  margin-top: var(--jtb-space-3);
}
.entry-content ul,
.entry-content ol {
  padding-left: 1.25rem;
}

.error-page {
  max-width: var(--jtb-measure-lead);
}
.error-page .button {
  margin-top: var(--jtb-space-2);
}
