:root {
  --wrap: 1280px;
  --bg: #f6f7fb;
  --card: #ffffff;
  --line: #e6e8ef;
  --text: #111827;
  --muted: #6b7280;
  --brand: #d7a24a;
  --accent: #2563eb;
  --radius: 16px;
}

* {
  box-sizing: border-box;
}
body {
  margin: 0;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Noto Sans KR",
    sans-serif;
  background: var(--bg);
  color: var(--text);
}
/*
.site-header {
  background: linear-gradient(90deg, var(--brand), #e7b35a);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}
.header-inner {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 18px 16px;
  font-weight: 900;
  text-align: center;
}
*/
.container {
  max-width: var(--wrap);
  margin: 28px auto;
  padding: 0 16px 60px;
}
.page-title {
  margin: 6px 0 18px;
  text-align: center;
  font-size: 28px;
  font-weight: 900;
}

.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 8px 30px rgba(17, 24, 39, 0.06);
  overflow: hidden;
}

.hero {
  width: 100%;
  aspect-ratio: 16/7;
  background: #f3f4f6;
  overflow: hidden;
}
.hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.content {
  padding: 18px;
}
.kicker {
  display: flex;
  gap: 8px;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 10px;
}
.badge {
  font-weight: 900;
  font-size: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(215, 162, 74, 0.15);
  color: #8a5a12;
  border: 1px solid rgba(215, 162, 74, 0.25);
}
.meta {
  font-size: 12px;
  color: var(--muted);
  font-weight: 800;
}

.title {
  font-size: 22px;
  font-weight: 900;
  line-height: 1.25;
  margin: 0 0 10px;
}
.text {
  color: #374151;
  line-height: 1.75;
  white-space: pre-wrap;
}

.actions {
  display: flex;
  justify-content: center;
  margin-top: 14px;
}
.ghost-btn {
  border: 1px solid var(--line);
  background: #fff;
  color: #111;
  font-weight: 900;
  padding: 12px 14px;
  border-radius: 14px;
  cursor: pointer;
}

@media (max-width: 520px) {
  .page-title {
    font-size: 22px;
  }
  .title {
    font-size: 18px;
  }
}
