:root {
  --max-width: 980px;
  --text: #111;
  --muted: #555;
  --line: #e5e5e5;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);
  line-height: 1.6;
  background: #ffffff;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 16px;
}

a { color: inherit; text-decoration: none; }
a:hover { text-decoration: underline; }

/* ===== 헤더 ===== */
.site-header {
  position: sticky;
  top: 0;
  min-height: 64px;
  border-bottom: 1px solid var(--line);
  background-color: #ffffff;
  overflow: hidden;
  z-index: 50;
}

.site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("/images/noise.png");
  background-size: 1400px;
  background-repeat: repeat;
  opacity: 0.15;
  pointer-events: none;
  z-index: 0;
}

.site-header > * { position: relative; z-index: 1; }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 12px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  letter-spacing: 0.4px;
  white-space: nowrap;
}

.logo {
  width: 36px; height: 36px;
  border: 1.5px solid var(--text);
  border-radius: 10px;
  display: grid;
  place-items: center;
  font-weight: 900;
  font-size: 14px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 18px;
}

.nav a {
  font-weight: 650;
  color: var(--muted);
  padding: 6px 2px;
}

.nav a[aria-current="page"] {
  color: var(--text);
  border-bottom: 2px solid var(--text);
  text-decoration: none;
}

/* 오른쪽 영역(아이콘 + 언어) */
.header-right {
  display: flex;
  align-items: center;
  gap: 10px;
}

.icon-btn {
  width: 34px; height: 34px;
  border: 1px solid var(--line);
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
}
.icon-btn:hover { text-decoration: none; border-color: #cfcfcf; }

/* 언어 버튼 */
.lang-switch {
  display: inline-flex;
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
}

.lang-switch button {
  appearance: none;
  border: 0;
  background: transparent;
  padding: 8px 10px;
  font-weight: 800;
  cursor: pointer;
  color: var(--muted);
}

.lang-switch button.active {
  background: var(--text);
  color: #fff;
}

.lang-switch button:hover { opacity: 0.92; }

/* ===== 메인 ===== */
main { padding: 46px 0 56px; }

.hero {
  padding: 18px 0 10px;
}

.hero h1 {
  font-size: 38px;
  line-height: 1.15;
  margin: 0 0 12px;
}

.hero p {
  color: var(--muted);
  max-width: 720px;
  margin: 0;
  font-size: 18px;
}

.btn-row {
  display: flex;
  gap: 10px;
  margin-top: 16px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  border-radius: 12px;
  border: 1px solid var(--text);
  background: var(--text);
  color: #fff;
  font-weight: 800;
  text-decoration: none;
}
.btn.secondary {
  background: #fff;
  color: var(--text);
  border-color: var(--line);
}
.btn:hover { text-decoration: none; opacity: 0.94; }

.section-title {
  margin-top: 34px;
  margin-bottom: 10px;
  font-size: 18px;
  letter-spacing: 0.2px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 16px;
  margin-top: 14px;
}

.card {
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 16px;
  background: #fafafa;
}

.col-6 { grid-column: span 6; }
.col-4 { grid-column: span 4; }
.col-8 { grid-column: span 8; }
.col-12 { grid-column: span 12; }

.muted { color: var(--muted); }

.kv {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  padding: 18px;
}

.kv .thumb {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #f2f2f2;
  height: 220px;
  display: grid;
  place-items: center;
  color: var(--muted);
  font-weight: 700;
}

/* 뉴스 리스트 */
.list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 10px;
}
.item {
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 14px 16px;
  background: #fff;
}
.meta {
  color: var(--muted);
  font
