/* Blog Article Styles */

.blog-article {
  padding: 7rem 0 4rem;
}

.article-content {
  max-width: 750px;
  margin: 0 auto;
}

.article-content h1 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--accent-gold);
  margin-bottom: 2rem;
  line-height: 1.3;
}

.article-content h2 {
  color: var(--text-primary);
  margin: 2rem 0 1rem;
  font-size: 1.5rem;
}

.article-content h3 {
  color: var(--accent-purple-light);
  margin: 1.5rem 0 0.75rem;
}

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

.article-content ul, .article-content ol {
  color: var(--text-secondary);
  margin: 1rem 0 1rem 1.5rem;
  line-height: 1.8;
}

.article-content li { margin-bottom: 0.5rem; }

.article-content strong { color: var(--accent-gold); font-weight: 500; }

.article-content a { color: var(--accent-purple-light); border-bottom: 1px solid transparent; }
.article-content a:hover { border-bottom-color: var(--accent-purple-light); }

/* CTA Box */
.article-cta {
  background: linear-gradient(135deg, var(--bg-card) 0%, rgba(139,92,246,0.08) 100%);
  border: 1px solid var(--accent-purple);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
  margin: 3rem 0;
}

.article-cta h3 {
  color: var(--accent-gold);
  margin-bottom: 0.5rem;
}

.article-cta p {
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
}

/* Related Articles */
.related-articles {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border-subtle);
}

.related-articles h3 {
  color: var(--accent-gold);
  margin-bottom: 1rem;
}

.related-articles ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.related-articles li {
  padding: 0.5rem 0;
}

.related-articles a {
  color: var(--text-secondary);
  transition: color 0.3s;
}

.related-articles a:hover {
  color: var(--accent-gold);
}
