@font-face {
  font-family: "Uber Move Text";
  src: url("/wp-content/mu-plugins/litro-assets/uber-move-text-regular.woff") format("woff");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Uber Move Text";
  src: url("/wp-content/mu-plugins/litro-assets/uber-move-text-medium.woff") format("woff");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: "Uber Move Text";
  src: url("/wp-content/mu-plugins/litro-assets/uber-move-text-bold.woff") format("woff");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

:root {
  --jh-paper: oklch(0.992 0.002 150);
  --jh-ink: oklch(0.16 0.036 151);
  --jh-green: oklch(0.54 0.155 150);
  --jh-soft: oklch(0.965 0.014 155);
  --jh-line: oklch(0.9 0.012 155);
  --jh-muted: oklch(0.48 0.025 153);
  --jh-radius: 16px;
  --jh-radius-lg: 30px;
  --jh-container: 1240px;
  --jh-ease: cubic-bezier(0.16, 1, 0.3, 1);
}

.autero-journal-page {
  margin: 0;
  min-width: 320px;
  background: var(--jh-paper);
  color: var(--jh-ink);
  font-family: "Uber Move Text", system-ui, -apple-system, sans-serif;
  -webkit-font-smoothing: antialiased;
}

.autero-journal-page *,
.autero-journal-page *::before,
.autero-journal-page *::after {
  box-sizing: border-box;
}

.autero-journal-page a {
  color: inherit;
  text-decoration: none;
}

.autero-journal-page img {
  display: block;
  max-width: 100%;
}

.jh-container {
  width: min(calc(100% - 40px), var(--jh-container));
  margin-inline: auto;
}

.jh-skip {
  position: fixed;
  z-index: 200;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--jh-green);
  color: var(--jh-paper);
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

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

.jh-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid color-mix(in oklab, var(--jh-ink) 9%, transparent);
  background: color-mix(in oklab, var(--jh-paper) 92%, transparent);
  backdrop-filter: blur(14px);
}

.jh-header__inner {
  display: flex;
  min-height: 68px;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.jh-brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 12px;
}

.jh-brand__autero {
  width: 112px;
  height: auto;
}

.jh-brand__litro {
  width: 79px;
  height: auto;
}

.jh-brand > span {
  color: var(--jh-muted);
  font-size: 18px;
  font-weight: 400;
}

.jh-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.jh-nav a,
.jh-nav summary,
.jh-mobile-nav a {
  position: relative;
  font-size: 14px;
  font-weight: 500;
}

.jh-nav > a.is-active,
.jh-mobile-nav a.is-active {
  color: var(--jh-green);
}

.jh-nav a::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  background: var(--jh-green);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms var(--jh-ease);
}

.jh-nav a:hover::after,
.jh-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.jh-nav-more {
  position: relative;
}

.jh-nav-more summary {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 8px 0;
  cursor: pointer;
  list-style: none;
}

.jh-nav-more summary::-webkit-details-marker { display: none; }

.jh-nav-more[open] summary > span { transform: rotate(180deg); }

.jh-nav-more > div {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  display: grid;
  width: 290px;
  padding: 10px;
  border: 1px solid var(--jh-line);
  border-radius: var(--jh-radius);
  background: var(--jh-paper);
  box-shadow: 0 18px 48px color-mix(in oklab, var(--jh-ink) 14%, transparent);
}

.jh-nav-more > div a {
  padding: 11px 12px;
  border-radius: 10px;
}

.jh-nav-more > div a:hover,
.jh-nav-more > div a:focus-visible {
  background: var(--jh-soft);
}

.jh-nav-more > div a::after { display: none; }

.jh-menu {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--jh-line);
  border-radius: 50%;
  background: transparent;
  color: var(--jh-ink);
}

.autero-journal-page .screen-reader-text {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.jh-menu__icon,
.jh-menu__icon::before,
.jh-menu__icon::after {
  display: block;
  width: 18px;
  height: 2px;
  background: currentColor;
  content: "";
  transition: transform 180ms ease;
}

.jh-menu__icon::before { transform: translateY(-6px); }
.jh-menu__icon::after { transform: translateY(4px); }
.jh-menu[aria-expanded="true"] .jh-menu__icon { background: transparent; }
.jh-menu[aria-expanded="true"] .jh-menu__icon::before { transform: translateY(0) rotate(45deg); }
.jh-menu[aria-expanded="true"] .jh-menu__icon::after { transform: translateY(-2px) rotate(-45deg); }

.jh-mobile-nav {
  border-top: 1px solid var(--jh-line);
  background: var(--jh-paper);
}

.jh-mobile-nav .jh-container {
  display: grid;
  padding-block: 14px 20px;
}

.jh-mobile-nav a {
  padding-block: 11px;
  border-bottom: 1px solid var(--jh-line);
}

@media (min-width: 768px) {
  .jh-mobile-nav {
    display: none !important;
  }
}

.jh-main {
  overflow: hidden;
}

.jh-masthead {
  padding-top: clamp(34px, 5vw, 70px);
}

.jh-masthead__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(260px, 0.7fr);
  align-items: end;
  gap: 64px;
}

.jh-kicker {
  margin: 0 0 12px;
  color: var(--jh-green);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.jh-masthead h1 {
  display: flex;
  margin: 0;
  align-items: baseline;
  gap: 18px;
  font-size: clamp(54px, 8.5vw, 112px);
  font-weight: 700;
  letter-spacing: -0.065em;
  line-height: 0.86;
}

.jh-masthead h1 span {
  animation: jh-title-in 680ms var(--jh-ease) both;
}

.jh-masthead h1 small {
  max-width: 150px;
  font-size: clamp(18px, 2vw, 28px);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1;
  animation: jh-title-in 680ms 90ms var(--jh-ease) both;
}

.jh-masthead__intro {
  max-width: 400px;
  margin: 0 0 4px;
  color: var(--jh-muted);
  font-size: 17px;
  line-height: 1.48;
}

.jh-topic-rail {
  margin-top: clamp(26px, 4vw, 48px);
  overflow: hidden;
  border-block: 1px solid var(--jh-line);
}

.jh-topic-rail__track {
  display: flex;
  width: max-content;
  padding-block: 12px;
  animation: jh-rail 28s linear infinite;
}

.jh-topic-rail__group {
  display: flex;
  flex: none;
  min-width: max-content;
}

.jh-topic-rail__group span {
  display: inline-flex;
  align-items: center;
  gap: 24px;
  padding-right: 24px;
  color: var(--jh-muted);
  font-size: 13px;
  font-weight: 500;
  white-space: nowrap;
}

.jh-topic-rail__group i {
  color: var(--jh-green);
  font-size: 18px;
  font-style: normal;
}

.jh-signal,
.jh-topics {
  padding-block: clamp(48px, 6vw, 78px);
}

.jh-section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 26px;
}

.jh-section-head h2,
.jh-help h2 {
  margin: 0;
  font-size: clamp(29px, 3.3vw, 46px);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 1.04;
}

.jh-section-head > a {
  padding-bottom: 4px;
  border-bottom: 1px solid var(--jh-ink);
  font-size: 14px;
  font-weight: 500;
}

.jh-section-head > p {
  max-width: 370px;
  margin: 0;
  color: var(--jh-muted);
  font-size: 15px;
  line-height: 1.45;
}

.jh-tabs {
  display: none;
  padding: 4px;
  border-radius: 999px;
  background: var(--jh-soft);
}

.jh-tabs button {
  flex: 1;
  min-height: 42px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--jh-muted);
  font: inherit;
  font-size: 13px;
  font-weight: 500;
}

.jh-tabs button.is-active {
  background: var(--jh-ink);
  color: var(--jh-paper);
}

.jh-signal__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.65fr) minmax(320px, 0.75fr);
  gap: 20px;
}

.jh-signal-panel--latest {
  min-width: 0;
}

.jh-lead-card {
  display: grid;
  min-height: 420px;
  grid-template-columns: minmax(0, 1.18fr) minmax(270px, 0.82fr);
  overflow: hidden;
  border-radius: var(--jh-radius-lg);
  background: var(--jh-ink);
  color: var(--jh-paper);
}

.jh-lead-card__media {
  position: relative;
  min-height: 100%;
  overflow: hidden;
}

.jh-lead-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% center;
  transition: transform 700ms var(--jh-ease);
}

.jh-lead-card:hover .jh-lead-card__image {
  transform: scale(1.025);
}

.jh-lead-card__label {
  position: absolute;
  top: 18px;
  left: 18px;
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--jh-green);
  color: var(--jh-paper);
  font-size: 12px;
  font-weight: 700;
}

.jh-lead-card__body {
  display: flex;
  padding: clamp(26px, 3vw, 42px);
  flex-direction: column;
  justify-content: flex-end;
}

.jh-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  color: color-mix(in oklab, currentColor 62%, transparent);
  font-size: 12px;
  font-weight: 500;
}

.jh-meta span + span::before {
  margin-right: 14px;
  content: "·";
}

.jh-lead-card h3 {
  margin: 18px 0 14px;
  font-size: clamp(24px, 2.5vw, 36px);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1.08;
}

.jh-lead-card p {
  margin: 0;
  color: color-mix(in oklab, var(--jh-paper) 72%, transparent);
  font-size: 15px;
  line-height: 1.5;
}

.jh-latest-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 12px;
}

.jh-latest-list article {
  position: relative;
  min-height: 158px;
  padding: 20px 46px 20px 20px;
  border: 1px solid var(--jh-line);
  border-radius: var(--jh-radius);
  background: var(--jh-paper);
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.jh-latest-list article:hover {
  border-color: color-mix(in oklab, var(--jh-green) 32%, var(--jh-line));
  background: var(--jh-soft);
  transform: translateY(-2px);
}

.jh-latest-list h3 {
  margin: 16px 0 0;
  font-size: 17px;
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.25;
}

.jh-arrow-link {
  position: absolute;
  right: 18px;
  bottom: 18px;
  color: var(--jh-green) !important;
  font-size: 20px;
}

.jh-popular {
  padding: 28px 26px;
  border-radius: var(--jh-radius-lg);
  background: var(--jh-soft);
}

.jh-popular__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--jh-line);
}

.jh-popular__head h3 {
  margin: 0;
  font-size: 20px;
  font-weight: 500;
}

.jh-popular__head > span {
  color: var(--jh-muted);
  font-size: 12px;
}

.jh-popular ol {
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: popular;
}

.jh-popular li {
  counter-increment: popular;
  border-bottom: 1px solid var(--jh-line);
}

.jh-popular li:last-child {
  border-bottom: 0;
}

.jh-popular li a {
  display: grid;
  grid-template-columns: 26px minmax(0, 1fr);
  gap: 14px;
  padding-block: 20px;
}

.jh-popular li a::before {
  color: var(--jh-green);
  content: counter(popular, decimal-leading-zero);
  font-size: 12px;
  font-weight: 700;
}

.jh-popular__title {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.28;
}

.jh-popular li .jh-meta {
  grid-column: 2;
  margin-top: -5px;
}

.jh-topics {
  border-top: 1px solid var(--jh-line);
}

.jh-topics__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.jh-topics__grid > a {
  position: relative;
  display: flex;
  min-height: 164px;
  padding: 18px;
  flex-direction: column;
  border: 1px solid var(--jh-line);
  border-radius: var(--jh-radius);
  background: var(--jh-paper);
  transition: transform 220ms var(--jh-ease), background 220ms ease, color 220ms ease;
}

.jh-topics__grid > a:hover,
.jh-topics__grid > a:focus-visible {
  background: var(--jh-ink);
  color: var(--jh-paper);
  transform: translateY(-4px);
}

.jh-topics__number {
  color: var(--jh-green);
  font-size: 12px;
  font-weight: 700;
}

.jh-topics__grid strong {
  margin-top: auto;
  font-size: 19px;
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.1;
}

.jh-topics__grid small {
  margin-top: 7px;
  color: var(--jh-muted);
  font-size: 13px;
  line-height: 1.3;
}

.jh-topics__grid > a:hover small,
.jh-topics__grid > a:focus-visible small {
  color: color-mix(in oklab, var(--jh-paper) 70%, transparent);
}

.jh-topics__arrow {
  position: absolute;
  top: 17px;
  right: 17px;
  font-size: 18px;
}

.jh-help {
  padding-block: 28px 78px;
}

.jh-help__inner {
  display: grid;
  grid-template-columns: 130px minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(24px, 4vw, 52px);
  padding: 24px;
  border-radius: var(--jh-radius-lg);
  background: var(--jh-soft);
}

.jh-help__inner > img {
  width: 130px;
  height: 130px;
  border-radius: 22px;
  object-fit: cover;
  object-position: 64% center;
}

.jh-help h2 {
  max-width: 640px;
  font-size: clamp(25px, 3vw, 38px);
}

.jh-help p:not(.jh-kicker) {
  max-width: 640px;
  margin: 10px 0 0;
  color: var(--jh-muted);
  font-size: 15px;
  line-height: 1.45;
}

.jh-button {
  display: inline-flex;
  min-height: 52px;
  padding: 0 23px;
  align-items: center;
  justify-content: center;
  gap: 22px;
  border-radius: 28px;
  background: var(--jh-green);
  color: var(--jh-paper) !important;
  font-size: 15px;
  font-weight: 700;
  white-space: nowrap;
  transition: transform 180ms ease, filter 180ms ease;
}

.jh-button:hover,
.jh-button:focus-visible {
  filter: brightness(0.94);
  transform: translateY(-2px);
}

.jh-footer {
  padding: 52px 0 24px;
  background: var(--jh-ink);
  color: var(--jh-soft);
}

.jh-footer__grid {
  display: grid;
  grid-template-columns: minmax(260px, 1.4fr) 0.7fr 0.9fr minmax(180px, 0.8fr);
  gap: 48px;
}

.jh-brand--footer .jh-brand__autero {
  width: 112px;
}

.jh-brand--footer {
  width: fit-content;
  padding: 8px 12px;
  border-radius: 14px;
  background: var(--jh-paper);
}

.jh-brand--footer > span {
  color: var(--jh-muted);
}

.jh-footer__brand p {
  max-width: 280px;
  margin: 22px 0 0;
  color: color-mix(in oklab, var(--jh-soft) 62%, transparent);
  font-size: 14px;
  line-height: 1.5;
}

.jc-hero {
  padding: clamp(48px, 7vw, 88px) 0 clamp(34px, 5vw, 58px);
  border-bottom: 1px solid var(--jh-line);
  background: var(--jh-soft);
}

.jc-hero h1 {
  max-width: 760px;
  margin: 10px 0 28px;
  font-size: clamp(38px, 6vw, 72px);
  line-height: 0.98;
  letter-spacing: -0.045em;
}

.jc-search {
  display: flex;
  width: min(100%, 720px);
  gap: 10px;
}

.jc-search input {
  min-width: 0;
  flex: 1;
  min-height: 54px;
  padding: 0 18px;
  border: 1px solid var(--jh-line);
  border-radius: var(--jh-radius);
  background: var(--jh-paper);
  color: var(--jh-ink);
  font: inherit;
  font-size: 16px;
}

.jc-search button {
  min-height: 54px;
  padding: 0 24px;
  border: 0;
  border-radius: var(--jh-radius);
  background: var(--jh-green);
  color: var(--jh-paper);
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.jc-search input:focus-visible,
.jc-search button:focus-visible {
  outline: 3px solid color-mix(in oklab, var(--jh-green) 48%, white);
  outline-offset: 2px;
}

.jc-results {
  padding-block: clamp(44px, 6vw, 76px);
}

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

.jc-empty {
  display: grid;
  justify-items: start;
  gap: 14px;
  padding: clamp(28px, 5vw, 54px);
  border: 1px solid var(--jh-line);
  border-radius: var(--jh-radius-lg);
  background: var(--jh-soft);
}

.jc-empty[hidden],
.jc-grid[hidden],
.jt-card[hidden] {
  display: none !important;
}

.jc-empty h2,
.jc-empty p { margin: 0; }

.jh-footer__links,
.jh-footer__contacts {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 12px;
}

.jh-footer__links a,
.jh-footer__contacts a {
  color: color-mix(in oklab, var(--jh-soft) 76%, transparent);
  font-size: 13px;
  line-height: 1.35;
}

.jh-footer__links a:hover,
.jh-footer__contacts a:hover {
  color: var(--jh-soft);
}

.jh-footer__phone {
  color: var(--jh-soft) !important;
  font-size: 28px !important;
  font-weight: 500;
}

.jh-footer__contacts > div {
  display: flex;
  gap: 14px;
}

.jh-footer__bottom {
  display: flex;
  margin-top: 42px;
  padding-top: 20px;
  align-items: center;
  gap: 24px;
  border-top: 1px solid color-mix(in oklab, var(--jh-soft) 17%, transparent);
  color: color-mix(in oklab, var(--jh-soft) 50%, transparent);
  font-size: 12px;
}

.jh-footer__bottom span {
  margin-right: auto;
}

.jh-menu:focus-visible,
.jh-tabs button:focus-visible,
.jh-button:focus-visible,
.autero-journal-page a:focus-visible {
  outline: 3px solid color-mix(in oklab, var(--jh-green) 55%, white);
  outline-offset: 3px;
}

@keyframes jh-title-in {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes jh-rail {
  to { transform: translateX(-50%); }
}

@media (max-width: 1000px) {
  .jh-nav { gap: 14px; }
  .jh-nav > a { font-size: 13px; }
  .jh-signal__grid { grid-template-columns: minmax(0, 1.45fr) minmax(300px, 0.8fr); }
  .jh-lead-card { grid-template-columns: 1fr; }
  .jh-lead-card__media { min-height: 270px; }
  .jh-topics__grid { grid-template-columns: repeat(8, minmax(190px, 1fr)); overflow-x: auto; padding-bottom: 8px; scroll-snap-type: x mandatory; }
  .jh-topics__grid > a { scroll-snap-align: start; }
  .jh-footer__grid { grid-template-columns: 1.2fr 0.7fr 0.9fr; }
  .jh-footer__contacts { grid-column: 1 / -1; flex-direction: row; align-items: center; }
  .jh-footer__contacts > div { margin-left: auto; }
}

@media (max-width: 767px) {
  .jh-container { width: min(calc(100% - 28px), var(--jh-container)); }
  .jh-header__inner { min-height: 62px; }
  .jh-brand { gap: 9px; }
  .jh-brand__autero { width: 94px; }
  .jh-brand__litro { width: 67px; }
  .jh-brand > span { font-size: 15px; }
  .jh-nav { display: none; }
  .jh-menu { display: inline-flex; }
  .jh-masthead { padding-top: 30px; }
  .jh-masthead__grid { grid-template-columns: 1fr; gap: 18px; }
  .jh-masthead h1 { display: grid; gap: 9px; font-size: clamp(52px, 18vw, 76px); }
  .jh-masthead h1 small { max-width: none; font-size: 20px; }
  .jh-masthead__intro { max-width: 34ch; font-size: 16px; line-height: 1.5; }
  .jh-topic-rail { margin-top: 26px; }
  .jh-signal, .jh-topics { padding-block: 42px; }
  .jh-section-head { align-items: start; margin-bottom: 20px; }
  .jh-section-head h2 { font-size: 29px; }
  .jh-section-head > a { display: none; }
  .jh-section-head > p { display: none; }
  .jh-tabs { display: flex; margin-bottom: 14px; }
  .jh-signal__grid { display: block; }
  .jh-signal-panel { display: none; }
  .jh-signal-panel.is-active { display: block; animation: jh-panel-in 260ms var(--jh-ease) both; }
  .jh-lead-card { min-height: 0; grid-template-columns: 1fr; border-radius: 22px; }
  .jh-lead-card__media { min-height: 238px; }
  .jh-lead-card__body { padding: 22px; }
  .jh-lead-card h3 { margin: 13px 0 10px; font-size: 25px; line-height: 1.1; }
  .jh-lead-card p { display: none; }
  .jh-latest-list { grid-template-columns: 1fr; gap: 0; margin-top: 12px; }
  .jh-latest-list article { min-height: 0; padding: 16px 42px 16px 0; border-width: 1px 0 0; border-radius: 0; }
  .jh-latest-list article:hover { background: transparent; transform: none; }
  .jh-latest-list h3 { margin-top: 8px; font-size: 16px; }
  .jh-arrow-link { right: 4px; bottom: 18px; }
  .jh-popular { padding: 22px 18px; border-radius: 22px; }
  .jh-popular li a { padding-block: 17px; }
  .jh-topics { padding-bottom: 34px; }
  .jh-topics__grid { width: calc(100% + 14px); margin-right: -14px; grid-template-columns: repeat(8, 74vw); gap: 9px; }
  .jh-topics__grid > a { min-height: 170px; }
  .jh-help { padding-block: 8px 52px; }
  .jh-help__inner { grid-template-columns: 74px minmax(0, 1fr); gap: 16px; padding: 18px; border-radius: 22px; }
  .jh-help__inner > img { width: 74px; height: 94px; border-radius: 14px; }
  .jh-help h2 { font-size: 24px; }
  .jh-help p:not(.jh-kicker) { display: none; }
  .jh-help .jh-button { grid-column: 1 / -1; width: 100%; }
  .jh-footer { padding-top: 40px; }
  .jh-footer__grid { grid-template-columns: 1fr 1fr; gap: 34px 22px; }
  .jh-footer__brand { grid-column: 1 / -1; }
  .jh-footer__contacts { grid-column: 1 / -1; flex-direction: column; align-items: flex-start; }
  .jh-footer__contacts > div { margin-left: 0; }
  .jh-footer__bottom { flex-wrap: wrap; gap: 12px 18px; }
  .jh-footer__bottom span { width: 100%; }
}

/* Topic archive */
.jt-hero {
  padding: clamp(44px, 7vw, 86px) 0 clamp(38px, 6vw, 70px);
  background: var(--jh-ink);
  color: var(--jh-paper);
}

.jt-crumbs {
  display: flex;
  gap: 8px;
  margin-bottom: clamp(34px, 5vw, 62px);
  color: color-mix(in oklab, var(--jh-paper) 55%, transparent);
  font-size: 13px;
}

.jt-crumbs a:hover { color: var(--jh-paper); }

.jt-hero h1 {
  max-width: 980px;
  margin: 0;
  font-size: clamp(46px, 7vw, 92px);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: .96;
  text-wrap: balance;
}

.jt-hero > .jh-container > p:last-child {
  max-width: 680px;
  margin: 26px 0 0;
  color: color-mix(in oklab, var(--jh-paper) 68%, transparent);
  font-size: 18px;
  line-height: 1.5;
}

.jt-topic-nav {
  position: sticky;
  z-index: 60;
  top: 68px;
  border-bottom: 1px solid var(--jh-line);
  background: color-mix(in oklab, var(--jh-paper) 94%, transparent);
  backdrop-filter: blur(14px);
}

.jt-topic-nav .jh-container {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-block: 10px;
  scrollbar-width: none;
}

.jt-topic-nav .jh-container::-webkit-scrollbar { display: none; }

.jt-topic-nav a {
  flex: 0 0 auto;
  padding: 9px 13px;
  border: 1px solid var(--jh-line);
  border-radius: 999px;
  color: var(--jh-muted);
  font-size: 13px;
  font-weight: 500;
  white-space: nowrap;
}

.jt-topic-nav a.is-active {
  border-color: var(--jh-ink);
  background: var(--jh-ink);
  color: var(--jh-paper);
}

.jt-feed { padding-block: clamp(48px, 7vw, 82px); }

.jt-lead {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, .75fr);
  min-height: 420px;
  overflow: hidden;
  border-radius: var(--jh-radius-lg);
  background: var(--jh-soft);
}

.jt-lead__media { min-height: 420px; overflow: hidden; }

.jt-lead__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms var(--jh-ease);
}

.jt-lead:hover .jt-lead__image { transform: scale(1.025); }

.jt-lead--text {
  grid-template-columns: 1fr;
  min-height: 360px;
  background: var(--jh-ink);
  color: var(--jh-paper);
}

.jt-lead--text .jt-lead__body {
  max-width: 880px;
}

.jt-lead--text p {
  color: color-mix(in oklab, var(--jh-paper) 68%, transparent);
}

.jt-lead--text .jt-read {
  color: var(--jh-paper) !important;
}

.jt-lead__body {
  display: flex;
  padding: clamp(28px, 4vw, 50px);
  flex-direction: column;
  justify-content: flex-end;
}

.jt-lead h2 {
  margin: 18px 0 14px;
  font-size: clamp(29px, 3.2vw, 44px);
  font-weight: 500;
  letter-spacing: -.04em;
  line-height: 1.04;
}

.jt-lead p {
  margin: 0;
  color: var(--jh-muted);
  font-size: 15px;
  line-height: 1.5;
}

.jt-lead.jt-lead--text p {
  color: color-mix(in oklab, var(--jh-paper) 68%, transparent);
}

.jt-read {
  display: inline-flex;
  margin-top: 28px;
  align-self: flex-start;
  gap: 18px;
  padding-bottom: 4px;
  border-bottom: 1px solid currentColor;
  color: var(--jh-green) !important;
  font-size: 14px;
  font-weight: 700;
}

.jt-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 12px;
}

.jt-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--jh-line);
  border-radius: var(--jh-radius);
  background: var(--jh-paper);
}

.jt-card__media { display: block; aspect-ratio: 16 / 9; overflow: hidden; }

.jt-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms var(--jh-ease);
}

.jt-card:hover .jt-card__image { transform: scale(1.035); }

.jt-card__body { min-height: 168px; padding: 19px 48px 20px 19px; }

.jt-card--text {
  min-height: 218px;
  background: var(--jh-soft);
}

.jt-card--text:nth-child(3n + 2) {
  background: var(--jh-paper);
}

.jt-card--text .jt-card__body {
  min-height: 218px;
}

.jt-card h2 {
  margin: 14px 0 0;
  font-size: 19px;
  font-weight: 500;
  letter-spacing: -.025em;
  line-height: 1.2;
}

.jt-card__arrow {
  position: absolute;
  right: 18px;
  bottom: 18px;
  color: var(--jh-green) !important;
  font-size: 20px;
}

.jt-pagination { margin-top: 34px; }
.jt-pagination .nav-links { display: flex; justify-content: center; gap: 7px; }
.jt-pagination .page-numbers { display: grid; width: 42px; height: 42px; place-items: center; border: 1px solid var(--jh-line); border-radius: 50%; font-size: 14px; }
.jt-pagination .page-numbers.current { border-color: var(--jh-ink); background: var(--jh-ink); color: var(--jh-paper); }
.jt-empty { margin: 0; padding: 42px; border-radius: var(--jh-radius); background: var(--jh-soft); color: var(--jh-muted); }

@media (max-width: 900px) {
  .jt-lead { grid-template-columns: 1fr; }
  .jt-lead__media { min-height: 340px; }
  .jt-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 767px) {
  .jc-hero { padding-block: 34px 30px; }
  .jc-hero h1 { margin-bottom: 22px; font-size: 42px; }
  .jc-search { display: grid; grid-template-columns: 1fr; }
  .jc-search input, .jc-search button { width: 100%; }
  .jc-results { padding-block: 40px; }
  .jc-grid { grid-template-columns: 1fr; gap: 12px; }
  .jt-hero { padding-block: 30px 42px; }
  .jt-crumbs { margin-bottom: 34px; }
  .jt-hero h1 { font-size: clamp(42px, 13vw, 60px); }
  .jt-hero > .jh-container > p:last-child { margin-top: 20px; font-size: 16px; }
  .jt-topic-nav { top: 62px; }
  .jt-topic-nav .jh-container { width: 100%; padding-inline: 14px; }
  .jt-feed { padding-block: 42px; }
  .jt-lead { min-height: 0; border-radius: 22px; }
  .jt-lead--text { min-height: 310px; }
  .jt-lead__media { min-height: 236px; }
  .jt-lead__body { padding: 22px; }
  .jt-lead h2 { font-size: 27px; }
  .jt-lead p { display: none; }
  .jt-read { margin-top: 20px; }
  .jt-grid { grid-template-columns: 1fr; gap: 10px; }
  .jt-card { display: grid; grid-template-columns: 116px minmax(0, 1fr); }
  .jt-card--text { display: block; min-height: 148px; }
  .jt-card__media { height: 100%; min-height: 132px; aspect-ratio: auto; }
  .jt-card__body { min-height: 132px; padding: 16px 38px 16px 15px; }
  .jt-card--text .jt-card__body { min-height: 148px; }
  .jt-card h2 { margin-top: 9px; font-size: 16px; }
  .jt-card__arrow { right: 13px; bottom: 14px; }
}

@keyframes jh-panel-in {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (prefers-reduced-motion: reduce) {
  .jh-masthead h1 span,
  .jh-masthead h1 small,
  .jh-topic-rail__track,
  .jh-signal-panel.is-active {
    animation: none;
  }

  .jh-lead-card__image,
  .jh-topics__grid > a,
  .jh-latest-list article {
    transition: none;
  }
}
