/* article-shared.css — included inline in article pages */
.article-hero {
  background: var(--off-black);
  padding: calc(var(--nav-h) + 64px) var(--pad) 60px;
  position: relative;
  overflow: hidden;
}
.article-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(232,84,26,0.06) 0%, transparent 60%);
  pointer-events: none;
}
.article-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
  margin-bottom: 20px;
}
.article-meta span { color: var(--orange); }
.article-title {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  letter-spacing: -0.02em;
  max-width: 760px;
  position: relative;
  z-index: 1;
}
.article-subtitle {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-style: italic;
  color: rgba(255,255,255,0.55);
  margin-top: 16px;
  max-width: 600px;
  line-height: 1.6;
  position: relative;
  z-index: 1;
}
.article-hero-image {
  width: 100%;
  max-height: 440px;
  object-fit: cover;
  display: block;
  filter: grayscale(30%);
}
.article-body {
  max-width: 720px;
  margin: 0 auto;
  padding: 72px var(--pad);
  font-size: 1.05rem;
  color: var(--dark);
  line-height: 1.85;
}
.article-body p { margin-bottom: 20px; }
.article-body h2 {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--off-black);
  margin: 40px 0 16px;
  line-height: 1.25;
}
.article-body h3 {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--off-black);
  margin: 32px 0 12px;
}
.article-body strong { color: var(--off-black); font-weight: 600; }
.article-body em { font-style: italic; }
.article-body a { color: var(--orange); }
.article-body a:hover { text-decoration: underline; }
.article-body blockquote {
  border-left: 3px solid var(--orange);
  padding: 4px 24px;
  margin: 32px 0;
  font-family: var(--serif);
  font-size: 1.15rem;
  font-style: italic;
  color: var(--mid);
}
.article-body ol { list-style: decimal; padding-left: 24px; margin: 20px 0; }
.article-body ol li { margin-bottom: 8px; }
.article-body ul { list-style: disc; padding-left: 24px; margin: 20px 0; }
.article-body ul li { margin-bottom: 8px; }
.article-body img { width: 100%; max-width: 100%; margin: 32px 0; border: 1px solid var(--border); }
.article-body hr { border: none; border-top: 1px solid var(--border); margin: 40px 0; }
.article-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}
.article-tag {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mid);
  border: 1px solid var(--border);
  padding: 5px 12px;
}
.article-cta {
  background: var(--off-black);
  padding: 56px var(--pad);
  text-align: center;
}
.article-cta h3 {
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}
.article-cta p { font-size: 0.9rem; color: rgba(255,255,255,0.5); margin-bottom: 28px; }
.article-nav {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 40px var(--pad);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.article-nav a {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--orange);
}

/* ─── JP SUMMARY BOX ─── */
.jp-summary {
  background: #f5f4f2;
  border-left: 3px solid var(--orange);
  padding: 24px 28px;
  margin-bottom: 40px;
  border-radius: 1px;
}
.jp-summary-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 10px;
}
.jp-summary p:last-child {
  font-family: var(--jp);
  font-size: 0.92rem;
  color: var(--mid);
  line-height: 1.85;
  margin-bottom: 0;
}

/* ─── ARTICLE HERO — background image style ─── */
.article-hero {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: flex-end;
  background-size: cover;
  background-position: center;
  background-color: var(--off-black);
  margin-top: var(--nav-h);
}
.article-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.85) 0%,
    rgba(0,0,0,0.55) 50%,
    rgba(0,0,0,0.2) 100%
  );
}
.article-hero-content {
  position: relative;
  z-index: 1;
  padding: 52px var(--pad);
  max-width: 860px;
}
.article-hero-content .article-meta {
  color: rgba(255,255,255,0.6);
}
.article-hero-content .article-meta span {
  color: var(--orange);
}
.article-hero-content .article-title {
  color: var(--white);
}
.article-hero-content .article-subtitle {
  color: rgba(255,255,255,0.7);
}

/* ─── ARTICLE BODY FIGURES ─── */
.article-body figure {
  margin: 40px 0;
}
.article-body figure img {
  width: 100%;
  height: auto;
  display: block;
}
.article-body h3 {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--off-black);
  margin: 28px 0 12px;
}
.article-body ol {
  padding-left: 24px;
  margin: 20px 0;
}
.article-body ol li {
  font-size: 0.95rem;
  color: var(--mid);
  line-height: 1.75;
  margin-bottom: 10px;
}
