/**
 * WFOPS base.css
 * reset, typography, body, a, img, table 기본 규칙
 * 점진 이전용 - 기존 common.css와 병행
 */

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; }

/* --- Typography --- */
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  color: #333;
  margin: 0;
  -webkit-text-size-adjust: 100%;
}

h1, h2, h3, h4, h5, h6 { margin: 0 0 0.5em; font-weight: 600; }
p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }

/* --- Links --- */
a { color: #3b82f6; text-decoration: none; }
a:hover { text-decoration: underline; }

/* --- Images --- */
img { max-width: 100%; height: auto; vertical-align: middle; }

/* --- Tables --- */
table { border-collapse: collapse; width: 100%; }
th, td { padding: 8px; text-align: left; border: 1px solid #ddd; }
th { font-weight: 600; background: #f5f5f5; }
