/* ===== CAMINO LIBRE SHARED STYLES ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --black: #0f0f0f;
  --dark: #1c1c1c;
  --gray: #6b6b6b;
  --light-gray: #f4f4f0;
  --border: #e0e0d8;
  --accent: #c8a96e;
  --accent-dark: #a8894e;
  --white: #ffffff;
  --text: #1c1c1c;
  --text-light: #4a4a4a;
}

html { font-size: 16px; scroll-behavior: smooth; }

body {
  font-family: 'Noto Sans JP', 'Hiragino Kaku Gothic ProN', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.8;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; border-radius: 4px; }

/* ===== SCROLL LINE ===== */
.scroll-line {
  position: fixed; top: 0; left: 0;
  height: 2px; background: var(--accent);
  width: 0%; z-index: 200; transition: width 0.1s;
}

/* ===== HEADER ===== */
header {
  position: sticky; top: 0; z-index: 100;
  background: var(--white); border-bottom: 1px solid var(--border);
}
.header-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 2rem;
  height: 64px; display: flex; align-items: center; justify-content: space-between;
}
.logo {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.6rem; font-weight: 900; letter-spacing: 0.02em; color: var(--black);
}
.logo span { color: var(--accent); }
nav { display: flex; align-items: center; gap: 2.5rem; }
nav a {
  font-size: 0.8rem; font-weight: 500; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--text-light); transition: color 0.2s;
}
nav a:hover { color: var(--accent); }
.nav-cta {
  background: var(--black); color: var(--white) !important;
  padding: 0.45rem 1.2rem; border-radius: 2px;
  font-size: 0.75rem !important; transition: background 0.2s !important;
}
.nav-cta:hover { background: var(--accent) !important; }

/* ===== FOOTER ===== */
footer { background: var(--black); color: rgba(255,255,255,0.5); padding: 3rem 2rem; }
.footer-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; justify-content: space-between; align-items: center;
}
.footer-logo {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.4rem; font-weight: 900; color: var(--white);
}
.footer-logo span { color: var(--accent); }
.footer-nav { display: flex; gap: 2rem; font-size: 0.78rem; letter-spacing: 0.1em; }
.footer-nav a:hover { color: var(--accent); }
.footer-copy { font-size: 0.75rem; }

/* ===== HOMEPAGE ===== */
.hero {
  max-width: 1200px; margin: 0 auto; padding: 3rem 2rem 2rem;
  display: grid; grid-template-columns: 1fr 380px; gap: 2rem; align-items: stretch;
}
.hero-main {
  position: relative; overflow: hidden; border-radius: 4px; min-height: 500px;
  display: flex; flex-direction: column; justify-content: flex-end; padding: 2.5rem; cursor: pointer;
}
.hero-main:hover .hero-bg { transform: scale(1.04); }
.hero-bg {
  position: absolute; inset: 0; transition: transform 0.6s ease;
  background-size: cover; background-position: center;
}
.hero-bg-fallback {
  background: linear-gradient(135deg, #2a5240 0%, #1a3a28 30%, #0a2015 70%, #050f0a 100%);
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.3) 50%, transparent 100%);
}
.hero-tag {
  position: relative; z-index: 1; display: inline-block;
  background: var(--accent); color: var(--white);
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase;
  padding: 0.3rem 0.8rem; border-radius: 2px; margin-bottom: 1rem; width: fit-content;
}
.hero-title {
  position: relative; z-index: 1;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2rem; font-weight: 700; color: var(--white); line-height: 1.3; margin-bottom: 1rem;
}
.hero-meta {
  position: relative; z-index: 1;
  display: flex; align-items: center; gap: 1rem;
  color: rgba(255,255,255,0.6); font-size: 0.78rem;
}
.hero-sidebar { display: flex; flex-direction: column; gap: 1rem; }
.hero-sub {
  background: var(--light-gray); border-radius: 4px; overflow: hidden;
  display: flex; flex-direction: column; flex: 1; cursor: pointer; transition: transform 0.2s;
}
.hero-sub:hover { transform: translateY(-2px); }
.hero-sub-img {
  height: 140px; position: relative; overflow: hidden;
  background-size: cover; background-position: center;
}
.hero-sub-body { padding: 1rem 1.2rem 1.2rem; flex: 1; }
.hero-sub-tag {
  font-size: 0.65rem; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--accent); margin-bottom: 0.4rem;
}
.hero-sub-title { font-size: 0.92rem; font-weight: 700; line-height: 1.5; color: var(--text); }

.section-divider {
  max-width: 1200px; margin: 3rem auto 2rem;
  padding: 0 2rem; display: flex; align-items: center; gap: 1.5rem;
}
.section-label {
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--black); white-space: nowrap;
}
.divider-line { flex: 1; height: 1px; background: var(--border); }

.articles {
  max-width: 1200px; margin: 0 auto 4rem;
  padding: 0 2rem; display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem;
}
.card { cursor: pointer; transition: transform 0.2s; }
.card:hover { transform: translateY(-4px); }
.card:hover .card-title { color: var(--accent-dark); }
.card-img {
  aspect-ratio: 16/10; border-radius: 3px; overflow: hidden;
  margin-bottom: 1rem; position: relative; background-size: cover; background-position: center;
}
.card-img-inner {
  width: 100%; height: 100%; transition: transform 0.5s ease;
  background-size: cover; background-position: center;
}
.card:hover .card-img-inner { transform: scale(1.05); }
.card-tag {
  font-size: 0.65rem; font-weight: 700; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--accent); margin-bottom: 0.5rem;
}
.card-title {
  font-size: 1.05rem; font-weight: 700; line-height: 1.5;
  margin-bottom: 0.6rem; transition: color 0.2s;
}
.card-excerpt {
  font-size: 0.83rem; color: var(--gray); line-height: 1.7;
  display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden;
}
.card-meta {
  margin-top: 0.8rem; display: flex; align-items: center;
  gap: 1rem; font-size: 0.75rem; color: var(--gray);
}
.dot { opacity: 0.4; }

.featured-strip { background: var(--black); padding: 3rem 0; margin-bottom: 4rem; }
.featured-strip-inner { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
.featured-strip-label {
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--accent); margin-bottom: 1.5rem;
}
.featured-strip-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.strip-card {
  border-top: 1px solid rgba(255,255,255,0.1); padding-top: 1rem;
  text-decoration: none; display: block; cursor: pointer;
  cursor: pointer; transition: border-color 0.2s;
}
.strip-card:hover { border-color: var(--accent); }
.strip-card-num {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2.5rem; font-weight: 900; color: rgba(255,255,255,0.08); line-height: 1; margin-bottom: 0.5rem;
}
.strip-card-tag {
  font-size: 0.65rem; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--accent); margin-bottom: 0.5rem;
}
.strip-card-title { font-size: 0.9rem; font-weight: 500; color: var(--white); line-height: 1.5; }

.about-section {
  max-width: 1200px; margin: 0 auto 5rem; padding: 0 2rem;
  display: grid; grid-template-columns: 1fr 320px; gap: 4rem; align-items: center;
}
.about-text h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2.2rem; font-weight: 700; line-height: 1.3; margin-bottom: 1.2rem; color: var(--black);
}
.about-text h2 em { font-style: italic; color: var(--accent); }
.about-text p { color: var(--text-light); font-size: 0.95rem; line-height: 1.9; margin-bottom: 1rem; }
.about-profile { text-align: center; }
.about-avatar {
  width: 140px; height: 140px; border-radius: 50%;
  background: linear-gradient(135deg, #2d4a3e, #c8a96e);
  margin: 0 auto 1.2rem; display: flex; align-items: center; justify-content: center;
  font-size: 3rem; overflow: hidden;
}
.about-avatar img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; }
.about-name { font-weight: 700; font-size: 1.1rem; margin-bottom: 0.3rem; }
.about-role { font-size: 0.8rem; color: var(--gray); margin-bottom: 1rem; letter-spacing: 0.05em; }
.about-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; justify-content: center; }
.tag-pill {
  background: var(--light-gray); color: var(--text-light);
  font-size: 0.72rem; padding: 0.3rem 0.8rem; border-radius: 20px; font-weight: 500;
}

/* ===== ARTICLE PAGE ===== */
.article-hero {
  width: 100%; height: 480px; position: relative; overflow: hidden;
  background-size: cover; background-position: center;
}
.article-hero-fallback { background: linear-gradient(135deg, #1c2541 0%, #2d4a3e 50%, #0a2015 100%); }
.article-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.2) 60%, transparent 100%);
}
.article-hero-content {
  position: absolute; bottom: 0; left: 0; right: 0;
  max-width: 800px; margin: 0 auto; padding: 2.5rem 2rem;
}
.article-category {
  display: inline-block; background: var(--accent); color: var(--white);
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase;
  padding: 0.3rem 0.8rem; border-radius: 2px; margin-bottom: 1rem;
}
.article-hero-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2.2rem; font-weight: 700; color: var(--white); line-height: 1.3; margin-bottom: 1rem;
}
.article-hero-meta {
  display: flex; gap: 1.5rem; color: rgba(255,255,255,0.65); font-size: 0.8rem;
}

.article-body {
  max-width: 800px; margin: 0 auto; padding: 3rem 2rem 5rem;
}
.article-body p {
  font-size: 1.05rem; line-height: 1.95; color: var(--text-light); margin-bottom: 1.6rem;
}
.article-body h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.6rem; font-weight: 700; color: var(--black);
  margin: 2.5rem 0 1rem; padding-bottom: 0.5rem; border-bottom: 2px solid var(--accent);
}
.article-body h3 {
  font-size: 1.1rem; font-weight: 700; color: var(--black); margin: 2rem 0 0.8rem;
}
.article-body blockquote {
  border-left: 3px solid var(--accent); padding: 1rem 1.5rem;
  background: var(--light-gray); margin: 2rem 0; border-radius: 0 4px 4px 0;
  font-style: italic; color: var(--text-light);
}
.article-body .photo-placeholder {
  width: 100%; aspect-ratio: 16/9; border-radius: 6px;
  background: var(--light-gray); margin: 2rem 0;
  display: flex; align-items: center; justify-content: center;
  border: 2px dashed var(--border); color: var(--gray); font-size: 0.85rem;
  flex-direction: column; gap: 0.5rem;
}
.article-body .photo-placeholder span { font-size: 2rem; }
.article-body figure { margin: 2rem 0; }
.article-body figure img { display: block; margin: 0 auto; max-width: 100%; width: auto !important; height: auto !important; max-height: 600px; border-radius: 6px; }
.article-body figure figcaption {
  text-align: center; font-size: 0.8rem; color: var(--gray); margin-top: 0.5rem;
}
.figure-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin: 2rem 0;
}
.figure-row figure { margin: 0; display: flex; flex-direction: column; }
.figure-row figure img {
  width: 100%; height: auto; border-radius: 6px; display: block;
}
.figure-row--landscape figure img {
  aspect-ratio: 4/3; object-fit: cover;
}
.figure-row--portrait figure img {
  aspect-ratio: 3/4; object-fit: cover;
}
@media (max-width: 600px) {
  .figure-row { grid-template-columns: 1fr; }
  .figure-row--landscape figure img,
  .figure-row--portrait figure img { aspect-ratio: auto; object-fit: unset; }
}
.article-info-box {
  background: var(--light-gray); border-radius: 6px; padding: 1.5rem 2rem; margin: 2rem 0;
}
.article-info-box h4 {
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 1rem;
}
.article-info-box table { width: 100%; border-collapse: collapse; font-size: 0.9rem; }
.article-info-box td { padding: 0.4rem 0; border-bottom: 1px solid var(--border); }
.article-info-box td:first-child { font-weight: 700; width: 40%; color: var(--black); }

.article-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 3rem; }
.article-tag {
  background: var(--light-gray); color: var(--text-light);
  font-size: 0.75rem; padding: 0.35rem 1rem; border-radius: 20px; font-weight: 500;
}

.back-link {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.8rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--gray); margin-bottom: 3rem; transition: color 0.2s;
}
.back-link:hover { color: var(--accent); }

.related-section { border-top: 1px solid var(--border); padding-top: 3rem; margin-top: 3rem; }
.related-label {
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--black); margin-bottom: 1.5rem;
}
.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.related-card { cursor: pointer; transition: transform 0.2s; }
.related-card:hover { transform: translateY(-3px); }
.related-img {
  aspect-ratio: 16/10; border-radius: 3px; background-size: cover;
  background-position: center; margin-bottom: 0.8rem;
}
.related-tag {
  font-size: 0.62rem; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--accent); margin-bottom: 0.3rem;
}
.related-title { font-size: 0.88rem; font-weight: 700; line-height: 1.5; color: var(--text); }

/* ===== PLACEHOLDER COLORS ===== */
.bg-costa-rica { background: linear-gradient(135deg, #1b4332 0%, #2d6a4f 60%, #40916c 100%); }
.bg-nicaragua { background: linear-gradient(135deg, #7f4f24 0%, #a47149 60%, #c19a6b 100%); }
.bg-bike { background: linear-gradient(135deg, #1c2541 0%, #3a506b 60%, #5bc0be 100%); }
.bg-camp { background: linear-gradient(135deg, #3d2b1f 0%, #6b4226 60%, #a0522d 100%); }
.bg-think { background: linear-gradient(135deg, #2d2d2d 0%, #4a4a4a 60%, #6b6b6b 100%); }
.bg-food { background: linear-gradient(135deg, #5c3317 0%, #8b4513 60%, #cd853f 100%); }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; }
  .hero-sidebar { flex-direction: row; }
  .articles { grid-template-columns: repeat(2, 1fr); }
  .featured-strip-grid { grid-template-columns: repeat(2, 1fr); }
  .about-section { grid-template-columns: 1fr; }
  .about-profile { order: -1; }
  .related-grid { grid-template-columns: repeat(2, 1fr); }
  .article-hero { height: 360px; }
  .article-hero-title { font-size: 1.6rem; }
}
@media (max-width: 600px) {
  .articles { grid-template-columns: 1fr; }
  .hero-sidebar { flex-direction: column; }
  .featured-strip-grid { grid-template-columns: 1fr; }
  .related-grid { grid-template-columns: 1fr; }
  nav { display: none; }
  .footer-inner { flex-direction: column; gap: 1.5rem; text-align: center; }
  .article-hero { height: 280px; }
}

/* Spot list (visit summary) */
.spot-list { margin: 2.5rem 0; border-top: 1px solid #eee; padding-top: 2rem; }
.spot-list h3 { font-size: 1rem; font-weight: 700; margin-bottom: 1.2rem; color: var(--dark); }
.spot-item { display: flex; gap: 1rem; padding: 1rem 0; border-bottom: 1px solid #f0f0f0; }
.spot-item:last-child { border-bottom: none; }
.spot-number { font-size: 0.75rem; font-weight: 700; color: #fff; background: var(--accent, #2a7ae2); border-radius: 50%; width: 22px; height: 22px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 2px; }
.spot-info-name { font-weight: 600; font-size: 0.95rem; margin-bottom: 0.2rem; }
.spot-info-detail { font-size: 0.82rem; color: var(--gray); line-height: 1.6; }

/* ===== BACK TO TOP ===== */
.back-to-top {
  position: fixed; bottom: 2rem; right: 2rem;
  width: 44px; height: 44px;
  background: var(--accent); color: #fff; border: none; border-radius: 50%;
  font-size: 1.1rem; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transform: translateY(12px);
  transition: opacity 0.3s, transform 0.3s;
  z-index: 200; box-shadow: 0 2px 12px rgba(0,0,0,0.18);
}
.back-to-top.visible { opacity: 1; transform: translateY(0); }
.back-to-top:hover { background: var(--accent-dark); }

/* ===== SHARE BUTTONS ===== */
.share-buttons {
  display: flex; flex-wrap: wrap; align-items: center; gap: 0.6rem;
  margin: 2.5rem 0 1.5rem;
}
.share-label { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.1em; color: var(--gray); margin-right: 0.4rem; }
.share-btn {
  display: inline-flex; align-items: center; gap: 0.35rem;
  padding: 0.45rem 1rem; border-radius: 4px;
  font-size: 0.82rem; font-weight: 600; color: #fff;
  text-decoration: none; border: none; cursor: pointer;
  transition: opacity 0.2s; line-height: 1;
}
.share-btn:hover { opacity: 0.82; }
.share-btn-x { background: #000; }
.share-btn-line { background: #06c755; }
.share-btn-copy { background: var(--gray); }

/* ===== LIGHTBOX ===== */
.lightbox-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 1000;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity 0.25s;
}
.lightbox-overlay.active { opacity: 1; pointer-events: all; }
.lightbox-img {
  max-width: 92vw; max-height: 88vh;
  object-fit: contain; border-radius: 4px;
  box-shadow: 0 4px 40px rgba(0,0,0,0.5);
}
.lightbox-close {
  position: absolute; top: 1.25rem; right: 1.5rem;
  color: #fff; font-size: 2rem; line-height: 1;
  background: none; border: none; cursor: pointer; opacity: 0.8;
}
.lightbox-close:hover { opacity: 1; }

/* ===== SERIES NAVIGATION ===== */
.article-series-nav {
  display: flex; justify-content: space-between; align-items: flex-start;
  gap: 1rem; margin: 2.5rem 0;
  border-top: 1px solid var(--border); padding-top: 1.5rem;
}
.series-nav-btn {
  display: flex; flex-direction: column; gap: 0.3rem;
  max-width: 46%; text-decoration: none; color: var(--text);
  transition: color 0.2s;
}
.series-nav-btn:hover { color: var(--accent); }
.series-nav-label {
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--gray);
}
.series-nav-title { font-size: 0.88rem; font-weight: 600; line-height: 1.4; }
.series-nav-next { text-align: right; margin-left: auto; }

/* ===== FILTER BAR ===== */
.filter-bar {
  max-width: 1200px; margin: 0 auto 1.5rem;
  padding: 0 2rem; display: flex; flex-wrap: wrap; gap: 0.5rem; align-items: center;
}
.filter-btn {
  background: none; border: 1px solid var(--border);
  color: var(--gray); font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.1em; padding: 0.4rem 1.1rem; border-radius: 20px;
  cursor: pointer; transition: all 0.2s; font-family: inherit;
}
.filter-btn:hover { border-color: var(--accent); color: var(--accent); }
.filter-btn.active { background: var(--black); border-color: var(--black); color: var(--white); }

/* ===== ARTICLES IN-GRID SECTION HEADER ===== */
.articles-section-header {
  grid-column: 1 / -1; padding-top: 2.5rem;
  display: flex; align-items: center; gap: 1.5rem;
}
.articles-section-header .section-label {
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--black); white-space: nowrap;
}
.articles-section-header .divider-line { flex: 1; height: 1px; background: var(--border); }
.articles-section-header--hidden { display: none !important; }
.card--hidden { display: none !important; }

/* ===== DARK MODE ===== */
[data-theme="dark"] {
  --white: #141414;
  --light-gray: #1e1e1e;
  --border: #2e2e2e;
  --text: #e0e0dc;
  --text-light: #a0a09c;
  --gray: #787874;
  color-scheme: dark;
}
[data-theme="dark"] .card-title,
[data-theme="dark"] .article-body h2,
[data-theme="dark"] .article-body h3,
[data-theme="dark"] .about-text h2,
[data-theme="dark"] .related-title,
[data-theme="dark"] .section-label,
[data-theme="dark"] .articles-section-header .section-label { color: var(--text); }
[data-theme="dark"] .strip-card-title { color: rgba(255,255,255,0.85); }
[data-theme="dark"] .back-link { color: var(--gray); }
[data-theme="dark"] footer { background: #0a0a0a; }
[data-theme="dark"] .featured-strip { background: #0a0a0a; }

.dark-toggle {
  background: none; border: 1px solid var(--border);
  color: var(--text-light); width: 32px; height: 32px; border-radius: 50%;
  cursor: pointer; font-size: 0.85rem;
  display: inline-flex; align-items: center; justify-content: center;
  transition: border-color 0.2s, color 0.2s; flex-shrink: 0; line-height: 1;
}
.dark-toggle:hover { border-color: var(--accent); }

/* ===== MAP LINK ===== */
.map-link {
  color: inherit;
  text-decoration: underline;
  text-decoration-color: var(--accent);
  text-underline-offset: 2px;
}
.map-link:hover { color: var(--accent); }

/* ===== COPY TOAST ===== */
.copy-toast {
  position: fixed; bottom: 5.5rem; right: 2rem;
  background: var(--black); color: var(--white);
  font-size: 0.78rem; padding: 0.5rem 1rem; border-radius: 4px;
  opacity: 0; transform: translateY(8px);
  transition: opacity 0.3s, transform 0.3s;
  z-index: 300; pointer-events: none;
}
[data-theme="dark"] .copy-toast { background: #e0e0dc; color: #141414; }
.copy-toast.visible { opacity: 1; transform: translateY(0); }

/* ===== TABLE OF CONTENTS ===== */
.article-toc {
  background: var(--light-gray); border-radius: 6px;
  padding: 1.4rem 1.8rem; margin: 0 0 2.5rem;
}
.article-toc-label {
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--accent); margin-bottom: 0.9rem;
}
.article-toc ol { padding-left: 1.3rem; margin: 0; }
.article-toc li { font-size: 0.88rem; line-height: 1.6; margin-bottom: 0.25rem; }
.article-toc a { color: var(--text-light); text-decoration: none; transition: color 0.2s; }
.article-toc a:hover { color: var(--accent); }
.article-toc a.toc-active { color: var(--accent); font-weight: 700; }
