:root {
  --wine: #791f2d;
  --wine-dark: #51151f;
  --gold: #b88a42;
  --ink: #171614;
  --muted: #68635d;
  --paper: #f3efe6;
  --cream: #faf8f3;
  --white: #fff;
  --line: #d9d3c9;
  --serif: "Playfair Display", Georgia, serif;
  --sans: "Source Sans 3", Arial, sans-serif;
  --max: 1440px;
  --narrow: 820px;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 18px;
  line-height: 1.55;
}
body.cj-panel-open {
  overflow: hidden;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.16em;
}
a:hover {
  color: var(--wine);
}
h1,
h2,
h3,
h4 {
  font-family: var(--serif);
  line-height: 1.04;
  margin: 0 0 0.55em;
}
h1 {
  font-size: clamp(3rem, 7vw, 7.5rem);
  letter-spacing: -0.045em;
}
h2 {
  font-size: clamp(2.2rem, 4.2vw, 4.8rem);
  letter-spacing: -0.035em;
}
h3 {
  font-size: clamp(1.35rem, 2.1vw, 2rem);
  letter-spacing: -0.02em;
}
p {
  margin: 0 0 1em;
}
.cj-container {
  width: min(calc(100% - 48px), var(--max));
  margin-inline: auto;
}
.cj-container--narrow {
  width: min(calc(100% - 48px), var(--narrow));
  margin-inline: auto;
}
.skip-link {
  position: fixed;
  left: 1rem;
  top: -5rem;
  background: #fff;
  padding: 0.7rem;
  z-index: 100;
}
.skip-link:focus {
  top: 1rem;
}
.cj-kicker,
.cj-card-meta {
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--wine);
}
.cj-header {
  position: relative;
  border-bottom: 1px solid var(--line);
  background: rgba(250, 248, 243, 0.97);
  z-index: 50;
}
.cj-header__inner {
  min-height: 106px;
  display: flex;
  align-items: center;
  gap: 2rem;
}
.cj-brand {
  margin-right: auto;
}
.custom-logo {
  max-height: 64px;
  width: auto;
}
.cj-brand__text,
.cj-footer__brand {
  font: 700 clamp(1.7rem, 3vw, 2.8rem)/1 var(--serif);
  text-decoration: none;
}
.cj-brand__tagline {
  display: block;
  color: var(--muted);
  font-size: 0.76rem;
  margin-top: 0.35rem;
}
.cj-desktop-nav ul,
.cj-mega-menu ul,
.cj-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.cj-desktop-nav ul {
  display: flex;
  gap: 1.5rem;
}
.cj-desktop-nav a {
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: none;
}
.cj-header__actions {
  display: flex;
  gap: 0.5rem;
}
.cj-header button {
  border: 0;
  background: transparent;
  padding: 0.75rem;
  display: flex;
  gap: 0.5rem;
  align-items: center;
  font: 600 0.82rem var(--sans);
  cursor: pointer;
}
.cj-menu-icon {
  display: block;
  width: 22px;
  height: 12px;
  border-block: 2px solid currentColor;
}
.cj-search-panel {
  background: var(--paper);
  border-top: 1px solid var(--line);
  padding: 2.2rem 0;
}
.cj-search-panel form,
.cj-page-header form {
  display: flex;
}
.cj-search-panel label,
.cj-page-header form label {
  flex: 1;
}
.cj-search-panel input,
.cj-page-header input[type="search"] {
  width: 100%;
  border: 0;
  border-bottom: 2px solid var(--ink);
  background: transparent;
  padding: 1rem 0;
  font: 600 2rem var(--serif);
}
.cj-search-panel button,
.cj-page-header form button {
  border: 0;
  background: var(--wine);
  color: #fff;
  padding: 0 1.5rem;
}
.cj-mega-menu {
  position: absolute;
  width: 100%;
  height: calc(100vh - 106px);
  overflow: auto;
  background: var(--wine-dark);
  color: #fff;
  padding: 4rem 0;
}
.cj-mega-menu__grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1.3fr;
  gap: 5rem;
}
.cj-mega-menu .cj-kicker {
  color: #e5c99f;
}
.cj-mega-menu li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.cj-mega-menu li a {
  display: block;
  padding: 0.65rem 0;
  text-decoration: none;
  font-family: var(--serif);
  font-size: 1.3rem;
}
.cj-mega-menu__feature img {
  aspect-ratio: 16/9;
  object-fit: cover;
  margin-bottom: 1rem;
}
.cj-mega-menu__feature a {
  color: #fff;
}
.cj-main {
  min-height: 60vh;
}
.cj-hero {
  padding-block: 2rem;
}
.cj-section-heading {
  display: grid;
  grid-template-columns: 1fr 2fr;
  align-items: end;
  border-bottom: 3px solid var(--ink);
  padding-bottom: 0.5rem;
  margin-bottom: 2rem;
}
.cj-section-heading h1 {
  font-size: clamp(3rem, 5.5vw, 6.5rem);
  max-width: 1000px;
}
.cj-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(300px, 1fr);
  gap: 2.5rem;
}
.cj-lead-story {
  border-right: 1px solid var(--line);
  padding-right: 2.5rem;
}
.cj-image-link img,
.cj-article-card__image img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.cj-image-link,
.cj-article-card__image,
.cj-content-card__image {
  display: block;
  overflow: hidden;
  background: #ded8cd;
}
.cj-image-link:hover img,
.cj-article-card__image:hover img,
.cj-content-card__image:hover img {
  transform: scale(1.025);
}
.cj-lead-story__content {
  padding-top: 1.5rem;
}
.cj-lead-story h2 {
  font-size: clamp(2.7rem, 4.7vw, 5.8rem);
  max-width: 1100px;
}
.cj-lead-story h2 a,
.cj-article-card h3 a,
.cj-content-card h3 a,
.cj-release-list h3 a {
  text-decoration: none;
}
.cj-lead-story p {
  font-size: 1.18rem;
  color: var(--muted);
  max-width: 900px;
}
.cj-hero-side {
  display: grid;
  gap: 2rem;
}
.cj-article-card {
  border-top: 1px solid var(--ink);
  padding-top: 1rem;
}
.cj-article-card--compact:first-child {
  border-top: 0;
  padding-top: 0;
}
.cj-article-card__content {
  padding-top: 1rem;
}
.cj-article-card p {
  color: var(--muted);
}
.cj-card-byline {
  display: flex;
  gap: 1rem;
  color: var(--muted);
  font-size: 0.76rem;
  margin-top: 1.2rem;
}
.cj-current-issue {
  background: var(--wine-dark);
  color: #fff;
  padding: 6rem 0;
}
.cj-current-issue__grid {
  display: grid;
  grid-template-columns: minmax(240px, 430px) 1fr;
  gap: 7vw;
  align-items: center;
}
.cj-current-issue__cover img {
  width: 100%;
  box-shadow: 25px 25px 0 rgba(255, 255, 255, 0.08);
}
.cj-current-issue .cj-kicker {
  color: #e5c99f;
}
.cj-current-issue h2 {
  font-size: clamp(3rem, 6vw, 7rem);
}
.cj-current-issue__intro {
  font-family: var(--serif);
  font-size: clamp(1.25rem, 2vw, 1.8rem);
  max-width: 800px;
}
.cj-issue-count {
  color: #d8ccc4;
}
.cj-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}
.cj-button {
  display: inline-block;
  background: var(--wine);
  color: #fff;
  padding: 0.9rem 1.25rem;
  text-decoration: none;
  font-weight: 700;
  border: 1px solid var(--wine);
}
.cj-button:hover {
  background: var(--wine-dark);
  color: #fff;
}
.cj-current-issue .cj-button {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--ink);
}
.cj-text-link {
  font-weight: 700;
}
.cj-section {
  padding-block: 6rem;
}
.cj-section--paper {
  background: var(--paper);
}
.cj-section-title {
  display: flex;
  justify-content: space-between;
  align-items: end;
  border-bottom: 3px solid var(--ink);
  padding-bottom: 1rem;
  margin-bottom: 2.5rem;
  gap: 2rem;
}
.cj-section-title h2 {
  margin: 0;
}
.cj-section-link {
  display: flex;
  gap: 0.7rem;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}
.cj-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3.5rem 2rem;
}
.cj-card-grid .cj-article-card {
  border-top: 0;
  padding-top: 0;
}
.cj-release-list article {
  display: grid;
  grid-template-columns: 180px 1fr 60px;
  gap: 2rem;
  align-items: center;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--line);
}
.cj-release-list time {
  color: var(--muted);
  font-size: 0.9rem;
}
.cj-release-list h3 {
  margin: 0;
}
.cj-arrow {
  font-size: 2rem;
  text-decoration: none;
}
.cj-cover-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3rem 2rem;
}
.cj-content-card__image {
  position: relative;
  margin-bottom: 1.2rem;
}
.cj-content-card--ebook .cj-content-card__image img,
.cj-content-card--issue .cj-content-card__image img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
}
.cj-content-card__badge {
  position: absolute;
  inset: auto auto 1rem 1rem;
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--wine);
  color: #fff;
  font-size: 1rem;
}
.cj-content-card__badge:empty {
  display: none;
}
.cj-video-section {
  background: var(--ink);
  color: #fff;
}
.cj-video-section .cj-section-title {
  border-color: #fff;
}
.cj-video-section .cj-section-link:hover {
  color: #e5c99f;
}
.cj-video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.cj-content-card--video .cj-content-card__image img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
}
.cj-content-card--video .cj-kicker {
  color: var(--gold);
}
.cj-page-header {
  padding-block: 6rem 3rem;
  border-bottom: 3px solid var(--ink);
}
.cj-page-header h1 {
  max-width: 1100px;
}
.cj-page-header__intro {
  font-family: var(--serif);
  font-size: clamp(1.2rem, 2vw, 1.7rem);
  max-width: 850px;
  color: var(--muted);
}
.nav-links {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  margin-top: 4rem;
}
.nav-links a,
.nav-links span {
  padding: 0.55rem 0.85rem;
  border: 1px solid var(--line);
}
.cj-article-header {
  padding-block: 6rem 3rem;
}
.cj-article-header h1 {
  font-size: clamp(3.2rem, 7vw, 7rem);
}
.cj-article-subtitle {
  font: clamp(1.25rem, 2.4vw, 2rem)/1.35 var(--serif);
  color: var(--muted);
}
.cj-article-byline {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
  font-size: 0.9rem;
}
.cj-article-hero {
  margin-bottom: 4rem;
}
.cj-article-hero img {
  width: 100%;
  max-height: 850px;
  object-fit: cover;
}
.cj-article-hero figcaption {
  font-size: 0.8rem;
  color: var(--muted);
  margin-top: 0.5rem;
}
.cj-article-layout {
  display: grid;
  grid-template-columns: 220px minmax(0, var(--narrow));
  gap: 5rem;
  justify-content: center;
  padding-bottom: 6rem;
}
.cj-article-aside {
  border-left: 1px solid var(--line);
  padding-left: 1.5rem;
}
.cj-article-aside img {
  width: 90px;
  margin-bottom: 0.7rem;
}
.cj-article-aside a {
  text-decoration: none;
}
.cj-prose {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.15rem;
  line-height: 1.8;
}
.cj-prose > *:first-child {
  margin-top: 0;
}
.cj-prose h2,
.cj-prose h3 {
  margin-top: 1.5em;
}
.cj-prose blockquote {
  margin: 2em 0;
  padding-left: 1.5em;
  border-left: 5px solid var(--wine);
  font: 1.5em/1.4 var(--serif);
}
.cj-prose img {
  margin-block: 2rem;
}
.cj-issue-masthead {
  background: var(--paper);
  padding: 6rem 0;
}
.cj-issue-masthead__grid,
.cj-detail__grid {
  display: grid;
  grid-template-columns: minmax(260px, 430px) 1fr;
  gap: 7vw;
  align-items: center;
}
.cj-issue-masthead img,
.cj-detail__grid > div:first-child img {
  box-shadow: 20px 20px 0 rgba(121, 31, 45, 0.12);
}
.cj-detail {
  padding-block: 6rem;
}
.cj-detail h1 {
  font-size: clamp(3rem, 6vw, 6.5rem);
}
.cj-detail .cj-prose {
  margin-top: 3rem;
}
.cj-facts {
  display: flex;
  gap: 3rem;
  margin: 2rem 0;
}
.cj-facts div {
  border-top: 1px solid var(--line);
  padding-top: 0.7rem;
}
.cj-facts dt {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
}
.cj-facts dd {
  margin: 0;
  font-weight: 700;
}
.cj-video-embed {
  position: relative;
  aspect-ratio: 16/9;
  margin-bottom: 3rem;
  background: #000;
}
.cj-video-embed iframe {
  width: 100%;
  height: 100%;
  border: 0;
}
.cj-footer {
  background: var(--wine-dark);
  color: #fff;
  padding: 5rem 0 1.5rem;
}
.cj-footer__top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.2fr;
  gap: 5rem;
}
.cj-footer h2 {
  font: 700 1rem var(--sans);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.cj-footer li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.cj-footer li a {
  display: block;
  padding: 0.5rem 0;
  text-decoration: none;
}
.cj-button--light {
  background: #fff;
  border-color: #fff;
  color: var(--wine-dark);
}
.cj-footer__bottom {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.25);
  padding-top: 1.5rem;
  margin-top: 4rem;
  font-size: 0.78rem;
  color: #d8ccc4;
}
@media (max-width: 1100px) {
  .cj-desktop-nav {
    display: none;
  }
  .cj-section-heading {
    grid-template-columns: 1fr;
  }
  .cj-hero-grid {
    grid-template-columns: 1.65fr 1fr;
  }
  .cj-card-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .cj-cover-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .cj-footer__top {
    gap: 2.5rem;
  }
}
@media (max-width: 760px) {
  body {
    font-size: 16px;
  }
  .cj-container,
  .cj-container--narrow {
    width: min(calc(100% - 32px), var(--max));
  }
  .cj-header__inner {
    min-height: 78px;
  }
  .cj-brand__tagline,
  .cj-header button span:last-child {
    display: none;
  }
  .cj-mega-menu {
    height: calc(100vh - 78px);
    padding: 2rem 0;
  }
  .cj-mega-menu__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .cj-mega-menu__feature {
    display: none;
  }
  .cj-hero,
  .cj-section,
  .cj-page-header,
  .cj-article-header,
  .cj-detail {
    padding-block: 3.5rem;
  }
  .cj-section-heading {
    margin-bottom: 1.5rem;
  }
  .cj-hero-grid,
  .cj-current-issue__grid,
  .cj-issue-masthead__grid,
  .cj-detail__grid {
    grid-template-columns: 1fr;
  }
  .cj-lead-story {
    border-right: 0;
    padding-right: 0;
    border-bottom: 1px solid var(--line);
    padding-bottom: 2rem;
  }
  .cj-lead-story h2 {
    font-size: 2.7rem;
  }
  .cj-hero-side {
    grid-template-columns: 1fr 1fr;
  }
  .cj-current-issue {
    padding: 4rem 0;
  }
  .cj-current-issue__cover {
    max-width: 280px;
  }
  .cj-current-issue h2 {
    font-size: 3.2rem;
  }
  .cj-section-title {
    align-items: flex-start;
  }
  .cj-section-title h2 {
    font-size: 2.5rem;
  }
  .cj-section-link {
    font-size: 0.85rem;
  }
  .cj-card-grid,
  .cj-video-grid {
    grid-template-columns: 1fr 1fr;
  }
  .cj-cover-grid {
    grid-template-columns: 1fr 1fr;
  }
  .cj-release-list article {
    grid-template-columns: 1fr 35px;
    gap: 0.5rem;
  }
  .cj-release-list time {
    grid-column: 1/-1;
  }
  .cj-article-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .cj-article-aside {
    border-left: 0;
    border-top: 1px solid var(--line);
    padding: 1rem 0;
  }
  .cj-footer__top {
    grid-template-columns: 1fr;
  }
  .cj-footer__bottom {
    display: grid;
    gap: 0.5rem;
  }
  .cj-facts {
    gap: 1.5rem;
  }
}
@media (max-width: 480px) {
  .cj-hero-side,
  .cj-card-grid,
  .cj-video-grid {
    grid-template-columns: 1fr;
  }
  .cj-cover-grid {
    gap: 2rem 1rem;
  }
  .cj-section-title {
    display: block;
  }
  .cj-section-link {
    margin-top: 1rem;
  }
  .cj-article-header h1 {
    font-size: 2.8rem;
  }
  .cj-prose {
    font-size: 1.05rem;
  }
}
@media (prefers-reduced-motion: reduce) {
  * {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}

/* Homepage press releases + featured interview */
.cj-section-heading--intro {
  display: block;
  /* max-width: 980px; */
}
.cj-section-heading--intro .cj-kicker {
  font-size: clamp(0.9rem, 1.5vw, 1.15rem);
  line-height: 1.55;
  letter-spacing: 0.08em;
}
.cj-news-media__grid {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(260px, 1fr);
  gap: clamp(2rem, 4vw, 5rem);
  align-items: start;
}

/* Updated homepage lead stories */
.cj-story-summary,
.cj-lead-story__content > p,
.cj-sub-lead-story__content > p {
  color: #3f3d39;
}
.cj-sub-lead-story__content {
  padding-top: 1rem;
}
.cj-sub-lead-story__content h3 {
  margin-bottom: 0.55rem;
}
.cj-sub-lead-story__content .cj-story-summary {
  margin: 0;
  font-size: 0.96rem;
  line-height: 1.6;
}

/* Editorial (2/3) and current issue (1/3) remain in one horizontal row. */
.cj-current-feature__grid {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(280px, 1fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}
.cj-current-feature__editorial,
.cj-current-feature__issue {
  min-width: 0;
}
.cj-editorial-feature {
  display: grid;
  grid-template-columns: minmax(190px, 0.75fr) minmax(0, 1.25fr);
  gap: 2rem;
  align-items: start;
}
.cj-editorial-feature__image img,
.cj-current-feature__cover img {
  display: block;
  width: 100%;
  height: auto;
}
.cj-editorial-feature__content h2,
.cj-current-feature__issue h2 {
  margin: 0.35rem 0 0.8rem;
}
.cj-editorial-feature__content > p:not(.cj-kicker),
.cj-current-feature__issue > p:not(.cj-kicker) {
  color: #4d4a45;
  line-height: 1.7;
}
.cj-editorial-feature__excerpt {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 6;
  line-clamp: 6;
  min-height: calc(1.7em * 5);
}
.cj-current-feature__issue {
  padding-left: clamp(1.25rem, 3vw, 2.5rem);
  border-left: 1px solid var(--line);
}
.cj-current-feature__cover {
  display: block;
  margin: 0.75rem 0 1.25rem;
}

/* Let the More Articles list occupy all of its 3/4 content column. */
.cj-news-media__releases,
.cj-more-articles,
.cj-more-articles article {
  width: 100%;
  min-width: 0;
}
.cj-news-media__releases {
  grid-column: auto;
}
.cj-more-articles {
  display: block;
  max-width: none;
}
.cj-more-articles article {
  display: grid;
  grid-template-columns: 110px minmax(0, 1fr) 40px;
  gap: 1.25rem;
  align-items: start;
}
.cj-more-articles article.no-thumbnail {
  grid-template-columns: minmax(0, 1fr) 40px;
}
.cj-more-articles article.no-thumbnail > div {
  min-width: 0;
}
.cj-more-articles__thumb img {
  display: block;
  width: 110px;
  height: 82px;
  object-fit: cover;
}
.cj-more-articles article h3 {
  margin: 0.15rem 0 0.35rem;
}
.cj-more-articles article p {
  margin: 0;
  color: #56524c;
  line-height: 1.5;
}
.cj-news-media__video {
  background: var(--ink);
  color: var(--white);
  padding: 1.5rem;
}
.cj-news-media__video .cj-section-title {
  border-color: rgba(255, 255, 255, 0.45);
  margin-bottom: 1.5rem;
}
.cj-news-media__video .cj-section-title h2 {
  font-size: clamp(1.7rem, 2.4vw, 2.5rem);
}
.cj-news-media__video .cj-content-card__image {
  margin-bottom: 1rem;
}
.cj-news-media__video .cj-content-card__image img {
  aspect-ratio: 16/10;
  object-fit: cover;
  width: 100%;
}
.cj-news-media__video .cj-content-card h3 {
  font-size: clamp(1.3rem, 1.8vw, 1.8rem);
}
.cj-news-media__video .cj-content-card .cj-kicker {
  color: var(--gold);
}
.cj-news-media__video > .cj-section-link {
  margin-top: 1.5rem;
  color: var(--white);
}
.cj-news-media__video > .cj-section-link:hover {
  color: var(--gold);
}

/* Issue PDF / flipbook */
.cj-flipbook {
  background: var(--ink);
  color: var(--white);
  scroll-margin-top: 2rem;
}
.cj-flipbook .cj-section-title {
  border-color: rgba(255, 255, 255, 0.5);
}
.cj-flipbook__viewer {
  min-height: 620px;
}
.cj-flipbook__fallback iframe {
  display: block;
  width: 100%;
  height: min(82vh, 900px);
  border: 0;
  background: #2a2927;
}
.cj-flipbook__fallback p {
  margin: 1rem 0 0;
  text-align: center;
}

@media (max-width: 960px) {
  .cj-current-feature__grid {
    grid-template-columns: minmax(0, 1.65fr) minmax(240px, 1fr);
  }
  .cj-editorial-feature {
    grid-template-columns: 1fr;
  }
  .cj-news-media__grid {
    grid-template-columns: minmax(0, 3fr) minmax(240px, 1fr);
  }
  .cj-release-list article {
    grid-template-columns: 120px 1fr 40px;
    gap: 1rem;
  }
}
@media (max-width: 760px) {
  .cj-current-feature__grid {
    grid-template-columns: 1fr;
  }
  .cj-current-feature__issue {
    padding-left: 0;
    padding-top: 2rem;
    border-top: 1px solid var(--line);
    border-left: 0;
  }
  .cj-news-media__grid {
    grid-template-columns: 1fr;
  }
  .cj-more-articles article {
    grid-template-columns: 90px minmax(0, 1fr) 35px;
  }
  .cj-more-articles__thumb img {
    width: 90px;
    height: 72px;
  }
  .cj-news-media__video {
    padding: 1.25rem;
  }
  .cj-flipbook__viewer {
    min-height: 460px;
  }
  .cj-flipbook__fallback iframe {
    height: 70vh;
  }
}

@media (max-width: 480px) {
  .cj-more-articles article {
    grid-template-columns: 72px minmax(0, 1fr) 28px;
    gap: 0.75rem;
  }
  .cj-more-articles__thumb img {
    width: 72px;
    height: 62px;
  }
  .cj-more-articles article p {
    display: none;
  }
}

/* Flipbook popup trigger and fallback modal */
.cj-flipbook-open {
  font: 700 1rem var(--sans);
  cursor: pointer;
}
.cj-dflip-popup-trigger {
  position: fixed !important;
  left: -10000px !important;
  top: 0 !important;
  width: 240px !important;
  height: 340px !important;
  overflow: hidden !important;
  opacity: 0.01 !important;
  pointer-events: none !important;
}
body.cj-flipbook-modal-open {
  overflow: hidden;
}
.cj-flipbook-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: grid;
  place-items: center;
  padding: 24px;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition:
    opacity 0.2s ease,
    visibility 0.2s ease;
}
.cj-flipbook-modal.is-open {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}
.cj-flipbook-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 9, 8, 0.88);
  backdrop-filter: blur(5px);
}
.cj-flipbook-modal__panel {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  width: min(1500px, 96vw);
  height: min(920px, 94vh);
  background: var(--ink);
  color: var(--white);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.5);
}
.cj-flipbook-modal__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.8rem 1.25rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.cj-flipbook-modal__header h2 {
  margin: 0;
  font: 600 clamp(1rem, 2vw, 1.4rem) var(--serif);
}
.cj-flipbook-modal__close {
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  color: var(--white);
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
}
.cj-flipbook-modal__body {
  flex: 1;
  min-height: 0;
  overflow: auto;
}
.cj-flipbook-modal__body .cj-flipbook__viewer,
.cj-flipbook-modal__body .cj-flipbook__fallback {
  height: 100%;
  min-height: 100%;
}
.cj-flipbook-modal__body .cj-flipbook__fallback iframe {
  height: calc(100% - 58px);
  min-height: 520px;
}
@media (max-width: 760px) {
  .cj-flipbook-modal {
    padding: 0;
  }
  .cj-flipbook-modal__panel {
    width: 100%;
    height: 100%;
  }
  .cj-flipbook-modal__body .cj-flipbook__fallback iframe {
    min-height: calc(100vh - 120px);
  }
}

/* Articles pagination */
.cj-pagination {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid var(--line);
}

.cj-pagination .page-numbers {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.cj-pagination a,
.cj-pagination span {
    display: grid;
    min-width: 44px;
    height: 44px;
    padding: 0 0.9rem;
    place-items: center;
    border: 1px solid var(--line);
    color: var(--ink);
    font-weight: 700;
    text-decoration: none;
    transition:
        color 0.2s ease,
        background-color 0.2s ease,
        border-color 0.2s ease;
}

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

.cj-pagination .prev,
.cj-pagination .next {
    padding-inline: 1.25rem;
}

.cj-empty-state {
    padding-block: 4rem;
    text-align: center;
}

@media (max-width: 600px) {
    .cj-pagination .page-numbers {
        gap: 0.35rem;
    }

    .cj-pagination a,
    .cj-pagination span {
        min-width: 38px;
        height: 38px;
        padding-inline: 0.65rem;
        font-size: 0.85rem;
    }
}

.cj-article-author {
    margin: 0.75rem 0 1.5rem;
    color: var(--cj-muted, #666);
    font-size: 0.95rem;
}

.cj-article-author span {
    color: var(--cj-text, #111);
    font-weight: 600;
}

.cj-editorial-single {
    background: #f4f1eb;
    padding-bottom: 5rem;
}

.cj-editorial-header {
    padding: 5rem 1.5rem 3rem;
    text-align: center;
}

.cj-editorial-header h1 {
    max-width: 900px;
    margin: 0.75rem auto;
}

.cj-editorial-header .cj-article-subtitle {
    max-width: 720px;
    margin-right: auto;
    margin-left: auto;
}

.cj-editorial-header a {
    color: inherit;
}

.cj-editorial-layout {
    display: grid;
    grid-template-columns: 190px minmax(0, 1fr);
    gap: 4rem;
    align-items: start;
}

.cj-editorial-editor {
    text-align: center;
}

.cj-editorial-editor__photo {
    margin: 0 0 1.25rem;
}

.cj-editorial-editor__photo img {
    display: block;
    width: 160px;
    height: 160px;
    margin: 0 auto;
    border-radius: 50%;
    object-fit: cover;
}

.cj-editorial-editor h2 {
    margin: 0.25rem 0;
    font-size: 1.2rem;
}

.cj-editorial-date {
    margin-top: 0.5rem;
    color: #6b6862;
    font-size: 0.9rem;
}

.cj-editorial-content {
    padding-left: 3rem;
    border-left: 1px solid #cbc5ba;
}

.cj-editorial-content > :first-child {
    margin-top: 0;
}

.cj-editorial-content > p:first-child::first-letter {
    float: left;
    margin: 0.1em 0.12em 0 0;
    font-family: Georgia, serif;
    font-size: 4.5rem;
    font-weight: 700;
    line-height: 0.8;
}

@media (max-width: 700px) {
    .cj-editorial-header {
        padding-top: 3rem;
    }

    .cj-editorial-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .cj-editorial-content {
        padding-left: 0;
        border-left: 0;
    }
}
