/* Long-form story reading: preserve author formatting and remain readable. */
#art-story-layer {
  box-sizing: border-box;
  padding: clamp(24px, 6vh, 72px) clamp(18px, 7vw, 100px);
}

#art-story-text {
  box-sizing: border-box;
  width: min(820px, calc(100vw - 48px));
  max-width: 820px;
  max-height: calc(100vh - 140px);
  padding: clamp(24px, 4vw, 48px) clamp(22px, 5vw, 58px);
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior: contain;
  white-space: pre-wrap;
  overflow-wrap: anywhere;
  word-break: normal;
  text-align: left;
  line-height: 1.95;
  letter-spacing: 0.055em;
  tab-size: 2;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.06));
  border-radius: 24px;
  scrollbar-gutter: stable;
}

@media (max-width: 700px) {
  #art-story-layer {
    padding: 48px 12px 76px;
  }

  #art-story-text {
    width: calc(100vw - 24px);
    max-height: calc(100vh - 124px);
    padding: 24px 20px;
    font-size: clamp(16px, 4.5vw, 21px);
    line-height: 1.85;
    letter-spacing: 0.035em;
    border-radius: 18px;
  }
}
