@import url('https://fonts.googleapis.com/css2?family=Inter:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400&family=JetBrains+Mono:wght@400&family=Playfair+Display:ital@1&display=swap');

/* ===========================
   CSS 变量 & 基础重置
   =========================== */
:root {
  --c-lime: #80ff00;
  --c-green: #00ff00;
  --c-dark: #1f2617;
  --c-dark2: #151b0e;
  --c-lime-dim: #5ecc00;
  --c-white: #f5f5f0;
  --c-grey: #b8c0aa;
  --c-grey2: #3a4230;
  --c-border: #80ff00;
  --font-main: 'Inter', system-ui, -apple-system, sans-serif;
  --font-display: 'Inter', 'Helvetica Neue', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
  --border-w: 2px;
  --radius: 0;
  --gap: 1.5rem;
  --max-content: 1200px;
  --nav-h: 56px;
  --sticky-h: 44px;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 17px;
  line-height: 1.6;
  scroll-behavior: smooth;
}

body {
  background: var(--c-dark);
  color: var(--c-white);
  font-family: var(--font-main);
  font-size: 1rem;
  line-height: 1.65;
  overflow-x: hidden;
}

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

a {
  color: var(--c-lime);
  text-decoration: none;
}

a:hover {
  color: var(--c-green);
  text-decoration: underline;
}

ul, ol {
  list-style: none;
}

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

/* ===========================
   헤더 / 내비게이션
   =========================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--c-dark2);
  border-bottom: var(--border-w) solid var(--c-lime);
  filter: saturate(120%);
}

.header-brand-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.6rem 1.5rem;
  border-bottom: 1px solid var(--c-grey2);
}

.brand-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
}

.brand-text {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--c-lime);
  letter-spacing: -0.02em;
  text-transform: uppercase;
  line-height: 1;
}

.brand-logo {
  height: 36px;
  width: auto;
}

.header-tagline {
  font-size: 0.75rem;
  color: var(--c-grey);
  font-family: var(--font-mono);
  letter-spacing: 0.05em;
  margin-left: auto;
}

/* nav details/summary */
.site-nav {
  padding: 0 1.5rem;
}

.nav-details {
  position: relative;
}

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

.nav-summary {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 0;
  cursor: pointer;
  list-style: none;
  min-height: var(--nav-h);
  user-select: none;
}

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

.nav-brand-mark {
  font-weight: 800;
  font-size: 0.85rem;
  color: var(--c-lime);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: var(--border-w) solid var(--c-lime);
  padding: 0.1em 0.4em;
  line-height: 1;
}

.nav-toggle-label {
  font-size: 0.8rem;
  color: var(--c-grey);
  font-family: var(--font-mono);
}

.nav-menu {
  display: none;
  flex-wrap: wrap;
  gap: 0.25rem 0.5rem;
  padding: 0.5rem 0 0.75rem;
  list-style: none;
}

.nav-menu li a {
  display: inline-block;
  padding: 0.4rem 0.75rem;
  min-height: 40px;
  line-height: 1.4;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--c-white);
  border: 1px solid var(--c-grey2);
  text-decoration: none;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
  display: flex;
  align-items: center;
}

.nav-menu li a:hover {
  background: var(--c-lime);
  color: var(--c-dark);
  border-color: var(--c-lime);
  text-decoration: none;
}

/* sticky anchor bar */
.nav-sticky-bar {
  display: flex;
  align-items: center;
  gap: 0;
  overflow-x: auto;
  background: var(--c-dark);
  border-top: 1px solid var(--c-grey2);
  scrollbar-width: none;
}

.nav-sticky-bar::-webkit-scrollbar {
  display: none;
}

.sticky-link {
  display: flex;
  align-items: center;
  padding: 0 1rem;
  min-height: var(--sticky-h);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--c-grey);
  border-right: 1px solid var(--c-grey2);
  white-space: nowrap;
  text-decoration: none;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  flex-shrink: 0;
}

.sticky-link:hover {
  background: var(--c-lime);
  color: var(--c-dark);
  text-decoration: none;
}

/* ===========================
   공통 버튼
   =========================== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 1.5rem;
  min-height: 44px;
  background: var(--c-lime);
  color: var(--c-dark);
  font-weight: 800;
  font-size: 0.95rem;
  border: var(--border-w) solid var(--c-lime);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
  border-radius: var(--radius);
}

.btn-primary:hover {
  background: var(--c-green);
  border-color: var(--c-green);
  color: var(--c-dark);
  text-decoration: none;
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 1.5rem;
  min-height: 44px;
  background: transparent;
  color: var(--c-lime);
  font-weight: 800;
  font-size: 0.95rem;
  border: var(--border-w) solid var(--c-lime);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
}

.btn-ghost:hover {
  background: var(--c-lime);
  color: var(--c-dark);
  text-decoration: none;
}

/* ===========================
   스티커 태그
   =========================== */
.sticker-tag {
  display: inline-block;
  background: var(--c-lime);
  color: var(--c-dark);
  font-size: 0.7rem;
  font-weight: 800;
  font-family: var(--font-mono);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.15em 0.5em;
  border: 1px solid var(--c-dark);
  transform: rotate(-2deg);
  position: relative;
  z-index: 1;
  mix-blend-mode: normal;
  line-height: 1.4;
}

/* ===========================
   HERO 섹션 (홈)
   =========================== */
.home-main {
  flex: 1;
}

.hero-section {
  position: relative;
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr;
  overflow: hidden;
  background: var(--c-dark2);
}

.hero-text {
  grid-column: 1;
  grid-row: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.25rem;
  padding: 4rem 3rem 4rem 2.5rem;
  position: relative;
  z-index: 2;
}

.hero-eyebrow {
  transform: rotate(-1.5deg);
  align-self: flex-start;
}

.hero-h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--c-white);
  text-transform: uppercase;
}

.hero-h1 em {
  color: var(--c-lime);
  font-style: normal;
}

.hero-desc {
  font-size: 1.05rem;
  color: var(--c-grey);
  max-width: 480px;
  line-height: 1.7;
}

.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 0.5rem;
}

.hero-figure {
  grid-column: 2;
  grid-row: 1;
  position: relative;
  overflow: hidden;
  margin: 0;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(130%) contrast(1.05);
}

.hero-placeholder {
  width: 100%;
  height: 100%;
  min-height: 400px;
  background: linear-gradient(135deg, var(--c-dark2) 0%, var(--c-grey2) 50%, var(--c-dark) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.hero-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 20px,
    rgba(128,255,0,0.05) 20px,
    rgba(128,255,0,0.05) 40px
  );
}

.hero-placeholder-text {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--c-lime);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-align: center;
  position: relative;
  z-index: 1;
}

.hero-slash {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%) skewX(-8deg);
  width: 6px;
  height: 100%;
  background: var(--c-lime);
  z-index: 5;
  pointer-events: none;
}

/* ===========================
   마르키 스크롤
   =========================== */
.marquee-section {
  overflow: hidden;
  background: var(--c-lime);
  border-top: var(--border-w) solid var(--c-dark);
  border-bottom: var(--border-w) solid var(--c-dark);
  padding: 0.4rem 0;
}

.marquee-track {
  display: flex;
  gap: 2rem;
  width: max-content;
  animation: marqueeScroll 24s linear infinite;
}

.marquee-item {
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--c-dark);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  white-space: nowrap;
  font-family: var(--font-mono);
}

.marquee-sep {
  color: var(--c-dark2);
  font-weight: 400;
  flex-shrink: 0;
}

@keyframes marqueeScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ===========================
   홈 콘텐츠 섹션
   =========================== */
.content-section {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 2rem;
  max-width: var(--max-content);
  margin: 0 auto;
  padding: 3rem 1.5rem;
  width: 100%;
}

.home-aside {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.home-content-body {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

/* ===========================
   ASIDE 공통
   =========================== */
.aside-block {
  border: var(--border-w) solid var(--c-lime);
  padding: 1rem;
  background: var(--c-dark2);
  position: relative;
}

.aside-block.sticker-card {
  border-color: var(--c-lime);
}

.rotate-neg {
  transform: rotate(-1deg);
}

.rotate-pos {
  transform: rotate(1.2deg);
}

.aside-h2 {
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--c-lime);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.25rem;
}

.aside-nav-list {
  margin-top: 0.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.aside-nav-list li a {
  display: flex;
  align-items: center;
  min-height: 40px;
  padding: 0.3rem 0.5rem;
  font-size: 0.85rem;
  color: var(--c-white);
  border-left: 2px solid transparent;
  transition: border-color 0.12s, color 0.12s;
  text-decoration: none;
}

.aside-nav-list li a:hover {
  border-left-color: var(--c-lime);
  color: var(--c-lime);
  text-decoration: none;
}

.aside-tip {
  font-size: 0.8rem;
  color: var(--c-grey);
  margin-top: 0.5rem;
  line-height: 1.5;
}

.aside-empty {
  font-size: 0.8rem;
  color: var(--c-grey);
  font-style: italic;
  margin-top: 0.5rem;
}

/* subtitle 공통 */
.subtitle {
  font-size: 0.8rem;
  color: var(--c-grey);
  margin-top: 0.15rem;
  line-height: 1.4;
}

/* ===========================
   카드 / 엔트리 리스트
   =========================== */
.entry-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1rem;
}

.entry-card {
  border: var(--border-w) solid var(--c-lime);
  background: var(--c-dark2);
  padding: 1.25rem;
  position: relative;
  transition: transform 0.15s, box-shadow 0.15s;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.entry-card:hover {
  transform: translate(-2px, -2px);
  box-shadow: 4px 4px 0 var(--c-lime);
}

.entry-card-inner {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.entry-card h3 {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.3;
  margin-top: 0.25rem;
}

.entry-card h3 a {
  color: var(--c-white);
  text-decoration: none;
}

.entry-card h3 a:hover {
  color: var(--c-lime);
}

.entry-card p {
  font-size: 0.85rem;
  color: var(--c-grey);
  line-height: 1.55;
}

.card-date {
  font-size: 0.75rem;
  font-family: var(--font-mono);
  color: var(--c-lime-dim);
  display: block;
  margin-top: auto;
  padding-top: 0.5rem;
}

.entry-type-tag {
  align-self: flex-start;
  margin-bottom: 0.25rem;
}

.small-card {
  padding: 0.9rem;
}

.small-card h3 {
  font-size: 0.9rem;
}

/* ===========================
   카테고리 블록
   =========================== */
.cat-blocks-wrap {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.cat-block {
  border-top: 3px solid var(--c-lime);
  padding-top: 1.25rem;
}

.cat-block-title {
  font-size: 1.3rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.02em;
}

.cat-block-title a {
  color: var(--c-white);
}

.cat-block-title a:hover {
  color: var(--c-lime);
}

.cat-block-desc {
  margin-bottom: 1rem;
}

/* ===========================
   카테고리 페이지 레이아웃
   =========================== */
.cat-main, .tag-main, .about-main, .privacy-main, .default-main {
  flex: 1;
}

.cat-hero-section {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 2rem;
  max-width: var(--max-content);
  margin: 0 auto;
  padding: 3rem 1.5rem 2rem;
  width: 100%;
}

.cat-aside {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.cat-hero-text {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  justify-content: center;
}

.cat-eyebrow {
  align-self: flex-start;
  transform: rotate(-2deg);
}

.cat-h1 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  color: var(--c-white);
}

.cat-desc {
  font-size: 1rem;
  color: var(--c-grey);
  max-width: 600px;
}

.cat-content-section {
  max-width: var(--max-content);
  margin: 0 auto;
  padding: 0 1.5rem 2rem;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.cat-content-body {
  padding-top: 0.5rem;
}

.cat-list-section {
  max-width: var(--max-content);
  margin: 0 auto;
  padding: 1.5rem 1.5rem 3rem;
  width: 100%;
}

.cat-list-title {
  font-size: 1.4rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  color: var(--c-lime);
  border-bottom: var(--border-w) solid var(--c-lime);
  padding-bottom: 0.5rem;
  margin-bottom: 0.25rem;
}

.cat-list-sub {
  margin-bottom: 1.25rem;
}

.cat-entry-list {
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
}

/* deco strips */
.deco-strip {
  height: 6px;
  background: repeating-linear-gradient(
    90deg,
    var(--c-lime) 0px,
    var(--c-lime) 24px,
    var(--c-dark2) 24px,
    var(--c-dark2) 32px
  );
  margin-bottom: 1rem;
}

.deco-strip-alt {
  background: repeating-linear-gradient(
    90deg,
    var(--c-green) 0px,
    var(--c-green) 16px,
    var(--c-dark) 16px,
    var(--c-dark) 24px
  );
}

.deco-strip-narrow {
  height: 3px;
}

.cat-deco-figure, .tag-deco-figure, .privacy-deco-figure, .default-deco-figure {
  margin: 0;
}

/* ===========================
   엔트리 페이지
   =========================== */
.entry-main {
  flex: 1;
}

.entry-header-section {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 2rem;
  max-width: var(--max-content);
  margin: 0 auto;
  padding: 2.5rem 1.5rem 1.5rem;
  width: 100%;
}

.entry-aside {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.entry-header-text {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.breadcrumb {
  font-size: 0.8rem;
  color: var(--c-grey);
  font-family: var(--font-mono);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.breadcrumb a {
  color: var(--c-grey);
}

.breadcrumb a:hover {
  color: var(--c-lime);
}

.bc-sep {
  color: var(--c-lime);
}

.entry-eyebrow {
  align-self: flex-start;
  transform: rotate(1.5deg);
}

.entry-h1 {
  font-size: clamp(1.6rem, 3.5vw, 2.5rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  color: var(--c-white);
}

.entry-desc {
  font-size: 1rem;
  color: var(--c-grey);
  max-width: 640px;
  line-height: 1.7;
}

.entry-date {
  display: block;
  font-size: 0.78rem;
  font-family: var(--font-mono);
  color: var(--c-lime-dim);
}

.entry-media-section {
  max-width: var(--max-content);
  margin: 0 auto;
  padding: 0 1.5rem 1.5rem;
  width: 100%;
}

.entry-hero-figure {
  margin: 0;
  border: var(--border-w) solid var(--c-grey2);
  overflow: hidden;
  position: relative;
}

.entry-hero-img {
  width: 100%;
  max-height: 420px;
  object-fit: cover;
  filter: saturate(120%);
}

.entry-hero-placeholder {
  height: 240px;
  background: linear-gradient(135deg, var(--c-dark2), var(--c-grey2));
  display: flex;
  align-items: center;
  justify-content: center;
}

.entry-hero-placeholder span {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--c-lime);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.entry-fig-caption {
  font-size: 0.75rem;
  color: var(--c-grey);
  font-family: var(--font-mono);
  padding: 0.4rem 0.75rem;
  background: var(--c-dark2);
  border-top: 1px solid var(--c-grey2);
}

.entry-body-section {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 2rem;
  max-width: var(--max-content);
  margin: 0 auto;
  padding: 0.5rem 1.5rem 2rem;
  width: 100%;
}

.entry-body-aside {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.entry-body-content {
  min-width: 0;
}

.entry-related-section {
  max-width: var(--max-content);
  margin: 0 auto;
  padding: 1rem 1.5rem 3rem;
  width: 100%;
}

.related-title {
  font-size: 1.2rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--c-lime);
  border-bottom: var(--border-w) solid var(--c-lime);
  padding-bottom: 0.4rem;
  margin-bottom: 0.25rem;
}

.related-sub {
  margin-bottom: 1rem;
}

.related-list {
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
}

/* ===========================
   태그 페이지
   =========================== */
.tag-hero-section {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 2rem;
  max-width: var(--max-content);
  margin: 0 auto;
  padding: 3rem 1.5rem 2rem;
  width: 100%;
}

.tag-aside {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.tag-hero-text {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  justify-content: center;
}

.tag-h1 {
  font-size: clamp(1.6rem, 4vw, 2.8rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  color: var(--c-white);
}

.tag-desc {
  font-size: 1rem;
  color: var(--c-grey);
}

.tag-content-section {
  max-width: var(--max-content);
  margin: 0 auto;
  padding: 0 1.5rem 1.5rem;
  width: 100%;
}

.tag-content-body {
  padding-top: 0.5rem;
}

.tag-list-section {
  max-width: var(--max-content);
  margin: 0 auto;
  padding: 1rem 1.5rem 3rem;
  width: 100%;
}

.tag-list-title {
  font-size: 1.4rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--c-lime);
  border-bottom: var(--border-w) solid var(--c-lime);
  padding-bottom: 0.5rem;
  margin-bottom: 0.25rem;
}

.tag-list-sub {
  margin-bottom: 1.25rem;
}

.tag-entry-list {
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
}

/* ===========================
   어바웃 페이지
   =========================== */
.about-banner-section {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 2rem;
  max-width: var(--max-content);
  margin: 0 auto;
  padding: 3rem 1.5rem 2rem;
  width: 100%;
  position: relative;
}

.about-banner-figure {
  display: none;
}

.about-banner-bg {
  position: absolute;
  top: 0;
  right: 0;
  width: 320px;
  height: 100%;
  background: linear-gradient(135deg, transparent, rgba(128,255,0,0.04));
  pointer-events: none;
  z-index: 0;
}

.about-aside {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  position: relative;
  z-index: 1;
}

.about-banner-text {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.about-h1 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  color: var(--c-white);
}

.about-tagline {
  font-size: 1rem;
  color: var(--c-grey);
  max-width: 600px;
}

.about-content-section {
  max-width: var(--max-content);
  margin: 0 auto;
  padding: 0 1.5rem 2rem;
  width: 100%;
}

.about-links-section {
  max-width: var(--max-content);
  margin: 0 auto;
  padding: 1rem 1.5rem 3rem;
  width: 100%;
  border-top: 1px solid var(--c-grey2);
}

.about-links-title {
  font-size: 1.2rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--c-lime);
  margin-bottom: 0.25rem;
}

.about-links-sub {
  margin-bottom: 1rem;
}

.about-links-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.about-link-card {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0.5rem 1.25rem;
  border: var(--border-w) solid var(--c-lime);
  color: var(--c-lime);
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  transition: background 0.15s, color 0.15s;
}

.about-link-card:hover {
  background: var(--c-lime);
  color: var(--c-dark);
  text-decoration: none;
}

/* ===========================
   프라이버시 페이지
   =========================== */
.privacy-header-section {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 2rem;
  max-width: var(--max-content);
  margin: 0 auto;
  padding: 3rem 1.5rem 2rem;
  width: 100%;
}

.privacy-aside {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.privacy-header-text {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  justify-content: center;
}

.privacy-h1 {
  font-size: clamp(1.6rem, 3.5vw, 2.5rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  color: var(--c-white);
}

.privacy-desc {
  font-size: 1rem;
  color: var(--c-grey);
  max-width: 600px;
}

.privacy-content-section {
  max-width: var(--max-content);
  margin: 0 auto;
  padding: 0 1.5rem 2rem;
  width: 100%;
}

.privacy-content-body {
  padding-top: 0.5rem;
}

.privacy-links-section {
  max-width: var(--max-content);
  margin: 0 auto;
  padding: 1rem 1.5rem 3rem;
  width: 100%;
  border-top: 1px solid var(--c-grey2);
}

.privacy-links-title {
  font-size: 1.2rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--c-lime);
  margin-bottom: 0.25rem;
}

.privacy-links-sub {
  margin-bottom: 1rem;
}

.privacy-links-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

/* ===========================
   default 페이지
   =========================== */
.default-header-section {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 2rem;
  max-width: var(--max-content);
  margin: 0 auto;
  padding: 3rem 1.5rem 2rem;
  width: 100%;
}

.default-aside {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.default-header-text {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  justify-content: center;
}

.default-h1 {
  font-size: clamp(1.6rem, 3.5vw, 2.5rem);
  font-weight: 800;
  line-height: 1.1;
  text-transform: uppercase;
  color: var(--c-white);
}

.default-desc {
  font-size: 1rem;
  color: var(--c-grey);
}

.default-content-section {
  max-width: var(--max-content);
  margin: 0 auto;
  padding: 0 1.5rem 3rem;
  width: 100%;
}

.default-content-body {
  padding-top: 0.5rem;
}

/* ===========================
   page-content-raw (정문 삽입)
   =========================== */
.page-content-raw {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--c-white);
  max-width: 800px;
}

.page-content-raw h2 {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--c-lime);
  text-transform: uppercase;
  letter-spacing: -0.01em;
  margin: 2rem 0 0.5rem;
  border-left: 4px solid var(--c-lime);
  padding-left: 0.75rem;
}

.page-content-raw h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--c-white);
  margin: 1.5rem 0 0.4rem;
}

.page-content-raw p {
  margin: 0.75rem 0;
  color: var(--c-grey);
}

.page-content-raw a {
  color: var(--c-lime);
  text-decoration: underline;
}

.page-content-raw a:hover {
  color: var(--c-green);
}

.page-content-raw ul, .page-content-raw ol {
  margin: 0.75rem 0 0.75rem 1.25rem;
  list-style: disc;
  color: var(--c-grey);
}

.page-content-raw ol {
  list-style: decimal;
}

.page-content-raw li {
  margin: 0.3rem 0;
}

.page-content-raw strong {
  color: var(--c-white);
  font-weight: 700;
}

.page-content-raw em {
  color: var(--c-lime);
  font-style: italic;
}

.page-content-raw code {
  font-family: var(--font-mono);
  font-size: 0.88em;
  background: var(--c-grey2);
  color: var(--c-lime);
  padding: 0.1em 0.4em;
}

.page-content-raw blockquote {
  border-left: 4px solid var(--c-lime);
  padding: 0.5rem 1rem;
  background: var(--c-dark2);
  margin: 1rem 0;
  color: var(--c-grey);
  font-style: italic;
}

.prose {
  max-width: 720px;
}

/* ===========================
   푸터
   =========================== */
.site-footer {
  background: var(--c-dark2);
  border-top: var(--border-w) solid var(--c-lime);
  margin-top: auto;
}

.footer-cta-block {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.75rem 2rem;
  background: var(--c-lime);
  border-bottom: var(--border-w) solid var(--c-dark);
  flex-wrap: wrap;
}

.footer-cta-label {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--c-dark);
  text-transform: uppercase;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.footer-cta-btn {
  background: var(--c-dark);
  color: var(--c-lime);
  border-color: var(--c-dark);
  white-space: nowrap;
}

.footer-cta-btn:hover {
  background: var(--c-dark2);
  border-color: var(--c-dark2);
  color: var(--c-lime);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2rem;
  max-width: var(--max-content);
  margin: 0 auto;
  padding: 2.5rem 2rem;
  width: 100%;
}

.footer-brand {
  display: block;
  font-size: 1rem;
  font-weight: 800;
  color: var(--c-lime);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  text-decoration: none;
  margin-bottom: 0.75rem;
}

.footer-desc {
  font-size: 0.82rem;
  color: var(--c-grey);
  line-height: 1.6;
}

.footer-nav {
  display: flex;
  flex-direction: column;
}

.footer-nav-title {
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--c-lime);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.2rem;
}

.footer-nav-sub {
  margin-bottom: 0.75rem;
}

.footer-nav-list {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.footer-nav-list li a {
  font-size: 0.82rem;
  color: var(--c-grey);
  text-decoration: none;
  display: flex;
  align-items: center;
  min-height: 40px;
  padding: 0.1rem 0;
  border-bottom: 1px dotted var(--c-grey2);
  line-height: 1.3;
}

.footer-nav-list li a:hover {
  color: var(--c-lime);
  text-decoration: none;
}

.footer-info-title {
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--c-lime);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.2rem;
}

.footer-info-sub {
  margin-bottom: 0.75rem;
}

.footer-info-list {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.footer-info-list li a {
  font-size: 0.85rem;
  color: var(--c-grey);
  text-decoration: none;
  display: flex;
  align-items: center;
  min-height: 40px;
  padding: 0.1rem 0;
}

.footer-info-list li a:hover {
  color: var(--c-lime);
}

.footer-bottom {
  border-top: 1px solid var(--c-grey2);
  padding: 1rem 2rem;
  text-align: center;
}

.footer-copyright {
  font-size: 0.78rem;
  color: var(--c-grey);
  font-family: var(--font-mono);
  line-height: 1.5;
}

/* ===========================
   면빵크럼
   =========================== */
.breadcrumb-nav {
  padding: 0.5rem 1.5rem;
  font-size: 0.8rem;
  font-family: var(--font-mono);
  color: var(--c-grey);
  border-bottom: 1px solid var(--c-grey2);
  max-width: var(--max-content);
  margin: 0 auto;
  width: 100%;
}

/* ===========================
   애니메이션 & 효과
   =========================== */
@keyframes jitter {
  0%, 100% { transform: rotate(-1.5deg) translate(0,0); }
  25% { transform: rotate(-2deg) translate(-1px, 1px); }
  75% { transform: rotate(-1deg) translate(1px, -1px); }
}

.sticker-tag:hover {
  animation: jitter 0.3s ease infinite;
}

/* parallax hint on hero */
.hero-figure {
  will-change: transform;
}

/* ===========================
   반응형 모바일 (max 768px)
   =========================== */
@media (max-width: 768px) {
  .hero-section {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    min-height: unset;
  }

  .hero-text {
    grid-column: 1;
    grid-row: 1;
    padding: 2.5rem 1.25rem 1.5rem;
    order: 1;
  }

  .hero-figure {
    grid-column: 1;
    grid-row: 2;
    order: 2;
    min-height: 220px;
  }

  .hero-slash {
    display: none;
  }

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

  .content-section,
  .cat-hero-section,
  .tag-hero-section,
  .entry-header-section,
  .entry-body-section,
  .about-banner-section,
  .privacy-header-section,
  .default-header-section {
    grid-template-columns: 1fr;
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .home-aside,
  .cat-aside,
  .tag-aside,
  .entry-aside,
  .entry-body-aside,
  .about-aside,
  .privacy-aside,
  .default-aside {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0.75rem;
  }

  .aside-block {
    flex: 1 1 280px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    padding: 1.5rem 1rem;
    gap: 1.5rem;
  }

  .footer-cta-block {
    flex-direction: column;
    align-items: flex-start;
    padding: 1.25rem 1rem;
  }

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

  .cat-entry-list,
  .tag-entry-list,
  .related-list {
    grid-template-columns: 1fr;
  }

  .about-links-row,
  .privacy-links-row {
    flex-direction: column;
  }

  .about-link-card {
    width: 100%;
    justify-content: center;
  }

  .nav-menu {
    flex-direction: column;
    gap: 0;
  }

  .nav-menu li a {
    border-bottom: 1px solid var(--c-grey2);
    border-right: none;
    border-left: none;
    border-top: none;
    padding-left: 0;
  }

  .header-tagline {
    display: none;
  }

  .hero-cta-row {
    flex-direction: column;
  }

  .btn-primary, .btn-ghost {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .brand-text {
    font-size: 0.9rem;
  }

  .cat-list-section,
  .tag-list-section,
  .entry-related-section,
  .cat-content-section,
  .tag-content-section,
  .privacy-content-section,
  .about-content-section,
  .about-links-section,
  .privacy-links-section,
  .default-content-section {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .footer-bottom {
    padding: 0.75rem 1rem;
  }
}

/* ===========================
   모션 감소 설정
   =========================== */
@media (prefers-reduced-motion: reduce) {
  .marquee-track {
    animation: none;
  }

  .sticker-tag:hover {
    animation: none;
  }

  * {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}
