/* ========== ARTICLE HERO OVERRIDE ========== */
.hero-content h1 {
  white-space: normal;
}

/* ========== ARTICLE BODY ========== */
.article-body {
  padding: 64px 0;
}

.article-body .section-inner {
  max-width: 860px;
  padding-inline: 24px;
}

.article-body h2 {
  margin-top: 48px;
  margin-bottom: 16px;
  text-align: left;
}

.article-body h3 {
  margin-top: 32px;
  margin-bottom: 12px;
  font-size: clamp(18px, 2vw, 24px);
}

.article-body p {
  margin-bottom: 16px;
  line-height: 1.75;
}


/* ========== ARTICLE LISTS ========== */
.article-list {
  list-style: none;
  padding: 0;
  margin-bottom: 24px;
}

.article-list li {
  position: relative;
  padding: 10px 0 10px 24px;
  line-height: 1.75;
}

.article-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 20px;
  width: 8px;
  height: 8px;
  background: gold;
  border-radius: 50%;
}

.article-numbered-list {
  list-style: none;
  padding: 0;
  margin-bottom: 24px;
  counter-reset: article-counter;
}

.article-numbered-list li {
  counter-increment: article-counter;
  position: relative;
  padding: 16px 0 16px 48px;
  border-bottom: 1px solid #f0f0f0;
  line-height: 1.75;
}

.article-numbered-list li::before {
  content: counter(article-counter, decimal-leading-zero);
  position: absolute;
  left: 0;
  top: 16px;
  font-weight: 600;
  font-size: 18px;
  color: gold;
}

/* ========== ARTICLE TABLES ========== */
.article-table-wrap {
  overflow-x: auto;
  margin-bottom: 24px;
  border-radius: 12px;
  border: 1px solid #e8e8e8;
}

.article-table {
  width: 100%;
  border-collapse: collapse;
  font-size: clamp(13px, 1.3vw, 15px);
}

.article-table th,
.article-table td {
  padding: 14px 20px;
  text-align: left;
  border-bottom: 1px solid #f0f0f0;
}

.article-table th {
  background: #1a1a2e;
  color: #fff;
  font-weight: 500;
  white-space: nowrap;
}

.article-table th:first-child {
  border-radius: 11px 0 0 0;
}

.article-table th:last-child {
  border-radius: 0 11px 0 0;
}

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

.article-table tr:nth-child(even) {
  background: #fafafa;
}

/* ========== ARTICLE INFO CARD ========== */
.article-info-card {
  background: #f8f8f8;
  border-left: 4px solid gold;
  border-radius: 0 12px 12px 0;
  padding: 24px 28px;
  margin: 24px 0;
}

.article-info-card p {
  margin-bottom: 0;
}

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

/* ========== SECTION REVEAL ========== */
.section-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.section-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .section-reveal { opacity: 1; transform: none; }
}

/* ========== ARTICLE LINKS ========== */
.article-link {
  color: #b8860b;
  text-decoration: underline;
  text-decoration-color: rgba(184, 134, 11, 0.3);
  text-underline-offset: 3px;
  transition: text-decoration-color 0.2s;
}

.article-link:hover {
  text-decoration-color: #b8860b;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 768px) {
  .article-body {
    padding: 40px 0;
  }

  .article-body h2 {
    text-align: left;
    margin-top: 36px;
  }

  .article-table th,
  .article-table td {
    padding: 10px 14px;
  }
}
