:root {
  --paper: #f4f2ec;
  --paper-soft: #fbfaf6;
  --ink: #171b18;
  --muted: #6c736c;
  --line: rgba(23, 27, 24, 0.13);
  --forest: #243f35;
  --sage: #9aa99a;
  --blue: #9db8c6;
  --silver: #dfe4e1;
  --shadow: 0 24px 80px rgba(18, 24, 20, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-family: "Noto Sans KR", "Apple SD Gothic Neo", "Segoe UI", sans-serif;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
}

[hidden] {
  display: none !important;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(20px, 4vw, 56px);
  color: #fff;
  background: linear-gradient(to bottom, rgba(10, 14, 12, 0.5), rgba(10, 14, 12, 0));
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  cursor: pointer;
}

.header-player {
  display: inline-flex;
  align-items: flex-start;
  min-width: 0;
  position: relative;
}

.header-player-shell {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  max-width: 420px;
  min-height: 40px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  backdrop-filter: blur(14px);
}

.header-player-copy {
  min-width: 0;
  display: grid;
  gap: 2px;
  text-align: left;
}

.header-player-label {
  color: rgba(255, 255, 255, 0.58);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.header-player-copy strong {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.2;
}

.header-player-line {
  min-width: 60px;
}

.header-player-controls {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.header-player-controls button {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
}

.header-player-controls button:hover,
.header-player-controls button:focus-visible {
  background: rgba(255, 255, 255, 0.16);
  outline: none;
}

.music-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  width: min(360px, calc(100vw - 40px));
  max-height: min(72vh, 640px);
  overflow: auto;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  background: rgba(18, 24, 20, 0.86);
  color: #fff;
  backdrop-filter: blur(18px);
  box-shadow: 0 24px 64px rgba(9, 14, 12, 0.32);
}

.music-dropdown-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.music-dropdown-actions {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.music-dropdown-actions button {
  min-height: 30px;
  padding: 0 10px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
}

.music-dropdown-actions button[aria-pressed="true"] {
  background: rgba(255, 255, 255, 0.18);
}

.music-dropdown-list {
  display: grid;
  gap: 8px;
}

.music-dropdown-item {
  display: grid;
  grid-template-columns: auto auto minmax(0, 1fr) auto auto;
  gap: 10px;
  align-items: center;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
}

.music-dropdown-item.is-playing {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.1);
}

.music-dropdown-copy {
  min-width: 0;
  display: grid;
  gap: 2px;
}

.music-dropdown-copy strong {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 14px;
  line-height: 1.35;
}

.music-dropdown-copy span {
  color: rgba(255, 255, 255, 0.6);
  font-size: 12px;
  line-height: 1.4;
}

.music-dropdown-index {
  color: rgba(255, 255, 255, 0.5);
  font-size: 12px;
  font-weight: 700;
}

.music-dropdown-controls {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.music-dropdown-mini {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
  cursor: pointer;
}

.music-dropdown-mini.is-selected {
  background: rgba(255, 255, 255, 0.18);
}

.music-dropdown-check {
  width: 18px;
  height: 18px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 4px;
  color: transparent;
  background: rgba(255, 255, 255, 0.02);
  cursor: pointer;
}

.music-dropdown-check.is-selected {
  color: #fff;
  background: rgba(255, 255, 255, 0.16);
}

.music-dropdown-play {
  min-height: 30px;
  padding: 0 10px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
}

.music-dropdown-play:hover,
.music-dropdown-play:focus-visible {
  background: rgba(255, 255, 255, 0.16);
  outline: none;
}

.header-player audio {
  display: none;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 700;
}

.brand-mark {
  width: 32px;
  height: 32px;
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
}

.brand-mark svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2.2vw, 30px);
  font-size: 13px;
  color: rgba(255, 255, 255, 0.82);
}

.nav-links a {
  transition: color 160ms ease;
}

.nav-links a:hover {
  color: #fff;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: end;
  padding: 112px clamp(20px, 5vw, 72px) 70px;
  color: #fff;
  overflow: hidden;
}

.hero-media,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-media {
  background-image: url("../images/still-deer/covers/title.jpeg");
  background-size: cover;
  background-position: center 42%;
  transform: scale(1.02);
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(9, 14, 12, 0.74), rgba(9, 14, 12, 0.3) 44%, rgba(9, 14, 12, 0.18)),
    linear-gradient(0deg, rgba(9, 14, 12, 0.64), rgba(9, 14, 12, 0) 52%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: min(760px, 100%);
}

.eyebrow {
  margin: 0 0 16px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow.dark {
  color: var(--forest);
}

.hero h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(64px, 12vw, 156px);
  font-weight: 400;
  line-height: 0.9;
}

.hero-meaning {
  width: min(420px, 100%);
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 15px;
  line-height: 1.7;
}

.hero-copy {
  width: min(560px, 100%);
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(17px, 2vw, 23px);
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 34px;
}

.hero-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}

.hero-categories a {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 11px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.82);
  background: rgba(255, 255, 255, 0.08);
  font-size: 12px;
  font-weight: 700;
  backdrop-filter: blur(10px);
}

.primary-link,
.text-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
}

.primary-link {
  padding: 0 20px;
  color: var(--ink);
  background: #fff;
}

.text-link {
  color: rgba(255, 255, 255, 0.88);
}

.note-label,
.tag {
  display: inline-flex;
  width: max-content;
  color: var(--forest);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.edition-strip {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(320px, 0.88fr);
  gap: clamp(26px, 4vw, 52px);
  align-items: start;
  padding-top: 44px;
}

.edition-lead {
  display: grid;
  gap: 12px;
}

.edition-lead h2 {
  font-size: 16px;
  line-height: 1.2;
  max-width: 12ch;
}

.edition-lead > p:last-child {
  max-width: 56ch;
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.8;
}

.edition-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.edition-card {
  display: grid;
  align-content: start;
  gap: 10px;
  min-height: 174px;
  padding: 18px;
  border: 1px solid rgba(36, 63, 53, 0.14);
  border-radius: 10px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.84), rgba(248, 247, 241, 0.94)),
    var(--paper-soft);
  box-shadow: 0 14px 36px rgba(18, 24, 20, 0.06);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.edition-card:hover,
.edition-card:focus-visible {
  transform: translateY(-3px);
  border-color: rgba(36, 63, 53, 0.26);
  box-shadow: 0 18px 44px rgba(18, 24, 20, 0.1);
  outline: none;
}

.edition-card-wide {
  grid-column: 1 / -1;
  min-height: 196px;
  background:
    radial-gradient(circle at top right, rgba(157, 184, 198, 0.16), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(248, 247, 241, 0.94)),
    var(--paper-soft);
}

.edition-card strong {
  font-size: clamp(20px, 1.95vw, 30px);
  line-height: 1.2;
}

.edition-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.68;
}

.meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.meta-row span {
  display: inline-flex;
  align-items: center;
  min-height: 27px;
  padding: 0 10px;
  border: 1px solid currentColor;
  border-radius: 999px;
  color: inherit;
  font-size: 12px;
  opacity: 0.82;
}

.section {
  padding: clamp(64px, 9vw, 118px) clamp(20px, 5vw, 72px);
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.8fr);
  gap: clamp(24px, 5vw, 72px);
  align-items: end;
  margin-bottom: 34px;
}

.section-head.compact {
  display: block;
  margin-bottom: 28px;
}

.section h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(30px, 4.4vw, 54px);
  font-weight: 400;
  line-height: 1;
}

.section-head p:not(.eyebrow),
.places-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.8;
}

.archive-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr 1fr 1fr;
  gap: 16px;
}

.content-block {
  display: grid;
  gap: 18px;
}

.content-block + .content-block {
  margin-top: clamp(46px, 7vw, 88px);
}

.section-minihead {
  display: grid;
  gap: 4px;
}

.section-minihead .eyebrow {
  margin-bottom: 0;
}

.section-minihead h2,
.section-minihead h3 {
  margin: 0;
  font-family: "Noto Sans KR", "Apple SD Gothic Neo", "Segoe UI", sans-serif;
  font-size: clamp(24px, 2.2vw, 30px);
  font-weight: 700;
  line-height: 1.2;
}

.content-block-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid var(--line);
  padding-top: 14px;
}

.content-actions {
  display: grid;
  justify-items: end;
  gap: 10px;
}

.category-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
  margin: 0;
}

.category-chip {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.38);
  cursor: pointer;
}

.category-chip.is-active {
  color: #fff;
  border-color: var(--forest);
  background: var(--forest);
}

.small-link {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--forest);
  font-size: 13px;
  font-weight: 800;
}

.content-block-editorial .content-block-head {
  padding-top: 18px;
}

.story-card {
  min-height: 420px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper-soft);
  overflow: hidden;
  box-shadow: 0 12px 42px rgba(30, 34, 31, 0.08);
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.story-card:hover,
.story-card:focus-visible {
  transform: translateY(-3px);
  border-color: rgba(36, 63, 53, 0.34);
  box-shadow: 0 18px 52px rgba(30, 34, 31, 0.13);
  outline: none;
}

.story-card.large {
  min-height: 560px;
}

.story-card img {
  display: block;
  width: 100%;
  height: 58%;
  object-fit: cover;
}

.story-card.large img {
  height: 67%;
}

.photo-grid {
  grid-template-columns: 1.35fr 1fr 1fr 1fr;
}

.card-body {
  padding: 18px;
}

.card-body h3 {
  margin: 12px 0 8px;
  font-size: clamp(20px, 2vw, 28px);
  line-height: 1.25;
}

.card-body p {
  margin: 0 0 16px;
  color: var(--muted);
  line-height: 1.65;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  align-items: center;
}

.subtag {
  display: inline-flex;
  width: max-content;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
}

.note-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-top: 1px solid var(--line);
  position: relative;
}

.note-card {
  display: grid;
  gap: 0 18px;
  align-items: start;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
  background: transparent;
  cursor: pointer;
  transition: transform 180ms ease, color 180ms ease;
  position: relative;
}

.note-card.has-visual {
  grid-template-columns: auto minmax(0, 1fr);
}

.note-card.no-visual {
  grid-template-columns: minmax(0, 1fr);
}

.note-card-main {
  min-width: 0;
}

.note-card:hover,
.note-card:focus-visible {
  transform: translateX(2px);
  outline: none;
}

.note-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 18px;
  bottom: 18px;
  width: 2px;
  background: transparent;
  transition: background 180ms ease;
}

.note-card:hover::before,
.note-card:focus-visible::before {
  background: rgba(36, 63, 53, 0.28);
}

.note-card-visual {
  grid-column: 1 / 2;
  grid-row: 1 / 2;
}

.note-card-head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 10px;
  margin-bottom: 8px;
}

.note-card-main {
  grid-column: 2 / 3;
  grid-row: 1 / 2;
}

.note-card.no-visual .note-card-main {
  grid-column: 1 / -1;
}

.note-card-title-row {
  display: block;
  min-width: 0;
}

.note-card-thumb {
  flex: 0 0 88px;
  width: 88px;
  height: 88px;
  border: 1px solid rgba(23, 27, 24, 0.08);
  border-radius: 6px;
  object-fit: cover;
}

.note-card-thumb.is-literary {
  object-fit: contain;
  padding: 8px;
  background: rgba(246, 247, 242, 0.92);
}

.note-card-date {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.note-card h3 {
  margin: 0 0 6px;
  font-size: clamp(17px, 1.45vw, 21px);
  line-height: 1.34;
}

.note-card p {
  max-width: 62ch;
  margin: 0 0 10px;
  color: var(--muted);
  line-height: 1.6;
}

.note-card-foot {
  display: flex;
  align-items: center;
}

.note-card.no-visual .note-card-head {
  margin-bottom: 6px;
}

.note-card-foot span {
  display: inline-flex;
  align-items: center;
  min-height: 27px;
  padding: 0 10px;
  border: 1px solid rgba(23, 27, 24, 0.1);
  border-radius: 999px;
  color: var(--muted);
  font-size: 12px;
}

.note-pagination {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.note-page-btn {
  min-width: 34px;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.42);
  cursor: pointer;
}

.note-page-btn.is-active {
  color: #fff;
  border-color: var(--forest);
  background: var(--forest);
}

.board-section {
  padding-top: clamp(36px, 6vw, 72px);
}

.board-section-head {
  align-items: center;
}

.board-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.72fr);
  gap: clamp(24px, 4vw, 48px);
  align-items: start;
}

.board-feed {
  display: grid;
  gap: 14px;
}

.board-intro {
  margin: 0;
  max-width: 58ch;
  color: var(--muted);
  line-height: 1.75;
}

.board-status {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.board-list {
  display: grid;
  gap: 12px;
}

.board-card {
  display: grid;
  gap: 10px;
  padding: 18px 18px 20px;
  border: 1px solid rgba(23, 27, 24, 0.1);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.58);
  box-shadow: 0 12px 32px rgba(18, 24, 20, 0.05);
}

.board-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.board-card-date {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.board-card h3 {
  margin: 0;
  font-size: 18px;
  line-height: 1.35;
}

.board-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.72;
  white-space: pre-wrap;
}

.board-compose {
  display: grid;
  gap: 12px;
  align-self: start;
  padding: 22px;
  border: 1px solid rgba(23, 27, 24, 0.1);
  border-radius: 12px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(248, 247, 241, 0.96)),
    var(--paper-soft);
  box-shadow: 0 16px 38px rgba(18, 24, 20, 0.07);
}

.board-compose h3 {
  margin: 0;
  font-size: 21px;
  line-height: 1.3;
}

.board-compose p {
  margin: 0;
  color: var(--muted);
  line-height: 1.72;
}

.board-form {
  display: grid;
  gap: 10px;
}

.board-form.is-disabled {
  opacity: 0.58;
}

.board-form input,
.board-form textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid rgba(23, 27, 24, 0.12);
  border-radius: 10px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.72);
  font: inherit;
}

.board-form textarea {
  resize: vertical;
  min-height: 138px;
  line-height: 1.62;
}

.primary-link-quiet {
  justify-content: center;
  min-height: 46px;
  border: none;
  cursor: pointer;
}

.reader-open {
  overflow: hidden;
}

.reader-overlay {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: clamp(16px, 4vw, 48px);
  background: rgba(14, 18, 16, 0.56);
  backdrop-filter: blur(12px);
}

.list-overlay {
  position: fixed;
  inset: 0;
  z-index: 78;
  display: grid;
  place-items: center;
  padding: clamp(16px, 4vw, 48px);
  background: rgba(14, 18, 16, 0.46);
  backdrop-filter: blur(10px);
}

.list-panel {
  width: min(920px, 100%);
  max-height: min(780px, 88vh);
  overflow: auto;
  padding: clamp(24px, 4vw, 46px);
  border: 1px solid rgba(36, 63, 53, 0.18);
  border-radius: 8px;
  background: var(--paper-soft);
  box-shadow: 0 34px 110px rgba(10, 14, 12, 0.28);
}

.list-panel h2 {
  margin: 0 0 24px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 400;
  line-height: 1.05;
}

.list-body {
  display: grid;
  gap: 10px;
}

.list-body.is-photo-list {
  grid-template-columns: repeat(auto-fill, minmax(132px, 1fr));
  gap: 8px;
}

.list-item {
  width: 100%;
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: inherit;
  background: rgba(255, 255, 255, 0.44);
  text-align: left;
  cursor: pointer;
}

.list-item:not(:has(img)) {
  grid-template-columns: 1fr;
}

.list-item:hover,
.list-item:focus-visible {
  border-color: rgba(36, 63, 53, 0.34);
  background: rgba(255, 255, 255, 0.76);
  outline: none;
}

.list-item img {
  width: 112px;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 6px;
}

.is-photo-list .list-item {
  grid-template-columns: 1fr;
  padding: 0;
  overflow: hidden;
  background: #111;
}

.is-photo-list .list-item img {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 0;
}

.is-photo-list .list-item-copy {
  display: none;
}

.list-item-copy {
  min-width: 0;
  display: grid;
  gap: 6px;
}

.list-item-copy strong {
  font-size: 17px;
  line-height: 1.35;
}

.list-item-copy span:not(.tag),
.list-item-copy small {
  color: var(--muted);
  line-height: 1.55;
}

.empty-list {
  margin: 0;
  color: var(--muted);
}

.reader-panel {
  position: relative;
  width: min(860px, 100%);
  min-width: 0;
  max-height: min(820px, 88vh);
  overflow: auto;
  padding: clamp(28px, 5vw, 58px);
  border: 1px solid rgba(36, 63, 53, 0.18);
  border-radius: 8px;
  background: var(--paper-soft);
  box-shadow: 0 34px 110px rgba(10, 14, 12, 0.32);
}

.reader-panel.is-photo-reader {
  width: min(1040px, 100%);
  padding: clamp(18px, 3vw, 34px);
}

.reader-close {
  position: sticky;
  top: 0;
  float: right;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--forest);
  background: rgba(255, 255, 255, 0.78);
  cursor: pointer;
}

.reader-meta {
  margin-bottom: 14px;
  color: var(--forest);
  font-size: 13px;
  font-weight: 800;
}

.reader-panel h2 {
  margin: 0 0 30px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 400;
  line-height: 1.08;
}

.reader-body {
  color: #252b27;
  font-size: 17px;
  line-height: 1.95;
  min-width: 0;
  overflow-wrap: anywhere;
  word-break: keep-all;
}

.reader-body h2,
.reader-body h3 {
  margin: 38px 0 12px;
  font-family: "Noto Sans KR", "Apple SD Gothic Neo", "Segoe UI", sans-serif;
  font-size: 19px;
  line-height: 1.45;
}

.reader-body p,
.reader-body ul {
  margin: 0 0 22px;
}

.reader-body ul {
  padding-left: 22px;
}

.reader-body img,
.reader-body iframe,
.reader-body video,
.reader-body table,
.reader-body pre {
  max-width: 100%;
}

.reader-body img {
  display: block;
  height: auto;
}

.reader-cover {
  margin: 0 0 28px;
}

.reader-cover img {
  display: block;
  width: 100%;
  max-height: 420px;
  object-fit: cover;
  border-radius: 8px;
}

.reader-cover.is-literary img {
  object-fit: contain;
  background: #f1f3ee;
  padding: 12px;
}

.reader-artwork {
  margin: 0 0 28px;
}

.reader-artwork img {
  display: block;
  width: 100%;
  max-height: 520px;
  object-fit: contain;
  border-radius: 8px;
  background: #f1f3ee;
}

.reader-artwork figcaption {
  display: grid;
  gap: 4px;
  margin-top: 12px;
}

.reader-artwork figcaption strong {
  font-size: 15px;
}

.reader-artwork figcaption span {
  color: var(--muted);
  font-size: 13px;
}

.reader-event {
  display: grid;
  grid-template-columns: minmax(220px, 280px) minmax(0, 1fr);
  gap: 24px;
  align-items: start;
  margin: 0 0 28px;
}

.reader-event-poster {
  margin: 0;
}

.reader-event-poster img {
  display: block;
  width: 100%;
  border: 1px solid rgba(23, 27, 24, 0.08);
  border-radius: 8px;
  background: #f1f3ee;
}

.reader-event-poster figcaption {
  display: grid;
  gap: 4px;
  margin-top: 12px;
}

.reader-event-poster figcaption strong {
  font-size: 15px;
}

.reader-event-poster figcaption span {
  color: var(--muted);
  font-size: 13px;
}

.reader-event-copy {
  display: grid;
  gap: 12px;
}

.reader-event-copy h3 {
  margin: 0;
}

.reader-event-copy p {
  margin: 0;
  color: var(--muted);
}

.reader-event-lineup {
  display: grid;
  gap: 10px;
  padding: 14px 16px;
  border: 1px solid rgba(36, 63, 53, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.5);
}

.reader-event-lineup strong {
  font-size: 14px;
}

.reader-event-lineup ul {
  margin: 0;
  padding-left: 18px;
}

.reader-event-lineup li {
  margin: 0;
  color: var(--muted);
}

.artwork-place {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(360px, 1.18fr);
  gap: 18px;
  margin-top: 42px;
  padding: 18px;
  border: 1px solid rgba(36, 63, 53, 0.16);
  border-radius: 8px;
  background: #f2f4ef;
}

.artwork-place h3 {
  margin: 12px 0 10px;
}

.artwork-place p {
  color: var(--muted);
}

.artwork-map-wrap {
  position: relative;
  min-height: 460px;
  overflow: hidden;
  border: 1px solid rgba(36, 63, 53, 0.16);
  border-radius: 8px;
  background: #fbfaf6;
}

.artwork-map {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.artwork-map-frame {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.artwork-map-fallback {
  height: 100%;
  display: grid;
  place-items: center;
  color: var(--muted);
}

.artwork-map-wrap strong {
  position: absolute;
  z-index: 2;
  left: 18px;
  bottom: 16px;
  padding: 6px 10px;
  border-radius: 999px;
  color: var(--forest);
  background: rgba(255, 255, 255, 0.8);
  font-size: 13px;
}

.reader-photo {
  display: grid;
  gap: 16px;
  margin: 0;
}

.reader-photo-frame {
  display: grid;
  place-items: center;
  min-height: min(62vh, 680px);
  border: 1px solid rgba(36, 63, 53, 0.12);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.56), rgba(236, 239, 235, 0.86)),
    #ecefeb;
  overflow: hidden;
}

.reader-photo img {
  display: block;
  width: 100%;
  max-height: 66vh;
  object-fit: contain;
  border-radius: 8px;
}

.reader-photo figcaption {
  margin-top: 16px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

.photo-place {
  margin-top: 26px;
}

.place-inline-link {
  display: inline-flex;
  align-items: center;
  width: max-content;
  min-height: 34px;
  margin-top: 10px;
  padding: 0 12px;
  border: 1px solid rgba(36, 63, 53, 0.14);
  border-radius: 999px;
  color: var(--forest);
  font-size: 13px;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.64);
}

.place-inline-link:hover {
  color: var(--ink);
}

.header-player.is-playing .header-player-line span {
  animation: squarePulse 1.7s ease-in-out infinite;
}

.header-player.is-playing .header-player-line span:nth-child(2) { animation-duration: 1.42s; animation-delay: -0.18s; }
.header-player.is-playing .header-player-line span:nth-child(3) { animation-duration: 1.76s; animation-delay: -0.26s; }
.header-player.is-playing .header-player-line span:nth-child(4) { animation-duration: 1.34s; animation-delay: -0.12s; }
.header-player.is-playing .header-player-line span:nth-child(5) { animation-duration: 1.68s; animation-delay: -0.34s; }
.header-player.is-playing .header-player-line span:nth-child(6) { animation-duration: 1.5s; animation-delay: -0.22s; }
.header-player.is-playing .header-player-line span:nth-child(7) { animation-duration: 1.72s; animation-delay: -0.28s; }
.header-player.is-playing .header-player-line span:nth-child(8) { animation-duration: 1.46s; animation-delay: -0.14s; }
.header-player.is-playing .header-player-line span:nth-child(9) { animation-duration: 1.82s; animation-delay: -0.39s; }
.header-player.is-playing .header-player-line span:nth-child(10) { animation-duration: 1.28s; animation-delay: -0.1s; }
.header-player.is-playing .header-player-line span:nth-child(11) { animation-duration: 1.62s; animation-delay: -0.24s; }
.header-player.is-playing .header-player-line span:nth-child(12) { animation-duration: 1.48s; animation-delay: -0.18s; }

.music-section {
  background: #f7f5ef;
}

.music-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}

.music-head .small-link {
  justify-self: end;
}

.music-player-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.22fr) minmax(280px, 0.78fr);
  gap: clamp(14px, 3vw, 28px);
  align-items: start;
}

.music-section {
  --player-accent: rgba(195, 226, 239, 0.96);
  --player-accent-soft: rgba(195, 226, 239, 0.24);
}

.now-playing-card {
  position: relative;
  display: grid;
  gap: 14px;
  min-height: auto;
  padding: clamp(20px, 3vw, 28px);
  border: 1px solid rgba(36, 63, 53, 0.16);
  border-radius: 8px;
  color: #fff;
  overflow: hidden;
  isolation: isolate;
  background:
    linear-gradient(150deg, rgba(36, 63, 53, 0.96), rgba(20, 25, 23, 0.92)),
    radial-gradient(circle at 20% 18%, rgba(157, 184, 198, 0.35), transparent 35%);
  box-shadow: var(--shadow);
}

.now-playing-card::before,
.now-playing-card::after {
  content: "";
  position: absolute;
  inset: auto;
  pointer-events: none;
  opacity: 0;
  transition: opacity 240ms ease;
}

.now-playing-card::before {
  z-index: 0;
  width: 220px;
  height: 220px;
  right: -30px;
  top: -24px;
  border-radius: 999px;
  background: radial-gradient(circle, var(--player-accent-soft), transparent 68%);
}

.now-playing-card::after {
  z-index: 0;
  left: -10%;
  bottom: -14%;
  width: 64%;
  height: 46%;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(235, 241, 231, 0.12), transparent 72%);
}

.now-playing-card > * {
  position: relative;
  z-index: 1;
}

.now-playing-card.is-playing::before,
.now-playing-card.is-playing::after {
  opacity: 1;
}

.now-playing-card.is-playing::before {
  animation: playerGlowPulse 6s ease-in-out infinite;
}

.now-playing-card.is-playing::after {
  animation: playerGlowDrift 12s linear infinite;
}

.now-playing-card .tag {
  color: var(--blue);
}

.now-playing-card h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(26px, 3.8vw, 42px);
  font-weight: 400;
  line-height: 1.06;
}

.now-playing-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  max-width: 34ch;
  font-size: 13px;
  line-height: 1.65;
}

.now-playing-card audio {
  width: 100%;
  min-height: 34px;
  align-self: end;
}

.now-playing-line {
  display: flex;
  align-items: end;
  flex-wrap: nowrap;
  gap: 4px;
  width: fit-content;
  height: 28px;
  margin-top: 6px;
}

.now-playing-line span {
  width: 6px;
  height: 6px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.48);
  transform-origin: center bottom;
  opacity: 0.72;
}

.now-playing-line span:nth-child(1) { margin-bottom: 2px; }
.now-playing-line span:nth-child(2) { margin-bottom: 12px; }
.now-playing-line span:nth-child(3) { margin-bottom: 5px; }
.now-playing-line span:nth-child(4) { margin-bottom: 18px; }
.now-playing-line span:nth-child(5) { margin-bottom: 8px; }
.now-playing-line span:nth-child(6) { margin-bottom: 14px; }
.now-playing-line span:nth-child(7) { margin-bottom: 4px; }
.now-playing-line span:nth-child(8) { margin-bottom: 16px; }
.now-playing-line span:nth-child(9) { margin-bottom: 7px; }
.now-playing-line span:nth-child(10) { margin-bottom: 20px; }
.now-playing-line span:nth-child(11) { margin-bottom: 10px; }
.now-playing-line span:nth-child(12) { margin-bottom: 3px; }

.now-playing-card.is-playing .now-playing-line span {
  animation: squarePulse 1.6s ease-in-out infinite;
  background: var(--player-accent);
}

.now-playing-card.is-playing .now-playing-line span:nth-child(2) { animation-duration: 1.42s; animation-delay: -0.18s; }
.now-playing-card.is-playing .now-playing-line span:nth-child(3) { animation-duration: 1.76s; animation-delay: -0.26s; }
.now-playing-card.is-playing .now-playing-line span:nth-child(4) { animation-duration: 1.34s; animation-delay: -0.12s; }
.now-playing-card.is-playing .now-playing-line span:nth-child(5) { animation-duration: 1.68s; animation-delay: -0.34s; }
.now-playing-card.is-playing .now-playing-line span:nth-child(6) { animation-duration: 1.5s; animation-delay: -0.22s; }
.now-playing-card.is-playing .now-playing-line span:nth-child(7) { animation-duration: 1.72s; animation-delay: -0.28s; }
.now-playing-card.is-playing .now-playing-line span:nth-child(8) { animation-duration: 1.46s; animation-delay: -0.14s; }
.now-playing-card.is-playing .now-playing-line span:nth-child(9) { animation-duration: 1.82s; animation-delay: -0.39s; }
.now-playing-card.is-playing .now-playing-line span:nth-child(10) { animation-duration: 1.28s; animation-delay: -0.1s; }
.now-playing-card.is-playing .now-playing-line span:nth-child(11) { animation-duration: 1.62s; animation-delay: -0.24s; }
.now-playing-card.is-playing .now-playing-line span:nth-child(12) { animation-duration: 1.48s; animation-delay: -0.18s; }

.player-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.player-controls button {
  min-height: 32px;
  padding: 0 10px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.86);
  background: rgba(255, 255, 255, 0.1);
  cursor: pointer;
  font-size: 12px;
}

.player-controls button[aria-pressed="true"] {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.86);
}

.music-list {
  display: grid;
  gap: 6px;
}

.music-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  min-height: auto;
  padding: 8px 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.5);
}

.music-card.is-playing {
  border-color: color-mix(in srgb, var(--player-accent) 28%, rgba(36, 63, 53, 0.18));
  background: linear-gradient(90deg, color-mix(in srgb, var(--player-accent-soft) 58%, rgba(255, 255, 255, 0.9)) 0%, rgba(255, 255, 255, 0.82) 22%);
  box-shadow: inset 3px 0 0 var(--player-accent), 0 12px 28px rgba(36, 63, 53, 0.08);
}

.music-card.is-playing .track-index {
  color: var(--forest);
}

.music-card.is-playing .track-play-btn {
  border-color: color-mix(in srgb, var(--player-accent) 26%, rgba(36, 63, 53, 0.18));
  background: color-mix(in srgb, var(--player-accent-soft) 56%, rgba(255, 255, 255, 0.68));
}

.music-card h3 {
  margin: 0;
  font-size: 15px;
  line-height: 1.25;
}

.music-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.track-index {
  display: inline-block;
  min-width: 24px;
  margin-right: 6px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
}

.track-play-btn {
  min-height: 28px;
  padding: 0 9px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--forest);
  background: rgba(255, 255, 255, 0.72);
  cursor: pointer;
  font-size: 12px;
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.track-play-btn:hover,
.track-play-btn:focus-visible {
  transform: translateY(-1px);
  outline: none;
}

@keyframes squarePulse {
  0%, 100% { transform: translateY(0) scale(0.96); opacity: 0.48; }
  30% { transform: translateY(-2px) scale(1); opacity: 0.8; }
  55% { transform: translateY(1px) scale(0.94); opacity: 0.62; }
  78% { transform: translateY(-3px) scale(1.02); opacity: 0.88; }
}

@keyframes playerGlowPulse {
  0%, 100% { transform: scale(0.94); opacity: 0.36; }
  50% { transform: scale(1.08); opacity: 0.72; }
}

@keyframes playerGlowDrift {
  0% { transform: translate3d(0, 0, 0) scale(0.96); }
  50% { transform: translate3d(16px, -10px, 0) scale(1.05); }
  100% { transform: translate3d(0, 0, 0) scale(0.96); }
}

.places-section {
  display: grid;
  grid-template-columns: minmax(0, 1.28fr) minmax(300px, 0.72fr);
  gap: clamp(20px, 4vw, 52px);
  align-items: start;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.28), rgba(255, 255, 255, 0)),
    #ecefeb;
}

.places-hero-section {
  padding-top: 36px;
}

.places-map-column {
  display: grid;
  gap: 16px;
  align-content: start;
  padding-top: 22px;
}

.places-map-head {
  padding-left: 2px;
}

.places-intro {
  margin: -2px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

.places-copy {
  display: grid;
  align-content: start;
}

.place-list {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.place-item {
  display: grid;
  gap: 8px;
  padding: 16px 18px;
  text-align: left;
  border: 1px solid rgba(36, 63, 53, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.48);
  color: var(--ink);
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.place-item strong {
  font-size: 19px;
}

.place-item span:last-child {
  color: var(--muted);
  line-height: 1.55;
}

.place-item:hover,
.place-item:focus-visible,
.place-item.is-active {
  transform: translateY(-2px);
  border-color: rgba(36, 63, 53, 0.3);
  background: rgba(255, 255, 255, 0.82);
  outline: none;
}

.map-preview {
  position: relative;
  aspect-ratio: 3 / 2;
  border: 1px solid rgba(36, 63, 53, 0.18);
  border-radius: 12px;
  overflow: hidden;
  background: #f7f8f4;
  box-shadow: var(--shadow);
}

.map-preview-frame {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.map-panel {
  width: 100%;
  padding: 20px;
  border: 1px solid rgba(36, 63, 53, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.84);
  backdrop-filter: blur(16px);
}

.map-panel-static {
  height: auto;
  min-height: 0;
  margin: 22px 0 14px;
  box-sizing: border-box;
  align-self: start;
}

.map-panel-top {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
}

.map-mode-toggle {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 1px solid rgba(36, 63, 53, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.map-mode-toggle:hover,
.map-mode-toggle:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(36, 63, 53, 0.28);
  background: #fff;
  outline: none;
}

.map-mode-toggle-floating {
  position: absolute;
  left: 18px;
  top: 18px;
  z-index: 2;
}

.map-panel strong {
  display: block;
  margin: 0 0 6px;
  font-size: 22px;
  line-height: 1.25;
}

.map-panel p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.map-panel p + p {
  margin-top: 8px;
}

.map-panel-notes {
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid rgba(36, 63, 53, 0.1);
}

.map-panel-select {
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid rgba(36, 63, 53, 0.1);
}

.place-list-inline {
  gap: 6px;
  margin-top: 10px;
}

.place-list-inline .place-item {
  gap: 2px;
  padding: 9px 10px;
  align-content: start;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
}

.place-list-inline .place-item .tag {
  color: var(--forest);
  font-size: 10px;
}

.place-list-inline .place-item strong {
  font-size: 13px;
  line-height: 1.25;
}

.place-list-inline .place-item span:last-child {
  display: none;
}

.map-panel-label {
  display: block;
  margin-bottom: 10px;
  color: var(--forest);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.map-note-list {
  display: grid;
  gap: 6px;
}

.map-note-link {
  display: grid;
  gap: 2px;
  padding: 9px 11px;
  text-align: left;
  border: 1px solid rgba(36, 63, 53, 0.1);
  border-radius: 8px;
  background: rgba(246, 247, 242, 0.92);
  color: var(--ink);
  cursor: pointer;
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.map-note-link:hover,
.map-note-link:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(36, 63, 53, 0.24);
  background: rgba(255, 255, 255, 0.98);
  outline: none;
}

.map-note-link strong {
  font-size: 13px;
  line-height: 1.45;
}

.map-note-link small {
  color: var(--muted);
  font-size: 11px;
}

.map-note-empty {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
}

.timeline article {
  display: grid;
  gap: 10px;
  padding: 28px 24px 0 0;
  border-right: 1px solid var(--line);
}

.timeline article:last-child {
  border-right: 0;
}

.timeline time {
  color: var(--forest);
  font-size: 13px;
  font-weight: 800;
}

.timeline strong {
  font-size: 19px;
}

.timeline span {
  color: var(--muted);
  line-height: 1.6;
}

.about-section {
  background: #f1efe8;
}

.about-profile {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  margin-bottom: 22px;
  padding: 18px 20px;
  border: 1px solid rgba(23, 27, 24, 0.1);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.48);
}

.about-profile-image {
  width: 96px;
  height: 96px;
  display: block;
  border-radius: 14px;
  object-fit: cover;
  background: #ddd7cc;
}

.about-profile-copy {
  min-width: 0;
}

.about-profile-copy h3 {
  margin: 10px 0 8px;
  font-size: 20px;
  line-height: 1.3;
}

.about-profile-copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.72;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.about-card {
  display: grid;
  gap: 12px;
  padding: 22px;
  border: 1px solid rgba(23, 27, 24, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.56);
}

.about-card h3 {
  margin: 0;
  font-size: 20px;
  line-height: 1.35;
}

.about-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.site-credit {
  padding: 0 clamp(20px, 5vw, 72px) 40px;
  background: #f1efe8;
}

.site-credit-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 18px;
  border-top: 1px solid rgba(23, 27, 24, 0.12);
  color: var(--muted);
  font-size: 13px;
}

.site-credit-label {
  color: var(--forest);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-credit strong {
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
}

.site-credit a {
  color: var(--muted);
}

.site-credit a:hover {
  color: var(--ink);
}

@media (max-width: 920px) {
  .site-header {
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .header-player {
    width: 100%;
    justify-content: flex-end;
  }

  .header-player-shell {
    max-width: 100%;
  }

  .header-player-copy {
    max-width: 108px;
  }

  .nav-links {
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 10px 16px;
  }

  .hero {
    min-height: 880px;
    padding-top: 128px;
  }

  .edition-strip,
  .section-head,
  .archive-grid,
  .places-section,
  .places-map-column,
  .timeline,
  .about-profile,
  .about-grid,
  .board-layout,
  .note-list,
  .music-list,
  .music-player-layout {
    grid-template-columns: 1fr;
  }

  .edition-grid {
    grid-template-columns: 1fr;
  }

  .edition-card-wide {
    grid-column: auto;
    min-height: 174px;
  }

  .about-profile {
    align-items: start;
  }

  .now-playing-card {
    position: relative;
    top: auto;
    min-height: auto;
  }

  .content-block-head {
    align-items: start;
    flex-direction: column;
  }

  .category-strip {
    justify-content: flex-start;
  }

  .reader-event {
    grid-template-columns: 1fr;
  }

  .story-card,
  .story-card.large {
    min-height: auto;
  }

  .story-card img,
  .story-card.large img {
    height: auto;
    aspect-ratio: 16 / 10;
  }

  .site-credit-inner {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 620px) {
  .site-header {
    position: fixed;
    padding: 16px;
    row-gap: 10px;
    background: linear-gradient(to bottom, rgba(9, 14, 12, 0.82), rgba(9, 14, 12, 0.42));
  }

  .brand {
    flex: 1 1 auto;
    min-width: 0;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav-links {
    display: none;
    width: 100%;
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    background: rgba(9, 14, 12, 0.7);
    backdrop-filter: blur(14px);
  }

  .site-header.is-menu-open .nav-links {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px 12px;
  }

  .nav-links a {
    min-height: 34px;
    display: inline-flex;
    align-items: center;
  }

  .header-player {
    width: 100%;
    order: 4;
  }

  .header-player-shell {
    width: 100%;
    max-width: none;
    min-height: 42px;
    justify-content: space-between;
    gap: 10px;
    padding: 0 10px;
  }

  .header-player-copy {
    max-width: none;
    flex: 1 1 auto;
  }

  .header-player-copy strong {
    font-size: 12px;
  }

  .header-player-line,
  .header-player-controls [data-prev-track],
  .header-player-controls [data-next-track],
  .header-player-controls [data-loop-track] {
    display: none;
  }

  .header-player-controls {
    gap: 4px;
  }

  .header-player-controls button {
    width: 30px;
    height: 30px;
  }

  .music-dropdown {
    width: min(100vw - 32px, 420px);
    right: 0;
  }

  .hero {
    min-height: 820px;
    padding: 156px 16px 48px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    width: min(280px, 100%);
  }

  .text-link {
    justify-content: flex-start;
  }

  .note-card {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .note-card-visual,
  .note-card-main,
  .note-card-foot {
    grid-column: auto;
    grid-row: auto;
  }

  .board-compose {
    padding: 18px;
  }

  .section {
    padding: 58px 16px;
  }

  .site-credit {
    padding: 0 16px 32px;
  }

  .map-preview {
    margin-top: 0;
  }

  .map-preview-frame {
    height: 100%;
  }

  .timeline article {
    border-right: 0;
    border-bottom: 1px solid var(--line);
    padding: 24px 0;
  }
}
