@import url('https://fonts.googleapis.com/css2?family=Amatic+SC:wght@400;700&family=Cabin:wght@400;500;600;700&display=swap');

/* ============================================================
   CSS 自定义属性
   ============================================================ */
:root {
  --c-red: #ff0000;
  --c-purple: #8b00ff;
  --c-dark: #261717;
  --c-dark2: #1a0f0f;
  --c-red-dim: rgba(255,0,0,0.18);
  --c-purple-dim: rgba(139,0,255,0.18);
  --c-glass-bg: rgba(255,255,255,0.13);
  --c-glass-border: rgba(255,255,255,0.2);
  --c-glass-hover: rgba(255,255,255,0.22);
  --c-text: #f5e8e8;
  --c-text-muted: rgba(245,232,232,0.65);
  --c-link: #ff6a6a;
  --c-link-hover: #ff0000;
  --radius-card: 18px;
  --radius-sm: 8px;
  --font-heading: 'Amatic SC', 'Segoe UI', sans-serif;
  --font-body: 'Cabin', 'Segoe UI', system-ui, sans-serif;
  --nav-h: 56px;
  --brand-h: 52px;
  --header-h: calc(var(--brand-h) + var(--nav-h));
  --max-w: 1100px;
  --content-w: 720px;
  --sidebar-w: 280px;
  --gap: 28px;
}

/* ============================================================
   重置 & 基础
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.7;
  color: var(--c-text);
  background: var(--c-dark2);
  overflow-x: hidden;
  min-height: 100vh;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 15% 20%, rgba(255,0,0,0.28) 0%, transparent 60%),
    radial-gradient(ellipse 70% 70% at 85% 80%, rgba(139,0,255,0.32) 0%, transparent 65%),
    radial-gradient(ellipse 50% 40% at 50% 50%, rgba(38,23,23,0.6) 0%, transparent 80%);
  z-index: 0;
  pointer-events: none;
}

body > * { position: relative; z-index: 1; }

a { color: var(--c-link); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--c-link-hover); }
a:focus-visible { outline: 2px solid var(--c-red); outline-offset: 3px; border-radius: 3px; }

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

ul, menu { list-style: none; }

/* ============================================================
   레이아웃 래퍼
   ============================================================ */
.site-wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* ============================================================
   헤더 / 네비게이션
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(38,23,23,0.75);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--c-glass-border);
}

.header-brand-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  height: var(--brand-h);
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.brand-link {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.brand-logo {
  width: 36px;
  height: 36px;
  border-radius: 50%;
}

.brand-name {
  font-family: var(--font-heading);
  font-size: 1.9rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.04em;
  background: linear-gradient(135deg, var(--c-red), var(--c-purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.header-contact {
  font-size: 0.8rem;
  color: var(--c-text-muted);
  letter-spacing: 0.06em;
  border: 1px solid var(--c-glass-border);
  padding: 4px 12px;
  border-radius: 20px;
  background: var(--c-glass-bg);
}

/* nav details/summary/menu */
.site-nav {
  padding: 0 24px;
  height: var(--nav-h);
  display: flex;
  align-items: center;
}

.nav-details {
  width: 100%;
}

.nav-details[open] > summary + menu { display: flex; }

.nav-summary {
  display: none;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--c-text);
  padding: 10px 16px;
  min-height: 44px;
  align-items: center;
  background: var(--c-glass-bg);
  border: 1px solid var(--c-glass-border);
  border-radius: var(--radius-sm);
  list-style: none;
  user-select: none;
}

.nav-summary::-webkit-details-marker { display: none; }

.nav-menu {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  align-items: center;
}

.nav-menu li a {
  display: flex;
  align-items: center;
  height: 44px;
  padding: 0 14px;
  font-size: 0.88rem;
  color: var(--c-text-muted);
  border-radius: var(--radius-sm);
  transition: background 0.2s, color 0.2s;
  white-space: nowrap;
}

.nav-menu li a:hover {
  background: var(--c-glass-bg);
  color: #fff;
}

.nav-menu li a[aria-current="page"] {
  background: var(--c-red-dim);
  color: var(--c-red);
  font-weight: 600;
}

/* ============================================================
   유리 카드
   ============================================================ */
.glass-card {
  background: var(--c-glass-bg);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid var(--c-glass-border);
  border-radius: var(--radius-card);
  box-shadow: 0 8px 32px rgba(0,0,0,0.35), inset 0 1px 0 rgba(255,255,255,0.12);
  transition: transform 0.25s, box-shadow 0.25s;
}

.glass-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 42px rgba(0,0,0,0.45), inset 0 1px 0 rgba(255,255,255,0.18);
}

/* ============================================================
   Hero (홈)
   ============================================================ */
.hero {
  position: relative;
  min-height: 45vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 48px 24px;
}

.hero-bg-text {
  position: absolute;
  font-family: var(--font-heading);
  font-size: clamp(8rem, 22vw, 18rem);
  font-weight: 700;
  color: rgba(255,255,255,0.04);
  right: -2vw;
  top: 50%;
  transform: translateY(-50%);
  line-height: 1;
  letter-spacing: -0.05em;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
}

.hero-collage {
  flex: 0 0 auto;
  position: relative;
  width: 220px;
  height: 260px;
}

.hero-img-a,
.hero-img-b {
  position: absolute;
  width: 160px;
  height: 200px;
  background: linear-gradient(135deg, var(--c-red-dim), var(--c-purple-dim));
}

.hero-img-a {
  top: 0;
  left: 0;
  transform: rotate(-4deg);
  z-index: 1;
}

.hero-img-b {
  bottom: 0;
  right: 0;
  transform: rotate(5deg);
  z-index: 2;
  background: linear-gradient(135deg, var(--c-purple-dim), var(--c-red-dim));
}

.hero-copy {
  flex: 1;
  text-align: right;
  max-width: 580px;
}

.hero-eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: var(--c-red);
  text-transform: uppercase;
  margin-bottom: 10px;
  padding: 3px 10px;
  border: 1px solid rgba(255,0,0,0.4);
  border-radius: 4px;
}

.hero-h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 700;
  line-height: 1.15;
  color: #fff;
  margin-bottom: 16px;
  letter-spacing: 0.02em;
}

.hero-sub {
  font-size: 1rem;
  color: var(--c-text-muted);
  margin-bottom: 28px;
  line-height: 1.6;
}

/* ============================================================
   버튼
   ============================================================ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  padding: 12px 28px;
  min-height: 48px;
  background: linear-gradient(135deg, var(--c-red), var(--c-purple));
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 30px;
  border: none;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.2s;
  box-shadow: 0 4px 20px rgba(255,0,0,0.4);
}

.btn-primary:hover {
  color: #fff;
  opacity: 0.88;
  transform: translateY(-2px);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  padding: 10px 20px;
  min-height: 44px;
  border: 1px solid var(--c-glass-border);
  color: var(--c-text-muted);
  font-size: 0.9rem;
  border-radius: var(--radius-sm);
  background: var(--c-glass-bg);
  transition: background 0.2s, color 0.2s;
}

.btn-ghost:hover {
  background: rgba(255,255,255,0.18);
  color: #fff;
}

.btn-ghost-sm {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  min-height: 36px;
  border: 1px solid var(--c-glass-border);
  color: var(--c-text-muted);
  font-size: 0.82rem;
  border-radius: var(--radius-sm);
  background: var(--c-glass-bg);
  transition: background 0.2s, color 0.2s;
}

.btn-ghost-sm:hover {
  background: rgba(255,255,255,0.18);
  color: #fff;
}

/* ============================================================
   메인 콘텐츠 공통
   ============================================================ */
.main-content {
  flex: 1;
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

/* home grid: content + sidebar */
.home-grid-area {
  display: grid;
  grid-template-columns: 1fr var(--sidebar-w);
  gap: var(--gap);
  max-width: var(--max-w);
  margin: 40px auto;
  padding: 0 24px;
}

/* section / about / privacy main: content + sidebar */
.article-main,
.about-main,
.privacy-main {
  display: grid;
  grid-template-columns: 1fr var(--sidebar-w);
  gap: var(--gap);
  align-items: start;
  padding-top: 36px;
  padding-bottom: 48px;
}

/* ============================================================
   콘텐츠 섹션 (main > div.wrap > article > section 체인)
   ============================================================ */
.wrap {
  width: 100%;
}

.content-section {
  padding: 36px 0;
}

.page-article {
  min-width: 0;
}

/* ============================================================
   아티클 본문
   ============================================================ */
.article-body {
  font-size: 17px;
  line-height: 1.78;
  color: var(--c-text);
}

.article-body h2 {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  margin: 2rem 0 0.8rem;
  letter-spacing: 0.03em;
}

.article-body h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: #f0d0d0;
  margin: 1.6rem 0 0.6rem;
}

.article-body p {
  margin-bottom: 1.1rem;
  color: var(--c-text);
}

.article-body ul,
.article-body ol {
  margin: 0.8rem 0 1rem 1.4rem;
}

.article-body li {
  margin-bottom: 0.4rem;
  list-style: disc;
}

.article-body ol li {
  list-style: decimal;
}

.article-body strong {
  color: #fff;
  font-weight: 600;
}

.article-body a {
  color: var(--c-link);
  border-bottom: 1px solid rgba(255,106,106,0.35);
}

.article-body a:hover {
  color: var(--c-link-hover);
  border-bottom-color: var(--c-red);
}

.article-body blockquote {
  border-left: 3px solid var(--c-red);
  padding: 10px 20px;
  margin: 1.2rem 0;
  background: var(--c-glass-bg);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  color: var(--c-text-muted);
  font-style: italic;
}

.article-footer-nav {
  display: flex;
  gap: 12px;
  margin-top: 36px;
  flex-wrap: wrap;
}

/* ============================================================
   眉题 small + h2/h3
   ============================================================ */
small.eyebrow {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  color: var(--c-red);
  text-transform: uppercase;
  margin-bottom: 6px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.03em;
  margin-bottom: 20px;
}

.article-meta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 10px;
}

.article-date {
  font-size: 0.82rem;
  color: var(--c-text-muted);
  border: 1px solid var(--c-glass-border);
  padding: 3px 10px;
  border-radius: 20px;
  background: var(--c-glass-bg);
}

/* ============================================================
   카드 리스트 (홈)
   ============================================================ */
.card-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 18px;
}

.card {
  border-radius: var(--radius-card);
}

.card-inner {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 20px;
  background: var(--c-glass-bg);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid var(--c-glass-border);
  border-radius: var(--radius-card);
  box-shadow: 0 6px 24px rgba(0,0,0,0.3);
  transition: transform 0.25s, box-shadow 0.25s;
  height: 100%;
  color: var(--c-text);
}

.card-inner:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(0,0,0,0.4);
  color: var(--c-text);
}

.card-tag {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--c-purple);
  text-transform: uppercase;
}

.card-title {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
}

.card-desc {
  font-size: 0.85rem;
  color: var(--c-text-muted);
  line-height: 1.5;
  flex: 1;
}

.card-date {
  font-size: 0.78rem;
  color: rgba(245,232,232,0.45);
  margin-top: 4px;
}

/* ============================================================
   인덱스 테이블 (table > tbody > tr > td)
   ============================================================ */
.tbl-section { margin-top: 0; }

.table-wrap {
  overflow-x: auto;
  border-radius: var(--radius-card);
  background: var(--c-glass-bg);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid var(--c-glass-border);
}

.index-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.index-table tbody tr {
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: background 0.2s;
}

.index-table tbody tr:last-child { border-bottom: none; }

.index-table tbody tr:hover {
  background: rgba(255,255,255,0.06);
}

.index-table td {
  padding: 14px 16px;
  vertical-align: middle;
}

.tbl-num {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--c-red);
  font-weight: 700;
  width: 48px;
  text-align: center;
}

.tbl-title a {
  font-weight: 600;
  color: var(--c-text);
  transition: color 0.2s;
}

.tbl-title a:hover { color: var(--c-red); }

.tbl-desc {
  color: var(--c-text-muted);
  font-size: 0.85rem;
}

.tbl-date time {
  font-size: 0.8rem;
  color: rgba(245,232,232,0.45);
  white-space: nowrap;
}

/* ============================================================
   사이드바
   ============================================================ */
.sidebar {
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-self: start;
  position: sticky;
  top: calc(var(--header-h) + 20px);
}

.sidebar-card {
  padding: 20px;
}

.sidebar-title {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 14px;
  letter-spacing: 0.03em;
}

.sidebar-links {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.sidebar-links li a {
  display: block;
  padding: 8px 10px;
  font-size: 0.88rem;
  color: var(--c-text-muted);
  border-radius: var(--radius-sm);
  transition: background 0.18s, color 0.18s;
  min-height: 40px;
  display: flex;
  align-items: center;
}

.sidebar-links li a:hover {
  background: rgba(255,255,255,0.1);
  color: #fff;
}

.sidebar-notice p {
  font-size: 0.85rem;
  color: var(--c-text-muted);
  line-height: 1.6;
  margin-bottom: 12px;
}

/* ============================================================
   아티클 히어로 스트립
   ============================================================ */
.article-page-wrap {
  flex: 1;
}

.article-hero-strip {
  position: relative;
  min-height: 220px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(255,0,0,0.15), rgba(139,0,255,0.2));
  border-bottom: 1px solid var(--c-glass-border);
}

.article-hero-strip.has-hero .article-hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
}

.article-hero-overlay {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 36px 24px 30px;
}

.article-hero-text { max-width: 680px; }

.article-h1 {
  font-family: var(--font-heading);
  font-size: clamp(1.9rem, 4vw, 3.2rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 10px;
  letter-spacing: 0.03em;
}

/* ============================================================
   about 페이지
   ============================================================ */
.about-hero {
  position: relative;
  padding: 52px 24px 36px;
  overflow: hidden;
  text-align: center;
  border-bottom: 1px solid var(--c-glass-border);
}

.about-h1 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.03em;
  margin-top: 8px;
}

.about-links-block {
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.about-nav-list {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: 14px;
}

.about-nav-list li a {
  display: flex;
  align-items: center;
  padding: 10px 14px;
  min-height: 44px;
  background: var(--c-glass-bg);
  border: 1px solid var(--c-glass-border);
  border-radius: var(--radius-sm);
  color: var(--c-text-muted);
  font-size: 0.92rem;
  transition: background 0.2s, color 0.2s;
}

.about-nav-list li a:hover {
  background: rgba(255,255,255,0.15);
  color: #fff;
}

/* ============================================================
   privacy 페이지
   ============================================================ */
.privacy-banner {
  padding: 48px 24px 32px;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--c-glass-border);
}

.privacy-h1 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
  letter-spacing: 0.03em;
}

.privacy-article {}

.privacy-footer-links {
  display: flex;
  gap: 12px;
  margin-top: 32px;
  flex-wrap: wrap;
}

/* ============================================================
   aside link list
   ============================================================ */
.aside-link-list {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.aside-link-item a {
  display: flex;
  flex-direction: column;
  padding: 8px 10px;
  min-height: 44px;
  border-radius: var(--radius-sm);
  transition: background 0.18s;
  justify-content: center;
}

.aside-link-item a:hover {
  background: rgba(255,255,255,0.1);
}

.aside-link-title {
  font-size: 0.87rem;
  color: var(--c-text-muted);
  line-height: 1.4;
}

.aside-link-item a:hover .aside-link-title { color: #fff; }

.aside-link-date {
  font-size: 0.73rem;
  color: rgba(245,232,232,0.4);
}

/* ============================================================
   푸터
   ============================================================ */
.site-footer {
  position: relative;
  z-index: 2;
  border-top: 1px solid var(--c-glass-border);
  background: rgba(38,23,23,0.82);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 18px 24px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 16px;
  text-align: center;
}

.footer-address {
  display: flex;
  gap: 14px;
  font-style: normal;
}

.footer-address a {
  font-size: 0.85rem;
  color: var(--c-text-muted);
  min-height: 40px;
  display: flex;
  align-items: center;
  transition: color 0.2s;
}

.footer-address a:hover { color: var(--c-red); }

.footer-links {
  display: flex;
  gap: 8px;
}

.footer-links li a {
  font-size: 0.85rem;
  color: var(--c-text-muted);
  min-height: 40px;
  display: flex;
  align-items: center;
  padding: 0 6px;
  transition: color 0.2s;
}

.footer-links li a:hover { color: var(--c-red); }

.footer-copy {
  font-size: 0.8rem;
  color: rgba(245,232,232,0.38);
  width: 100%;
  text-align: center;
}

/* ============================================================
   Scroll Reveal 애니메이션
   ============================================================ */
.reveal-item {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.reveal-item.is-visible {
  opacity: 1;
  transform: none;
}

.reveal-list .reveal-item:nth-child(1) { transition-delay: 0.05s; }
.reveal-list .reveal-item:nth-child(2) { transition-delay: 0.12s; }
.reveal-list .reveal-item:nth-child(3) { transition-delay: 0.19s; }
.reveal-list .reveal-item:nth-child(4) { transition-delay: 0.26s; }
.reveal-list .reveal-item:nth-child(5) { transition-delay: 0.33s; }

@media (prefers-reduced-motion: reduce) {
  .reveal-item {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ============================================================
   반응형 768px 이하
   ============================================================ */
@media (max-width: 768px) {
  :root {
    --sidebar-w: 100%;
  }

  .header-brand-row {
    padding: 0 16px;
  }

  .header-contact {
    display: none;
  }

  .site-nav {
    padding: 0 16px;
  }

  .nav-summary {
    display: flex;
  }

  .nav-details:not([open]) .nav-menu {
    display: none;
  }

  .nav-details[open] .nav-menu {
    display: flex;
    flex-direction: column;
    position: absolute;
    left: 0;
    right: 0;
    top: var(--header-h);
    background: rgba(38,23,23,0.96);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--c-glass-border);
    padding: 12px 16px;
    z-index: 200;
  }

  .nav-menu li a {
    height: 48px;
    font-size: 0.95rem;
    padding: 0 16px;
  }

  .hero {
    padding: 36px 16px;
    min-height: auto;
  }

  .hero-inner {
    flex-direction: column-reverse;
    gap: 24px;
  }

  .hero-copy {
    text-align: left;
  }

  .hero-collage {
    width: 100%;
    height: 140px;
  }

  .hero-img-a { width: 120px; height: 140px; }
  .hero-img-b { width: 120px; height: 140px; }

  .main-content {
    padding: 0 16px;
  }

  .home-grid-area {
    grid-template-columns: 1fr;
    padding: 0 16px;
    margin: 24px auto;
  }

  .article-main,
  .about-main,
  .privacy-main {
    grid-template-columns: 1fr;
  }

  .sidebar {
    position: static;
  }

  .card-list {
    grid-template-columns: 1fr;
  }

  .tbl-desc { display: none; }

  .article-hero-strip {
    min-height: 160px;
  }

  .article-hero-overlay {
    padding: 24px 16px 20px;
  }

  .about-hero,
  .privacy-banner {
    padding: 32px 16px 24px;
  }

  .site-footer {
    padding: 16px;
    gap: 10px;
  }

  .index-table td {
    padding: 10px 10px;
  }
}

/* ============================================================
   반응형 480px 이하
   ============================================================ */
@media (max-width: 480px) {
  body { font-size: 16px; }

  .brand-name { font-size: 1.5rem; }

  .section-title { font-size: 1.8rem; }

  .hero-h1 { font-size: 2rem; }

  .article-h1 { font-size: 1.8rem; }

  .footer-address,
  .footer-links {
    gap: 8px;
  }
}
