@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+KR:wght@600;700&family=IBM+Plex+Sans+KR:wght@400;700&display=swap');

:root {
  --bg: #FFFDF6;
  --text: #262016;
  --primary: #C9962C;
  --secondary: #F3E4B8;
  --font-display: 'Noto Serif KR', serif;
  --font-body: 'IBM Plex Sans KR', sans-serif;
}

.stat-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  max-width: 960px;
  margin: 8px auto 40px;
  padding: 0 20px;
  justify-content: center;
}
.stat-box { flex: 1 1 200px; background: #F3E4B8; border-radius: 10px; padding: 20px; text-align: center; }
.stat-box .num { font-family: var(--font-display); font-size: 1.8rem; color: var(--primary); font-weight: 700; display: block; margin-bottom: 6px; }
.stat-box .label { font-size: 0.86rem; opacity: 0.75; }
.info-stack { max-width: 760px; margin: 0 auto 56px; padding: 0 20px; }
.info-stack article + article { margin-top: 32px; }
.info-stack h2 { font-family: var(--font-display); color: var(--primary); font-size: 1.15rem; margin-bottom: 10px; }
.info-stack p { font-size: 0.97rem; }
