.article-lead {
  font-family: 'Playfair Display', serif;
  font-size: 21px;
  line-height: 1.65;
  color: var(--forest);
  margin-bottom: 32px;
}

.article-cover {
  margin: 0 0 36px;
  overflow: hidden;
  background: var(--cream2);
  border: 1px solid var(--border);
}

.article-cover img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.article-cover figcaption {
  padding: 10px 14px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.5;
}

.article-note {
  margin: 30px 0;
  padding: 22px 24px;
  background: var(--gold-pale);
  border-left: 4px solid var(--gold);
  color: var(--forest);
  font-size: 14px;
  line-height: 1.75;
}

.article-note strong {
  display: block;
  margin-bottom: 6px;
}

.article-table-wrap {
  margin: 30px 0;
  overflow-x: auto;
  border: 1px solid var(--border);
  background: var(--white);
}

.article-table {
  width: 100%;
  min-width: 680px;
  border-collapse: collapse;
  font-size: 14px;
  line-height: 1.55;
}

.article-table th,
.article-table td {
  padding: 15px 16px;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid var(--border);
}

.article-table th {
  background: var(--forest);
  color: var(--gold-light);
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.article-table tr:last-child td {
  border-bottom: 0;
}

.article-table tr:nth-child(even) td {
  background: var(--cream2);
}

.article-checklist {
  list-style: none !important;
  margin-left: 0 !important;
}

.article-checklist li {
  position: relative;
  padding-left: 30px;
}

.article-checklist li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  top: 0;
  width: 20px;
  height: 20px;
  color: var(--forest);
  background: var(--gold-pale);
  border: 1px solid var(--gold);
  font-size: 12px;
  line-height: 18px;
  text-align: center;
}

.article-faq {
  margin-top: 42px;
}

.article-faq details {
  border-top: 1px solid var(--border);
  padding: 18px 0;
}

.article-faq details:last-child {
  border-bottom: 1px solid var(--border);
}

.article-faq summary {
  color: var(--forest);
  font-family: 'Playfair Display', serif;
  font-size: 17px;
  font-weight: 700;
  cursor: pointer;
}

.article-faq details p {
  margin: 12px 0 0;
}

.article-source {
  margin-top: 34px;
  padding-top: 22px;
  border-top: 1px solid var(--border);
  font-size: 13px;
  color: var(--muted);
}

.article-source a,
.article-content-inner a {
  color: var(--moss);
  text-decoration-color: var(--gold);
  text-underline-offset: 3px;
}

@media (max-width: 720px) {
  .article-lead { font-size: 18px; }
  .article-note { padding: 18px; }
}
