/* ========================================
   Article Page Styles
   ======================================== */

.article-page {
  max-width: 800px;
  margin: 4rem auto;
  padding: 0 1.5rem;
  font-family: 'Inter', sans-serif;
  color: var(--text-primary);
  line-height: 1.8;
}

.article-header {
  padding: 2rem 1.5rem;
  background: var(--bg-white);
  border-bottom: 1px solid #e5e7eb;
  margin-bottom: 2rem;
}

.article-header a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}

.article-header a:hover {
  color: var(--accent);
}

.article-content h1 {
  color: var(--primary);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 1rem;
  border-bottom: 2px solid var(--accent);
  padding-bottom: 0.5rem;
}

.article-content h2 {
  color: var(--primary);
  font-size: 1.5rem;
  font-weight: 700;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  border-left: 3px solid var(--accent);
  padding-left: 0.75rem;
}

.article-content h3 {
  color: var(--text-secondary);
  font-size: 1.25rem;
  font-weight: 600;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}

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

.article-content time {
  color: var(--text-muted);
  font-size: 0.9rem;
  display: block;
  margin-bottom: 2rem;
}

.article-content a {
  color: var(--accent);
  font-weight: 500;
  text-decoration: none;
  border-bottom: 1px solid rgba(212, 165, 116, 0.3);
  transition: all 0.2s;
}

.article-content a:hover {
  color: var(--accent-dark);
  border-color: var(--accent-dark);
}

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

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

.article-content blockquote {
  border-left: 4px solid var(--accent);
  background: #fff8ef;
  padding: 1rem 1.5rem;
  border-radius: var(--radius-md);
  font-style: italic;
  color: var(--text-secondary);
  margin: 2rem 0;
}

.article-content hr {
  border: none;
  border-top: 1px solid #e5e7eb;
  margin: 2rem 0;
}

.article-content em {
  color: var(--text-muted);
  font-size: 0.95rem;
}

@media (max-width: 768px) {
  .article-page {
    margin: 2rem auto;
    padding: 0 1rem;
  }
  
  .article-content h1 {
    font-size: 1.75rem;
  }
  
  .article-content h2 {
    font-size: 1.35rem;
  }
}
