/* ============================================================
   ExtraArchery.com — Article Page Styles
   Warm cream background, 920px content width, clean typography
   ============================================================ */

/* --- ARTICLE PAGE LAYOUT --------------------------------- */
body.page-article {
  background: var(--bg-page);
}

/* --- ARTICLE HERO ---------------------------------------- */
.article-hero-image {
  width: 100%;
  max-width: var(--max-width-narrow);
  margin: 0 auto;
  height: 360px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  border: var(--border-subtle);
  background: linear-gradient(135deg, #e8e2d6 0%, #d5cebb 50%, #c8bfa8 100%);
  display: block;
}

@media (max-width: 768px) {
  .article-hero-image {
    height: 220px;
    border-radius: 0;
  }
}

/* --- ARTICLE HEADER -------------------------------------- */
.article-header {
  padding: var(--space-xl) 0 var(--space-sm);
}

.article-header .tag {
  margin-bottom: var(--space-sm);
}

.article-header h1 {
  font-size: var(--text-4xl);
  margin-bottom: var(--space-sm);
}

.article-subtitle {
  font-size: var(--text-lg);
  color: var(--text-muted);
  margin-bottom: var(--space-md);
  line-height: 1.6;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  font-size: var(--text-sm);
  color: var(--text-muted);
}

.article-meta-item {
  display: flex;
  align-items: center;
  gap: var(--space-2xs);
}

.article-meta-pills {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2xs);
  margin-top: var(--space-sm);
}

.meta-pill {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 0.25em 0.75em;
  font-size: var(--text-xs);
  font-weight: 500;
  border-radius: var(--radius-full);
  white-space: nowrap;
}

.meta-pill-date {
  background: rgba(45, 90, 39, 0.08);
  color: var(--green-primary);
}

.meta-pill-read {
  background: rgba(196, 149, 58, 0.1);
  color: var(--amber);
}

.meta-pill-checked {
  background: rgba(45, 90, 39, 0.06);
  color: var(--green-primary);
}

/* --- ARTICLE CONTENT AREA -------------------------------- */
.article-content {
  padding: var(--space-md) 0 var(--space-2xl);
}

/* Editorial H2: short green brand accent instead of a full-width rule */
.article-content h2 {
  font-size: var(--text-2xl);
  margin: var(--space-xl) 0 0;
  border-bottom: none;
  padding-bottom: 0;
  scroll-margin-top: calc(var(--header-height) + 20px);
}
.article-content h2::after {
  content: "";
  display: block;
  width: 46px;
  height: 3px;
  margin: 0.5rem 0 1.25rem;
  background: var(--green-primary);
  border-radius: 999px;
}
@media (max-width: 520px) {
  .article-content h2::after {
    width: 38px;
    margin: 0.45rem 0 1.1rem;
  }
}
/* Designed headings keep their own treatment */
.page-lancaster .article-content h2#conclusion::after {
  content: none;
}

.article-content h3 {
  font-size: var(--text-xl);
  margin: var(--space-lg) 0 var(--space-sm);
  scroll-margin-top: calc(var(--header-height) + 20px);
}

.article-content p {
  margin-bottom: 1.35rem;
  line-height: 1.8;
}

.article-content ul,
.article-content ol {
  margin-bottom: var(--space-md);
  padding-left: var(--space-lg);
}

.article-content ul li,
.article-content ol li {
  margin-bottom: var(--space-xs);
  line-height: 1.7;
}

.article-content a {
  color: var(--green-primary);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.article-content a:hover {
  color: var(--green-light);
}

/* --- SHORT ANSWER BOX ------------------------------------ */
.answer-box {
  background: linear-gradient(135deg, rgba(45, 90, 39, 0.04) 0%, rgba(196, 149, 58, 0.04) 100%);
  border-left: 4px solid var(--green-primary);
  padding: var(--space-md);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  margin: var(--space-md) 0 var(--space-lg);
}

.answer-box-label {
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--green-primary);
  margin-bottom: var(--space-2xs);
}

.answer-box p {
  margin-bottom: 0;
  color: var(--text-primary);
  font-weight: 500;
}

/* --- QUICK SUMMARY --------------------------------------- */
.quick-summary {
  background: var(--bg-card);
  border: var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: var(--space-md) var(--space-lg);
  margin: var(--space-lg) 0;
  box-shadow: var(--shadow-card);
}

.quick-summary h3 {
  font-size: var(--text-base);
  color: var(--text-primary);
  margin-bottom: var(--space-sm);
  display: flex;
  align-items: center;
  gap: var(--space-2xs);
}

.quick-summary ul {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-xs);
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}

.quick-summary li {
  position: relative;
  padding-left: var(--space-lg);
  font-size: var(--text-sm);
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 0;
}

.quick-summary li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--green-primary);
  font-weight: 700;
  font-size: 0.85em;
}

@media (max-width: 600px) {
  .quick-summary ul {
    grid-template-columns: 1fr;
  }
}

/* --- TABLE OF CONTENTS ----------------------------------- */
.toc {
  background: var(--bg-card);
  border: var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: var(--space-md) var(--space-lg);
  margin: var(--space-lg) 0;
  box-shadow: var(--shadow-card);
}

.toc h3 {
  font-size: var(--text-base);
  color: var(--text-primary);
  margin-bottom: var(--space-sm);
}

.toc ol {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-2xs) var(--space-md);
  counter-reset: toc-counter;
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}

.toc ol li {
  counter-increment: toc-counter;
  position: relative;
  padding-left: 2em;
  font-size: var(--text-sm);
  line-height: 1.6;
  margin-bottom: var(--space-2xs);
}

.toc ol li::before {
  content: counter(toc-counter);
  position: absolute;
  left: 0;
  top: 0;
  width: 1.5em;
  height: 1.5em;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(45, 90, 39, 0.08);
  color: var(--green-primary);
  border-radius: 50%;
  font-size: 0.7em;
  font-weight: 700;
}

.toc a {
  color: var(--text-secondary);
  text-decoration: none;
  transition: color var(--duration-fast);
}

.toc a:hover {
  color: var(--green-primary);
}

@media (max-width: 600px) {
  .toc ol {
    grid-template-columns: 1fr;
  }
}

/* --- COMPARISON TABLE ------------------------------------ */
.comparison-table-wrap {
  overflow-x: auto;
  margin: var(--space-lg) 0;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--bg-card);
  font-size: var(--text-sm);
}

.comparison-table thead {
  background: var(--grad-green);
  color: #fff;
}

.comparison-table th {
  padding: var(--space-sm) var(--space-md);
  text-align: left;
  font-weight: 600;
  white-space: nowrap;
}

.comparison-table th:first-child {
  border-radius: var(--radius-md) 0 0 0;
}

.comparison-table th:last-child {
  border-radius: 0 var(--radius-md) 0 0;
}

.comparison-table td {
  padding: var(--space-sm) var(--space-md);
  border-bottom: var(--border-subtle);
}

.comparison-table tbody tr:hover {
  background: var(--bg-card-hover);
}

.comparison-table tbody tr:last-child td {
  border-bottom: none;
}

.comparison-table .highlight-cell {
  background: rgba(45, 90, 39, 0.05);
  font-weight: 600;
  color: var(--green-primary);
}

/* --- INFO CARDS GRID ------------------------------------- */
.info-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-md);
  margin: var(--space-lg) 0;
}

.info-card {
  background: var(--bg-card);
  border: var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: var(--space-md);
  box-shadow: var(--shadow-card);
  transition: all var(--duration-base) var(--ease-out);
}

.info-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-card-hover);
}

.info-card-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
  font-size: 1.5rem;
  margin-bottom: var(--space-sm);
}

.info-card-icon.green {
  background: rgba(45, 90, 39, 0.1);
  color: var(--green-primary);
}

.info-card-icon.amber {
  background: rgba(196, 149, 58, 0.12);
  color: var(--amber);
}

.info-card-icon.brown {
  background: rgba(139, 69, 19, 0.1);
  color: var(--brown);
}

.info-card h4 {
  font-size: var(--text-base);
  margin-bottom: var(--space-2xs);
}

.info-card p {
  font-size: var(--text-sm);
  color: var(--text-muted);
  margin-bottom: 0;
  line-height: 1.6;
}

/* --- HIGHLIGHT BOX --------------------------------------- */
.highlight-box {
  padding: var(--space-md);
  border-radius: var(--radius-md);
  margin: var(--space-lg) 0;
  border-left: 4px solid var(--green-primary);
  background: rgba(45, 90, 39, 0.04);
}

.highlight-box.warning {
  border-left-color: var(--amber);
  background: rgba(196, 149, 58, 0.06);
}

.highlight-box.safety {
  border-left-color: var(--red-safety);
  background: var(--red-safety-bg);
}

.highlight-box h4 {
  margin-bottom: var(--space-2xs);
  font-size: var(--text-base);
}

.highlight-box p {
  margin-bottom: 0;
  font-size: var(--text-sm);
}

/* --- TIPS LIST (NUMBERED) -------------------------------- */
.tips-list {
  list-style: none;
  padding-left: 0;
  counter-reset: tip-counter;
  margin: var(--space-lg) 0;
}

.tips-list li {
  counter-increment: tip-counter;
  position: relative;
  padding-left: 3em;
  margin-bottom: var(--space-md);
  line-height: 1.6;
}

.tips-list li::before {
  content: counter(tip-counter);
  position: absolute;
  left: 0;
  top: 0;
  width: 2em;
  height: 2em;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--grad-green);
  color: #fff;
  border-radius: 50%;
  font-weight: 700;
  font-size: 0.85em;
}

/* --- PROS / CONS ----------------------------------------- */
.pros-cons-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
  margin: var(--space-lg) 0;
}

.pros-cons-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: var(--space-md);
  box-shadow: var(--shadow-card);
}

.pros-cons-card h4 {
  display: flex;
  align-items: center;
  gap: var(--space-2xs);
  margin-bottom: var(--space-sm);
  font-size: var(--text-base);
}

.pros-cons-card.pros h4 { color: var(--green-primary); }
.pros-cons-card.cons h4 { color: var(--amber); }

.pros-cons-card ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}

.pros-cons-card li {
  padding: var(--space-2xs) 0;
  font-size: var(--text-sm);
  border-bottom: var(--border-subtle);
}

.pros-cons-card li:last-child {
  border-bottom: none;
}

@media (max-width: 600px) {
  .pros-cons-grid {
    grid-template-columns: 1fr;
  }
}

/* --- STEP-BY-STEP ---------------------------------------- */
.step-list {
  list-style: none;
  padding-left: 0;
  counter-reset: step-counter;
  margin: var(--space-lg) 0;
}

.step-list li {
  counter-increment: step-counter;
  position: relative;
  padding: var(--space-md);
  margin-bottom: var(--space-md);
  background: var(--bg-card);
  border-radius: var(--radius-md);
  border: var(--border-subtle);
  box-shadow: var(--shadow-sm);
}

.step-list li::before {
  content: "Step " counter(step-counter);
  display: block;
  position: relative;
  left: 0;
  top: 0;
  font-size: var(--text-xs);
  font-weight: 700;
  color: var(--green-primary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: var(--space-2xs);
  background: rgba(45,90,39,0.08);
  padding: 2px 10px;
  border-radius: var(--radius-full);
  width: fit-content;
}

.step-list li h4 {
  font-size: var(--text-base);
  margin-bottom: var(--space-2xs);
}

.step-list li p {
  font-size: var(--text-sm);
  color: var(--text-muted);
  margin-bottom: 0;
}

/* --- KEY TAKEAWAY ---------------------------------------- */
.key-takeaway {
  background: var(--grad-hero);
  color: var(--text-inverse);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  margin: var(--space-xl) 0;
}

.key-takeaway h3 {
  color: #fff;
  text-align: center;
  margin-bottom: var(--space-md);
  font-size: var(--text-xl);
}

.key-takeaway-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: var(--space-md);
  text-align: center;
}

.key-takeaway-stat {
  font-size: var(--text-2xl);
  font-weight: 900;
  color: var(--amber-light);
  display: block;
  margin-bottom: var(--space-2xs);
}

.key-takeaway-label {
  font-size: var(--text-sm);
  color: var(--text-inverse-muted);
}

/* --- CTA CARD -------------------------------------------- */
.article-cta {
  background: linear-gradient(135deg, rgba(45, 90, 39, 0.06) 0%, rgba(196, 149, 58, 0.06) 100%);
  border: var(--border-green);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  margin: var(--space-xl) 0;
  text-align: center;
}

.article-cta h3 {
  font-size: var(--text-xl);
  margin-bottom: var(--space-2xs);
}

.article-cta p {
  color: var(--text-muted);
  margin-bottom: var(--space-md);
}

.article-cta-form {
  display: flex;
  gap: var(--space-sm);
  max-width: 440px;
  margin: 0 auto;
}

.article-cta-form input[type="email"] {
  flex: 1;
  padding: 0.7em 1.2em;
  border: var(--border-medium);
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-size: var(--text-base);
  outline: none;
  transition: border-color var(--duration-fast);
}

.article-cta-form input[type="email"]:focus {
  border-color: var(--green-primary);
}

@media (max-width: 480px) {
  .article-cta-form {
    flex-direction: column;
  }
}

/* --- SOURCES BOX ----------------------------------------- */
.sources-box {
  background: var(--bg-card);
  border: var(--border-subtle);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  margin: var(--space-lg) 0;
  box-shadow: var(--shadow-sm);
}

.sources-box h3 {
  font-size: var(--text-base);
  margin-bottom: var(--space-sm);
  color: var(--text-muted);
}

.sources-box ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}

.sources-box li {
  font-size: var(--text-sm);
  padding: var(--space-2xs) 0;
  border-bottom: var(--border-subtle);
}

.sources-box li:last-child {
  border-bottom: none;
}

.sources-box a {
  color: var(--text-secondary);
  text-decoration: underline;
  text-underline-offset: 2px;
  word-break: break-all;
}

/* --- AUTHOR BOX ------------------------------------------ */
.author-box {
  display: flex;
  gap: var(--space-md);
  background: var(--bg-card);
  border: var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: var(--space-md);
  margin: var(--space-xl) 0;
  box-shadow: var(--shadow-card);
  align-items: center;
}

.author-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--grad-green);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.author-info h4 {
  font-size: var(--text-base);
  margin-bottom: var(--space-2xs);
}

.author-info p {
  font-size: var(--text-sm);
  color: var(--text-muted);
  margin-bottom: 0;
  line-height: 1.5;
}

@media (max-width: 480px) {
  .author-box {
    flex-direction: column;
    text-align: center;
  }
}

/* --- RELATED ARTICLES ------------------------------------- */
.related-articles {
  margin: var(--space-xl) 0;
}

.related-articles h3 {
  font-size: var(--text-xl);
  margin-bottom: var(--space-md);
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-md);
}

.related-card {
  background: var(--bg-card);
  border: var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: var(--space-md);
  box-shadow: var(--shadow-card);
  transition: all var(--duration-base) var(--ease-out);
  text-decoration: none;
  color: inherit;
  display: block;
}

.related-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-card-hover);
  color: inherit;
}

.related-card .tag {
  margin-bottom: var(--space-2xs);
}

.related-card h4 {
  font-size: var(--text-base);
  color: var(--text-primary);
  line-height: 1.4;
  margin-bottom: 0;
}

/* --- SHARE BAR ------------------------------------------- */
.share-bar {
  display: flex;
  gap: var(--space-2xs);
  margin: var(--space-lg) 0;
  flex-wrap: wrap;
}

.share-btn {
  display: flex;
  align-items: center;
  gap: var(--space-2xs);
  padding: 0.5em 1em;
  border-radius: var(--radius-full);
  font-size: var(--text-sm);
  font-weight: 500;
  border: var(--border-subtle);
  background: var(--bg-card);
  cursor: pointer;
  transition: all var(--duration-fast);
  color: var(--text-secondary);
  text-decoration: none;
}

.share-btn:hover {
  background: var(--green-primary);
  color: #fff;
  border-color: var(--green-primary);
}

/* --- DISCLAIMER ------------------------------------------ */
.article-disclaimer {
  font-size: var(--text-xs);
  color: var(--text-muted);
  font-style: italic;
  padding: var(--space-sm) var(--space-md);
  margin: var(--space-lg) 0;
  border: var(--border-subtle);
  border-radius: var(--radius-md);
  background: var(--bg-secondary);
  line-height: 1.6;
}

/* --- RESPONSIVE ------------------------------------------ */
@media (max-width: 768px) {
  .article-header h1 {
    font-size: var(--text-3xl);
  }

  .article-hero-image {
    height: 220px;
    border-radius: 0;
    margin: 0 calc(-1 * var(--space-sm));
    width: calc(100% + 2 * var(--space-sm));
    max-width: none;
  }

  .comparison-table-wrap {
    margin-left: calc(-1 * var(--space-sm));
    margin-right: calc(-1 * var(--space-sm));
    border-radius: 0;
  }

  .related-grid {
    grid-template-columns: 1fr;
  }

  .key-takeaway-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .article-meta {
    flex-direction: column;
    gap: var(--space-2xs);
  }

  .info-cards-grid {
    grid-template-columns: 1fr;
  }
}

/* ═══════════════════════════════════════════════════════════
   RANGE FICHA V2 — Two-column layout inspired by frankfurtfinder
   Map left (50%), Info right (50%). Mobile: stacks.
   ═══════════════════════════════════════════════════════════ */

.range-ficha {
  background: #fff;
  border-radius: 14px;
  box-shadow: 4px 4px 0 0 #1a2e1a, 0 8px 30px rgba(0,0,0,0.10);
  margin: 3rem 0;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.06);
  transition: all 0.3s ease;
}
.range-ficha:hover {
  box-shadow: 6px 6px 0 0 #1a2e1a, 0 14px 40px rgba(0,0,0,0.14);
  transform: translate(-2px, -3px);
}

/* ── Header ── */
.range-ficha-top {
  background: #1a2e1a;
  color: #fff;
  padding: 1.2rem 1.8rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  border-bottom: 3px solid #c4953a;
}
.range-ficha-num {
  width: 50px; height: 50px; min-width: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, #c4953a, #d4a84b);
  color: #fff;
  font-weight: 900; font-size: 1.3rem;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Merriweather', Georgia, serif;
  box-shadow: 0 3px 12px rgba(196,149,58,0.4);
}
.range-ficha-top-text { flex: 1; }
.range-ficha-top-text h3 {
  color: #fff; font-size: 1.3rem; margin: 0 0 3px 0; font-weight: 700;
  font-family: 'Merriweather', Georgia, serif; line-height: 1.3;
}
.range-ficha-top-addr { font-size: 0.85rem; opacity: 0.8; }
.range-ficha-tags-row { display: flex; gap: 0.4rem; flex-wrap: wrap; margin-top: 7px; }
.range-pill {
  padding: 3px 13px; border-radius: 20px; font-size: 0.7rem;
  font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em;
}
.range-pill.outdoor  { background: rgba(255,255,255,0.15); color: #c8e0c4; }
.range-pill.indoor   { background: rgba(255,255,255,0.12); color: #bdd4b8; }
.range-pill.free     { background: #c4953a; color: #fff; }
.range-pill.premium  { background: rgba(196,149,58,0.3); color: #f5e0b0; }
.range-pill.public   { background: rgba(255,255,255,0.15); color: #d4d4d4; }

/* ── Body: 2 columns ── */
.range-ficha-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 400px;
}

/* ── Left: Map ── */
.range-ficha-map-col {
  position: relative;
  min-height: 400px;
  background: #e8e2d6;
  border-right: 2px solid #f0ece5;
}
.range-ficha-map-col iframe {
  width: 100%; height: 100%; border: none; display: block;
  position: absolute; top: 0; left: 0;
}

/* ── Right: Info ── */
.range-ficha-info-col {
  padding: 1.5rem;
  display: flex; flex-direction: column; gap: 0;
  overflow-y: auto;
}

/* Contact rows */
.range-ficha-contact-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #f0ece5;
}
.range-ficha-contact-item {
  display: flex; align-items: flex-start; gap: 0.7rem;
}
.range-ficha-contact-icon {
  width: 40px; height: 40px; min-width: 40px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
}
.range-ficha-contact-icon.green { background: #e4efe1; }
.range-ficha-contact-icon.gold  { background: #faf3e4; }
.range-ficha-contact-text { font-size: 0.85rem; line-height: 1.45; }
.range-ficha-contact-label {
  display: block; font-size: 0.65rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.08em;
  color: #8b7355; margin-bottom: 2px;
}
.range-ficha-contact-value { font-weight: 600; color: #2c1810; }
.range-ficha-contact-value a { color: #2d5a27; text-decoration: none; }
.range-ficha-contact-value a:hover { text-decoration: underline; }

/* Description in right column */
.range-ficha-desc {
  font-size: 0.9rem; color: #5c4033; line-height: 1.7;
  margin-bottom: 0.8rem;
  flex: 1;
}
.range-ficha-desc p { margin-bottom: 0.7rem; }
.range-ficha-desc p:last-child { margin-bottom: 0; }

/* Review in right column */
.range-ficha-review-inline {
  background: #fbf9f4;
  border-left: 4px solid #c4953a;
  padding: 0.8rem 1rem;
  border-radius: 0 8px 8px 0;
  font-style: italic; color: #5c4033;
  font-size: 0.83rem; line-height: 1.6;
  margin-bottom: 1rem;
  position: relative;
}
.range-ficha-review-inline::before {
  content: '\201C'; position: absolute; top: -6px; left: 8px;
  font-size: 2.5rem; color: rgba(196,149,58,0.10);
  font-family: Georgia, serif; line-height: 1; pointer-events: none;
}
.range-ficha-review-label {
  display: block; font-style: normal; font-weight: 700;
  font-size: 0.65rem; text-transform: uppercase;
  letter-spacing: 0.08em; color: #c4953a; margin-bottom: 0.4rem;
}

/* CTA row */
.range-ficha-cta-row {
  display: flex; gap: 0.6rem; flex-wrap: wrap;
}

/* ═══════════════════════════════════════════════════════════ */
/* COMPONENTS (shared) */
/* ═══════════════════════════════════════════════════════════ */

.takeaway-grid-2026 { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1rem; margin: 1.5rem 0; }
.takeaway-card { background: #fff; border-radius: 12px; padding: 1rem 1.3rem; box-shadow: 0 2px 12px rgba(0,0,0,0.05), 0 0 0 1px rgba(0,0,0,0.03); display: flex; align-items: flex-start; gap: 0.9rem; transition: all 0.2s ease; }
.takeaway-card:hover { transform: translateY(-2px); box-shadow: 0 6px 24px rgba(0,0,0,0.09); }
.takeaway-icon { width: 42px; height: 42px; border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; flex-shrink: 0; }
.takeaway-icon.g1{background:#e4efe1}.takeaway-icon.g2{background:#faf3e4}.takeaway-icon.g3{background:#f0e8dd}.takeaway-icon.g4{background:#e4edf0}.takeaway-icon.g5{background:#e4efe1}.takeaway-icon.g6{background:#faf3e4}
.takeaway-text { font-size: 0.87rem; color: #5c4033; line-height: 1.55; flex: 1; }
.takeaway-text strong { color: #2c1810; }

.answer-box-2026 { background: #f9f8f4; border-left: 5px solid #2d5a27; border-radius: 0 12px 12px 0; padding: 1.3rem 1.5rem; margin: 1.5rem 0; position: relative; box-shadow: 0 2px 10px rgba(0,0,0,0.04); }
.answer-box-2026::before { content: 'Short Answer'; position: absolute; top: -12px; left: 1.2rem; font-size: 0.68rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: #2d5a27; background: #f5f2eb; padding: 3px 12px; border-radius: 20px; }
.answer-box-2026 p { color: #2c1810; font-size: 0.95rem; line-height: 1.7; margin: 0; }

.toc-2026 { background: #fff; border: 1px solid rgba(0,0,0,0.06); border-radius: 14px; padding: 1.5rem; margin: 1.5rem 0; box-shadow: 0 2px 12px rgba(0,0,0,0.04); }
.toc-2026 h3 { font-size: 1.1rem; color: #2c1810; margin-bottom: 1rem; display: flex; align-items: center; gap: 0.5rem; }
.toc-2026-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 0.2rem 1.5rem; list-style: none; padding: 0; counter-reset: tc; }
.toc-2026-grid li { counter-increment: tc; position: relative; padding: 0.35rem 0 0.35rem 2.6rem; border-bottom: 1px solid rgba(0,0,0,0.03); }
.toc-2026-grid li::before { content: '0' counter(tc); position: absolute; left: 0; top: 50%; transform: translateY(-50%); width: 2em; height: 2em; display: flex; align-items: center; justify-content: center; background: #e4efe1; color: #2d5a27; border-radius: 50%; font-size: 0.62em; font-weight: 700; }
.toc-2026-grid a { color: #5c4033; text-decoration: none; font-size: 0.88rem; font-weight: 500; }
.toc-2026-grid a:hover { color: #2d5a27; }

.sources-box-2026 { background: #fff; border: 1px solid rgba(0,0,0,0.05); border-left: 4px solid #2d5a27; border-radius: 0 10px 10px 0; padding: 1rem 1.5rem; margin: 1.5rem 0; box-shadow: 0 1px 6px rgba(0,0,0,0.03); }
.sources-box-2026 h3 { font-size: 1rem; margin-bottom: 0.6rem; color: #2c1810; }
.sources-box-2026 ul { list-style: none; padding: 0; margin: 0; }
.sources-box-2026 li { font-size: 0.85rem; padding: 0.25rem 0; border-bottom: 1px solid rgba(0,0,0,0.03); }
.sources-box-2026 li:last-child { border-bottom: none; }
.sources-box-2026 a { color: #2d5a27; }

.comparison-table-wrap { box-shadow: 0 8px 30px rgba(0,0,0,0.08), 0 0 0 1px rgba(0,0,0,0.04); border-radius: 12px; overflow: hidden; }

/* ═══════════════════════════════════════════════════════════ */
/* RESPONSIVE */
/* ═══════════════════════════════════════════════════════════ */
@media (max-width: 850px) {
  .range-ficha-body { grid-template-columns: 1fr; min-height: auto; }
  .range-ficha-map-col { min-height: 300px; border-right: none; border-bottom: 2px solid #f0ece5; }
  .range-ficha-contact-row { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .range-ficha-contact-row { grid-template-columns: 1fr; }
  .range-ficha-map-col { min-height: 240px; }
  .range-ficha-top { padding: 0.9rem 1rem; gap: 0.7rem; }
  .range-ficha-num { width: 40px; height: 40px; min-width: 40px; font-size: 1.1rem; }
  .range-ficha-top-text h3 { font-size: 1.1rem; }
  .range-ficha-info-col { padding: 1rem; }
  .takeaway-grid-2026 { grid-template-columns: 1fr; }
  .toc-2026-grid { grid-template-columns: 1fr; }
}
.takeaway-grid-2026 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1rem;
  margin: 1.5rem 0;
}
.takeaway-card {
  background: #fff;
  border-radius: 12px;
  padding: 1rem 1.3rem;
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
  display: flex; align-items: flex-start; gap: 0.9rem;
  transition: all 0.2s ease;
  border: 1px solid rgba(0,0,0,0.04);
}
.takeaway-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(0,0,0,0.09);
}
.takeaway-icon {
  width: 42px; height: 42px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; flex-shrink: 0;
}
.takeaway-icon.g1 { background: #e8f0e4; }
.takeaway-icon.g2 { background: #faf3e4; }
.takeaway-icon.g3 { background: #f0e8dd; }
.takeaway-icon.g4 { background: #e4edf0; }
.takeaway-icon.g5 { background: #e8f0e4; }
.takeaway-icon.g6 { background: #faf3e4; }
.takeaway-text {
  font-size: 0.88rem; color: #5c4033; line-height: 1.55; flex: 1;
}
.takeaway-text strong { color: #2c1810; }

/* ═══════════════════════════════════════════════════════════
   2026 SHORT ANSWER — Clean box
   ═══════════════════════════════════════════════════════════ */
.answer-box-2026 {
  background: #f9f8f4;
  border-left: 5px solid #2d5a27;
  border-radius: 0 12px 12px 0;
  padding: 1.3rem 1.5rem;
  margin: 1.5rem 0;
  position: relative;
  box-shadow: 0 2px 10px rgba(0,0,0,0.04);
}
.answer-box-2026::before {
  content: 'Short Answer';
  position: absolute; top: -12px; left: 1.2rem;
  font-size: 0.68rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: #2d5a27;
  background: #f5f2eb; padding: 3px 12px;
  border-radius: 20px;
}
.answer-box-2026 p {
  color: #2c1810; font-size: 0.95rem; line-height: 1.7; margin: 0;
}

/* ═══════════════════════════════════════════════════════════
   2026 TOC — Numbered circles, clean
   ═══════════════════════════════════════════════════════════ */
.toc-2026 {
  background: #fff;
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 14px;
  padding: 1.5rem;
  margin: 1.5rem 0;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}
.toc-2026 h3 {
  font-size: 1.1rem; color: #2c1810;
  margin-bottom: 1rem;
  display: flex; align-items: center; gap: 0.5rem;
}
.toc-2026-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 0.2rem 1.5rem;
  list-style: none; padding: 0; counter-reset: tc;
}
.toc-2026-grid li {
  counter-increment: tc; position: relative;
  padding: 0.35rem 0 0.35rem 2.6rem;
  border-bottom: 1px solid rgba(0,0,0,0.03);
}
.toc-2026-grid li::before {
  content: '0' counter(tc);
  position: absolute; left: 0; top: 50%; transform: translateY(-50%);
  width: 2em; height: 2em;
  display: flex; align-items: center; justify-content: center;
  background: #e8f0e4; color: #2d5a27;
  border-radius: 50%; font-size: 0.62em; font-weight: 700;
}
.toc-2026-grid a {
  color: #5c4033; text-decoration: none; font-size: 0.88rem; font-weight: 500;
}
.toc-2026-grid a:hover { color: #2d5a27; }

/* ═══════════════════════════════════════════════════════════
   2026 SOURCES
   ═══════════════════════════════════════════════════════════ */
.sources-box-2026 {
  background: #fff; border: 1px solid rgba(0,0,0,0.05);
  border-left: 4px solid #2d5a27;
  border-radius: 0 10px 10px 0;
  padding: 1rem 1.5rem; margin: 1.5rem 0;
  box-shadow: 0 1px 6px rgba(0,0,0,0.03);
}
.sources-box-2026 h3 { font-size: 1rem; margin-bottom: 0.6rem; color: #2c1810; }
.sources-box-2026 ul { list-style: none; padding: 0; margin: 0; }
.sources-box-2026 li { font-size: 0.85rem; padding: 0.25rem 0; border-bottom: 1px solid rgba(0,0,0,0.03); }
.sources-box-2026 li:last-child { border-bottom: none; }
.sources-box-2026 a { color: #2d5a27; }

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  .range-ficha-map { height: 260px; }
  .range-ficha-contact { grid-template-columns: 1fr; }
  .range-ficha-contact-item { border-right: none; }
  .range-ficha-header { padding: 1rem; }
  .range-ficha-desc { padding: 1rem 1.2rem; }
  .range-ficha-cta { padding: 0 1.2rem 1.2rem; flex-direction: column; }
  .range-ficha-cta .btn { width: 100%; text-align: center; }
}
@media (max-width: 480px) {
  .range-ficha-map { height: 220px; }
  .range-ficha-header { flex-direction: column; text-align: center; }
  .range-ficha-title h3 { font-size: 1.1rem; }
  .takeaway-grid-2026 { grid-template-columns: 1fr; }
  .toc-2026-grid { grid-template-columns: 1fr; }
  .range-ficha { border-radius: 8px; }
}


.takeaway-grid-2026 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--space-md);
  margin: var(--space-lg) 0;
}

.takeaway-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: var(--space-md) var(--space-lg);
  box-shadow: var(--shadow-card);
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  border: 1px solid transparent;
}

.takeaway-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-card-hover);
  border-color: rgba(45, 90, 39, 0.12);
}

.takeaway-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.takeaway-icon.g1 { background: linear-gradient(135deg, rgba(45, 90, 39, 0.12) 0%, rgba(45, 90, 39, 0.06) 100%); }
.takeaway-icon.g2 { background: linear-gradient(135deg, rgba(196, 149, 58, 0.15) 0%, rgba(196, 149, 58, 0.06) 100%); }
.takeaway-icon.g3 { background: linear-gradient(135deg, rgba(139, 69, 19, 0.12) 0%, rgba(139, 69, 19, 0.05) 100%); }
.takeaway-icon.g4 { background: linear-gradient(135deg, rgba(45, 90, 39, 0.1) 0%, rgba(196, 149, 58, 0.08) 100%); }
.takeaway-icon.g5 { background: linear-gradient(135deg, rgba(74, 124, 67, 0.12) 0%, rgba(45, 90, 39, 0.05) 100%); }
.takeaway-icon.g6 { background: linear-gradient(135deg, rgba(196, 149, 58, 0.12) 0%, rgba(139, 69, 19, 0.06) 100%); }

.takeaway-text {
  font-size: var(--text-sm);
  color: var(--text-secondary);
  line-height: 1.6;
  flex: 1;
}

.takeaway-text strong {
  color: var(--text-primary);
}

/* ═══════════════════════════════════════════════════════════
   2026 PREMIUM SHORT ANSWER
   ═══════════════════════════════════════════════════════════ */

.answer-box-2026 {
  background: linear-gradient(135deg, rgba(45, 90, 39, 0.04) 0%, rgba(196, 149, 58, 0.05) 50%, rgba(45, 90, 39, 0.03) 100%);
  border: 1px solid rgba(45, 90, 39, 0.12);
  border-left: 5px solid var(--green-primary);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  margin: var(--space-lg) 0;
  position: relative;
  box-shadow: var(--shadow-md);
}

.answer-box-2026::before {
  content: 'Short Answer';
  position: absolute;
  top: -14px;
  left: var(--space-md);
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--green-primary);
  background: var(--bg-page);
  padding: 4px 12px;
  border-radius: var(--radius-full);
}

.answer-box-2026 p {
  color: var(--text-primary);
  font-size: var(--text-base);
  line-height: 1.75;
  margin-bottom: 0;
}

/* ═══════════════════════════════════════════════════════════
   2026 PREMIUM TABLE OF CONTENTS
   ═══════════════════════════════════════════════════════════ */

.toc-2026 {
  background: var(--bg-card);
  border: 1px solid rgba(44, 24, 16, 0.08);
  border-radius: var(--radius-xl);
  padding: var(--space-lg);
  margin: var(--space-lg) 0;
  box-shadow: var(--shadow-card);
}

.toc-2026 h3 {
  font-size: var(--text-lg);
  color: var(--text-primary);
  margin-bottom: var(--space-md);
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.toc-2026-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-2xs) var(--space-lg);
  list-style: none;
  padding: 0;
  counter-reset: toc-counter;
}

.toc-2026-grid li {
  counter-increment: toc-counter;
  position: relative;
  padding: var(--space-xs) 0 var(--space-xs) 3em;
  border-bottom: 1px solid rgba(44, 24, 16, 0.04);
  transition: all 0.2s ease;
}

.toc-2026-grid li:hover {
  background: rgba(45, 90, 39, 0.02);
  border-radius: var(--radius-sm);
}

.toc-2026-grid li::before {
  content: '0' counter(toc-counter);
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 2.2em;
  height: 2.2em;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(45, 90, 39, 0.1) 0%, rgba(45, 90, 39, 0.05) 100%);
  color: var(--green-primary);
  border-radius: 50%;
  font-size: 0.65em;
  font-weight: 700;
  font-family: var(--font-heading);
}

.toc-2026-grid a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: var(--text-sm);
  font-weight: 500;
  line-height: 1.5;
  transition: color 0.2s;
}

.toc-2026-grid a:hover {
  color: var(--green-primary);
}

/* ═══════════════════════════════════════════════════════════
   2026 ENHANCED 3D COMPARISON TABLE
   ═══════════════════════════════════════════════════════════ */

.comparison-table-wrap {
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.08), 0 2px 8px rgba(0, 0, 0, 0.04);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(44, 24, 16, 0.06);
}

/* ═══════════════════════════════════════════════════════════
   2026 PREMIUM SOURCES
   ═══════════════════════════════════════════════════════════ */

.sources-box-2026 {
  background: var(--bg-card);
  border: 1px solid rgba(44, 24, 16, 0.06);
  border-left: 4px solid var(--green-primary);
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  padding: var(--space-md) var(--space-lg);
  margin: var(--space-lg) 0;
  box-shadow: var(--shadow-sm);
}

.sources-box-2026 h3 {
  font-size: var(--text-base);
  margin-bottom: var(--space-sm);
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: var(--space-2xs);
}

.sources-box-2026 ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sources-box-2026 li {
  font-size: var(--text-sm);
  padding: var(--space-xs) 0;
  border-bottom: 1px solid rgba(44, 24, 16, 0.04);
  line-height: 1.6;
}

.sources-box-2026 li:last-child {
  border-bottom: none;
}

.sources-box-2026 a {
  color: var(--green-primary);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* ═══════════════════════════════════════════════════════════
   2026 PREMIUM WHAT TO LOOK FOR
   ═══════════════════════════════════════════════════════════ */

.what-to-look-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-md);
  margin: var(--space-lg) 0;
}

.look-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-card);
  border-top: 4px solid var(--green-primary);
  transition: all 0.3s ease;
}

.look-card:nth-child(2) { border-top-color: var(--amber); }
.look-card:nth-child(3) { border-top-color: var(--brown); }
.look-card:nth-child(4) { border-top-color: var(--green-light); }

.look-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-card-hover);
}

.look-card-icon {
  font-size: 2rem;
  margin-bottom: var(--space-sm);
  display: block;
}

.look-card h4 {
  font-size: var(--text-base);
  margin-bottom: var(--space-2xs);
  color: var(--text-primary);
}

.look-card p {
  font-size: var(--text-sm);
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 0;
}

/* ═══════════════════════════════════════════════════════════
   2026 SCROLL REVEAL ANIMATION
   ═══════════════════════════════════════════════════════════ */

.article-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.article-reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ═══════════════════════════════════════════════════════════
   2026 RESPONSIVE
   ═══════════════════════════════════════════════════════════ */

@media (max-width: 768px) {
  .range-map-2026 { height: 260px; }
  .range-info-2026 { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
  .toc-2026-grid { grid-template-columns: 1fr; }
  .what-to-look-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .range-map-2026 { height: 220px; }
  .range-card-2026-header { padding: var(--space-md); gap: var(--space-sm); }
  .range-rank-badge { width: 44px; height: 44px; font-size: 1.1rem; }
  .range-card-2026-header h3 { font-size: var(--text-lg); }
  .range-info-2026 { grid-template-columns: 1fr; }
  .takeaway-grid-2026 { grid-template-columns: 1fr; }
  .range-card-2026 { border-radius: 16px; }
}


/* ── Premium Key Takeaways Box (like range posts) ── */
.take-box{background:#fff;border:2px solid #c4953a;border-radius:12px;padding:1.5rem;margin:1.5rem 0;box-shadow:3px 3px 0 0 rgba(196,149,58,0.20),0 8px 24px rgba(0,0,0,0.06)}
.take-box h2,.take-box h3{margin:0 0 1rem 0;color:#2c1810}
.take-list{display:grid;grid-template-columns:1fr 1fr;gap:.6rem 1.5rem;list-style:none;padding:0}
.take-list li{position:relative;padding-left:1.5rem;font-size:.9rem;color:#5c4033;line-height:1.5}
.take-list li::before{content:"🏹";position:absolute;left:0;top:0;font-size:.7rem}
@media(max-width:768px){.take-list{grid-template-columns:1fr}}

/* --- LEGACY ARTICLE ENHANCEMENT SYSTEM --------------------- */
.article-wide {
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

/* Disciplines vs Bow Styles callout */
.types-callout {
  background: var(--bg-card);
  border: 1px solid rgba(196, 149, 58, 0.4);
  border-radius: var(--radius-md);
  padding: var(--space-md) var(--space-lg);
  margin: var(--space-lg) 0;
  box-shadow: var(--shadow-sm);
}

.types-callout h2 {
  font-size: var(--text-lg);
  margin-bottom: var(--space-2xs);
}

.types-callout p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: var(--space-2xs);
}

.types-callout p:last-child {
  margin-bottom: 0;
}

/* At a Glance fact box per section */
.at-glance {
  background: #faf8f3;
  border: 1px solid rgba(44, 24, 16, 0.07);
  border-left: 3px solid var(--green-primary);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: var(--space-md) var(--space-lg);
  margin: var(--space-lg) 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 0.4rem 1.8rem;
}

.at-glance dt {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  margin-bottom: 0.15rem;
}

.at-glance dd {
  font-size: 0.93rem;
  color: var(--text-primary);
  font-weight: 500;
  margin: 0 0 0.7rem 0;
  line-height: 1.55;
}

/* Section images */
.article-section-img {
  width: 100%;
  border-radius: var(--radius-md);
  margin: var(--space-lg) 0;
  display: block;
}

/* Comparison table (types article) */
.types-table-wrap {
  margin: var(--space-lg) 0;
  border: 1px solid rgba(44, 24, 16, 0.08);
  border-radius: var(--radius-md);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  box-shadow: var(--shadow-sm);
  background: var(--bg-card);
  scrollbar-width: thin;
}

.types-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--bg-card);
  font-size: 0.92rem;
  min-width: 780px;
}

.types-table thead th {
  background: linear-gradient(135deg, #11281a, #1e4a2a);
  color: #fff;
  padding: 0.8rem 1rem;
  text-align: left;
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.03em;
  white-space: nowrap;
}

.types-table tbody td {
  padding: 0.8rem 1rem;
  border-bottom: 1px solid rgba(44, 24, 16, 0.06);
  vertical-align: top;
  line-height: 1.5;
  color: var(--text-secondary);
}

.types-table tbody tr:nth-child(even) {
  background: #faf8f3;
}

.types-table td:first-child {
  font-weight: 700;
  color: var(--text-primary);
  white-space: nowrap;
}

/* Other disciplines grid */
.discipline-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: var(--space-sm);
  margin: var(--space-md) 0;
}

.discipline-card {
  background: var(--bg-card);
  border: var(--border-subtle);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  box-shadow: var(--shadow-sm);
}

.discipline-card h3 {
  font-size: 1rem;
  margin-bottom: var(--space-2xs);
}

.discipline-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin: 0;
}

/* Next reads (replaces fake email form) */
.next-reads {
  background: var(--grad-cta);
  color: var(--text-inverse);
  padding: var(--space-lg) var(--space-md);
  text-align: center;
  border-radius: var(--radius-lg);
  margin: var(--space-xl) 0;
}

.next-reads h2 {
  color: #fff;
  font-size: var(--text-xl);
  margin-bottom: var(--space-sm);
}

.next-reads-links {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2xs);
  justify-content: center;
}

.next-reads-links a {
  display: inline-block;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: #fff;
  padding: 0.55em 1.2em;
  border-radius: var(--radius-full);
  font-size: 0.92rem;
  text-decoration: none;
  transition: all var(--duration-fast);
}

.next-reads-links a:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: #fff;
  color: #fff;
}

.types-scroll-hint {
  display: none;
  font-size: var(--text-xs);
  color: var(--text-muted);
  text-align: center;
  padding: 0.4rem;
  border-top: 1px dashed rgba(44, 24, 16, 0.12);
}

@media (max-width: 768px) {
  .types-scroll-hint {
    display: block;
  }
  .at-glance {
    grid-template-columns: 1fr;
  }
}


/* --- Editorial polish: takeaways, toc, note ------------------ */
.take-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.55rem 1.6rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.take-list li {
  position: relative;
  padding-left: 1.6rem;
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin: 0;
}

.take-bullet {
  position: absolute;
  left: 0;
  top: 0.05em;
  font-size: 0.8rem;
}

.toc-box {
  background: #fff;
  border: 1px solid rgba(44, 24, 16, 0.08);
  border-radius: 12px;
  padding: 1.25rem 1.5rem;
  margin: 0.75rem 0 1.75rem;
  box-shadow: var(--shadow-sm);
}

.toc-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 0.25rem 1.5rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.toc-list li {
  margin: 0;
}

.toc-list a {
  display: block;
  padding: 0.45rem 0.25rem;
  font-size: 0.95rem;
  color: var(--text-secondary);
  text-decoration: none;
  border-bottom: 1px solid rgba(44, 24, 16, 0.05);
}

.toc-list a:hover {
  color: var(--green-primary);
}

.types-note {
  background: #fdf8ec;
  border: 1px solid rgba(196, 149, 58, 0.45);
  border-radius: var(--radius-md);
  padding: var(--space-md) var(--space-lg);
  margin: var(--space-lg) 0 0;
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

.types-table-wrap {
  margin-bottom: var(--space-md);
}

@media (max-width: 700px) {
  .take-list {
    grid-template-columns: 1fr;
  }
}


/* ═══ SINGLE-RAIL ARTICLE SYSTEM (reference geometry) ═══ */
.page-article-types .article-hero-image {
  max-width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.page-article-types .article-content p {
  font-size: 1.075rem;
  line-height: 1.82;
  margin-bottom: 1.4rem;
}

.page-article-types .article-content h2 {
  margin-top: 3.5rem;
}

.page-article-types .article-section-img {
  aspect-ratio: 3 / 2;
  object-fit: cover;
  box-shadow: var(--shadow-sm);
}

.page-article-types .next-reads {
  margin: var(--space-xl) 0 var(--space-md);
}

@media (max-width: 768px) {
  .page-article-types .article-hero-image {
    border-radius: var(--radius-md);
  }
}


/* Which-type decision grid (additive module) */
.choice-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-sm);
  margin: var(--space-md) 0 var(--space-lg);
}

.choice-card {
  background: var(--bg-card);
  border: var(--border-subtle);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  box-shadow: var(--shadow-sm);
}

.choice-card h3 {
  font-size: 1rem;
  margin-bottom: var(--space-2xs);
}

.choice-card p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 700px) {
  .choice-grid {
    grid-template-columns: 1fr;
  }
}

/* --- Lancaster restoration: quick answers, location, timeline --- */
.page-lancaster .qa-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--space-sm);
  margin: var(--space-md) 0 var(--space-2xs);
}

.page-lancaster .qa-card {
  background: var(--bg-card);
  border: var(--border-subtle);
  border-left: 3px solid var(--green-primary);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: var(--space-sm) var(--space-md);
  box-shadow: var(--shadow-sm);
}

.page-lancaster .qa-card h3 {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--text-muted);
  margin-bottom: 0.25rem;
}

.page-lancaster .qa-card p {
  font-size: 0.95rem;
  color: var(--text-primary);
  font-weight: 500;
  margin: 0;
  line-height: 1.5;
}

.page-lancaster .qa-note {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 0.4rem 0 1.75rem;
}

.page-lancaster .loc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-sm);
  margin: var(--space-md) 0;
}

.page-lancaster .loc-card {
  background: var(--bg-card);
  border: var(--border-subtle);
  border-radius: var(--radius-md);
  padding: var(--space-md) var(--space-lg);
  box-shadow: var(--shadow-sm);
}

.page-lancaster .loc-card h3 {
  font-size: 1.02rem;
  margin-bottom: var(--space-2xs);
}

.page-lancaster .loc-card p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  margin-bottom: 0.4rem;
}

.page-lancaster .loc-card .loc-meta {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.page-lancaster .ship-timeline {
  list-style: none;
  padding: 0;
  margin: var(--space-md) 0;
  counter-reset: ship;
}

.page-lancaster .ship-timeline li {
  counter-increment: ship;
  position: relative;
  padding: 0.6rem 0 0.6rem 3rem;
  border-bottom: 1px solid rgba(44, 24, 16, 0.06);
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
}

.page-lancaster .ship-timeline li:last-child {
  border-bottom: none;
}

.page-lancaster .ship-timeline li::before {
  content: counter(ship);
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: var(--grad-green);
  color: #fff;
  font-weight: 700;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 700px) {
  .page-lancaster .loc-grid {
    grid-template-columns: 1fr;
  }
}


/* Lancaster additive modules (decision-support) */
.page-lancaster .scenario-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-sm);
  margin: var(--space-sm) 0 0;
}

.page-lancaster .scenario-card {
  background: var(--bg-card);
  border: var(--border-subtle);
  border-top: 3px solid var(--green-primary);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  box-shadow: var(--shadow-sm);
}

.page-lancaster .scenario-card h4 {
  font-size: 0.95rem;
  margin-bottom: var(--space-2xs);
}

.page-lancaster .scenario-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.55;
}

.page-lancaster .scenario-note {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-top: 0.5rem;
}

.page-lancaster .order-checklist, .page-bear .order-checklist, .page-license .order-checklist, .page-perfecting .order-checklist, .page-mastering .order-checklist, .page-draw .order-checklist, .page-longbows .order-checklist, .page-topranges .order-checklist, .page-beginners .order-checklist, .page-rcvc .order-checklist, .page-tuning .order-checklist, .page-bhbeg .order-checklist {
  list-style: none;
  padding: 0;
  margin: var(--space-md) 0;
}

.page-lancaster .order-checklist li, .page-bear .order-checklist li, .page-license .order-checklist li, .page-perfecting .order-checklist li, .page-mastering .order-checklist li, .page-draw .order-checklist li, .page-longbows .order-checklist li, .page-topranges .order-checklist li, .page-beginners .order-checklist li, .page-rcvc .order-checklist li, .page-tuning .order-checklist li, .page-bhbeg .order-checklist li {
  position: relative;
  padding: 0.45rem 0 0.45rem 1.6rem;
  border-bottom: 1px solid rgba(44, 24, 16, 0.06);
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
}

.page-lancaster .order-checklist li::before, .page-bear .order-checklist li::before, .page-license .order-checklist li::before, .page-perfecting .order-checklist li::before, .page-mastering .order-checklist li::before, .page-draw .order-checklist li::before, .page-longbows .order-checklist li::before, .page-topranges .order-checklist li::before, .page-beginners .order-checklist li::before, .page-rcvc .order-checklist li::before, .page-tuning .order-checklist li::before, .page-bhbeg .order-checklist li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0.45rem;
  color: var(--green-primary);
  font-weight: 700;
}

/* Card-count-aware grid: 4 cards = 2x2 (never 3+1); 5+ cards = 3 cols (5 = 3+2).
   Global rule: card grids must always be visually balanced. */
.page-lancaster .suited-grid, .page-bear .suited-grid, .page-perfecting .suited-grid, .page-longbows .suited-grid, .page-topranges .suited-grid, .page-beginners .suited-grid, .page-rcvc .suited-grid, .page-tuning .suited-grid, .page-bhbeg .suited-grid, .page-hub .suited-grid, .page-about .suited-grid, .page-contact .suited-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: var(--space-sm) var(--space-md);
  margin: var(--space-md) 0;
}
.page-lancaster .suited-grid:has(> .suited-item:nth-child(5)),
.page-bear .suited-grid:has(> .suited-item:nth-child(5)),
.page-perfecting .suited-grid:has(> .suited-item:nth-child(5)),
.page-longbows .suited-grid:has(> .suited-item:nth-child(5)),
.page-topranges .suited-grid:has(> .suited-item:nth-child(5)),
.page-beginners .suited-grid:has(> .suited-item:nth-child(5)),
.page-rcvc .suited-grid:has(> .suited-item:nth-child(5)),
.page-tuning .suited-grid:has(> .suited-item:nth-child(5)),
.page-bhbeg .suited-grid:has(> .suited-item:nth-child(5)),
.page-hub .suited-grid:has(> .suited-item:nth-child(5)) {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.page-lancaster .suited-item, .page-bear .suited-item, .page-perfecting .suited-item, .page-longbows .suited-item, .page-topranges .suited-item, .page-beginners .suited-item, .page-rcvc .suited-item, .page-tuning .suited-item, .page-bhbeg .suited-item, .page-hub .suited-item {
  background: var(--bg-card);
  border: var(--border-subtle);
  border-left: 3px solid var(--green-primary);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: var(--space-sm) var(--space-md);
  box-shadow: var(--shadow-sm);
}

.page-lancaster .suited-item h3, .page-bear .suited-item h3, .page-perfecting .suited-item h3, .page-longbows .suited-item h3, .page-topranges .suited-item h3, .page-beginners .suited-item h3, .page-rcvc .suited-item h3, .page-tuning .suited-item h3, .page-bhbeg .suited-item h3, .page-hub .suited-item h3 {
  font-size: 0.98rem;
  margin-bottom: 0.25rem;
}

.page-lancaster .suited-item p, .page-bear .suited-item p, .page-perfecting .suited-item p, .page-longbows .suited-item p, .page-topranges .suited-item p, .page-beginners .suited-item p, .page-rcvc .suited-item p, .page-tuning .suited-item p, .page-bhbeg .suited-item p, .page-hub .suited-item p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.55;
}

@media (max-width: 700px) {
  .page-lancaster .scenario-grid {
    grid-template-columns: 1fr;
  }
}


/* Lancaster closing: conclusion presentation (text untouched) */
.page-lancaster .article-content h2#conclusion {
  margin-top: 4rem;
  padding-top: 2rem;
  position: relative;
}

.page-lancaster .article-content h2#conclusion::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background: var(--grad-amber);
  border-radius: 9999px;
}

.page-lancaster .article-content h2#conclusion + p {
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--text-secondary);
}

.page-lancaster .article-content h2#faq {
  margin-top: 4rem;
}


/* Bow-making article: parts grid + safety list */
.page-bow .parts-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-sm);
  margin: var(--space-md) 0;
}

.page-bow .parts-col {
  background: var(--bg-card);
  border: var(--border-subtle);
  border-top: 3px solid var(--green-primary);
  border-radius: var(--radius-md);
  padding: var(--space-md) var(--space-lg);
  box-shadow: var(--shadow-sm);
}

.page-bow .parts-col h3 {
  font-size: 1rem;
  margin-bottom: var(--space-sm);
}

.page-bow .parts-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.page-bow .parts-col li {
  font-size: 0.93rem;
  color: var(--text-secondary);
  line-height: 1.6;
  padding: 0.3rem 0;
  border-bottom: 1px solid rgba(44, 24, 16, 0.05);
  margin: 0;
}

.page-bow .parts-col li:last-child {
  border-bottom: none;
}

.page-bow .safety-list {
  list-style: none;
  padding: 0;
  margin: var(--space-md) 0;
}

.page-bow .safety-list li {
  position: relative;
  padding: 0.45rem 0 0.45rem 1.6rem;
  border-bottom: 1px solid rgba(44, 24, 16, 0.06);
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin: 0;
}

.page-bow .safety-list li::before {
  content: "!";
  position: absolute;
  left: 0;
  top: 0.45rem;
  width: 1.05rem;
  height: 1.05rem;
  border-radius: 50%;
  background: var(--amber);
  color: #fff;
  font-weight: 700;
  font-size: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 700px) {
  .page-bow .parts-grid {
    grid-template-columns: 1fr;
  }
}

/* ─────────────────────────────────────────────────────────────
   BEAR: company overview — editorial figures (2026-09-21)
   ───────────────────────────────────────────────────────────── */
.page-bear .bear-figure, .page-license .bear-figure, .page-perfecting .bear-figure,
.page-draw .bear-figure, .page-longbows .bear-figure, .page-mastering .bear-figure, .page-topranges .bear-figure, .page-beginners .bear-figure, .page-rcvc .bear-figure, .page-tuning .bear-figure, .page-bhbeg .bear-figure {
  margin: var(--space-lg) 0 var(--space-xl);
}
.page-bear .bear-figure img, .page-license .bear-figure img, .page-perfecting .bear-figure img,
.page-draw .bear-figure img, .page-longbows .bear-figure img, .page-mastering .bear-figure img, .page-topranges .bear-figure img, .page-beginners .bear-figure img, .page-rcvc .bear-figure img, .page-tuning .bear-figure img, .page-bhbeg .bear-figure img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  border: var(--border-subtle);
  display: block;
}
.page-bear .bear-figure figcaption, .page-license .bear-figure figcaption, .page-perfecting .bear-figure figcaption {
  font-size: var(--text-sm);
  color: var(--text-muted);
  margin-top: 0.5rem;
  line-height: 1.55;
}

/* ─────────────────────────────────────────────────────────────
   PERFECTING: editorial rhythm (2026-09-21)
   ───────────────────────────────────────────────────────────── */
.page-perfecting .article-content p {
  font-size: 1.075rem;
  line-height: 1.82;
  margin-bottom: 1.4rem;
}

/* numbered shot-sequence rows (compact, no cards) */
.page-perfecting .shot-sequence, .page-draw .shot-sequence, .page-beginners .shot-sequence, .page-tuning .shot-sequence, .page-bhbeg .shot-sequence {
  list-style: none;
  counter-reset: seq;
  padding: 0;
  margin: var(--space-md) 0;
}
.page-perfecting .shot-sequence li, .page-draw .shot-sequence li, .page-beginners .shot-sequence li, .page-tuning .shot-sequence li, .page-bhbeg .shot-sequence li {
  counter-increment: seq;
  position: relative;
  padding: 0.55rem 0 0.55rem 3.4rem;
  border-bottom: 1px solid rgba(44, 24, 16, 0.07);
  font-size: 1rem;
  line-height: 1.6;
  margin: 0;
}
.page-perfecting .shot-sequence li:last-child, .page-draw .shot-sequence li:last-child, .page-beginners .shot-sequence li:last-child, .page-tuning .shot-sequence li:last-child, .page-bhbeg .shot-sequence li:last-child {
  border-bottom: none;
}
.page-perfecting .shot-sequence li::before, .page-draw .shot-sequence li::before, .page-beginners .shot-sequence li::before, .page-tuning .shot-sequence li::before, .page-bhbeg .shot-sequence li::before {
  content: counter(seq, decimal-leading-zero);
  position: absolute;
  left: 0;
  top: 0.45rem;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 50%;
  background: var(--green-primary);
  color: var(--text-inverse);
  font-weight: 700;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* mistakes: warning markers instead of checkmarks */
.page-perfecting .order-checklist.mistakes li::before, .page-mastering .order-checklist.mistakes li::before, .page-draw .order-checklist.mistakes li::before, .page-longbows .order-checklist.mistakes li::before, .page-beginners .order-checklist.mistakes li::before, .page-tuning .order-checklist.mistakes li::before, .page-bhbeg .order-checklist.mistakes li::before {
  content: "⚠";
  color: var(--amber);
}

/* conclusion separation */
.page-perfecting .article-content h2#conclusion {
  margin-top: 3rem;
}

/* PERFECTING: 30-minute practice routine — numbered rows, no cards */
.page-perfecting .practice-routine, .page-mastering .practice-routine, .page-beginners .practice-routine, .page-bhbeg .practice-routine {
  margin: var(--space-md) 0 var(--space-sm);
}
.page-perfecting .routine-row, .page-mastering .routine-row, .page-beginners .routine-row, .page-bhbeg .routine-row {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 0.7rem 0;
  border-bottom: 1px solid rgba(44, 24, 16, 0.08);
}
.page-perfecting .routine-row:last-of-type, .page-mastering .routine-row:last-of-type, .page-beginners .routine-row:last-of-type, .page-bhbeg .routine-row:last-of-type {
  border-bottom: none;
}
.page-perfecting .routine-time, .page-mastering .routine-time, .page-beginners .routine-time, .page-bhbeg .routine-time {
  flex: 0 0 4.2rem;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  color: var(--text-inverse);
  background: var(--green-primary);
  border-radius: 999px;
  padding: 0.3rem 0.7rem;
  text-align: center;
  margin-top: 0.15rem;
}
.page-perfecting .routine-row h3, .page-mastering .routine-row h3, .page-beginners .routine-row h3, .page-bhbeg .routine-row h3 {
  font-size: 1.02rem;
  margin: 0 0 0.15rem;
}
.page-perfecting .routine-row p, .page-mastering .routine-row p, .page-beginners .routine-row p, .page-bhbeg .routine-row p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
}
@media (max-width: 520px) {
  .page-perfecting .routine-row, .page-mastering .routine-row, .page-beginners .routine-row, .page-bhbeg .routine-row {
    flex-direction: column;
    gap: 0.4rem;
  }
}

/* MASTERING: editorial figures — centered natural size, no upscale */
.page-mastering .bear-figure {
  text-align: center;
}
.page-mastering .bear-figure img {
  display: block;
  margin: 0 auto;
  max-width: 100%;
  height: auto;
}
.page-mastering .bear-figure figcaption {
  font-size: var(--text-sm);
  color: var(--text-muted);
  margin-top: 0.5rem;
  line-height: 1.55;
}

/* LONGBOWS: natural-aspect hero (no shallow crop) */
.page-longbows .article-hero-image {
  height: auto;
  object-fit: initial;
}

/* LONGBOWS: numbered difference headings (01-07 green pills) */
.page-longbows h2#seven-differences ~ h3 {
  counter-increment: diff;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin: 1.75rem 0 0.6rem;
}
.page-longbows h2#seven-differences ~ h3::before {
  counter-reset: none;
  content: counter(diff, decimal-leading-zero);
  flex: 0 0 2rem;
  height: 2rem;
  border-radius: 999px;
  background: var(--green-primary);
  color: var(--text-inverse);
  font-size: 0.85rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* LONGBOWS: compact numbered difference navigation */
.page-longbows .diff-nav {
  list-style: none;
  counter-reset: diffnav;
  padding: 0;
  margin: 0.75rem 0 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0.35rem 1.25rem;
}
.page-longbows .diff-nav li {
  counter-increment: diffnav;
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.3rem 0;
  border-bottom: 1px solid rgba(44, 24, 16, 0.06);
}
.page-longbows .diff-nav li::before {
  content: counter(diffnav, decimal-leading-zero);
  font-weight: 700;
  font-size: 0.8rem;
  color: var(--green-primary);
}
.page-longbows .diff-nav a {
  color: var(--text-primary);
  text-decoration: none;
}
.page-longbows .diff-nav a:hover {
  color: var(--green-primary);
  text-decoration: underline;
}

/* LONGBOWS micro-polish: supporting image hierarchy + breathing */
.page-longbows .figure-support img {
  max-width: min(780px, 100%);
  margin-inline: auto;
}
.page-longbows h2#seven-differences ~ h3 {
  margin-top: 2.4rem;
  margin-bottom: 0.7rem;
}

/* TOPRANGES: natural-aspect hero (no shallow crop) */
.page-topranges .article-hero-image {
  height: auto;
  object-fit: initial;
}

/* TOPRANGES: compact editorial verified-range list */
.page-topranges .range-example-list {
  margin: var(--space-md) 0;
}
.page-topranges .range-example {
  padding: 0.9rem 0;
  border-bottom: 1px solid rgba(44, 24, 16, 0.08);
}
.page-topranges .range-example:last-child {
  border-bottom: none;
}
.page-topranges .range-example h3 {
  font-size: 1.05rem;
  margin: 0 0 0.15rem;
}
.page-topranges .range-example-loc {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 0 0 0.4rem;
}
.page-topranges .range-example-chips {
  margin-bottom: 0.45rem;
}
.page-topranges .range-example-chips span {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--green-primary);
  background: rgba(45, 90, 39, 0.08);
  border-radius: 999px;
  padding: 0.15rem 0.6rem;
  margin: 0 0.3rem 0.25rem 0;
}
.page-topranges .range-example p {
  font-size: 0.97rem;
  line-height: 1.65;
  margin-bottom: 0.3rem;
}

/* BEGINNERS: first shot cycle — 7 compact numbered rows */
.page-beginners .cycle-steps {
  margin: var(--space-md) 0;
}
.page-beginners .cycle-step {
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
  padding: 0.65rem 0;
  border-bottom: 1px solid rgba(44, 24, 16, 0.07);
}
.page-beginners .cycle-step:last-child {
  border-bottom: none;
}
.page-beginners .cycle-num {
  flex: 0 0 2.1rem;
  height: 2.1rem;
  border-radius: 50%;
  background: var(--green-primary);
  color: var(--text-inverse);
  font-weight: 700;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.1rem;
}
.page-beginners .cycle-step h3 {
  font-size: 1rem;
  margin: 0 0 0.15rem;
}
.page-beginners .cycle-step p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.55;
  margin: 0;
}

/* BEGINNERS: natural-aspect hero (user photo, no shallow crop) */
.page-beginners .article-hero-image {
  height: auto;
  object-fit: initial;
}

/* RECURVE VS COMPOUND: conceptual draw-cycle rows */
.page-rcvc .draw-cycle {
  margin: var(--space-md) 0;
}
.page-rcvc .draw-cycle-row {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 0.8rem 0;
  border-bottom: 1px solid rgba(44, 24, 16, 0.08);
}
.page-rcvc .draw-label {
  flex: 0 0 6.5rem;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.05em;
  color: var(--text-inverse);
  background: var(--green-primary);
  border-radius: 999px;
  padding: 0.35rem 0.8rem;
  text-align: center;
  margin-top: 0.1rem;
}
.page-rcvc .draw-cycle-row p {
  font-size: 0.97rem;
  line-height: 1.6;
  margin: 0;
}
.page-rcvc .draw-cycle-note {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 0.6rem 0 0;
}
@media (max-width: 520px) {
  .page-rcvc .draw-cycle-row { flex-direction: column; gap: 0.4rem; }
}

/* RECURVE VS COMPOUND: conceptual let-off visual + try-both CTA */
.page-rcvc .letoff-visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin: var(--space-lg) 0 var(--space-sm);
}
.page-rcvc .letoff-panel {
  background: var(--bg-card);
  border: var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 1rem 1.1rem;
}
.page-rcvc .letoff-panel h3 {
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  margin: 0 0 0.7rem;
  color: var(--green-primary);
}
.page-rcvc .letoff-bars {
  display: flex;
  align-items: flex-end;
  gap: 0.35rem;
  height: 3.4rem;
  margin-bottom: 0.6rem;
}
.page-rcvc .letoff-bars .bar {
  flex: 1;
  background: var(--green-primary);
  opacity: 0.85;
  border-radius: 4px 4px 0 0;
}
.page-rcvc .bar.b1 { height: 22%; }
.page-rcvc .bar.b2 { height: 40%; }
.page-rcvc .bar.b3 { height: 58%; }
.page-rcvc .bar.b4 { height: 76%; }
.page-rcvc .bar.b5 { height: 94%; }
.page-rcvc .bar.peak { background: var(--amber); }
.page-rcvc .letoff-panel p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.55;
  margin: 0;
}
.page-rcvc .letoff-note {
  grid-column: 1 / -1;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 0;
}
@media (max-width: 620px) {
  .page-rcvc .letoff-visual { grid-template-columns: 1fr; }
}
.page-rcvc .try-box {
  background: var(--bg-card);
  border: var(--border-subtle);
  border-left: 4px solid var(--green-primary);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  box-shadow: var(--shadow-sm);
  padding: 1.4rem 1.5rem;
  margin: var(--space-xl) 0;
}
.page-rcvc .try-box h2 {
  font-size: var(--text-lg);
  margin: 0 0 0.6rem;
  border-bottom: none;
}
.page-rcvc .try-box h2::after { content: none; }
.page-rcvc .try-box p {
  font-size: 0.97rem;
  line-height: 1.65;
  margin-bottom: 1rem;
}
.page-rcvc .try-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

/* RECURVE VS COMPOUND: natural-aspect hero */
.page-rcvc .article-hero-image {
  height: auto;
  object-fit: initial;
}

/* Buttons inside article content: keep their own styling */
.article-content a.btn {
  text-decoration: none;
}
.article-content a.btn.btn-primary {
  color: #fff;
}
.article-content a.btn.btn-primary:hover {
  color: #fff;
}

/* TUNING: 3-card diagnostic grid stays balanced (3 columns) */
.page-tuning .suited-grid.trio-grid {
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
}

/* GLOBAL: collapsible Table of Contents (details/summary) */
details.toc-box summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  cursor: pointer;
  list-style: none;
  user-select: none;
  min-height: 58px;
  padding: 0.35rem 0;
}
.toc-head {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.toc-title {
  font-weight: 700;
  font-size: 1.08rem;
  color: var(--green-primary);
}
.toc-sub {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 400;
}
.toc-action {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  flex: 0 0 auto;
}
.toc-view {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--green-primary);
}
.toc-hide {
  display: none;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--green-primary);
}
details.toc-box[open] .toc-view { display: none; }
details.toc-box[open] .toc-hide { display: inline; }
details.toc-box summary::-webkit-details-marker {
  display: none;
}
details.toc-box summary:focus-visible {
  outline: 2px solid var(--green-primary);
  outline-offset: 3px;
  border-radius: 4px;
}
.toc-meta {
  display: inline-flex;
  gap: 0.6rem;
  align-items: center;
}
.toc-count {
  font-size: 0.82rem;
  color: var(--text-muted);
  font-weight: 500;
}
.toc-chevron {
  transition: transform 0.2s ease;
  color: var(--green-primary);
  font-size: 0.9rem;
}
details.toc-box[open] .toc-chevron {
  transform: rotate(180deg);
}
details.toc-box .toc-list {
  columns: 2;
  column-gap: 2rem;
  margin-top: 0.9rem;
}
details.toc-box .toc-list li {
  break-inside: avoid;
}
.toc-sublist {
  margin: 0.2rem 0 0.5rem 1.1rem;
  font-size: 0.92em;
  opacity: 0.85;
}
.toc-sublist li {
  list-style: none;
  margin: 0.2rem 0;
}
@media (max-width: 640px) {
  details.toc-box .toc-list {
    columns: 1;
  }
}
@media (prefers-reduced-motion: reduce) {
  .toc-chevron {
    transition: none;
  }
}

/* TUNING: natural-aspect hero */
.page-tuning .article-hero-image {
  height: auto;
  object-fit: initial;
}

/* BOWHUNTING BEGINNERS: natural-aspect hero */
.page-bhbeg .article-hero-image {
  height: auto;
  object-fit: initial;
}

/* HUBS: real-article card grids (page-hub) */
.page-hub .suited-grid, .page-about .suited-grid, .page-contact .suited-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-sm) var(--space-md);
  margin: var(--space-md) 0;
}
.page-about .suited-item, .page-contact .suited-item { margin: 0; }
.page-hub .article-card {
  margin: 0;
}
.page-hub .article-card-body {
  height: 100%;
}

/* HUBS: 3-card hub rows stay balanced */
.page-hub .suited-grid.trio, .page-about .suited-grid.trio-grid, .page-contact .suited-grid.trio-grid {
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
}
