/* Journal homepage templates — scoped under .jh-shell */

.jh-shell {
  --jh-ink: #0f2419;
  --jh-forest: #002e1c;
  --jh-forest-mid: #1a5f3f;
  --jh-gold: #c9a227;
  --jh-cream: #f7f5ef;
  --jh-cream-deep: #efebe3;
  --jh-mint: #e8f3ec;
  --jh-mint-deep: #d5eadc;
  --jh-paper: #ffffff;
  --jh-muted: #5c6b63;
  --jh-line: rgba(15, 36, 25, 0.12);
  --jh-serif: "Libre Baskerville", "Palatino Linotype", Palatino, Georgia, serif;
  --jh-sans: "Source Sans 3", "Segoe UI", Helvetica, Arial, sans-serif;
  color: var(--jh-ink);
  font-family: var(--jh-sans);
  background: var(--jh-cream);
  line-height: 1.55;
}

.jh-shell *,
.jh-shell *::before,
.jh-shell *::after {
  box-sizing: border-box;
}

.jh-shell a {
  color: inherit;
  text-decoration: none;
}

.jh-shell a:hover {
  color: var(--jh-forest-mid);
}

.jh-shell img {
  max-width: 100%;
  height: auto;
  display: block;
}

.jh-wrap {
  width: min(1180px, calc(100% - 2.5rem));
  margin-inline: auto;
}

.jh-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.35rem;
  border-radius: 2px;
  border: 1px solid transparent;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.jh-btn:hover {
  transform: translateY(-1px);
}

.jh-btn--solid {
  background: var(--jh-forest);
  color: #fff !important;
}

.jh-btn--solid:hover {
  background: var(--jh-forest-mid);
  color: #fff !important;
}

.jh-btn--gold {
  background: var(--jh-gold);
  color: var(--jh-ink) !important;
}

.jh-btn--gold:hover {
  filter: brightness(1.05);
  color: var(--jh-ink) !important;
}

.jh-btn--ghost {
  background: transparent;
  border-color: var(--jh-forest);
  color: var(--jh-forest) !important;
}

.jh-btn--ghost-light {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.55);
  color: #fff !important;
}

.jh-btn--mint {
  background: #c6e27a;
  color: var(--jh-forest) !important;
}

.jh-eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--jh-muted);
}

.jh-serif {
  font-family: var(--jh-serif);
}

/* —— Shared template chrome —— */
.jh-topbar {
  background: var(--jh-forest);
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.75rem;
  letter-spacing: 0.04em;
}

.jh-topbar .jh-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  justify-content: space-between;
  align-items: center;
  padding: 0.55rem 0;
}

.jh-topbar strong {
  color: #fff;
  font-weight: 600;
}

.jh-nav {
  background: var(--jh-forest);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  position: sticky;
  top: 0;
  z-index: 40;
}

.jh-nav--light {
  background: #fff;
  border-bottom: 1px solid var(--jh-line);
  border-top: 0;
}

.jh-nav__row {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.85rem 0;
  flex-wrap: wrap;
}

.jh-brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-family: var(--jh-serif);
  font-weight: 700;
  font-size: 1.15rem;
  color: #fff !important;
  min-width: 0;
}

.jh-nav--light .jh-brand {
  color: var(--jh-forest) !important;
}

.jh-brand img {
  width: 36px;
  height: 36px;
  object-fit: cover;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.jh-nav--light .jh-brand img {
  border-color: var(--jh-line);
}

.jh-menu {
  display: flex;
  flex-wrap: wrap;
  gap: 0.15rem 1.1rem;
  list-style: none;
  margin: 0;
  padding: 0;
  flex: 1;
  justify-content: center;
}

.jh-menu a {
  font-size: 0.84rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.86) !important;
}

.jh-nav--light .jh-menu a {
  color: var(--jh-ink) !important;
}

.jh-menu a:hover,
.jh-menu a.is-active {
  color: var(--jh-gold) !important;
}

.jh-nav--light .jh-menu a:hover,
.jh-nav--light .jh-menu a.is-active {
  color: var(--jh-forest-mid) !important;
}

.jh-nav__tools {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-left: auto;
}

.jh-search {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  padding: 0.25rem 0.35rem 0.25rem 0.85rem;
}

.jh-nav--light .jh-search {
  background: #f4f7f5;
  border-color: var(--jh-line);
}

.jh-search input {
  border: 0;
  background: transparent;
  color: #fff;
  width: 11rem;
  font-size: 0.82rem;
  outline: none;
}

.jh-nav--light .jh-search input {
  color: var(--jh-ink);
}

.jh-search input::placeholder {
  color: rgba(255, 255, 255, 0.55);
}

.jh-nav--light .jh-search input::placeholder {
  color: var(--jh-muted);
}

.jh-search button {
  border: 0;
  background: transparent;
  color: inherit;
  padding: 0.35rem 0.55rem;
  cursor: pointer;
}

/* —— Editorial (default / Figma-like) —— */
.jh-editorial .jh-hero {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 2.5rem;
  align-items: center;
  padding: 4.5rem 0 3.5rem;
  background:
    radial-gradient(circle at 85% 15%, rgba(201, 162, 39, 0.12), transparent 40%),
    linear-gradient(180deg, #fbf9f4 0%, var(--jh-cream) 100%);
}

.jh-editorial .jh-hero h1 {
  font-family: var(--jh-serif);
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  line-height: 1.15;
  margin: 0.55rem 0 1rem;
  font-weight: 700;
  max-width: 14ch;
}

.jh-editorial .jh-hero p {
  color: var(--jh-muted);
  max-width: 38rem;
  margin-bottom: 1.5rem;
}

.jh-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.75rem;
}

.jh-value-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem 1.75rem;
  font-size: 0.86rem;
  color: var(--jh-muted);
}

.jh-value-row span {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.jh-value-row i {
  color: var(--jh-gold);
}

.jh-cover {
  justify-self: end;
  width: min(100%, 320px);
  aspect-ratio: 3 / 4;
  background: linear-gradient(160deg, #013524, #00180f);
  border: 1px solid rgba(201, 162, 39, 0.35);
  box-shadow: 24px 28px 60px rgba(0, 20, 12, 0.28);
  padding: 1.25rem;
  position: relative;
  overflow: hidden;
  animation: jh-rise 0.8s ease both;
}

.jh-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.92;
}

.jh-cover__label {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  color: #fff;
  font-family: var(--jh-serif);
  font-size: 1.2rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.45);
}

.jh-metrics {
  background: #f1eee6;
  border-block: 1px solid var(--jh-line);
}

.jh-metrics__row {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1rem;
  padding: 1.35rem 0;
}

.jh-metric {
  text-align: center;
}

.jh-metric small {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--jh-muted);
  margin-bottom: 0.25rem;
}

.jh-metric strong {
  font-size: 0.95rem;
  font-weight: 700;
}

.jh-section {
  padding: 3.5rem 0;
}

.jh-section__head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 1rem;
  margin-bottom: 1.75rem;
}

.jh-section__head h2 {
  font-family: var(--jh-serif);
  font-size: 1.85rem;
  margin: 0;
}

.jh-section__head a {
  color: var(--jh-forest-mid);
  font-weight: 600;
  font-size: 0.9rem;
}

.jh-article-list {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--jh-line);
}

.jh-article-list > li {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1.25rem;
  align-items: start;
  padding: 1.35rem 0;
  border-bottom: 1px solid var(--jh-line);
  animation: jh-fade 0.7s ease both;
}

.jh-article-list > li:nth-child(2) { animation-delay: 0.08s; }
.jh-article-list > li:nth-child(3) { animation-delay: 0.16s; }
.jh-article-list > li:nth-child(4) { animation-delay: 0.24s; }

.jh-num {
  font-family: var(--jh-serif);
  color: var(--jh-gold);
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1;
  min-width: 2.2rem;
}

.jh-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 0.45rem;
}

.jh-badge {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.2rem 0.45rem;
  border: 1px solid var(--jh-line);
  color: var(--jh-muted);
}

.jh-badge--gold {
  border-color: rgba(201, 162, 39, 0.45);
  color: #8a6d12;
  background: rgba(201, 162, 39, 0.12);
}

.jh-article-list h3 {
  font-family: var(--jh-serif);
  font-size: 1.15rem;
  margin: 0 0 0.35rem;
  line-height: 1.35;
}

.jh-article-list .meta {
  color: var(--jh-muted);
  font-size: 0.9rem;
}

.jh-article-list .doi {
  display: inline-block;
  margin-top: 0.35rem;
  font-size: 0.82rem;
  color: var(--jh-forest-mid);
}

.jh-article-actions {
  display: flex;
  flex-direction: column;
  align-items: end;
  gap: 0.45rem;
  white-space: nowrap;
}

.jh-pdf {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.4rem 0.7rem;
  background: var(--jh-forest);
  color: #fff !important;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.jh-archives-btn {
  display: block;
  text-align: center;
  margin-top: 1.75rem;
  padding: 1rem;
  background: #ebe7de;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.82rem;
}

.jh-cfp {
  background: var(--jh-cream-deep);
  border: 1px solid var(--jh-line);
  display: grid;
  grid-template-columns: 1.4fr 0.8fr;
  gap: 1.5rem;
  padding: 2rem;
}

.jh-cfp h2 {
  font-family: var(--jh-serif);
  margin: 0 0 0.75rem;
}

.jh-cfp__facts {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
  margin-top: 1.25rem;
  font-size: 0.9rem;
  color: var(--jh-muted);
}

.jh-cfp__card {
  background: var(--jh-forest);
  color: #fff;
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
}

.jh-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.jh-tile {
  border: 1px solid var(--jh-line);
  background: #fff;
  padding: 1.35rem;
  min-height: 10rem;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.jh-tile:hover {
  border-color: var(--jh-gold);
  transform: translateY(-2px);
}

.jh-tile i {
  color: var(--jh-gold);
  margin-bottom: 0.75rem;
}

.jh-tile h3 {
  font-family: var(--jh-serif);
  font-size: 1.05rem;
  margin: 0 0 0.4rem;
}

.jh-tile p {
  margin: 0;
  color: var(--jh-muted);
  font-size: 0.9rem;
}

.jh-footer {
  background: var(--jh-forest);
  color: rgba(255, 255, 255, 0.78);
  padding: 3rem 0 1.5rem;
}

.jh-footer a {
  color: rgba(255, 255, 255, 0.78) !important;
}

.jh-footer a:hover {
  color: var(--jh-gold) !important;
}

.jh-footer__grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.jh-footer__grid--links {
  grid-template-columns: 1.3fr repeat(3, minmax(0, 1fr));
}

.jh-footer h4 {
  color: #fff;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin: 0 0 0.85rem;
}

.jh-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.jh-footer li {
  margin-bottom: 0.4rem;
  font-size: 0.9rem;
}

.jh-footer__brand {
  font-family: var(--jh-serif);
  color: #fff;
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.jh-footer__base {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 1rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 0.82rem;
}

/* —— Current Issue template —— */
.jh-issue {
  background: #f7faf8;
}

.jh-issue .jh-nav {
  background: #fff;
  border-bottom: 1px solid var(--jh-line);
  border-top: 0;
  position: sticky;
  top: 0;
}

.jh-issue .jh-brand,
.jh-issue .jh-menu a {
  color: var(--jh-forest) !important;
}

.jh-issue .jh-menu a:hover,
.jh-issue .jh-menu a.is-active {
  color: var(--jh-forest-mid) !important;
}

.jh-issue-hero {
  display: grid;
  grid-template-columns: 1.5fr 0.9fr;
  gap: 2rem;
  padding: 2.75rem 0 1.5rem;
}

.jh-issue-hero h1 {
  font-family: var(--jh-serif);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  margin: 0.4rem 0 0.85rem;
}

.jh-stat-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.jh-stat-card {
  background: var(--jh-mint);
  padding: 1rem;
  border: 1px solid var(--jh-mint-deep);
}

.jh-stat-card strong {
  display: block;
  font-size: 1.35rem;
  color: var(--jh-forest);
}

.jh-stat-card span {
  font-size: 0.8rem;
  color: var(--jh-muted);
}

.jh-id-box {
  background: #fff;
  border: 1px solid var(--jh-line);
  padding: 1.25rem;
}

.jh-id-box h3 {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin: 0 0 0.85rem;
}

.jh-id-box dl {
  margin: 0;
  display: grid;
  gap: 0.55rem;
}

.jh-id-box dt {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--jh-muted);
}

.jh-id-box dd {
  margin: 0.1rem 0 0;
  font-weight: 600;
}

.jh-issue-body {
  display: grid;
  grid-template-columns: 1.55fr 0.85fr;
  gap: 1.5rem;
  padding-bottom: 3rem;
}

.jh-issue-panel {
  background: var(--jh-mint);
  padding: 1.5rem;
}

.jh-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: 1rem 0 1.25rem;
}

.jh-filters span {
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--jh-line);
  font-size: 0.78rem;
  font-weight: 600;
}

.jh-filters span.is-on {
  background: var(--jh-forest);
  color: #fff;
  border-color: var(--jh-forest);
}

.jh-issue-card {
  background: #fff;
  border: 1px solid var(--jh-line);
  padding: 1.15rem;
  margin-bottom: 0.85rem;
}

.jh-issue-card h3 {
  font-family: var(--jh-serif);
  font-size: 1.1rem;
  margin: 0.35rem 0;
}

.jh-side-card {
  background: #fff;
  border: 1px solid var(--jh-line);
  padding: 1.15rem;
  margin-bottom: 1rem;
}

.jh-side-card h3 {
  margin: 0 0 0.75rem;
  font-size: 1rem;
}

.jh-trend {
  list-style: none;
  margin: 0;
  padding: 0;
}

.jh-trend li {
  padding: 0.55rem 0;
  border-bottom: 1px solid var(--jh-line);
  font-size: 0.9rem;
}

.jh-trend small {
  display: block;
  color: var(--jh-muted);
  margin-top: 0.2rem;
}

/* —— Discovery template —— */
.jh-discovery {
  background: #f5f7f6;
}

.jh-discovery-hero {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2rem;
  align-items: center;
  padding: 3.5rem 0 2.5rem;
  background: #fff;
}

.jh-discovery-hero h1 {
  font-family: var(--jh-serif);
  font-size: clamp(2.1rem, 4vw, 3.1rem);
  line-height: 1.15;
  margin: 0.5rem 0 1rem;
  max-width: 16ch;
}

.jh-discovery-hero h1 em {
  font-style: normal;
  color: var(--jh-forest-mid);
  font-weight: 500;
}

.jh-visual-card {
  background: linear-gradient(145deg, #123d2b, #0a2419);
  color: #fff;
  min-height: 260px;
  padding: 1.5rem;
  position: relative;
  overflow: hidden;
}

.jh-visual-card::after {
  content: "";
  position: absolute;
  inset: 20% -10% auto auto;
  width: 180px;
  height: 180px;
  border: 1px solid rgba(201, 162, 39, 0.35);
  border-radius: 50%;
}

.jh-ribbon {
  background: var(--jh-forest);
  color: rgba(255, 255, 255, 0.88);
}

.jh-ribbon__row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  padding: 1rem 0;
  font-size: 0.86rem;
}

.jh-index-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  justify-content: center;
  padding: 0.75rem 0 1.25rem;
  color: var(--jh-muted);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: #fff;
  border-bottom: 1px solid var(--jh-line);
}

.jh-kpi-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  padding: 2rem 0 0.5rem;
}

.jh-kpi {
  background: #fff;
  border: 1px solid var(--jh-line);
  padding: 1.15rem;
}

.jh-kpi i {
  color: var(--jh-forest-mid);
  background: var(--jh-mint);
  width: 2rem;
  height: 2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.75rem;
}

.jh-kpi strong {
  display: block;
  font-size: 1.4rem;
  margin-bottom: 0.2rem;
}

.jh-kpi span {
  color: var(--jh-muted);
  font-size: 0.85rem;
}

.jh-card-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.jh-card {
  background: #fff;
  border: 1px solid var(--jh-line);
  padding: 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  min-height: 100%;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.jh-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(0, 30, 18, 0.08);
}

.jh-card h3 {
  font-family: var(--jh-serif);
  font-size: 1.1rem;
  margin: 0;
  line-height: 1.35;
}

.jh-card .doi-box {
  background: #f3f7f4;
  padding: 0.55rem 0.7rem;
  font-size: 0.82rem;
  color: var(--jh-forest-mid);
}

.jh-card__foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
  gap: 0.75rem;
  padding-top: 0.5rem;
}

.jh-cta {
  margin: 2.5rem 0 0;
  background:
    radial-gradient(circle at 90% 20%, rgba(198, 226, 122, 0.18), transparent 35%),
    linear-gradient(120deg, #013524, #002616);
  color: #fff;
  padding: 2.5rem;
  display: grid;
  grid-template-columns: 1.3fr 0.9fr;
  gap: 1.5rem;
  align-items: center;
}

.jh-cta h2 {
  font-family: var(--jh-serif);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin: 0 0 0.85rem;
}

.jh-cta ul {
  margin: 0;
  padding-left: 1.1rem;
  color: rgba(255, 255, 255, 0.8);
}

.jh-cta__actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

@keyframes jh-rise {
  from { opacity: 0; transform: translateY(18px) scale(0.98); }
  to { opacity: 1; transform: none; }
}

@keyframes jh-fade {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: none; }
}

@media (max-width: 980px) {
  .jh-editorial .jh-hero,
  .jh-issue-hero,
  .jh-issue-body,
  .jh-discovery-hero,
  .jh-cfp,
  .jh-cta,
  .jh-footer__grid,
  .jh-footer__grid--links {
    grid-template-columns: 1fr;
  }

  .jh-metrics__row,
  .jh-ribbon__row,
  .jh-kpi-row,
  .jh-grid-4,
  .jh-stat-cards,
  .jh-card-grid {
    grid-template-columns: 1fr 1fr;
  }

  .jh-cover {
    justify-self: start;
  }

  .jh-menu {
    justify-content: flex-start;
    width: 100%;
    order: 3;
  }

  .jh-nav__tools {
    margin-left: 0;
  }
}

@media (max-width: 640px) {
  .jh-metrics__row,
  .jh-ribbon__row,
  .jh-kpi-row,
  .jh-grid-4,
  .jh-stat-cards,
  .jh-card-grid,
  .jh-article-list > li {
    grid-template-columns: 1fr;
  }

  .jh-article-actions {
    align-items: start;
    flex-direction: row;
  }

  .jh-search input {
    width: 7rem;
  }
}

.jh-page {
  min-height: 50vh;
}

.jh-page__hero {
  background: linear-gradient(180deg, rgba(0, 46, 28, 0.04), transparent);
  border-bottom: 1px solid var(--jh-line);
  padding: 2.25rem 0 1.75rem;
}

.jh-issue .jh-page__hero {
  background: var(--jh-mint);
}

.jh-page__hero-row {
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  align-items: end;
  flex-wrap: wrap;
}

.jh-page__title {
  font-family: var(--jh-serif);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  margin: 0.35rem 0 0;
  line-height: 1.2;
}

.jh-page__subtitle {
  margin: 0.65rem 0 0;
  color: var(--jh-muted);
  max-width: 40rem;
}

.jh-breadcrumb {
  display: flex;
  gap: 0.45rem;
  align-items: center;
  font-size: 0.86rem;
  color: var(--jh-muted);
}

.jh-breadcrumb a {
  color: var(--jh-forest-mid) !important;
  font-weight: 600;
}

.jh-page__body {
  padding: 2.25rem 0 3.5rem;
}

.jh-page .jh-search {
  background: #fff;
  border: 1px solid var(--jh-line);
}

.jh-page .jh-search input {
  color: var(--jh-ink);
}

.jh-page .jh-search input::placeholder {
  color: var(--jh-muted);
}

.jh-page .jh-search button {
  color: var(--jh-forest);
}

.jh-prose {
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 52rem;
}

.jh-prose h1,
.jh-prose h2,
.jh-prose h3,
.jh-prose h4 {
  font-family: var(--jh-serif);
  margin-top: 1.5rem;
}

.jh-prose img {
  margin: 1rem 0;
}

.jh-prose a {
  color: var(--jh-forest-mid);
  text-decoration: underline;
}

.jh-news-list {
  display: grid;
  gap: 1.25rem;
  max-width: 52rem;
}

.jh-news-card {
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--jh-line);
}

.jh-news-card:first-child {
  padding-top: 0;
}

.jh-news-card__date {
  display: block;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  color: var(--jh-muted, #667);
  margin-bottom: 0.35rem;
}

.jh-news-card__title {
  font-family: var(--jh-serif);
  font-size: 1.35rem;
  line-height: 1.3;
  margin: 0 0 0.5rem;
}

.jh-news-card__title a {
  color: inherit;
  text-decoration: none;
}

.jh-news-card__title a:hover {
  color: var(--jh-forest-mid);
  text-decoration: underline;
}

.jh-news-card__excerpt {
  margin: 0 0 0.75rem;
  color: var(--jh-muted, #445);
  line-height: 1.6;
}

.jh-news-card__more {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--jh-forest-mid);
}

.jh-paper-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.jh-paper-list > li {
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--jh-line);
}

.jh-paper-list h2,
.jh-paper-list h3 {
  font-family: var(--jh-serif);
  font-size: 1.2rem;
  margin: 0 0 0.35rem;
}

.jh-paper-list .meta {
  color: var(--jh-muted);
  font-size: 0.92rem;
  margin-bottom: 0.35rem;
}

.jh-contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2rem;
}

.jh-form label {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
}

.jh-form input,
.jh-form textarea {
  width: 100%;
  border: 1px solid var(--jh-line);
  background: #fff;
  padding: 0.7rem 0.85rem;
  margin-bottom: 0.9rem;
  font: inherit;
}

.jh-form input:focus,
.jh-form textarea:focus {
  outline: 2px solid rgba(26, 95, 63, 0.25);
  border-color: var(--jh-forest-mid);
}

.jh-side-panel {
  background: #fff;
  border: 1px solid var(--jh-line);
  padding: 1.35rem;
}

.jh-side-panel h3 {
  font-family: var(--jh-serif);
  margin: 0 0 0.85rem;
}

.jh-side-panel li {
  margin-bottom: 0.65rem;
}

.jh-article-hero h1 {
  font-family: var(--jh-serif);
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  line-height: 1.25;
  margin: 0 0 0.75rem;
}

.jh-board-section {
  margin-bottom: 2.75rem;
}

.jh-board-section__title {
  font-family: var(--jh-serif);
  font-size: 1.55rem;
  margin: 0 0 1.25rem;
  padding-bottom: 0.55rem;
  border-bottom: 1px solid var(--jh-line);
}

.jh-board-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.15rem;
}

.jh-member-card {
  background: #fff;
  border: 1px solid var(--jh-line);
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 0.9rem;
  padding: 0.9rem;
  min-height: 100%;
}

.jh-member-card__photo {
  width: 96px;
  height: 96px;
  overflow: hidden;
  background: var(--jh-cream-deep);
}

.jh-member-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.jh-member-card__name {
  font-family: var(--jh-serif);
  font-size: 1.05rem;
  margin: 0 0 0.25rem;
  line-height: 1.3;
}

.jh-member-card__position {
  color: var(--jh-forest-mid);
  font-weight: 700;
  font-size: 0.86rem;
  margin-bottom: 0.35rem;
}

.jh-member-card__meta {
  color: var(--jh-muted);
  font-size: 0.86rem;
  line-height: 1.4;
  margin-bottom: 0.25rem;
}

.jh-member-card__email {
  margin-top: 0.35rem;
  font-size: 0.86rem;
}

.jh-member-card__email a {
  color: var(--jh-forest-mid) !important;
  word-break: break-word;
}

@media (max-width: 980px) {
  .jh-contact-grid,
  .jh-board-grid {
    grid-template-columns: 1fr;
  }
}
