*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
:root {
  --dc-bg:        #090909;
  --dc-text:      #c8bfb0;
  --dc-text-dim:  #5a5248;
  --dc-text-pull: #ddd5c6;
  --dc-accent:    #e77500;
  --dc-serif:     'Noto Serif KR', 'Georgia', serif;
  --dc-sans:      'Noto Sans KR', -apple-system, sans-serif;
  --dc-width:     640px;
}
html { scroll-behavior: smooth; }
body {
  background: var(--dc-bg);
  color: var(--dc-text);
  font-family: var(--dc-sans);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.95;
  -webkit-font-smoothing: antialiased;
  user-select: none;
  -webkit-user-select: none;
}
.gnb {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0 48px;
  height: 64px;
  display: flex;
  align-items: center;
  box-sizing: border-box;
  transition: background 0.4s ease, backdrop-filter 0.4s ease,
              box-shadow 0.4s ease, border-color 0.4s ease;
}
.gnb.scrolled {
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(32px) saturate(180%) brightness(1.08);
  -webkit-backdrop-filter: blur(32px) saturate(180%) brightness(1.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.10),
    0 8px 40px rgba(0, 0, 0, 0.45);
}
.gnb-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}
.gnb-logo {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: #f0ece6;
  text-decoration: none;
  white-space: nowrap;
}
.gnb-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.gnb-link {
  font-size: 13px;
  font-weight: 400;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  transition: color 0.2s;
  letter-spacing: 0.02em;
  white-space: nowrap;
}
.gnb-link:hover,
.gnb-link.active { color: #f0ece6; }
.gnb.scrolled .gnb-link { color: rgba(255,255,255,0.60); }
.gnb.scrolled .gnb-link:hover,
.gnb.scrolled .gnb-link.active { color: rgba(255,255,255,0.95); }
.gnb-link-cta { color: #e77500 !important; font-weight: 600; }
.gnb.scrolled .gnb-link-cta { color: #e77500 !important; }
.gnb-link-my {
  background: #e77500 !important;
  color: #fff !important;
  padding: 5px 12px !important;
  border-radius: 6px;
  font-size: 11px !important;
  font-weight: 700;
  letter-spacing: 0.1em;
  transition: background 0.2s;
}
.gnb-link-my:hover { background: #ff8c1a !important; }
.menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.menu-btn span {
  display: block;
  width: 20px;
  height: 1.5px;
  background: #f0ece6;
  transition: transform 0.3s, opacity 0.3s;
}
.menu-btn.active span:nth-child(1) { transform: rotate(45deg) translate(4px, 4px); }
.menu-btn.active span:nth-child(2) { opacity: 0; }
.menu-btn.active span:nth-child(3) { transform: rotate(-45deg) translate(4px, -4px); }
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(10,10,10,0.97);
  z-index: 99;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.mobile-menu.open { display: flex; opacity: 1; pointer-events: auto; }
.mobile-link {
  font-size: 20px;
  color: rgba(255,255,255,0.55);
  letter-spacing: 1px;
  text-decoration: none;
  transition: color 0.2s;
}
.mobile-link:hover,
.mobile-link.active { color: #f0ece6; }
.mobile-link-cta { color: #e77500 !important; }
.mobile-link-my {
  display: inline-block !important;
  background: #e77500;
  color: #fff !important;
  padding: 10px 24px;
  border-radius: 8px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-align: center;
  margin-top: 8px;
}
.mobile-link-my:hover { background: #ff8c1a; }
.dc-wrap {
  max-width: var(--dc-width);
  margin: 0 auto;
  padding: 112px 28px 140px;
}
.dc-label {
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--dc-accent);
  font-weight: 400;
  margin-bottom: 48px;
}
.dc-opening {
  font-family: var(--dc-serif);
  font-size: 1.25rem;
  line-height: 1.75;
  color: var(--dc-text-pull);
  font-weight: 400;
  margin-bottom: 12px;
  word-break: keep-all;
}
.dc-opening-attr {
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--dc-text-dim);
  margin-bottom: 60px;
  font-weight: 300;
}
.dc-rule {
  width: 32px;
  height: 1px;
  background: var(--dc-text-dim);
  opacity: 0.4;
  margin: 48px 0;
}
.dc-p,
.dc-essay-body p {
  margin-bottom: 28px;
  word-break: keep-all;
  letter-spacing: -0.01em;
}
.dc-highlight {
  background: rgba(231, 117, 0, 0.2);
  border-radius: 3px;
  padding: 1px 3px;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}
.dc-accent-text {
  color: var(--dc-accent);
}
.dc-callout {
  background: rgba(231, 117, 0, 0.05);
  border: 1px solid rgba(231, 117, 0, 0.15);
  border-left: 3px solid rgba(231, 117, 0, 0.55);
  border-radius: 0 8px 8px 0;
  padding: 18px 22px;
  margin: 36px 0;
  line-height: 1.8;
  color: var(--dc-text);
  font-size: 0.93rem;
  font-family: var(--dc-sans);
  font-weight: 300;
  word-break: keep-all;
}
.dc-pull {
  font-family: var(--dc-serif);
  font-size: 1.1rem;
  line-height: 1.85;
  color: var(--dc-text-pull);
  font-weight: 400;
  padding: 36px 0 36px 24px;
  border-left: 1.5px solid rgba(231, 117, 0, 0.3);
  margin: 48px 0;
  word-break: keep-all;
}
.dc-couple {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 40px 0;
}
.dc-couple-q {
  font-size: 14px;
  line-height: 1.75;
  color: var(--dc-text-dim);
  font-style: italic;
  padding-left: 20px;
  border-left: 1px solid rgba(255,255,255,0.1);
  word-break: keep-all;
}
.dc-closing {
  margin-top: 80px;
  padding-top: 48px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.dc-closing-text {
  font-family: var(--dc-serif);
  font-size: 1.05rem;
  line-height: 2;
  color: var(--dc-text-pull);
  font-weight: 400;
  margin-bottom: 48px;
  word-break: keep-all;
}
.dc-sig {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.dc-sig-name {
  font-family: var(--dc-serif);
  font-size: 15px;
  color: var(--dc-text);
  font-weight: 400;
  letter-spacing: 0.04em;
}
.dc-sig-brand {
  font-size: 10px;
  letter-spacing: 0.25em;
  color: var(--dc-text-dim);
  font-weight: 400;
  text-transform: uppercase;
}
.dc-edit-btn {
  display: none;
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 200;
  background: var(--dc-accent);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 10px 20px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.05em;
  cursor: pointer;
  font-family: var(--dc-sans);
  box-shadow: 0 4px 20px rgba(231, 117, 0, 0.35);
  transition: background 0.2s, transform 0.15s;
}
.dc-edit-btn:hover { background: #ff8c1a; transform: translateY(-1px); }
.dc-editor-bar {
  display: none;
  position: fixed;
  top: 64px;
  left: 0; right: 0;
  z-index: 150;
  background: #111;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding: 10px 28px;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.dc-editor-bar.active { display: flex; }
.dc-editor-tools {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-wrap: wrap;
}
.dc-tool {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--dc-text);
  border-radius: 5px;
  padding: 5px 11px;
  font-size: 13px;
  cursor: pointer;
  font-family: var(--dc-sans);
  transition: background 0.15s;
  white-space: nowrap;
}
.dc-tool:hover { background: rgba(255,255,255,0.12); }
.dc-tool-hl { background: rgba(231,117,0,0.28); border-radius: 2px; padding: 0 3px; }
.dc-tool-ac { color: var(--dc-accent); }
.dc-tool-sep {
  width: 1px;
  height: 20px;
  background: rgba(255,255,255,0.12);
  margin: 0 4px;
}
.dc-editor-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}
.dc-read-time-wrap {
  font-size: 12px;
  color: var(--dc-text-dim);
  display: flex;
  align-items: center;
  gap: 5px;
}
.dc-read-time-wrap input {
  width: 40px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  color: var(--dc-text);
  border-radius: 4px;
  padding: 3px 6px;
  font-size: 12px;
  text-align: center;
  font-family: var(--dc-sans);
}
.dc-btn-save {
  background: var(--dc-accent);
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 7px 18px;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  font-family: var(--dc-sans);
  transition: background 0.15s;
}
.dc-btn-save:hover { background: #ff8c1a; }
.dc-btn-cancel {
  background: transparent;
  color: var(--dc-text-dim);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 6px;
  padding: 7px 14px;
  font-size: 13px;
  cursor: pointer;
  font-family: var(--dc-sans);
  transition: color 0.15s;
}
.dc-btn-cancel:hover { color: var(--dc-text); }
#essayBody[contenteditable="true"] {
  outline: none;
  border: 1px dashed rgba(231,117,0,0.3);
  border-radius: 8px;
  padding: 20px;
  margin: -20px;
  min-height: 200px;
}
#essayBody[contenteditable="true"]:focus {
  border-color: rgba(231,117,0,0.6);
}
body.dc-editing .dc-wrap { padding-top: 148px; }
body.dc-editing #essayBody {
  user-select: text;
  -webkit-user-select: text;
  cursor: text;
}
.dc-back {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--dc-text-dim);
  text-decoration: none;
  margin-bottom: 24px;
  transition: color 0.2s;
}
.dc-back:hover { color: var(--dc-text); }
.dc-title-input {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--dc-text);
  border-radius: 5px;
  padding: 5px 10px;
  font-size: 12px;
  font-family: var(--dc-sans);
  width: 200px;
  outline: none;
  transition: border-color 0.15s;
}
.dc-title-input:focus { border-color: rgba(231,117,0,0.5); }
.dc-btn-publish {
  background: var(--dc-accent);
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 7px 16px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  font-family: var(--dc-sans);
  transition: background 0.15s;
  white-space: nowrap;
}
.dc-btn-publish:hover { background: #ff8c1a; }
.dc-btn-publish:disabled { opacity: 0.5; cursor: default; }
.dc-btn-published {
  background: rgba(255,255,255,0.08) !important;
  color: rgba(255,255,255,0.5) !important;
  font-weight: 400;
  cursor: pointer !important;
}
.dc-btn-published:hover {
  background: rgba(255,80,80,0.15) !important;
  color: #ff6b6b !important;
}
.dc-spell-panel {
  position: fixed;
  top: calc(64px + 48px);
  left: 50%;
  transform: translateX(-50%);
  z-index: 160;
  background: #1a1814;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  padding: 16px 20px;
  width: min(560px, 92vw);
  max-height: 280px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.6);
}
.dc-spell-inner {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.dc-spell-ok {
  font-size: 13px;
  color: #6abf69;
  letter-spacing: 0.02em;
}
.dc-spell-item {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  padding: 6px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  font-size: 13px;
}
.dc-spell-item.dc-spell-applied { opacity: 0.4; }
.dc-spell-orig  { color: #ff6b6b; text-decoration: line-through; }
.dc-spell-arrow { color: var(--dc-text-dim); }
.dc-spell-cand  { color: #6abf69; font-weight: 500; }
.dc-spell-help  { color: var(--dc-text-dim); font-size: 11px; flex: 1; }
.dc-spell-apply {
  background: rgba(231,117,0,0.2);
  border: 1px solid rgba(231,117,0,0.4);
  color: var(--dc-accent);
  border-radius: 4px;
  padding: 3px 9px;
  font-size: 11px;
  cursor: pointer;
  font-family: var(--dc-sans);
  transition: background 0.15s;
  white-space: nowrap;
  flex-shrink: 0;
}
.dc-spell-apply:hover { background: rgba(231,117,0,0.35); }
.dc-spell-apply:disabled { opacity: 0.4; cursor: default; }
.dc-spell-close {
  align-self: flex-end;
  background: none;
  border: none;
  color: var(--dc-text-dim);
  font-size: 12px;
  cursor: pointer;
  font-family: var(--dc-sans);
  padding: 2px 4px;
  transition: color 0.15s;
}
.dc-spell-close:hover { color: var(--dc-text); }
body.dc-editing .dc-wrap.dc-spell-open { padding-top: 200px; }
.dc-accordion-wrap {
  padding-top: 90px;
  padding-bottom: 120px;
}
.dc-accordion-header {
  max-width: 820px;
  margin: 0 auto 52px;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.dc-label {
  font-size: 10px;
  letter-spacing: 0.28em;
  color: var(--dc-text-dim);
  font-weight: 400;
}
.dc-header-text {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.dc-subtitle {
  font-size: 12px;
  color: var(--dc-text-dim);
  letter-spacing: 0.02em;
  line-height: 1.55;
  font-weight: 300;
}
.dc-new-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(231,117,0,0.12);
  border: 1px solid rgba(231,117,0,0.35);
  color: var(--dc-accent);
  border-radius: 6px;
  padding: 7px 14px;
  font-size: 12px;
  font-weight: 500;
  cursor: pointer;
  font-family: var(--dc-sans);
  letter-spacing: 0.04em;
  transition: background 0.2s;
}
.dc-new-btn:hover { background: rgba(231,117,0,0.22); }
.dc-new-btn:disabled { opacity: 0.5; cursor: default; }
.dc-cf-stage {
  position: relative;
  height: 240px;
  perspective: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
  margin: 0 auto 40px;
}
.dc-cf-track {
  position: relative;
  width: 130px;
  height: 175px;
  flex-shrink: 0;
}
.dc-cf-item {
  display: block;
  position: absolute;
  top: 0; left: 0;
  width: 130px;
  height: 175px;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  -webkit-tap-highlight-color: transparent;
  transition:
    transform 0.5s cubic-bezier(0.4, 0, 0.2, 1),
    opacity   0.5s ease;
  transform-origin: center center;
}
.dc-cf-item:focus { outline: none; }
.dc-sd-card {
  width: 130px;
  height: 175px;
  background: linear-gradient(155deg, #1e1e1e 0%, #0d0d0d 100%);
  clip-path: polygon(0 14px, 14px 0, 100% 0, 100% 100%, 0 100%);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.06),
    0 2px 14px rgba(0,0,0,0.6);
  transition: box-shadow 0.35s ease;
}
.dc-cf-item.active .dc-sd-card {
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.08),
    0 0 0 1px rgba(231,117,0,0.35),
    0 8px 30px rgba(0,0,0,0.7),
    0 0 20px rgba(231,117,0,0.1);
}
.dc-sd-stripe {
  height: 6px;
  background: linear-gradient(90deg, var(--dc-accent) 0%, rgba(231,117,0,0.45) 100%);
  flex-shrink: 0;
}
.dc-sd-body {
  flex: 1;
  padding: 9px 11px 6px;
  display: flex;
  flex-direction: column;
  min-height: 0;
  overflow: hidden;
}
.dc-sd-brand {
  font-size: 7px;
  letter-spacing: 0.2em;
  color: rgba(231,117,0,0.4);
  font-weight: 500;
  text-transform: uppercase;
  flex-shrink: 0;
}
.dc-sd-vol {
  font-size: 21px;
  font-weight: 700;
  color: #ddd5c6;
  letter-spacing: 0.04em;
  line-height: 1;
  margin-top: 7px;
  flex-shrink: 0;
  display: flex;
  align-items: baseline;
  gap: 5px;
}
.dc-cf-item.active .dc-sd-vol { color: var(--dc-accent); }
.dc-sd-title-text {
  font-size: 9px;
  color: rgba(200,191,176,0.5);
  line-height: 1.5;
  word-break: keep-all;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-top: 6px;
  flex: 1;
}
.dc-sd-label {
  height: 28px;
  background: rgba(255,255,255,0.025);
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 0 11px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-shrink: 0;
}
.dc-sd-date, .dc-sd-time {
  font-size: 7.5px;
  color: rgba(200,191,176,0.3);
  letter-spacing: 0.04em;
}
.dc-draft-badge {
  font-size: 7px;
  background: rgba(255,200,0,0.12);
  border: 1px solid rgba(255,200,0,0.28);
  color: rgba(255,200,0,0.65);
  border-radius: 3px;
  padding: 1px 4px;
  letter-spacing: 0.05em;
  font-weight: 500;
  vertical-align: middle;
}
.dc-cf-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 20;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.09);
  color: rgba(200,191,176,0.45);
  border-radius: 50%;
  width: 38px; height: 38px;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s, color 0.15s;
  font-family: sans-serif;
  -webkit-user-select: none;
  user-select: none;
}
.dc-cf-nav:hover { background: rgba(255,255,255,0.1); color: var(--dc-text); }
.dc-cf-nav:disabled { opacity: 0.25; cursor: default; }
.dc-cf-prev { left: calc(50% - 65px - 62px); }
.dc-cf-next { right: calc(50% - 65px - 62px); }
.dc-cf-info {
  max-width: 640px;
  margin: 0 auto 44px;
  padding: 0 32px;
  text-align: center;
  min-height: 54px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}
.dc-cf-vol-label {
  font-size: 10px;
  letter-spacing: 0.22em;
  color: var(--dc-accent);
  opacity: 0.75;
  font-weight: 500;
}
.dc-cf-title-label {
  font-family: var(--dc-serif);
  font-size: 1.1rem;
  color: var(--dc-text);
  font-weight: 400;
  letter-spacing: -0.01em;
}
.dc-cf-meta-label {
  font-size: 11px;
  color: var(--dc-text-dim);
  letter-spacing: 0.04em;
}
.dc-essay-header {
  margin-bottom: 40px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.dc-essay-title {
  font-family: var(--dc-serif);
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--dc-text-pull);
  line-height: 1.45;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.dc-essay-byline {
  font-size: 11px;
  color: var(--dc-text-dim);
  letter-spacing: 0.08em;
  font-family: var(--dc-sans);
  font-weight: 300;
}
.dc-cf-content {
  max-width: var(--dc-width);
  margin: 0 auto;
  padding: 0 32px;
}
.dc-cf-essay {
  animation: dc-fadeIn 0.35s ease;
}
@keyframes dc-fadeIn {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: none; }
}
.dc-essay-body[contenteditable="true"] {
  outline: none;
  border: 1px dashed rgba(231,117,0,0.3);
  border-radius: 8px;
  padding: 20px;
  margin: -20px;
  min-height: 200px;
}
.dc-essay-body[contenteditable="true"]:focus {
  border-color: rgba(231,117,0,0.6);
}
body.dc-editing .dc-essay-body {
  user-select: text;
  -webkit-user-select: text;
  cursor: text;
}
body.dc-editing .dc-essay-header {
  opacity: 0.45;
  pointer-events: none;
}
body.dc-editing .dc-cf-content { padding-top: 148px; }
.dc-essay-body:empty {
  min-height: 80px;
}
.dc-essay-body:empty::before {
  content: '아직 작성된 내용이 없습니다. 편집 버튼을 눌러 시작해보세요.';
  color: rgba(255,255,255,0.15);
  font-size: 13px;
  font-family: var(--dc-sans);
  font-weight: 300;
  font-style: italic;
  display: block;
  padding: 16px 0;
  line-height: 1.6;
}
.dc-item-footer {
  padding: 40px 0;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  border-top: 1px solid rgba(255,255,255,0.06);
  margin-top: 60px;
}
.dc-item-edit-btn {
  display: none;
  background: rgba(231,117,0,0.1);
  border: 1px solid rgba(231,117,0,0.28);
  color: var(--dc-accent);
  border-radius: 6px;
  padding: 6px 14px;
  font-size: 12px;
  cursor: pointer;
  font-family: var(--dc-sans);
  letter-spacing: 0.04em;
  transition: background 0.15s;
  flex-shrink: 0;
}
.dc-item-edit-btn:hover { background: rgba(231,117,0,0.2); }
.dc-item-delete-btn {
  display: none;
  background: rgba(200,50,50,0.08);
  border: 1px solid rgba(200,50,50,0.25);
  color: #c04040;
  border-radius: 6px;
  padding: 6px 14px;
  font-size: 12px;
  cursor: pointer;
  font-family: var(--dc-sans);
  letter-spacing: 0.04em;
  transition: background 0.15s;
  flex-shrink: 0;
}
.dc-item-delete-btn:hover { background: rgba(200,50,50,0.18); }
.dc-item-admin-btns {
  display: flex;
  gap: 8px;
  align-items: center;
}
.dc-cf-empty {
  font-size: 13px;
  color: var(--dc-text-dim);
  padding: 80px 0;
  text-align: center;
  letter-spacing: 0.04em;
}
@media (max-width: 768px) {
  .dc-accordion-wrap { padding-bottom: 215px; }
  .dc-cf-stage {
    position: fixed;
    bottom: 0; left: 0; right: 0;
    z-index: 50;
    height: auto;
    margin: 0;
    padding: 12px 0 calc(12px + env(safe-area-inset-bottom));
    background: rgba(9,9,9,0.97);
    backdrop-filter: blur(28px) saturate(180%);
    -webkit-backdrop-filter: blur(28px) saturate(180%);
    border-top: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 -6px 32px rgba(0,0,0,0.6);
  }
  .dc-cf-item, .dc-sd-card { width: 104px; height: 140px; }
  .dc-cf-track { width: 104px; height: 140px; }
  .dc-sd-vol { font-size: 18px; }
  .dc-cf-nav { width: 32px; height: 32px; font-size: 18px; }
  .dc-cf-prev { left: calc(50% - 52px - 50px); }
  .dc-cf-next { right: calc(50% - 52px - 50px); }
  .dc-cf-content, .dc-accordion-header { padding-left: 20px; padding-right: 20px; }
}
@media (min-width: 769px) {
  .dc-accordion-wrap {
    padding-top: 80px;
    padding-bottom: 80px;
  }
  .dc-accordion-header {
    max-width: none;
    padding: 0 40px 20px;
    margin-bottom: 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }
  .dc-accordion-wrap {
    max-width: none;
    padding-left: 0;
    padding-right: 0;
  }
  .dc-accordion {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    min-height: calc(100vh - 200px);
  }
  .dc-cf-stage {
    position: sticky;
    top: 80px;
    flex-shrink: 0;
    width: 200px;
    height: calc(100vh - 80px);
    overflow-y: auto;
    overflow-x: hidden;
    perspective: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 28px 20px;
    margin: 0;
    border-right: 1px solid rgba(255,255,255,0.06);
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  .dc-cf-stage::-webkit-scrollbar { display: none; }
  .dc-cf-nav { display: none; }
  .dc-cf-track {
    position: static;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    width: auto;
    height: auto;
  }
  .dc-cf-item {
    position: relative;
    width: 120px;
    opacity: 0.38;
    transition: transform 0.2s ease, opacity 0.25s ease;
    height: 161px;
  }
  .dc-cf-item:hover:not(.active) { transform: translateX(4px); opacity: 0.62; }
  .dc-cf-item.active { transform: translateX(8px); opacity: 1; }
  .dc-cf-item.active::before {
    content: '';
    position: absolute;
    left: -14px; top: 20%; bottom: 20%;
    width: 3px;
    background: var(--dc-accent);
    border-radius: 0 2px 2px 0;
    opacity: 0.8;
  }
  .dc-sd-card {
    width: 120px;
    height: 161px;
  }
  .dc-sd-vol { font-size: 20px; }
  .dc-cf-info { display: none; }
  .dc-cf-content {
    flex: 1;
    max-width: none;
    padding: 40px 60px;
    margin: 0;
  }
}
.dc-footer {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 48px 40px;
  margin-top: 0;
}
.dc-footer-inner {
  max-width: var(--dc-width);
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
}
.dc-footer-logo {
  display: block;
  font-size: 12px;
  letter-spacing: 0.2em;
  color: var(--dc-text-dim);
  font-weight: 400;
  margin-bottom: 14px;
}
.dc-footer-info {
  font-size: 11px;
  line-height: 1.9;
  color: var(--dc-text-dim);
  font-weight: 300;
}
.dc-footer-rebrand {
  font-size: 11px;
  color: var(--dc-text-dim);
  margin-top: 10px;
  opacity: 0.6;
  font-weight: 300;
}
.dc-footer-sns {
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: flex-end;
  flex-shrink: 0;
}
.dc-footer-sns a {
  font-size: 11px;
  color: var(--dc-text-dim);
  text-decoration: none;
  letter-spacing: 0.04em;
  font-weight: 300;
  transition: color 0.3s;
}
.dc-footer-sns a:hover { color: var(--dc-text); }
@media (max-width: 768px) {
  .gnb { padding: 0 24px; }
  .gnb-links { display: none; }
  .menu-btn { display: flex; }
  .mobile-menu { display: flex; }
  .dc-essay-header { display: none; }
}
@media (max-width: 480px) {
  .dc-wrap { padding: 96px 24px 100px; }
  .dc-opening { font-size: 1.1rem; }
  .dc-pull { font-size: 1rem; padding-left: 18px; }
  .dc-footer-inner { flex-direction: column; gap: 24px; }
  .dc-footer-sns { align-items: flex-start; }
}
