@charset "UTF-8";
/* ============================================================
   NEWNEEK 클론 — 02-base.css
   리셋 + 베이스 + .container
   GeneratePress 변환 시 매핑: docs/wordpress-mapping.md
   ============================================================ */

/* ---------- 리셋 ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
}

body,
h1, h2, h3, h4, p, ul, ol, li, figure, blockquote {
  margin: 0;
}

ul, ol {
  padding: 0;
  list-style: none;
}

img,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
  color: inherit;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 0;
}

address {
  font-style: normal;
}

/* ---------- 베이스 ---------- */
body {
  font-family: var(--font-family);
  font-size: var(--fs-base);
  line-height: var(--lh-snug);
  font-weight: var(--fw-regular);
  color: var(--text-strong);
  background-color: var(--bg-page);
  word-break: keep-all;
}

.container {
  width: 100%;
  max-width: 1312px;               /* 1280px 콘텐츠 + 좌우 패딩 16px */
  margin-inline: auto;
  padding-inline: var(--container-pad);
}