/*
Theme Name: Chinese Herb Pro
Theme URI: https://chineseherb.org
Author: Custom Development
Description: A professional, Wikipedia-style reference theme for Chinese Medicine.
Version: 1.0
*/

:root {
  --bg-warm: #fdfbf7; /* 暖色调灰白背景 */
  --text-charcoal: #2d3748; /* 深炭灰色文字 */
  --accent-green: #52796f; /* 柔和自然绿 */
  --border-light: #e2e8f0;
}

body {
  background-color: var(--bg-warm);
  color: var(--text-charcoal);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.6;
  margin: 0;
  padding: 0;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* 维基百科式卡片风格 */
.wiki-card {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: 8px;
  padding: 24px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

a {
  color: var(--accent-green);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}