.article-section {
  padding: 4rem 0 6rem;
  background: linear-gradient(180deg, #0f0805 0%, var(--wuhun-ink) 100%);
}

.article-container {
  max-width: 800px;
  margin: 0 auto;
}

.article-header {
  text-align: center;
  margin-bottom: 2.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(180, 83, 9, 0.3);
}

.article-title {
  font-family: 'Ma Shan Zheng', cursive;
  font-size: clamp(1.75rem, 5vw, 2.75rem);
  color: var(--wuhun-gold);
  line-height: 1.3;
  margin-bottom: 1rem;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  color: var(--wuhun-bronze-light);
  font-size: 0.875rem;
}

.article-cover {
  width: 100%;
  max-height: 360px;
  object-fit: cover;
  border-radius: 1rem;
  border: 1px solid rgba(180, 83, 9, 0.3);
  margin-bottom: 2rem;
}

.article-content {
  font-size: clamp(1rem, 2.5vw, 1.0625rem);
  line-height: 1.9;
  color: rgba(245, 230, 211, 0.9);
}

.article-content h2 {
  font-family: 'Ma Shan Zheng', cursive;
  font-size: clamp(1.375rem, 4vw, 1.875rem);
  color: var(--wuhun-gold);
  margin: 2.5rem 0 1rem;
  padding-left: 1rem;
  border-left: 4px solid var(--wuhun-red);
}

.article-content h3 {
  font-family: 'Ma Shan Zheng', cursive;
  font-size: clamp(1.125rem, 3vw, 1.5rem);
  color: var(--wuhun-bronze-light);
  margin: 2rem 0 0.75rem;
}

.article-content p {
  margin-bottom: 1.25rem;
}

.article-content ul,
.article-content ol {
  margin-bottom: 1.25rem;
  padding-left: 1.75rem;
}

.article-content li {
  margin-bottom: 0.5rem;
}

.article-content strong {
  color: var(--wuhun-gold);
  font-weight: 700;
}

.article-content blockquote {
  background: rgba(153, 27, 27, 0.1);
  border-left: 4px solid var(--wuhun-bronze);
  padding: 1.25rem 1.5rem;
  margin: 1.5rem 0;
  border-radius: 0 0.5rem 0.5rem 0;
  color: rgba(245, 230, 211, 0.9);
  font-style: italic;
}

.article-content .tip-box {
  background: rgba(252, 211, 77, 0.08);
  border: 1px solid rgba(252, 211, 77, 0.25);
  border-radius: 0.75rem;
  padding: 1.25rem;
  margin: 1.5rem 0;
}

.article-content .tip-box-title {
  font-family: 'Ma Shan Zheng', cursive;
  color: var(--wuhun-gold);
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.article-nav {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(180, 83, 9, 0.3);
}

.article-nav a {
  color: var(--wuhun-gold);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s ease;
}

.article-nav a:hover {
  color: var(--wuhun-gold-light);
}

/* 图片防溢出加固 */
.article-cover {
  max-width: 100%;
  height: auto;
}

.article-content img {
  max-width: 100%;
  height: auto;
  border-radius: 0.5rem;
}
