:root {
  --paper: #f4efe5;
  --paper-deep: #e9dfcf;
  --ink: #17211d;
  --muted: #716a5e;
  --hairline: rgba(23, 33, 29, 0.14);
  --teal: #008c7c;
  --teal-soft: #cfeee8;
  --stone: #fffaf1;
  --shadow: 0 28px 70px rgba(57, 45, 28, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(rgba(23, 33, 29, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(23, 33, 29, 0.03) 1px, transparent 1px),
    var(--paper);
  background-size: 42px 42px;
  font-family: "Songti SC", "Noto Serif CJK SC", "Source Han Serif SC", "PingFang SC", serif;
}

button,
textarea,
select {
  font: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  padding: 0 clamp(18px, 4vw, 54px);
  border-bottom: 1px solid var(--hairline);
  background: rgba(244, 239, 229, 0.86);
  backdrop-filter: blur(18px);
}

.brand,
.site-header nav {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-symbol {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid var(--ink);
  border-radius: 50%;
  color: var(--paper);
  background: var(--ink);
  font-family: "Songti SC", "Noto Serif CJK SC", "PingFang SC", serif;
  font-size: 15px;
  font-weight: 900;
}

.site-header nav {
  gap: clamp(16px, 3vw, 34px);
  color: var(--muted);
  font-size: 14px;
}

main {
  width: min(1240px, calc(100% - 40px));
  margin: 0 auto;
}

.hero-section {
  padding: clamp(46px, 8vw, 96px) 0 36px;
}

.gallery-label,
.section-index,
.exhibit-card span,
.result-heading span {
  color: var(--teal);
  font-family: Arial, sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.gallery-label {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--hairline);
}

.hero-layout {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: clamp(28px, 6vw, 72px);
  align-items: end;
  padding-top: 42px;
}

.hero-copy,
.hero-side-note {
  min-width: 0;
}

.kicker {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: clamp(17px, 1.8vw, 22px);
}

h1,
h2,
p {
  margin-top: 0;
}

h1 {
  max-width: 780px;
  margin-bottom: 24px;
  font-size: clamp(46px, 4.6vw, 72px);
  font-weight: 900;
  line-height: 1.04;
  letter-spacing: 0;
}

h1 span {
  display: block;
  white-space: nowrap;
}

.hero-text {
  max-width: 560px;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.9;
}

.hero-side-note {
  align-self: end;
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid var(--hairline);
  background:
    linear-gradient(135deg, rgba(207, 238, 232, 0.42), transparent 34%),
    rgba(255, 250, 241, 0.78);
  box-shadow: var(--shadow);
}

.hero-side-note span {
  color: var(--muted);
  font-family: Arial, sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.hero-side-note p {
  margin: 36px 0 0;
  font-size: clamp(24px, 3vw, 42px);
  font-weight: 900;
  line-height: 1.28;
}

.share-card {
  position: relative;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 16 / 9;
  padding: clamp(22px, 4vw, 46px);
  border: 1px solid rgba(23, 33, 29, 0.18);
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(0, 140, 124, 0.18), transparent 44%),
    radial-gradient(circle at 88% 16%, rgba(0, 140, 124, 0.18), transparent 25%),
    #fffaf1;
}

.share-card::before {
  content: "";
  position: absolute;
  inset: 20px;
  border: 1px solid rgba(23, 33, 29, 0.1);
  pointer-events: none;
}

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

.share-card-topline,
.share-card-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  color: var(--muted);
  font-family: Arial, sans-serif;
  font-size: clamp(11px, 1.2vw, 14px);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.share-card-tag {
  display: inline-flex;
  margin: clamp(26px, 4vw, 46px) 0 14px;
  padding: 8px 12px;
  border: 1px solid rgba(0, 140, 124, 0.38);
  color: var(--teal);
  background: rgba(207, 238, 232, 0.42);
  font-family: Arial, sans-serif;
  font-size: clamp(11px, 1.1vw, 13px);
  font-weight: 800;
  letter-spacing: 0.08em;
}

.share-card-question {
  max-width: 82%;
  margin-bottom: 12px;
  color: var(--muted);
  font-size: clamp(15px, 1.7vw, 22px);
  line-height: 1.58;
}

.share-card-reply {
  max-width: 90%;
  margin-bottom: 0;
  font-size: clamp(24px, 3.3vw, 44px);
  font-weight: 900;
  line-height: 1.32;
  letter-spacing: 0;
}

.share-card-footer {
  position: absolute;
  right: clamp(22px, 4vw, 46px);
  bottom: clamp(22px, 4vw, 42px);
  left: clamp(22px, 4vw, 46px);
  padding-top: 14px;
  border-top: 1px solid rgba(23, 33, 29, 0.12);
}

.hero-art {
  margin: 0;
  padding: 14px;
  border: 1px solid var(--hairline);
  background: var(--stone);
  box-shadow: var(--shadow);
}

.hero-art img {
  display: block;
  width: 100%;
  border: 1px solid rgba(23, 33, 29, 0.08);
}

.hero-art figcaption {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding-top: 14px;
  color: var(--muted);
  font-size: 14px;
}

.hero-art figcaption span {
  color: var(--teal);
  font-family: Arial, sans-serif;
  font-size: 11px;
  font-weight: 800;
}

.curator-note {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 42px;
  padding: 54px 0;
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
}

.curator-note p {
  max-width: 860px;
  margin-bottom: 0;
  font-size: clamp(25px, 3vw, 42px);
  line-height: 1.45;
  letter-spacing: 0;
}

.exhibit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  padding: 28px 0 70px;
}

.exhibit-card,
.composer-panel,
.result-panel,
.sample-wall,
.install-section,
.phrase-section,
.flow-section {
  border: 1px solid var(--hairline);
  background: rgba(255, 250, 241, 0.72);
}

.exhibit-card {
  min-height: 250px;
  padding: 28px;
}

.exhibit-card h2 {
  margin: 32px 0 14px;
  font-size: 34px;
}

.exhibit-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.8;
}

.instrument-section {
  padding: 72px 0;
  border-top: 1px solid var(--hairline);
}

.home-instrument {
  padding-top: 0;
  border-top: 0;
}

.persona-panel {
  padding: 28px;
  border: 1px solid var(--hairline);
  background: rgba(255, 250, 241, 0.58);
}

.persona-panel-head {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(260px, 0.72fr);
  gap: 24px;
  align-items: end;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--hairline);
}

.persona-panel-head h2 {
  margin: 14px 0 0;
  font-size: clamp(34px, 4.4vw, 64px);
  line-height: 1.05;
}

.persona-panel-head p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}

.persona-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 24px;
}

.persona-card {
  position: relative;
  min-height: 190px;
  padding: 26px 26px 24px;
  border: 1px solid var(--hairline);
  color: var(--ink);
  background: rgba(244, 239, 229, 0.42);
  text-align: left;
  cursor: pointer;
  transition:
    border-color 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease;
}

.persona-card:hover {
  border-color: rgba(0, 140, 124, 0.42);
  background: rgba(255, 250, 241, 0.82);
}

.persona-card.is-active {
  border-color: rgba(0, 140, 124, 0.72);
  background:
    linear-gradient(90deg, rgba(0, 140, 124, 0.12), transparent 46%),
    rgba(207, 238, 232, 0.36);
  box-shadow:
    inset 0 0 0 2px rgba(0, 140, 124, 0.12),
    0 18px 48px rgba(57, 45, 28, 0.08);
}

.persona-card::after {
  content: "可选择";
  position: absolute;
  top: 22px;
  right: 22px;
  min-width: 68px;
  padding: 7px 10px;
  border: 1px solid var(--hairline);
  color: var(--muted);
  background: rgba(255, 250, 241, 0.72);
  font-family: Arial, sans-serif;
  font-size: 11px;
  font-style: normal;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-align: center;
}

.persona-card.is-active::after {
  content: "当前人格";
  border-color: rgba(0, 140, 124, 0.42);
  color: var(--teal);
  background: rgba(207, 238, 232, 0.68);
}

.persona-card span {
  color: var(--teal);
  font-family: Arial, sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.persona-card strong {
  display: block;
  margin: 24px 0 10px;
  font-size: 31px;
  line-height: 1.15;
}

.persona-card em {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--ink);
  font-size: 15px;
  font-style: normal;
  font-weight: 800;
}

.persona-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
}

.instrument-grid {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 18px;
  margin-top: 24px;
}

.composer-panel,
.result-panel {
  padding: 28px;
  box-shadow: 0 20px 60px rgba(57, 45, 28, 0.08);
}

label {
  display: block;
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 14px;
}

textarea,
select {
  width: 100%;
  border: 1px solid var(--hairline);
  border-radius: 0;
  color: var(--ink);
  background: rgba(255, 250, 241, 0.88);
  outline: none;
}

textarea {
  min-height: 180px;
  padding: 16px;
  resize: vertical;
  font-size: 17px;
  line-height: 1.8;
}

select {
  min-height: 50px;
  padding: 0 12px;
}

textarea:focus,
select:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 4px rgba(0, 140, 124, 0.1);
}

.control-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 18px;
}

.switch-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin: 18px 0;
}

.switch-row label {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  color: var(--ink);
}

input {
  accent-color: var(--teal);
}

.primary-button,
.copy-button,
.secondary-button,
.icon-button {
  border: 1px solid var(--ink);
  cursor: pointer;
}

.primary-button {
  width: 100%;
  min-height: 56px;
  color: var(--paper);
  background: var(--ink);
  font-weight: 800;
}

.secondary-button {
  display: inline-grid;
  min-height: 42px;
  place-items: center;
  padding: 0 14px;
  color: var(--ink);
  background: transparent;
  font-weight: 800;
  text-align: center;
}

.result-heading {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: end;
  margin-bottom: 18px;
}

.result-heading h2 {
  margin: 0;
  font-size: 30px;
}

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

.result-card {
  position: relative;
  padding: 20px;
  border: 1px solid var(--hairline);
  background: rgba(244, 239, 229, 0.52);
  cursor: pointer;
  transition:
    border-color 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease;
}

.result-card:hover,
.result-card:focus-visible {
  border-color: rgba(0, 140, 124, 0.48);
  background: rgba(207, 238, 232, 0.24);
  box-shadow: 0 14px 38px rgba(57, 45, 28, 0.08);
  outline: none;
}

.result-card header {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  margin-bottom: 14px;
}

.result-card strong {
  color: var(--teal);
  font-family: Arial, sans-serif;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.result-card p {
  margin: 0 0 18px;
  font-size: 20px;
  line-height: 1.8;
}

.result-hint {
  flex-shrink: 0;
  min-height: 34px;
  padding: 8px 12px;
  min-height: 34px;
  border: 1px solid rgba(0, 140, 124, 0.52);
  border-color: rgba(0, 140, 124, 0.52);
  color: var(--teal);
  background: rgba(207, 238, 232, 0.32);
  font-family: Arial, sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.copy-button {
  min-height: 34px;
  padding: 0 12px;
  color: var(--ink);
  background: transparent;
}

.phrase-section,
.flow-section {
  margin-bottom: 24px;
  padding: 38px;
}

.phrase-layout {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: clamp(24px, 5vw, 72px);
  align-items: end;
  margin-top: 20px;
}

.phrase-layout h2 {
  margin-bottom: 14px;
  font-size: clamp(34px, 4vw, 58px);
  line-height: 1.1;
}

.phrase-layout p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.8;
}

.phrase-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.phrase-cloud button {
  min-height: 44px;
  padding: 0 16px;
  border: 1px solid var(--hairline);
  color: var(--ink);
  background: rgba(244, 239, 229, 0.64);
  cursor: pointer;
}

.phrase-cloud button:hover {
  border-color: rgba(0, 140, 124, 0.44);
  color: var(--teal);
  background: rgba(207, 238, 232, 0.4);
}

.flow-strip {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1px;
  margin-top: 22px;
  background: var(--hairline);
  border: 1px solid var(--hairline);
}

.flow-strip div {
  min-height: 170px;
  padding: 22px;
  background: rgba(255, 250, 241, 0.86);
}

.flow-strip span {
  color: var(--teal);
  font-family: Arial, sans-serif;
  font-size: 12px;
  font-weight: 800;
}

.flow-strip strong {
  display: block;
  margin: 28px 0 10px;
  font-size: 22px;
}

.flow-strip p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}

.share-modal[hidden],
.reply-action-modal[hidden] {
  display: none;
}

.share-modal,
.reply-action-modal {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: grid;
  place-items: center;
  padding: 24px;
}

.share-modal-backdrop,
.reply-action-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(23, 33, 29, 0.46);
  backdrop-filter: blur(10px);
}

.share-modal-panel,
.reply-action-panel {
  position: relative;
  z-index: 1;
  width: min(1040px, 100%);
  max-height: min(92vh, 920px);
  overflow: auto;
  padding: 24px;
  border: 1px solid var(--hairline);
  background: var(--paper);
  box-shadow: 0 32px 90px rgba(23, 33, 29, 0.28);
}

.reply-action-panel {
  width: min(760px, 100%);
}

.reply-action-panel h2 {
  margin: 10px 0 16px;
  font-size: clamp(30px, 5vw, 54px);
}

.reply-action-panel p {
  margin-bottom: 0;
  color: var(--ink);
  font-size: clamp(20px, 2.6vw, 30px);
  line-height: 1.65;
}

.share-modal-head {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: flex-start;
  margin-bottom: 18px;
}

.share-modal-head h2 {
  margin: 10px 0 0;
  font-size: clamp(28px, 4vw, 48px);
}

.icon-button {
  width: 42px;
  height: 42px;
  color: var(--ink);
  background: transparent;
  font-size: 28px;
  line-height: 1;
}

.share-export-wrap {
  display: grid;
  place-items: center;
  padding: 18px;
  border: 1px solid var(--hairline);
  background: rgba(255, 250, 241, 0.52);
}

.export-card {
  width: min(100%, 900px);
}

.share-action-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 16px;
}

.sample-wall,
.install-section {
  margin-bottom: 24px;
  padding: 38px;
}

.sample-wall blockquote {
  margin: 22px 0 0;
}

.sample-wall p {
  max-width: 920px;
  font-size: clamp(30px, 4vw, 54px);
  line-height: 1.28;
}

.sample-wall cite {
  color: var(--muted);
  font-style: normal;
}

.install-section {
  margin-bottom: 72px;
}

.install-section h2 {
  margin: 18px 0 20px;
  font-size: clamp(34px, 4vw, 58px);
}

pre {
  margin: 0;
  overflow-x: auto;
  border: 1px solid var(--hairline);
  background: var(--ink);
  color: var(--paper);
  padding: 18px;
}

code {
  display: block;
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 14px;
  max-width: 100%;
  overflow-wrap: anywhere;
}

.site-footer {
  width: min(1240px, calc(100% - 40px));
  margin: 0 auto 42px;
  padding: 24px 0 0;
  border-top: 1px solid var(--hairline);
  color: var(--muted);
  font-size: 13px;
  line-height: 1.8;
}

.site-footer div {
  display: flex;
  gap: 6px;
  align-items: center;
  margin-bottom: 8px;
}

.site-footer a {
  color: var(--teal);
  font-weight: 800;
}

.site-footer p {
  max-width: 720px;
  margin-bottom: 0;
}

@media (max-width: 900px) {
  .site-header {
    align-items: center;
    flex-direction: row;
    min-height: 62px;
    padding: 0 18px;
  }

  main {
    width: min(100% - 24px, 680px);
  }

  .site-footer {
    width: min(100% - 24px, 680px);
  }

  .site-header nav {
    gap: 14px;
    font-size: 13px;
  }

  .brand {
    gap: 8px;
    font-size: 15px;
  }

  .brand-symbol {
    width: 30px;
    height: 30px;
    font-size: 13px;
  }

  .hero-section {
    padding: 28px 0 26px;
  }

  .hero-layout,
  .curator-note,
  .exhibit-grid,
  .persona-panel-head,
  .instrument-grid,
  .phrase-layout,
  .flow-strip,
  .control-row {
    grid-template-columns: 1fr;
  }

  .gallery-label,
  .hero-art figcaption,
  .result-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .gallery-label {
    gap: 8px;
    padding-bottom: 14px;
  }

  .hero-layout {
    gap: 24px;
    padding-top: 24px;
  }

  .kicker {
    margin-bottom: 12px;
    font-size: 16px;
  }

  h1 {
    margin-bottom: 16px;
    font-size: clamp(28px, 7.4vw, 34px);
    line-height: 1.08;
  }

  h1 span {
    white-space: nowrap;
  }

  .hero-text {
    font-size: 17px;
    line-height: 1.72;
  }

  .share-card {
    padding: 20px;
  }

  .share-card::before {
    inset: 12px;
  }

  .share-card-question,
  .share-card-reply {
    max-width: 100%;
  }

  .share-card-footer {
    right: 20px;
    bottom: 18px;
    left: 20px;
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }

  .hero-art {
    padding: 10px;
    box-shadow: 0 18px 42px rgba(57, 45, 28, 0.12);
  }

  .hero-art figcaption {
    gap: 6px;
    padding-top: 10px;
    font-size: 13px;
  }

  .curator-note {
    gap: 18px;
    padding: 34px 0;
  }

  .curator-note p,
  .sample-wall p {
    font-size: 25px;
    line-height: 1.42;
  }

  .exhibit-grid {
    gap: 12px;
    padding: 18px 0 42px;
  }

  .persona-panel {
    padding: 18px;
  }

  .persona-panel-head {
    gap: 12px;
    padding-bottom: 16px;
  }

  .persona-panel-head h2 {
    margin-top: 10px;
    font-size: 33px;
  }

  .persona-panel-head p {
    font-size: 15px;
    line-height: 1.65;
  }

  .persona-grid {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 16px;
  }

  .persona-card {
    min-height: 0;
    padding: 20px;
  }

  .persona-card::after {
    top: 18px;
    right: 18px;
    min-width: 64px;
    padding: 6px 8px;
    font-size: 10px;
  }

  .persona-card strong {
    margin: 16px 0 8px;
    font-size: 26px;
  }

  .persona-card em {
    margin-bottom: 12px;
    font-size: 14px;
  }

  .persona-card p {
    font-size: 15px;
    line-height: 1.65;
  }

  .exhibit-card {
    min-height: 0;
    padding: 22px;
  }

  .exhibit-card h2 {
    margin: 18px 0 8px;
    font-size: 28px;
  }

  .exhibit-card p {
    font-size: 16px;
    line-height: 1.72;
  }

  .instrument-section {
    padding: 44px 0;
  }

  .instrument-grid {
    gap: 12px;
    margin-top: 18px;
  }

  .composer-panel,
  .result-panel,
  .sample-wall,
  .install-section,
  .phrase-section,
  .flow-section {
    padding: 22px;
  }

  textarea {
    min-height: 142px;
    padding: 14px;
    font-size: 16px;
    line-height: 1.65;
  }

  select {
    min-height: 48px;
  }

  .switch-row {
    gap: 12px;
    margin: 16px 0;
  }

  .primary-button {
    min-height: 52px;
  }

  .result-heading {
    gap: 6px;
    margin-bottom: 14px;
  }

  .result-heading h2 {
    font-size: 25px;
  }

  .result-card {
    padding: 16px;
  }

  .result-card header {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .result-card p {
    font-size: 18px;
    line-height: 1.65;
  }

  .copy-button {
    align-self: flex-end;
  }

  .result-hint {
    align-self: flex-start;
  }

  .phrase-layout {
    gap: 18px;
  }

  .phrase-layout h2 {
    font-size: 31px;
  }

  .phrase-layout p,
  .flow-strip p {
    font-size: 15px;
  }

  .flow-strip div {
    min-height: 0;
    padding: 18px;
  }

  .flow-strip strong {
    margin: 16px 0 8px;
  }

  .share-modal {
    padding: 12px;
  }

  .share-modal-panel {
    padding: 16px;
  }

  .share-action-row {
    grid-template-columns: 1fr;
  }

  .sample-wall,
  .install-section {
    margin-bottom: 18px;
  }

  .install-section {
    margin-bottom: 42px;
  }

  .install-section h2 {
    font-size: 31px;
  }

  pre {
    white-space: pre-wrap;
    word-break: break-word;
    padding: 14px;
  }

  code {
    white-space: inherit;
    word-break: inherit;
    font-size: 12px;
    line-height: 1.7;
  }

  .site-footer {
    margin-bottom: 28px;
    padding-top: 18px;
    font-size: 12px;
  }
}
