/* ============================================================
   TREASURE HUNT PRAGUE — blog.css
   Shared styles for blog/index.html + all article pages
   Design tokens kept in sync with inline style in index.html
   ============================================================ */

/* ── Light mode: nav na blogu je vždy podkladová (ne průhledná nad fotkou) ── */
/* Přebije pravidlo z tokens.css, které by nutilo světlý text pro průhlednou nav */
:root[data-theme="light"] .site-nav:not(.scrolled) {
  --parchment:     #1a1208;
  --parchment-dim: rgba(26, 18, 8, 0.7);
  --gold:          #8b6914;
  --gold-light:    #a07820;
  --border:        rgba(139, 105, 20, 0.3);
}

/* ── Reset ────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: no-preference) {
  html { scroll-behavior: smooth; }
}
[id] { scroll-margin-top: var(--nav-h, 68px); }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--ff-body);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: var(--gold); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold-light); }
ul { list-style: none; }
button { cursor: pointer; font-family: var(--ff-body); border: none; background: none; }
input, select, textarea { font-family: var(--ff-body); font-size: 16px; }

/* ── Noise Grain Overlay ──────────────────────────────────── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 256px;
}

/* ── Typography ───────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--ff-display);
  color: var(--parchment);
  line-height: 1.15;
  letter-spacing: 0.01em;
}
h1 { font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 300; }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.2rem); font-weight: 300; }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.4rem); font-weight: 400; }
h4 { font-size: 1rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; color: var(--gold); }
p { margin-bottom: 1.2em; }
p:last-child { margin-bottom: 0; }

/* ── Buttons ──────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 2rem;
  font-family: var(--ff-body);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: background var(--transition), color var(--transition), box-shadow var(--transition), transform var(--transition);
  min-height: 48px;
  white-space: nowrap;
}
.btn-primary {
  background: var(--gold);
  color: var(--bg);
}
.btn-primary:hover,
.btn-primary:focus-visible {
  background: var(--gold-light);
  color: var(--bg);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px var(--gold-shadow);
  outline: none;
}
.btn-primary:active { transform: translateY(0); }
.btn-lg { padding: 1.1rem 2.4rem; font-size: 1rem; }

/* ── Navigation ───────────────────────────────────────────── */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  padding: 0 1.25rem;
  transition: background var(--transition), box-shadow var(--transition);
  background: var(--bg-nav);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--border);
}
.nav-inner {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  text-decoration: none;
}
.logo-icon { height: 46px; width: auto; flex-shrink: 0; color: var(--gold); }
.logo-divider { width: 1px; height: 36px; background: var(--border); flex-shrink: 0; }
.logo-text { display: flex; flex-direction: column; line-height: 1.1; gap: 0; }
.logo-sub {
  font-family: var(--ff-body);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--parchment);
}
.logo-main {
  font-family: var(--ff-body);
  font-size: 0.88rem;
  font-weight: 300;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}
.nav-logo:hover .logo-sub,
.nav-logo:hover .logo-main { color: var(--gold-light); }
.nav-logo:focus-visible { outline: none; }
.nav-links {
  display: none;
  gap: 2rem;
  align-items: center;
}
.nav-links a {
  color: var(--parchment-dim);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 3px;
  transition: color var(--transition);
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.28s ease;
}
.nav-links a:hover,
.nav-links a:focus-visible { color: var(--gold); outline: none; }
.nav-links a:hover::after,
.nav-links a:focus-visible::after { transform: scaleX(1); }
.nav-links a.active { color: var(--gold); }
.nav-links a.active::after { transform: scaleX(1); }
.nav-links a:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
  border-radius: 2px;
}
.nav-cta { display: none; padding: 0.55rem 1.25rem; font-size: 0.8rem; min-height: unset; }

/* Hamburger */
.nav-hamburger {
  width: 48px; height: 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 101;
  position: relative;
}
.nav-hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--parchment);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
  transform-origin: center;
}
.nav-hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile overlay */
.nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 99;
  background: var(--bg-nav);
  backdrop-filter: blur(16px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0;
  transform: translateX(100%);
  transition: transform 0.38s cubic-bezier(0.77, 0, 0.18, 1);
  padding: 2rem;
}
.nav-overlay.open { transform: translateX(0); }
.nav-overlay a {
  font-family: var(--ff-display);
  font-size: 2.2rem;
  font-weight: 300;
  color: var(--parchment);
  padding: 0.65rem 0;
  min-height: 48px;
  display: block;
  text-align: center;
  transition: color var(--transition);
}
.nav-overlay a:hover { color: var(--gold); }
.nav-overlay .overlay-cta { margin-top: 2rem; color: var(--bg); }
.nav-overlay-divider {
  width: 40px;
  height: 1px;
  background: var(--border);
  margin: 1.5rem auto;
}

/* Nav controls group */
.nav-controls {
  display: flex;
  align-items: center;
  gap: 0.1rem;
  margin-left: auto; /* mobile: skupinu posune doprava */
}
@media (min-width: 768px) {
  .nav-controls { margin-left: 1rem; }
}

/* Theme toggle */
.nav-theme-toggle {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--parchment);
  transition: color var(--transition);
  flex-shrink: 0;
}
.nav-theme-toggle:hover { color: var(--gold); }

/* ── Language switcher — dropdown ─────────────────────── */
.nav-lang {
  position: relative;
  font-family: var(--ff-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}
.lang-current {
  display: flex;
  align-items: center;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--parchment-dim);
  padding: 6px 4px;
  transition: color var(--transition);
  white-space: nowrap;
}
.lang-current:hover { color: var(--gold); }
.lang-chevron {
  transition: transform var(--transition);
  flex-shrink: 0;
}
.nav-lang:hover .lang-chevron,
.nav-lang:focus-within .lang-chevron { transform: rotate(180deg); }

.lang-dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  min-width: 130px;
  list-style: none;
  margin: 0;
  padding: 4px 0;
  box-shadow: 0 8px 24px rgba(0,0,0,0.4);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-4px);
  transition: opacity var(--transition), transform var(--transition);
}
.nav-lang:hover .lang-dropdown,
.nav-lang:focus-within .lang-dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.lang-option {
  display: block;
  padding: 8px 14px;
  color: var(--parchment-dim);
  text-decoration: none;
  transition: color var(--transition), background var(--transition);
  white-space: nowrap;
}
.lang-option:hover { color: var(--gold); background: rgba(201,168,76,.06); }
.lang-option.active { color: var(--gold); font-weight: 700; }

/* Mobile overlay lang switcher */
.nav-overlay-lang {
  display: flex;
  gap: 1rem;
  padding: 0 0 0.5rem;
}
.overlay-lang-link {
  color: var(--parchment-dim);
  text-decoration: none;
  font-family: var(--ff-body);
  font-size: 0.9rem;
  font-weight: 500;
  transition: color var(--transition);
}
.overlay-lang-link:hover,
.overlay-lang-link.active { color: var(--gold); }

/* Ikony sluníčko/měsíček */
.icon-moon { display: none; }
[data-theme="light"] .icon-sun  { display: none; }
[data-theme="light"] .icon-moon { display: block; }

/* Overlay CTA — override 2.2rem z .nav-overlay a */
.nav-overlay .overlay-cta {
  font-size: 0.95rem;
  font-family: var(--ff-body);
  font-weight: 500;
  letter-spacing: 0.06em;
  padding: 0.9rem 2.5rem;
}

@media (min-width: 768px) {
  .nav-links { display: flex; }
  .nav-cta { display: inline-flex; }
  .nav-hamburger { display: none; }
  .site-nav { padding: 0 2rem; }
  .nav-controls { margin-left: 1rem; }
}

/* ── Footer ───────────────────────────────────────────────── */
.site-footer {
  background: var(--bg-footer);
  border-top: 1px solid var(--border-dim);
  padding: 3rem 1.25rem;
  text-align: center;
}
.footer-inner { max-width: 1200px; margin: 0 auto; text-align: center; }
.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  margin-bottom: 1.25rem;
  text-decoration: none;
}
.footer-logo .logo-icon { height: 52px; width: auto; flex-shrink: 0; color: var(--gold); }
.footer-logo .logo-divider { width: 1px; height: 40px; background: var(--border); flex-shrink: 0; }
.footer-logo .logo-text { display: flex; flex-direction: column; line-height: 1.1; gap: 0; text-align: left; }
.footer-logo .logo-sub { font-family: var(--ff-body); font-size: 1rem; font-weight: 700; letter-spacing: 0.09em; text-transform: uppercase; color: var(--parchment); }
.footer-logo .logo-main { font-family: var(--ff-body); font-size: 1rem; font-weight: 300; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); }
.footer-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
  margin: 1rem 0;
}
.footer-links a { font-size: 0.85rem; color: var(--text); }
.footer-links a:hover { color: var(--gold); }
.footer-copy {
  font-size: 0.78rem;
  color: var(--parchment-dim);
  margin-top: 1.5rem;
  text-align: center;
}

/* ── Sticky Mobile CTA ────────────────────────────────────── */
.sticky-cta {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 90;
  background: var(--bg-nav);
  border-top: 1px solid var(--border);
  padding: 0.85rem 1.25rem;
  backdrop-filter: blur(12px);
  transform: translateY(0); /* always visible on blog pages */
}
.sticky-cta .btn { width: 100%; }
@media (min-width: 768px) {
  .sticky-cta { display: none; }
}

/* ── Utility ──────────────────────────────────────────────── */
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.skip-link {
  position: absolute;
  top: -100%; left: 1rem;
  z-index: 200;
  background: var(--gold);
  color: var(--bg);
  padding: 0.75rem 1.25rem;
  border-radius: 0 0 var(--radius) var(--radius);
  font-weight: 600;
  font-size: 0.9rem;
  transition: top 0.2s ease;
}
.skip-link:focus { top: 0; outline: 3px solid var(--bg); outline-offset: 2px; }

/* ════════════════════════════════════════════════════════════
   BLOG INDEX PAGE
   ════════════════════════════════════════════════════════════ */

.blog-hero {
  padding: calc(var(--nav-h) + 4rem) 1.25rem 3rem;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}
.blog-hero-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  display: block;
}
.blog-hero h1 {
  margin-bottom: 1.25rem;
}
.blog-hero p {
  font-size: 1.1rem;
  color: var(--parchment-dim);
  max-width: 600px;
  margin: 0 auto;
}

.blog-breadcrumb {
  padding: 1rem 1.25rem 0;
  max-width: 1200px;
  margin: 0 auto;
}
.blog-breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem 0.5rem;
  list-style: none;
  font-size: 0.8rem;
  color: var(--parchment-dim);
}
.blog-breadcrumb li + li::before {
  content: '›';
  color: var(--border);
  margin-right: 0.5rem;
}
.blog-breadcrumb a { color: var(--parchment-dim); }
.blog-breadcrumb a:hover { color: var(--gold); }
.blog-breadcrumb [aria-current] { color: var(--gold); }

.blog-grid-section {
  padding: 2rem 1.25rem 5rem;
  max-width: 1200px;
  margin: 0 auto;
}
.blog-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 640px) {
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .blog-grid { grid-template-columns: repeat(3, 1fr); }
}

.blog-card {
  background: var(--bg-alt);
  border: 1px solid var(--border-dim);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.4);
  border-color: var(--border);
}
.blog-card-img {
  aspect-ratio: 16/9;
  overflow: hidden;
}
.blog-card-img a {
  display: block;
  height: 100%;
}
.blog-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.blog-card:hover .blog-card-img img { transform: scale(1.04); }
.blog-card-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.blog-card-meta {
  display: flex;
  gap: 1rem;
  font-size: 0.75rem;
  color: var(--parchment-dim);
  margin-bottom: 0.75rem;
}
.blog-card-meta time { color: var(--gold); }
.blog-card h2,
.blog-card h3 {
  font-size: clamp(1.1rem, 2.5vw, 1.35rem);
  margin-bottom: 0.75rem;
  line-height: 1.3;
}
.blog-card h2 a,
.blog-card h3 a { color: var(--parchment); }
.blog-card h2 a:hover,
.blog-card h3 a:hover { color: var(--gold); }
.blog-card p {
  font-size: 0.9rem;
  color: var(--text);
  margin-bottom: 1.25rem;
  flex: 1;
}
.blog-card-link {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: auto;
}
.blog-card-link::after { content: '→'; transition: transform 0.2s ease; }
.blog-card:hover .blog-card-link::after { transform: translateX(3px); }

/* ════════════════════════════════════════════════════════════
   ARTICLE PAGE
   ════════════════════════════════════════════════════════════ */

.article-wrap {
  padding-top: var(--nav-h);
}

/* Breadcrumb */
.breadcrumb {
  padding: 1.25rem 1.25rem 0;
  max-width: 860px;
  margin: 0 auto;
}
.breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem 0.5rem;
  list-style: none;
  font-size: 0.8rem;
  color: var(--parchment-dim);
}
.breadcrumb li + li::before {
  content: '›';
  color: var(--border);
  margin-right: 0.5rem;
}
.breadcrumb a { color: var(--parchment-dim); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb [aria-current] { color: var(--gold); }

/* Article header */
.article-header {
  max-width: 860px;
  margin: 0 auto;
  padding: 2rem 1.25rem 0;
  text-align: center;
}
.article-header h1 {
  margin-bottom: 1.25rem;
}
.article-meta {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem 1.25rem;
  font-size: 0.8rem;
  color: var(--parchment-dim);
  margin-bottom: 2rem;
}
.article-meta .meta-sep { color: var(--border); }
.article-meta time { color: var(--gold); }

.article-hero {
  max-width: 1000px;
  margin: 0 auto 2.5rem;
  padding: 0 1.25rem;
}
.article-hero img {
  width: 100%;
  border-radius: var(--radius-lg);
  aspect-ratio: 16/9;
  object-fit: cover;
}
.article-hero figcaption {
  font-size: 0.78rem;
  color: var(--parchment-dim);
  text-align: center;
  margin-top: 0.5rem;
  font-style: italic;
}

/* TLDR box */
.tldr-box {
  max-width: 720px;
  margin: 0 auto 2rem;
  padding: 1.25rem 1.5rem;
  border-left: 3px solid var(--gold);
  background: var(--bg-alt);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-size: 0.95rem;
  line-height: 1.6;
  padding: 1rem 1.25rem;
}
@media (min-width: 768px) {
  .tldr-box { margin: 0 auto 2.5rem; }
}
.tldr-box strong { color: var(--gold); display: block; margin-bottom: 0.4rem; font-size: 0.75rem; letter-spacing: 0.12em; text-transform: uppercase; }
.tldr-box ol { padding-left: 1.5rem; margin: 0.5rem 0 0; }
.tldr-box ol li { margin-bottom: 0.35rem; }
.tldr-box ul { padding-left: 1.5rem; margin: 0.5rem 0 0; }
.tldr-box ul li { margin-bottom: 0.35rem; }

/* Comparison table */
.comparison-table-wrap {
  overflow-x: auto;
  margin: 1.75rem 0;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
  font-family: var(--ff-body);
}
.comparison-table caption {
  text-align: left;
  padding: 0.75rem 1rem;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  background: var(--bg-alt);
  border-bottom: 1px solid var(--border);
}
.comparison-table th,
.comparison-table td {
  padding: 0.65rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--border-dim);
  color: var(--text);
}
.comparison-table thead th {
  background: var(--bg-alt);
  color: var(--parchment);
  font-weight: 500;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
}
.comparison-table thead th:last-child { color: var(--gold); }
.comparison-table tbody tr:last-child td { border-bottom: none; }
.comparison-table tbody tr:hover td { background: rgba(201,168,76,.04); }
.ct-yes  { color: #6fcf97; font-weight: 600; }
.ct-no   { color: #eb5757; }
.ct-partial { color: var(--gold); }

/* Table of contents */
.toc {
  max-width: 720px;
  margin: 0 auto 2.5rem;
  padding: 1.25rem 1.5rem;
  border: 1px solid var(--border-dim);
  border-radius: var(--radius);
  background: var(--bg-alt);
}
.toc-title {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}
.toc ol {
  list-style: none;
  counter-reset: toc-counter;
  padding: 0;
}
.toc ol li {
  counter-increment: toc-counter;
  display: flex;
  gap: 0.75rem;
  align-items: baseline;
  padding: 0.25rem 0;
  font-size: 0.875rem;
}
.toc ol li::before {
  content: counter(toc-counter, decimal-leading-zero);
  color: var(--gold);
  font-size: 0.7rem;
  font-weight: 600;
  flex-shrink: 0;
  margin-top: 0.1em;
}
.toc a { color: var(--text); font-size: 0.875rem; }
.toc a:hover { color: var(--gold); }

/* Article body */
.article-body {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 1.25rem 3rem;
  line-height: 1.85;
}
.article-body h2 {
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  margin-top: 2.75rem;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--border-dim);
  color: var(--gold);
}

/* Top-10 listicle: distinct visual break before each activity section */
.top10-article h2 {
  margin-top: 5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  border-bottom: none;
}
/* First heading (comparison table) keeps compact spacing */
.top10-article #srovnavaci-tabulka {
  margin-top: 1.75rem;
  padding-top: 0;
  border-top: none;
  border-bottom: 1px solid var(--border-dim);
}

.article-body h3 {
  font-size: clamp(1.1rem, 2.2vw, 1.3rem);
  margin-top: 1.75rem;
  margin-bottom: 0.75rem;
  color: var(--gold);
  font-family: var(--ff-body);
  font-weight: 600;
  letter-spacing: 0.04em;
}
.article-body p { margin-bottom: 1.15rem; }
.article-body ul, .article-body ol {
  margin-bottom: 1.15rem;
  padding-left: 1.25rem;
}
.article-body ul { list-style: none; padding-left: 0; }
.article-body ul li {
  padding-left: 1.5rem;
  position: relative;
  margin-bottom: 0.5rem;
}
.article-body ul li::before {
  content: '›';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
}
.article-body ol { list-style: decimal; }
.article-body ol li { margin-bottom: 0.5rem; }
.article-body strong { color: var(--parchment); font-weight: 600; }
.article-body em { font-style: italic; color: var(--parchment-dim); }
.article-body a { text-decoration: underline; text-underline-offset: 3px; }

/* Internal link highlight */
.article-body .internal-link {
  color: var(--gold);
  font-weight: 500;
  text-decoration: underline;
  text-decoration-color: var(--border);
}
.article-body .internal-link:hover { text-decoration-color: var(--gold); }

/* Comparison table */
.table-wrapper {
  overflow-x: auto;
  margin: 1.75rem 0 2rem;
  border-radius: 6px;
  border: 1px solid var(--border-dim);
}
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.85rem;
  white-space: nowrap;
}
.comparison-table th {
  background: var(--bg-alt);
  color: var(--gold);
  padding: 0.65rem 1rem;
  text-align: left;
  font-weight: 600;
  font-family: var(--ff-body);
  letter-spacing: 0.03em;
  border-bottom: 1px solid var(--border);
}
.comparison-table td {
  padding: 0.6rem 1rem;
  border-bottom: 1px solid var(--border-dim);
  color: var(--text);
  vertical-align: middle;
}
.comparison-table tr:last-child td { border-bottom: none; }
.comparison-table tr:hover td { background: rgba(201,168,76,0.04); }
.comparison-table .highlight-row td {
  background: rgba(201,168,76,0.08);
  color: var(--parchment);
  font-weight: 500;
}
.comparison-table .highlight-row td:nth-child(2) { color: var(--gold); }

/* Activity info box */
.activity-info {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1.5rem;
  margin: 0.75rem 0 1.5rem;
  padding: 0.9rem 1.25rem;
  background: var(--bg-alt);
  border: 1px solid var(--border-dim);
  border-left: 3px solid var(--gold);
  border-radius: 4px;
  font-size: 0.82rem;
}
.activity-info-item {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}
.activity-info-item .label {
  color: rgba(240,230,211,0.45);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.activity-info-item strong { color: var(--parchment); font-weight: 600; }
.activity-info-item a { color: var(--gold); text-decoration: underline; text-underline-offset: 2px; }

/* FAQ Section */
.article-faq {
  max-width: 720px;
  margin: 0 auto 2.5rem;
  padding: 0 1.25rem;
}
.article-faq > h2 {
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  margin-bottom: 1.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--border-dim);
}
.faq-list { list-style: none; }
.faq-item {
  border-bottom: 1px solid var(--border-dim);
}
.faq-item:first-child {
  border-top: 1px solid var(--border-dim);
}
.faq-question {
  width: 100%;
  text-align: left;
  padding: 1.1rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-family: var(--ff-display);
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--parchment);
  transition: color var(--transition);
  background: none;
  border: none;
  cursor: pointer;
}
.faq-question:hover { color: var(--gold); }
.faq-icon {
  flex-shrink: 0;
  width: 20px; height: 20px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: var(--gold);
  transition: transform var(--transition), background var(--transition);
}
.faq-question[aria-expanded="true"] .faq-icon {
  background: var(--gold);
  color: var(--bg);
  transform: rotate(45deg);
}
.faq-answer {
  padding: 0 0 1.25rem;
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.75;
}
.faq-answer[hidden] { display: none; }

/* Article CTA */
.article-cta {
  max-width: 720px;
  margin: 0 auto 3rem;
  padding: 2.5rem 1.25rem;
  text-align: center;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--bg-alt);
  margin-left: 1.25rem;
  margin-right: 1.25rem;
}
@media (min-width: 800px) {
  .article-cta {
    margin-left: auto;
    margin-right: auto;
  }
}
.article-cta h2 {
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  margin-bottom: 0.75rem;
}
.article-cta p {
  color: var(--parchment-dim);
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

/* Related articles */
.related-articles {
  max-width: 1000px;
  margin: 0 auto;
  padding: 4rem 1.25rem 5rem;
}
.related-articles > h2 {
  font-size: clamp(1.3rem, 2.5vw, 1.7rem);
  margin-bottom: 1.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--border-dim);
}
.related-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 640px) {
  .related-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 900px) {
  .related-grid { grid-template-columns: repeat(3, 1fr); }
}
.related-card {
  background: var(--bg-alt);
  border: 1px solid var(--border-dim);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform var(--transition), border-color var(--transition);
}
.related-card:hover {
  transform: translateY(-3px);
  border-color: var(--border);
}
.related-card-img {
  aspect-ratio: 16/9;
  overflow: hidden;
}
.related-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.related-card:hover .related-card-img img { transform: scale(1.03); }
.related-card-body {
  padding: 1rem 1.25rem 1.25rem;
}
.related-card-date {
  font-size: 0.75rem;
  color: var(--gold);
  margin-bottom: 0.4rem;
}
.related-card h3 {
  font-size: 1rem;
  font-family: var(--ff-display);
  font-weight: 400;
  color: var(--parchment);
  line-height: 1.3;
  transition: color var(--transition);
}
.related-card:hover h3 { color: var(--gold); }
.related-card-link {
  display: block;
  font-size: 0;
}
.related-card-link::after {
  content: '';
  position: absolute;
  inset: 0;
}
.related-card { position: relative; }

/* Recommendation cards */
/* Find the Right Fit — reuses main-site why-card pattern */
.article-fit { margin: 2.5rem 0 1rem; }
.article-fit > h3 {
  font-family: var(--ff-display);
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--parchment);
  line-height: 1.2;
  margin: 0.25rem 0 0;
}
.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}
.why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 1.5rem;
}
.why-card {
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--border-dim);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  transition: border-color var(--transition), transform var(--transition);
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
}
a.why-card:hover {
  border-color: var(--border);
  transform: translateY(-2px);
}
.why-icon {
  width: 44px; height: 44px;
  margin-bottom: 1rem;
  color: var(--gold);
  flex-shrink: 0;
}
.why-card h3 {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--parchment);
  font-family: var(--ff-body);
}
.why-card p {
  font-size: 0.9rem;
  color: var(--text);
  line-height: 1.6;
  max-width: none;
  flex: 1;
}
.why-card-cta {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold);
  margin-top: 1rem;
  transition: color var(--transition);
}
a.why-card:hover .why-card-cta { color: var(--gold-light); }
@media (min-width: 600px) {
  .why-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 860px) {
  .why-grid { grid-template-columns: repeat(3, 1fr); }
}

/* Author & Trust section */
.author-trust {
  max-width: 720px;
  margin: 0 auto 3rem;
  padding: 0 1.25rem;
  grid-template-columns: 1fr;
  display: grid;
  gap: 1.25rem;
}
.author-card,
.trust-card {
  padding: 1.75rem;
  background: var(--bg-alt);
  border: 1px solid var(--border-dim);
  border-radius: var(--radius-lg);
}
.author-card {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0 1.25rem;
}
.author-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(201,168,76,0.12);
  border: 1px solid var(--border);
  color: var(--gold);
  font-family: var(--ff-display);
  font-size: 1.1rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  letter-spacing: 0.02em;
  overflow: hidden;
}
.author-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}
.author-card .author-info {
  flex: 1;
  min-width: 0;
}
.author-card .author-bio {
  flex-basis: 100%;
  margin-top: 1rem;
}
.author-label {
  display: block;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin-bottom: 0.35rem;
}
.author-name {
  font-family: var(--ff-display);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--parchment);
  margin-bottom: 0.2rem;
  line-height: 1.2;
}
.author-title {
  font-size: 0.8rem;
  color: rgba(240,230,211,0.5);
  margin-bottom: 0.9rem;
}
.author-bio {
  font-size: 0.88rem;
  line-height: 1.7;
  color: var(--text);
  margin-bottom: 0;
}
.trust-rating {
  font-size: 0.9rem;
  color: var(--gold);
  margin-bottom: 0.9rem;
}
.trust-rating strong { color: var(--parchment); }
.trust-rating-note { color: rgba(240,230,211,0.45); font-size: 0.78rem; }
.trust-stats {
  list-style: none;
  padding: 0;
  margin-top: 1rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem 1rem;
}
.trust-stats li {
  font-size: 0.82rem;
  color: var(--text);
  padding-left: 0;
}
.trust-stats li::before { display: none; }
.trust-stats strong {
  display: block;
  font-size: 1rem;
  color: var(--parchment);
  font-weight: 600;
}

/* Activity images */
.activity-img {
  margin: 0 0 1.25rem;
  border-radius: 8px;
  overflow: hidden;
  line-height: 0;
}
.activity-img img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  max-height: 420px;
}
