:root {
  --bg: #f6f7f4;
  --paper: #ffffff;
  --ink: #171b1f;
  --muted: #5c6670;
  --line: #d9ded8;
  --green: #0d7c66;
  --blue: #2357a5;
  --red: #a23645;
  --deep: #0d141b;
  --shadow: 0 18px 48px rgba(27, 36, 45, 0.10);
}
* { box-sizing: border-box; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: "Noto Sans KR", "Apple SD Gothic Neo", "Malgun Gothic", system-ui, sans-serif;
  line-height: 1.6;
}
h1, h2, h3, .lead, .subtitle, .review-card p, .latest-update p, .transparency-notice li {
  word-break: keep-all;
  overflow-wrap: break-word;
}
a { color: inherit; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.site-header, main {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
}
.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 22px;
  padding: 24px 0 18px;
  font-size: 14px;
  color: var(--muted);
}
.topbar-left {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  min-width: 0;
  flex: 1;
}
.topbar-links {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  white-space: nowrap;
}
.brand {
  color: var(--ink);
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
}
.top-search {
  width: min(360px, 42vw);
}
.topbar-left .public-metrics {
  flex: 0 0 auto;
  min-width: 0;
  margin: 0;
}
.topbar-left .public-metrics-pill {
  background: rgba(255, 255, 255, 0.72);
  min-height: 34px;
  padding: 7px 10px;
  white-space: nowrap;
}
.top-search input {
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
}
.hero {
  border-top: 5px solid var(--green);
  border-bottom: 1px solid var(--line);
  padding: 52px 0 34px;
}
.eyebrow {
  margin: 0 0 14px;
  color: var(--green);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
h1 {
  max-width: 860px;
  margin: 0;
  font-size: clamp(34px, 6vw, 64px);
  line-height: 1.08;
  letter-spacing: 0;
}
.lead {
  max-width: 780px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 18px;
}
.section-kicker {
  margin: 0 0 8px;
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.stats {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}
.stat-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.65);
  padding: 10px 13px;
  font-size: 14px;
  text-decoration: none;
  transition: border-color 0.18s ease, background 0.18s ease, color 0.18s ease;
}
.stat-link:hover,
.stat-link:focus-visible {
  border-color: rgba(13, 124, 102, 0.55);
  background: #ffffff;
  color: var(--green);
}
.latest-update {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
  gap: 24px;
  align-items: stretch;
  margin: 30px 0 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.latest-copy {
  padding: clamp(24px, 4vw, 38px);
}
.latest-copy h2 {
  margin: 0 0 12px;
  font-size: clamp(28px, 4vw, 46px);
  line-height: 1.08;
}
.latest-copy p {
  color: var(--muted);
}
.latest-subtitle {
  color: var(--ink) !important;
  font-weight: 800;
}
.latest-media {
  display: grid;
  min-height: 100%;
  background: #eef1ed;
}
.latest-media img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: contain;
}
.text-link {
  display: inline-flex;
  margin-top: 22px;
  color: var(--green);
  font-weight: 900;
  text-decoration: none;
}
.text-link:hover {
  color: var(--blue);
}
.topic-filter {
  display: grid;
  gap: 12px;
  margin: 30px 0 18px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.58);
}
.filter-heading {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: end;
}
.filter-heading h2 {
  margin: 0;
  font-size: clamp(22px, 3vw, 32px);
}
.category-select {
  display: grid;
  gap: 6px;
  min-width: min(260px, 100%);
}
.category-select span,
.top-search span {
  font-size: 13px;
}
.category-select span {
  display: grid;
  gap: 6px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}
.category-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.category-chip {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #ffffff;
  color: var(--muted);
  padding: 8px 12px;
  font: inherit;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
}
.category-chip:hover,
.category-chip:focus-visible,
.category-chip.active {
  border-color: rgba(13, 124, 102, 0.55);
  background: rgba(13, 124, 102, 0.08);
  color: var(--green);
}
input, select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  color: var(--ink);
  padding: 12px 13px;
  font: inherit;
}
input:focus, select:focus {
  outline: 3px solid rgba(13, 124, 102, 0.18);
  border-color: var(--green);
}
.review-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.review-card {
  display: grid;
  grid-template-rows: auto 1fr;
  min-height: 0;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.thumb {
  display: block;
  aspect-ratio: 16 / 10;
  background: #e8ece8;
}
.thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.thumb-placeholder {
  width: 100%;
  aspect-ratio: 16 / 10;
  background: linear-gradient(135deg, rgba(13,124,102,0.24), rgba(35,87,165,0.18));
}
.review-card-body {
  padding: 22px;
}
.meta {
  margin: 0 0 10px;
  color: var(--green);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
h3 {
  margin: 0 0 10px;
  font-size: 21px;
  line-height: 1.25;
}
h3 a {
  text-decoration: none;
}
h3 a:hover {
  color: var(--blue);
}
.subtitle {
  color: var(--muted);
  font-weight: 700;
}
.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 18px;
}
.tags span {
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  padding: 4px 9px;
  font-size: 12px;
}
.transparency-notice {
  display: grid;
  grid-template-columns: minmax(220px, 0.85fr) minmax(0, 1.4fr);
  gap: 24px;
  margin: 46px 0 76px;
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: var(--deep);
  color: #eaf0f3;
}
.transparency-notice h2 {
  margin: 0 0 14px;
  font-size: 24px;
}
.transparency-notice .operator {
  margin: 0;
  color: rgba(234, 240, 243, 0.72);
}
.transparency-notice a {
  color: #8bd8c6;
  font-weight: 800;
}
.transparency-notice ul {
  margin: 0;
  padding-left: 20px;
  color: rgba(234, 240, 243, 0.82);
}
.notice-body {
  display: grid;
  gap: 22px;
}
.credit-list {
  display: grid;
  gap: 12px;
  margin: 0;
  color: rgba(234, 240, 243, 0.86);
}
.credit-list div {
  display: grid;
  grid-template-columns: 132px minmax(0, 1fr);
  gap: 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(234, 240, 243, 0.14);
}
.credit-list dt {
  color: rgba(234, 240, 243, 0.62);
  font-weight: 800;
}
.credit-list dd {
  margin: 0;
}
.credit-links {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-left: 8px;
}
.credit-links a {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.transparency-notice li + li {
  margin-top: 8px;
}
.public-note {
  max-width: 980px;
  margin: 52px auto 0;
  padding: 18px 24px;
  border-top: 1px solid rgba(0,0,0,0.12);
  color: #5c6670;
  font-size: 14px;
}
.metrics-disclosure {
  font-size: 12px;
  color: rgba(234, 240, 243, 0.66);
}
.public-note .metrics-disclosure {
  margin-top: 8px;
  color: #747e87;
}
a:not([href]) {
  color: inherit;
  text-decoration: none;
  cursor: default;
}
.hidden { display: none !important; }
@media (max-width: 900px) {
  .topbar,
  .topbar-left {
    align-items: stretch;
    flex-direction: column;
  }
  .top-search {
    width: 100%;
  }
  .topbar-left .public-metrics {
    width: 100%;
  }
  .topbar-links {
    align-self: flex-start;
  }
  .latest-update,
  .transparency-notice {
    grid-template-columns: 1fr;
  }
  .filter-heading,
  .credit-list div {
    grid-template-columns: 1fr;
  }
  .filter-heading {
    align-items: stretch;
    flex-direction: column;
  }
  .review-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 680px) {
  .site-header, main { width: min(100% - 24px, 1180px); }
  .review-grid { grid-template-columns: 1fr; }
  .thumb { aspect-ratio: 16 / 9; }
  .latest-media img { min-height: 220px; }
  .hero { padding-top: 36px; }
}
