:root {
  --text-primary: #060101;
  --text-secondary: #82868c;
  --misc-divider: rgba(0, 0, 0, 0.2);
  --spacing-unit: 1rem;
  --font-size-base: 1rem;
  --font-size-small: 0.875rem;
  --line-height-base: 1.6;
  --line-height-spacious: 2;
  --blockquote-background: #e8ecef;
  --blockquote-background-dark: #2a2a2a;
}

body {
  font-family: 'Times New Roman', 'Noto Sans HK', -apple-system, system-ui, sans-serif;
  font-weight: 300;
  font-size: var(--font-size-base);
  line-height: var(--line-height-base);
  color: var(--text-primary);
}

.home blockquote,
.cn blockquote {
  font-family: 'Times New Roman', 'Noto Sans HK', -apple-system, system-ui, sans-serif;
  font-weight: 300;
  font-size: var(--font-size-small);
  line-height: var(--line-height-spacious);
  color: var(--text-secondary);
  padding: 0 calc(var(--spacing-unit) * 2);
  border-left: 3px solid var(--misc-divider);
  margin: var(--spacing-unit) 0;
}

code,
pre {
  font-family: Consolas, 'Courier New', monospace;
  font-size: var(--font-size-small);
  line-height: var(--line-height-base);
  color: var(--text-primary);
}

/* 响应式 */
@media (max-width: 600px) {
  body {
    font-size: var(--font-size-small);
  }

  .home blockquote,
  .cn blockquote {
    font-size: 0.75rem;
  }

  code,
  pre {
    font-size: 0.75rem;
  }
}