.atlas-page--detail {
  --atlas-muted: rgb(8 45 82 / 74%);
  background: #f8f6f0;
}

.atlas-page--detail .content-area {
  overflow: visible;
}

.manifest-detail-page {
  width: 100%;
  color: var(--atlas-ink);
  background: #f8f6f0;
}

.manifest-room-experience {
  width: min(1510px, calc(100% - clamp(32px, 5vw, 80px)));
  margin: 0 auto;
  padding: clamp(112px, 9vw, 150px) 0 clamp(96px, 12vw, 180px);
}

.manifest-room-entry {
  display: flex;
  min-height: 44px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 16px;
  color: var(--atlas-muted);
  font-size: 0.8rem;
  letter-spacing: 0.02em;
}

.manifest-room-entry__back {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 9px;
  color: var(--atlas-blue);
  text-decoration: none;
}

.manifest-room-entry__back .material-icons {
  font-size: 18px;
  transition: transform 180ms var(--atlas-ease);
}

.manifest-room-entry__back:hover .material-icons,
.manifest-room-entry__back:focus-visible .material-icons {
  transform: translateX(-3px);
}

.manifest-room-entry__registry {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  font-variant-numeric: tabular-nums;
}

.manifest-room-entry__registry strong {
  color: var(--atlas-ink);
  font-weight: 620;
  letter-spacing: 0.05em;
}

.manifest-room {
  position: relative;
  display: grid;
  grid-template-columns:
    minmax(280px, 0.95fr)
    minmax(420px, 1.28fr)
    minmax(250px, 0.72fr);
  min-height: 610px;
  overflow: hidden;
  border: 1px solid rgb(8 45 82 / 20%);
  border-radius: 18px;
  background: #fbfaf6;
}

.manifest-source {
  position: relative;
  display: grid;
  min-width: 0;
  min-height: 610px;
  grid-template-rows: auto 1fr auto;
  padding: 24px 20px 18px;
  border-right: 1px solid var(--atlas-line);
  background: #f9f8f3;
}

.manifest-source__header,
.manifest-source__footer {
  position: relative;
  z-index: 4;
}

.manifest-source__header p,
.manifest-provenance > header p {
  margin: 0 0 8px;
  color: var(--atlas-blue);
  font-size: 0.67rem;
  font-weight: 660;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.manifest-source__header h2,
.manifest-provenance > header h2 {
  margin: 0;
  color: var(--atlas-ink);
  font-size: clamp(1rem, 1.4vw, 1.3rem);
  font-weight: 570;
  line-height: 1.15;
  letter-spacing: -0.025em;
}

.manifest-source-map {
  position: relative;
  min-height: 440px;
  margin: 12px -20px 8px;
  overflow: hidden;
}

.manifest-source-map__field {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    circle,
    rgb(8 45 82 / 18%) 1px,
    transparent 1.2px
  );
  background-position: center;
  background-size: 18px 18px;
}

.manifest-source-map__field::before,
.manifest-source-map__field::after {
  position: absolute;
  content: "";
  background: rgb(8 45 82 / 15%);
}

.manifest-source-map__field::before {
  top: 72%;
  right: 0;
  left: 0;
  height: 1px;
}

.manifest-source-map__field::after {
  top: 0;
  bottom: 0;
  left: 58%;
  width: 1px;
}

.manifest-source-map__neighbors,
.manifest-source-neighbor {
  position: absolute;
  inset: 0;
}

.manifest-source-neighbor {
  inset: auto;
  left: var(--neighbor-x);
  top: var(--neighbor-y);
  width: 7px;
  height: 7px;
  border: 1px solid rgb(255 255 255 / 90%);
  border-radius: 50%;
  background: var(--neighbor-color);
  box-shadow: 0 0 0 1px color-mix(in srgb, var(--neighbor-color), transparent 55%);
  transform: translate(-50%, -50%);
}

.manifest-source-point {
  position: absolute;
  z-index: 3;
  top: 72%;
  left: 58%;
  display: block;
  width: 20px;
  height: 20px;
  color: var(--atlas-blue);
  text-decoration: none;
  transform: translate(-50%, -50%);
}

.manifest-source-point > span {
  position: absolute;
  inset: 1px;
  display: block;
  border: 2px solid #fff;
  border-radius: 50%;
  background: var(--atlas-blue);
  box-shadow:
    0 0 0 1px var(--atlas-blue),
    0 0 0 8px rgb(7 92 255 / 9%);
}

.manifest-source-point strong {
  position: absolute;
  top: 28px;
  left: 16px;
  width: max-content;
  max-width: 150px;
  padding: 4px 6px;
  color: var(--atlas-ink);
  background: rgb(249 248 243 / 92%);
  font-size: 0.74rem;
  font-weight: 650;
  line-height: 1.25;
  white-space: nowrap;
}

.manifest-source-point--recorded > span {
  border-color: #f9f8f3;
  background: var(--atlas-muted);
  box-shadow: 0 0 0 1px var(--atlas-muted);
}

.manifest-source-point--live:hover > span,
.manifest-source-point--live:focus-visible > span {
  box-shadow:
    0 0 0 1px var(--atlas-blue),
    0 0 0 11px rgb(7 92 255 / 13%);
}

.manifest-source-mark {
  position: absolute;
  z-index: 3;
  top: 50%;
  left: 50%;
  display: grid;
  width: 72px;
  height: 72px;
  place-content: center;
  border: 1px solid var(--atlas-line);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.manifest-source-mark span {
  display: block;
  width: 4px;
  height: 4px;
  margin: 3px;
  border-radius: 50%;
  background: var(--manifest-color, var(--atlas-blue));
}

.manifest-source__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 13px;
  border-top: 1px solid var(--atlas-line);
  color: var(--atlas-muted);
  font-size: 0.67rem;
  font-variant-numeric: tabular-nums;
}

.manifest-source__status {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.manifest-source__status i {
  width: 6px;
  height: 6px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--manifest-color, var(--atlas-blue));
}

.manifest-room__tether {
  position: absolute;
  z-index: 5;
  top: 72%;
  left: 18.5%;
  width: 13.5%;
  height: 1px;
  pointer-events: none;
  background: var(--atlas-blue);
  transform-origin: left center;
}

.manifest-paper {
  position: relative;
  z-index: 2;
  align-self: center;
  min-width: 0;
  margin: clamp(24px, 3vw, 46px);
  border: 1px solid rgb(8 45 82 / 15%);
  border-radius: 2px;
  color: var(--atlas-ink);
  background: #fffefa;
  box-shadow: 0 20px 50px rgb(8 45 82 / 10%);
}

.manifest-paper__rule {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 3px;
  background: var(--manifest-color, var(--atlas-blue));
}

.manifest-paper__meta,
.manifest-paper__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: var(--atlas-muted);
  font-size: 0.68rem;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.manifest-paper__meta {
  padding: clamp(30px, 3vw, 44px) clamp(28px, 3.4vw, 52px) 0;
}

.manifest-paper__copy {
  padding: clamp(44px, 5vw, 78px) clamp(28px, 3.4vw, 52px) clamp(26px, 3vw, 42px);
}

.manifest-paper__copy h1 {
  max-width: 11ch;
  margin: 0;
  color: var(--atlas-ink);
  font-size: clamp(2.7rem, 4.5vw, 5.2rem);
  font-weight: 590;
  line-height: 0.94;
  letter-spacing: -0.06em;
  overflow-wrap: anywhere;
}

.manifest-paper__copy h1::after,
.manifest-intention blockquote p::after,
.manifest-comments__prompt::after {
  display: block;
  width: 34px;
  height: 2px;
  margin-top: 24px;
  content: "";
  background: var(--atlas-blue);
}

.manifest-paper__copy p {
  max-width: 34ch;
  margin: 24px 0 0;
  color: var(--atlas-muted);
  font-size: clamp(0.96rem, 1.3vw, 1.2rem);
  line-height: 1.52;
}

.manifest-paper__image {
  display: block;
  width: calc(100% - clamp(56px, 6.8vw, 104px));
  aspect-ratio: 16 / 7;
  margin: 0 auto clamp(28px, 3vw, 44px);
  object-fit: cover;
}

.manifest-paper__footer {
  margin: 0 clamp(28px, 3.4vw, 52px);
  padding: 18px 0 24px;
  border-top: 1px solid var(--atlas-line);
  letter-spacing: 0.04em;
  text-transform: none;
}

.manifest-provenance {
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: center;
  padding: clamp(30px, 3vw, 50px);
  border-left: 1px solid var(--atlas-line);
  background: #fbfaf6;
}

.manifest-provenance > header {
  margin-bottom: clamp(24px, 3vw, 44px);
}

.manifest-provenance dl {
  margin: 0;
}

.manifest-provenance dl > div {
  display: grid;
  gap: 7px;
  padding: 17px 0;
  border-top: 1px solid var(--atlas-line);
}

.manifest-provenance dt {
  color: var(--atlas-muted);
  font-size: 0.64rem;
  font-weight: 560;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.manifest-provenance dd {
  min-width: 0;
  margin: 0;
  color: var(--atlas-ink);
  font-size: 0.88rem;
  font-weight: 590;
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.manifest-room-action {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid var(--atlas-blue);
  border-radius: 4px;
  padding: 0 18px;
  color: #fff;
  background: var(--atlas-blue);
  font-size: 0.82rem;
  font-weight: 630;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  transition:
    color 180ms var(--atlas-ease),
    background-color 180ms var(--atlas-ease),
    transform 180ms var(--atlas-ease);
}

.manifest-room-action:hover,
.manifest-room-action:focus-visible {
  color: var(--atlas-blue);
  background: transparent;
  transform: translateY(-2px);
}

.manifest-room-action--quiet {
  color: var(--atlas-blue);
  background: transparent;
}

.manifest-provenance__action {
  width: 100%;
  margin-top: 28px;
  color: var(--atlas-blue);
  background: transparent;
}

.manifest-provenance__action .material-icons {
  font-size: 16px;
}

.manifest-detail-section {
  padding: clamp(58px, 7vw, 104px) 0;
  border-top: 1px solid var(--atlas-line);
}

.manifest-detail-section__heading {
  display: flex;
  align-items: baseline;
  gap: 9px;
  margin-bottom: clamp(26px, 3.5vw, 52px);
}

.manifest-section-index,
.manifest-detail-section__heading h2 {
  margin: 0;
  color: var(--atlas-blue);
  font-size: 0.72rem;
  font-weight: 660;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.manifest-section-index::after {
  margin-left: 9px;
  content: "·";
}

.manifest-intention {
  margin-top: clamp(38px, 5vw, 74px);
}

.manifest-intention__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(360px, 0.88fr);
  align-items: center;
  gap: clamp(44px, 8vw, 132px);
}

.manifest-intention__visual {
  margin: 0;
}

.manifest-intention__visual img,
.manifest-intention__trace {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 7;
  object-fit: cover;
}

.manifest-intention__trace {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--atlas-line);
  background: #f1efe8;
}

.manifest-intention__trace i {
  position: absolute;
  display: block;
  border: 1px solid var(--manifest-color, var(--atlas-blue));
  border-radius: 50%;
}

.manifest-intention__trace i:nth-child(1) {
  top: 18%;
  left: 15%;
  width: 24%;
  aspect-ratio: 1;
}

.manifest-intention__trace i:nth-child(2) {
  top: 32%;
  right: 20%;
  width: 34%;
  aspect-ratio: 1;
}

.manifest-intention__trace i:nth-child(3) {
  bottom: -35%;
  left: 38%;
  width: 46%;
  aspect-ratio: 1;
}

.manifest-intention__visual figcaption {
  margin-top: 13px;
  color: var(--atlas-muted);
  font-size: 0.66rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.manifest-intention blockquote {
  margin: 0;
}

.manifest-intention blockquote p {
  max-width: 20ch;
  margin: 0;
  color: var(--atlas-ink);
  font-size: clamp(2rem, 3.8vw, 4.15rem);
  font-weight: 580;
  line-height: 1.03;
  letter-spacing: -0.052em;
}

.manifest-intention blockquote footer {
  margin-top: 24px;
  color: var(--atlas-muted);
  font-size: 0.75rem;
  letter-spacing: 0.05em;
}

.manifest-lifecycle__rail {
  position: relative;
  display: grid;
  grid-auto-columns: minmax(0, 1fr);
  grid-auto-flow: column;
  margin: 0;
  padding: 26px 0 0;
  list-style: none;
}

.manifest-lifecycle__rail::before {
  position: absolute;
  top: 34px;
  right: 0;
  left: 0;
  height: 1px;
  content: "";
  background: rgb(8 45 82 / 28%);
}

.manifest-lifecycle__rail li {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  gap: 19px;
  padding: 0 clamp(12px, 2vw, 30px);
  text-align: center;
}

.manifest-lifecycle__point {
  display: block;
  width: 12px;
  height: 12px;
  border: 2px solid #f8f6f0;
  border-radius: 50%;
  background: var(--atlas-blue);
  box-shadow: 0 0 0 1px var(--atlas-blue);
}

.manifest-lifecycle__rail li.is-current .manifest-lifecycle__point {
  box-shadow:
    0 0 0 1px var(--atlas-blue),
    0 0 0 7px rgb(7 92 255 / 8%);
}

.manifest-lifecycle__rail li > div {
  display: grid;
  justify-items: center;
  gap: 6px;
}

.manifest-lifecycle__rail strong {
  color: var(--atlas-ink);
  font-size: 0.84rem;
  font-weight: 640;
}

.manifest-lifecycle__rail time,
.manifest-lifecycle__rail em {
  color: var(--atlas-muted);
  font-size: 0.72rem;
  font-style: normal;
  font-variant-numeric: tabular-nums;
}

.manifest-lifecycle__rail em {
  color: var(--atlas-blue);
  font-weight: 600;
}

.manifest-comments__heading {
  justify-content: space-between;
  margin-bottom: 18px;
}

.manifest-comments__heading > div {
  display: flex;
  align-items: baseline;
  gap: 9px;
}

.manifest-comments__heading > span {
  color: var(--atlas-muted);
  font-size: 0.72rem;
  font-variant-numeric: tabular-nums;
}

.manifest-comments__prompt {
  max-width: 30ch;
  margin: 0 0 30px;
  color: var(--atlas-ink);
  font-size: clamp(1.35rem, 2.2vw, 2.1rem);
  font-weight: 580;
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.manifest-comments__prompt::after {
  margin-top: 15px;
}

.manifest-comments__notice,
.manifest-comment-composer__errors {
  margin: 0 0 18px;
  color: var(--atlas-blue);
  font-size: 0.8rem;
}

.manifest-comment-composer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px 18px;
  margin-bottom: clamp(40px, 5vw, 72px);
}

.manifest-comment-composer label,
.manifest-comment-reply label {
  grid-column: 1 / -1;
  color: var(--atlas-muted);
  font-size: 0.7rem;
  font-weight: 610;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.manifest-comment-composer textarea,
.manifest-comment-reply textarea {
  width: 100%;
  resize: vertical;
  border: 1px solid rgb(8 45 82 / 22%);
  border-radius: 4px;
  padding: 18px;
  color: var(--atlas-ink);
  background: rgb(255 254 250 / 58%);
  line-height: 1.55;
}

.manifest-comment-composer textarea {
  min-height: 126px;
  grid-column: 1 / -1;
}

.manifest-comment-composer textarea::placeholder,
.manifest-comment-reply textarea::placeholder {
  color: rgb(8 45 82 / 72%);
}

.manifest-comment-composer__errors {
  grid-column: 1;
  margin: 0;
  color: var(--atlas-error);
}

.manifest-comment-composer__errors p {
  margin: 0 0 5px;
}

.manifest-comment-composer button,
.manifest-comment-reply button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 1px solid var(--atlas-blue);
  border-radius: 4px;
  padding: 0 21px;
  color: #fff;
  background: var(--atlas-blue);
  font-weight: 620;
  cursor: pointer;
  white-space: nowrap;
}

.manifest-comment-composer button {
  grid-column: 2;
}

.manifest-comment-composer button .material-icons {
  font-size: 16px;
}

.manifest-comment-composer button:disabled,
.manifest-comment-reply button:disabled {
  cursor: wait;
  opacity: 0.55;
}

.manifest-comments__login {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  gap: 10px;
  margin-bottom: clamp(40px, 5vw, 72px);
  color: var(--atlas-blue);
  font-weight: 620;
  text-decoration: none;
}

.manifest-comments__login .material-icons {
  font-size: 17px;
}

.manifest-comments__feed {
  display: block;
  border-top: 1px solid var(--atlas-line);
}

.manifest-comments__empty {
  margin: 0;
  padding: 34px 0;
  color: var(--atlas-muted);
}

.manifest-comment {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  gap: 18px;
  padding: 28px 0;
  border-bottom: 1px solid var(--atlas-line);
}

.manifest-comment--reply {
  position: relative;
  width: calc(100% - 64px);
  margin-left: 64px;
  padding-left: 24px;
}

.manifest-comment--reply::before {
  position: absolute;
  top: 24px;
  bottom: 24px;
  left: 0;
  width: 2px;
  content: "";
  background: var(--atlas-blue);
}

.manifest-comment__avatar {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid rgb(8 45 82 / 28%);
  border-radius: 50%;
  color: var(--atlas-ink);
  background: #fbfaf6;
  font-size: 0.78rem;
  font-weight: 580;
  letter-spacing: 0.03em;
}

.manifest-comment__body {
  min-width: 0;
}

.manifest-comment__body > header {
  display: flex;
  align-items: baseline;
  gap: 10px;
}

.manifest-comment__body > header strong {
  color: var(--atlas-ink);
  font-size: 0.88rem;
  font-weight: 650;
}

.manifest-comment__body > header time {
  color: var(--atlas-muted);
  font-size: 0.7rem;
}

.manifest-comment__body > header time::before {
  margin-right: 10px;
  content: "·";
}

.manifest-comment__body > p {
  max-width: 72ch;
  margin: 9px 0 0;
  color: rgb(8 45 82 / 76%);
  font-size: 0.9rem;
  line-height: 1.55;
}

.manifest-comment-reply {
  margin-top: 13px;
}

.manifest-comment-reply summary {
  width: fit-content;
  color: var(--atlas-blue);
  font-size: 0.73rem;
  font-weight: 620;
  cursor: pointer;
  list-style: none;
}

.manifest-comment-reply summary::-webkit-details-marker {
  display: none;
}

.manifest-comment-reply form {
  display: grid;
  gap: 10px;
  margin-top: 14px;
}

.manifest-comment-reply textarea {
  min-height: 90px;
}

.manifest-comment-reply button {
  justify-self: start;
}

.manifest-room-state {
  display: grid;
  width: min(720px, calc(100% - 40px));
  min-height: 70svh;
  place-content: center;
  justify-items: start;
  margin: 0 auto;
  padding: 80px 0;
}

.manifest-room-state .manifest-section-index {
  margin-bottom: 18px;
}

.manifest-room-state h1 {
  max-width: 13ch;
  margin: 0;
  color: var(--atlas-ink);
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 570;
  line-height: 0.94;
  letter-spacing: -0.06em;
}

.manifest-room-state > p:not(.manifest-section-index) {
  max-width: 42rem;
  margin: 24px 0 30px;
  color: var(--atlas-muted);
  line-height: 1.6;
}

.manifest-room-state__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  clip-path: inset(50%) !important;
}

.has-manifest-motion .manifest-detail-section {
  opacity: 1;
  transform: none;
}

.has-manifest-motion .manifest-detail-section.is-visible {
  animation: manifest-section-arrive 480ms var(--atlas-ease) both;
}

@keyframes manifest-section-arrive {
  from {
    opacity: 0.86;
    transform: translateY(18px);
  }
}

@media (max-width: 1180px) {
  .manifest-room {
    grid-template-columns:
      minmax(250px, 0.9fr)
      minmax(390px, 1.25fr)
      minmax(220px, 0.7fr);
  }

  .manifest-paper {
    margin: 24px;
  }

  .manifest-paper__copy h1 {
    font-size: clamp(2.6rem, 4.6vw, 4.4rem);
  }

  .manifest-provenance {
    padding: 28px 24px;
  }
}

@media (max-width: 980px) {
  .manifest-room-experience {
    width: min(860px, calc(100% - 32px));
    padding-top: 90px;
  }

  .manifest-room {
    display: block;
    min-height: 0;
  }

  .manifest-source {
    min-height: 430px;
    padding: 22px 20px 12px;
    border-right: 0;
    border-bottom: 1px solid var(--atlas-line);
  }

  .manifest-source-map {
    min-height: 326px;
  }

  .manifest-room__tether {
    top: 413px;
    left: 58%;
    width: 1px;
    height: 44px;
  }

  .manifest-paper {
    margin: 20px;
  }

  .manifest-paper__copy h1 {
    max-width: 10ch;
    font-size: clamp(3.1rem, 9.2vw, 6rem);
  }

  .manifest-provenance {
    display: grid;
    grid-template-columns: minmax(170px, 0.65fr) minmax(0, 1.35fr);
    gap: 24px 44px;
    justify-content: initial;
    padding: 28px 20px 24px;
    border-top: 1px solid var(--atlas-line);
    border-left: 0;
  }

  .manifest-provenance > header {
    margin: 0;
  }

  .manifest-provenance dl {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 28px;
  }

  .manifest-provenance__action {
    grid-column: 1 / -1;
    margin-top: 0;
  }

  .manifest-intention__layout {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .manifest-intention blockquote p {
    max-width: 21ch;
  }
}

@media (max-width: 700px) {
  .manifest-room-experience {
    width: calc(100% - 28px);
    padding-top: 84px;
    padding-bottom: 96px;
  }

  .manifest-room-entry {
    align-items: flex-start;
    flex-direction: column;
    gap: 3px;
    margin: 8px 6px 18px;
  }

  .manifest-room-entry__registry {
    padding-left: 2px;
  }

  .manifest-room {
    border-radius: 12px;
  }

  .manifest-source {
    min-height: 390px;
  }

  .manifest-source-map {
    min-height: 286px;
  }

  .manifest-source__footer {
    align-items: flex-start;
  }

  .manifest-source__footer > :last-child {
    text-align: right;
  }

  .manifest-source-point strong {
    top: 26px;
    left: 10px;
    max-width: 126px;
    font-size: 0.68rem;
  }

  .manifest-room__tether {
    top: 373px;
    height: 40px;
  }

  .manifest-paper {
    margin: 20px 18px;
  }

  .manifest-paper__meta {
    align-items: flex-start;
    padding: 30px 26px 0;
  }

  .manifest-paper__copy {
    padding: 48px 26px 28px;
  }

  .manifest-paper__copy h1 {
    max-width: 10ch;
    font-size: clamp(2.65rem, 12vw, 4.6rem);
  }

  .manifest-paper__copy p {
    font-size: 1rem;
  }

  .manifest-paper__image {
    width: calc(100% - 52px);
    margin-bottom: 28px;
  }

  .manifest-paper__footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
    margin: 0 26px;
  }

  .manifest-provenance {
    display: block;
    padding: 28px 20px 24px;
  }

  .manifest-provenance > header {
    margin-bottom: 20px;
  }

  .manifest-provenance dl {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .manifest-detail-section {
    padding: 48px 0;
  }

  .manifest-intention {
    margin-top: 42px;
  }

  .manifest-detail-section__heading {
    margin-bottom: 26px;
  }

  .manifest-intention__visual img,
  .manifest-intention__trace {
    aspect-ratio: 16 / 7;
  }

  .manifest-intention blockquote p {
    max-width: none;
    font-size: clamp(2rem, 8.7vw, 3.2rem);
  }

  .manifest-lifecycle__rail {
    display: grid;
    grid-auto-flow: row;
    grid-template-columns: 1fr;
    gap: 0;
    padding: 0;
  }

  .manifest-lifecycle__rail::before {
    top: 8px;
    bottom: 8px;
    left: 7px;
    width: 1px;
    height: auto;
  }

  .manifest-lifecycle__rail li {
    grid-template-columns: 15px minmax(0, 1fr);
    justify-items: start;
    gap: 20px;
    padding: 0 0 28px;
    text-align: left;
  }

  .manifest-lifecycle__rail li:last-child {
    padding-bottom: 0;
  }

  .manifest-lifecycle__rail li > div {
    justify-items: start;
  }

  .manifest-comments__heading {
    align-items: flex-end;
  }

  .manifest-comment-composer {
    display: grid;
    grid-template-columns: 1fr;
  }

  .manifest-comment-composer label,
  .manifest-comment-composer textarea,
  .manifest-comment-composer__errors,
  .manifest-comment-composer button {
    grid-column: 1;
  }

  .manifest-comment-composer button {
    width: 100%;
  }

  .manifest-comment {
    grid-template-columns: 38px minmax(0, 1fr);
    gap: 13px;
    padding: 23px 0;
  }

  .manifest-comment__avatar {
    width: 38px;
    height: 38px;
    font-size: 0.7rem;
  }

  .manifest-comment--reply {
    width: calc(100% - 28px);
    margin-left: 28px;
    padding-left: 14px;
  }

  .manifest-comment__body > header {
    flex-wrap: wrap;
    row-gap: 2px;
  }

  .manifest-comment__body > p {
    font-size: 0.86rem;
  }
}

@media (max-width: 420px) {
  .manifest-room-experience {
    width: calc(100% - 20px);
  }

  .manifest-source {
    padding-right: 14px;
    padding-left: 14px;
  }

  .manifest-source-map {
    margin-right: -14px;
    margin-left: -14px;
  }

  .manifest-paper {
    margin-right: 10px;
    margin-left: 10px;
  }

  .manifest-paper__meta {
    gap: 10px;
    font-size: 0.61rem;
  }

  .manifest-paper__copy h1 {
    font-size: clamp(2.4rem, 12.5vw, 3.5rem);
  }

  .manifest-provenance dl {
    display: block;
  }

  .manifest-comments__heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .has-manifest-motion .manifest-detail-section.is-visible {
    animation: none;
  }
}
