.article-main {
  padding-top: 72px;
  min-height: 80vh;
  background: var(--off-white);
}

.article-container {
  max-width: 760px;
  margin: 0 auto;
  padding: 56px 24px 80px;
}

.article-breadcrumb {
  font-size: 13px;
  color: var(--text-light);
  margin-bottom: 20px;
  display: flex;
  gap: 6px;
  align-items: center;
  flex-wrap: wrap;
}
.article-breadcrumb a { color: var(--gold); transition: opacity 0.2s; }
.article-breadcrumb a:hover { opacity: 0.75; }

.article-tag {
  display: inline-block;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  padding: 4px 14px;
  border-radius: 50px;
  margin-bottom: 16px;
}

.article-container h1 {
  font-size: clamp(1.7rem, 3.5vw, 2.4rem);
  font-weight: 300;
  line-height: 1.35;
  color: var(--text);
  margin-bottom: 18px;
}

.article-meta {
  display: flex;
  gap: 20px;
  font-size: 13px;
  color: var(--text-light);
  flex-wrap: wrap;
}

.article-divider {
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin: 24px 0 32px;
  border-radius: 2px;
}

.article-body p {
  font-size: 16.5px;
  line-height: 1.9;
  color: var(--text);
  margin-bottom: 20px;
}
.article-body strong { color: var(--text); font-weight: 600; }

.article-cta {
  margin-top: 48px;
  padding: 32px;
  background: linear-gradient(135deg, #1a1209, #2d2010);
  border-radius: 16px;
  text-align: center;
  color: #fff;
}
.article-cta p {
  font-size: 17px;
  margin-bottom: 20px;
  color: rgba(255,255,255,0.85);
}
