/* ── PROGRESS BAR ── */
.progress-bar-wrap {
  position: fixed;
  top: 52px;
  left: 0; right: 0;
  z-index: 199;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 48px;
  height: 28px;
  background: rgba(249,249,249,0.92);
  border-bottom: 1px solid var(--subtle);
}

.progress-bar-track {
  flex: 1;
  height: 3px;
  background: var(--subtle);
  border-radius: 2px;
  overflow: hidden;
}

.progress-bar-fill {
  height: 100%;
  width: 0%;
  background: var(--text);
  border-radius: 2px;
  transition: width 0.1s linear;
}

.progress-label {
  font-size: 0.68rem;
  font-family: 'Inter', monospace;
  color: var(--muted);
  width: 32px;
  text-align: right;
}

/* ── LAYOUT ── */
.writing-wrap {
  max-width: 640px;
  margin: 0 auto;
  padding: 108px 48px 100px;
}

.writing-header {
  margin-bottom: 48px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--subtle);
}

.writing-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.03em;
  margin-top: 16px;
  line-height: 1.2;
}

/* ── BODY TEXT ── */
.writing-body {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.writing-body p {
  font-size: 1rem;
  color: var(--text);
  line-height: 1.85;
}
