/* ===== ARTICLE LAYOUT ===== */
.article { padding-top: 64px; }

.article-hero {
  background:
    linear-gradient(135deg, rgba(30,66,32,0.92) 0%, rgba(44,95,46,0.88) 100%),
    var(--hero-bg, none);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 3.5rem 0 3rem;
  color: var(--white);
}

.article-hero__inner { max-width: 820px; }

/* Breadcrumbs sit on the dark green hero, so they need light text. */
.article-hero__crumbs { display: flex; flex-wrap: wrap; align-items: center; gap: 0.4rem; font-size: 0.85rem; }
.article-hero__crumbs a { color: rgba(255, 255, 255, 0.85); text-decoration: none; }
.article-hero__crumbs a:hover, .article-hero__crumbs a:focus-visible { color: #fff; text-decoration: underline; }
.article-hero__crumbs span { color: rgba(255, 255, 255, 0.55); }

.article-hero__meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.article-hero__back {
  color: rgba(255,255,255,0.7);
  font-size: 0.85rem;
  font-weight: 500;
  transition: color var(--transition);
}
.article-hero__back:hover { color: var(--white); text-decoration: none; }

.article-hero .guide-card__tag { color: var(--gold-light); margin-bottom: 0; }

.article-hero h1 {
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  color: var(--white);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.article-hero__intro {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.65;
  max-width: 640px;
  margin-bottom: 1rem;
}

.article-hero__byline {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.02em;
}

/* ===== ARTICLE BODY ===== */
.article-body {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 3.5rem;
  padding: 3rem 1.5rem 4rem;
  max-width: var(--max-w);
  margin: 0 auto;
  align-items: start;
}

.article-content { min-width: 0; }

/* ===== ARTICLE TYPOGRAPHY ===== */
.article-content h2 {
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  margin: 2.5rem 0 0.75rem;
  padding-top: 0.5rem;
  border-top: 1px solid var(--border);
  color: var(--text);
}
.article-content h2:first-child { margin-top: 0; border-top: none; }

.article-content h3 {
  font-size: 1.15rem;
  margin: 1.75rem 0 0.5rem;
  color: var(--text);
  font-family: var(--font-sans);
  font-weight: 700;
}

.article-content p {
  color: var(--text-muted);
  margin-bottom: 1rem;
  line-height: 1.75;
  font-size: 1rem;
}

.article-content a { color: var(--green); font-weight: 500; }
.article-content a:hover { text-decoration: underline; }
.article-content a.btn { font-weight: 600; }
.article-content a.btn--primary { color: var(--white); }
.article-content a.btn--primary:hover { color: var(--white); text-decoration: none; }
.article-content a.btn--ghost { color: var(--white); }
.article-content a.btn--outline { color: var(--green); text-decoration: none; }

/* ===== TABLE OF CONTENTS ===== */
.toc {
  background: var(--parchment);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  margin-bottom: 2.5rem;
}
.toc h3 {
  font-size: 0.8rem;
  font-family: var(--font-sans);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin: 0 0 0.75rem;
}
.toc ol {
  list-style: decimal;
  padding-left: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.toc a {
  font-size: 0.9rem;
  color: var(--green);
}

/* ===== CALLOUTS ===== */
.callout {
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  margin: 1.5rem 0;
  font-size: 0.92rem;
  line-height: 1.6;
  border-left: 3px solid;
}
.callout strong { display: block; margin-bottom: 0.2rem; }

.callout--info {
  background: #ede8df;
  border-color: var(--earth);
  color: #3d2b1a;
}
.callout--tip {
  background: #e6f4ea;
  border-color: var(--green);
  color: #1e3d20;
}
.callout--warning {
  background: #fef8e7;
  border-color: var(--gold);
  color: #4a3500;
}

/* ===== ARTICLE LISTS ===== */
.article-list {
  padding-left: 0;
  margin: 0.5rem 0 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.article-list li {
  padding-left: 1.4rem;
  position: relative;
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.65;
}
.article-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 0.8rem;
  top: 0.1rem;
}

ol.article-list { counter-reset: article-counter; list-style: none; }
ol.article-list li { counter-increment: article-counter; }
ol.article-list li::before {
  content: counter(article-counter) '.';
  color: var(--green);
  font-weight: 700;
  font-size: 0.85rem;
}

/* ===== CHECKLIST ===== */
.checklist-section { margin: 1rem 0 1.5rem; }

.checklist {
  padding-left: 0;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1rem;
}
.checklist li {
  padding-left: 1.6rem;
  position: relative;
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.55;
}
.checklist li::before {
  content: '☐';
  position: absolute;
  left: 0;
  color: var(--green);
}

/* ===== DATA TABLES ===== */
.data-table {
  overflow-x: auto;
  margin: 1rem 0 1.5rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}
.data-table table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
}
.data-table th {
  background: var(--parchment);
  text-align: left;
  padding: 0.7rem 1rem;
  font-weight: 600;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border);
}
.data-table td {
  padding: 0.65rem 1rem;
  border-bottom: 1px solid var(--border);
  color: var(--text-muted);
  vertical-align: top;
}
.data-table tr:last-child td { border-bottom: none; }
.data-table tr.total-row td { font-weight: 700; background: var(--parchment); color: var(--text); }
.data-table tr:hover td { background: #fafaf8; }

/* ===== COMPARISON TABLE ===== */
.comparison-table-wrap {
  overflow-x: auto;
  margin: 1.5rem 0;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
}
.comparison-table th {
  background: var(--green);
  color: var(--white);
  padding: 0.9rem 1rem;
  text-align: left;
  font-weight: 600;
}
.comparison-table th:first-child { background: var(--parchment); color: var(--text-muted); }
.comparison-table td {
  padding: 0.65rem 1rem;
  border-bottom: 1px solid var(--border);
  color: var(--text-muted);
}
.comparison-table tr:last-child td { border-bottom: none; }
.comparison-table tr:hover td { background: #fafaf8; }
.comparison-table small { font-size: 0.75rem; opacity: 0.75; display: block; }

/* ===== ROUTE OVERVIEW ===== */
.route-overview {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 1rem 0 1.5rem;
}
.route-country {
  display: flex;
  gap: 1rem;
  padding: 1rem;
  background: var(--parchment);
  border-radius: var(--radius);
  border: 1px solid var(--border);
}
.route-country__flag { font-size: 2rem; flex-shrink: 0; line-height: 1; }
.route-country h4 { font-size: 1rem; margin-bottom: 0.2rem; font-family: var(--font-sans); font-weight: 700; }
.route-country p { font-size: 0.87rem; color: var(--text-muted); margin-bottom: 0.2rem; }
.route-country p:last-child { margin-bottom: 0; }

/* ===== OPTION CARDS ===== */
.option-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  margin: 1rem 0 1.5rem;
}
.option-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}
.option-card .btn { margin-top: auto; white-space: normal; width: 100%; justify-content: center; }
.option-card:hover { box-shadow: var(--shadow-md); }
.option-card--recommended { border-color: var(--green); border-width: 2px; }
.option-card__label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--green);
  margin-bottom: 0.4rem;
}
.option-card h4 { font-family: var(--font-sans); font-size: 1rem; font-weight: 700; margin-bottom: 0.4rem; }
.option-card p, .option-card li { font-size: 0.88rem; color: var(--text-muted); }

/* ===== FAQ ===== */
.faq { display: flex; flex-direction: column; gap: 0; margin: 1rem 0 1.5rem; }
.faq__item {
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--border);
}
.faq__item:last-child { border-bottom: none; }
.faq__item h4 {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--text);
}
.faq__item p { font-size: 0.9rem; color: var(--text-muted); margin: 0; }

/* ===== SEASON GRID ===== */
.season-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin: 1rem 0 2rem;
}
.season-card {
  border-radius: var(--radius);
  padding: 1.25rem;
  border: 1px solid var(--border);
}
.season-card__label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.4rem;
}
.season-card h3 { font-size: 1.05rem; margin-bottom: 0.4rem; }
.season-card p { font-size: 0.85rem; color: var(--text-muted); margin: 0; }

.season-card--best { background: #e6f4ea; border-color: #afd6b2; }
.season-card--best .season-card__label { color: var(--green); }
.season-card--good { background: #fef8e7; border-color: #f0d890; }
.season-card--good .season-card__label { color: #8a6c00; }
.season-card--caution { background: #fff3e0; border-color: #ffcc80; }
.season-card--caution .season-card__label { color: #b45309; }
.season-card--avoid { background: #fce8e8; border-color: #f5b5b5; }
.season-card--avoid .season-card__label { color: #b91c1c; }

/* ===== MONTH LIST ===== */
.month-list { margin: 1.5rem 0; }
.month-item {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 1rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--border);
  align-items: start;
}
.month-item:last-child { border-bottom: none; }
.month-item--highlight .month-item__name { color: var(--green); font-weight: 700; }
.month-item__name { font-weight: 600; font-size: 0.88rem; color: var(--text); padding-top: 0.15rem; }
.month-item__content p { font-size: 0.9rem; color: var(--text-muted); margin: 0; }

/* ===== COST SUMMARY GRID ===== */
.cost-summary-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin: 1.5rem 0 2rem;
}
.cost-summary-card {
  border-radius: var(--radius);
  padding: 1.5rem;
  border: 1px solid var(--border);
  background: var(--white);
}
.cost-summary-card--featured {
  border-color: var(--green);
  border-width: 2px;
  background: var(--parchment);
}
.cost-summary-card__label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 0.4rem;
}
.cost-summary-card__total {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--green);
  margin-bottom: 0.6rem;
}
.cost-summary-card p { font-size: 0.85rem; color: var(--text-muted); margin: 0; }

/* ===== ARTICLE CTA ===== */
.article-cta {
  background: var(--parchment);
  border-radius: var(--radius-lg);
  padding: 2rem;
  margin: 2.5rem 0 0;
  border: 1px solid var(--border);
}
.article-cta h3 { font-size: 1.2rem; margin-bottom: 0.5rem; }
.article-cta p { color: var(--text-muted); margin-bottom: 1rem; }

/* ===== SIDEBAR ===== */
.article-sidebar {
  position: sticky;
  top: 84px;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.sidebar-widget {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
}
.sidebar-widget--cta {
  background: var(--green-dark);
  border-color: var(--green-dark);
}
.sidebar-widget h4 {
  font-size: 0.8rem;
  font-family: var(--font-sans);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}
.sidebar-widget p { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 0.75rem; }
.sidebar-widget--cta h4, .sidebar-widget--cta p { color: rgba(255,255,255,0.9); }

.sidebar-links { display: flex; flex-direction: column; gap: 0.4rem; }
.sidebar-links a {
  font-size: 0.88rem;
  color: var(--green);
  padding: 0.2rem 0;
}

.quick-facts {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.quick-facts li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 0.5rem;
  padding: 0.45rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.85rem;
}
.quick-facts li:last-child { border-bottom: none; }
.quick-facts span { color: var(--text-muted); }
.quick-facts strong { color: var(--text); white-space: nowrap; flex-shrink: 0; }

/* ===== ARTICLE FIGURES ===== */
.article-figure {
  margin: 1.75rem 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
}
.article-figure img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
  background: var(--parchment-dark);
}
.article-figure figcaption {
  padding: 0.6rem 1rem;
  font-size: 0.82rem;
  color: var(--text-muted);
  font-style: italic;
  background: var(--parchment);
  border-top: 1px solid var(--border);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .article-body {
    grid-template-columns: 1fr;
  }
  .article-sidebar {
    position: static;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
  .season-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .article-hero { padding: 2.5rem 0 2rem; }
  .article-body { padding: 2rem 1.5rem 3rem; gap: 2rem; }
  .article-sidebar { grid-template-columns: 1fr; }
  .cost-summary-grid { grid-template-columns: 1fr; }
  .season-grid { grid-template-columns: 1fr 1fr; }
  .month-item { grid-template-columns: 80px 1fr; }
  .comparison-table th, .comparison-table td { padding: 0.5rem 0.75rem; font-size: 0.82rem; }
}

@media (max-width: 480px) {
  .season-grid { grid-template-columns: 1fr; }
  .month-item { grid-template-columns: 1fr; }
  .month-item__name { padding-bottom: 0.2rem; }
}
