.guestbook {
  position: relative;
  overflow: hidden;
  padding: 98px 0 90px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 8% 14%, rgba(var(--brand-rgb), .10), transparent 26rem),
    radial-gradient(circle at 94% 86%, rgba(var(--brand-rgb), .08), transparent 24rem),
    #eef3f6;
  scroll-margin-top: 74px;
}

.guestbook-composer button,
.guestbook-composer input,
.guestbook-composer textarea {
  font: inherit;
}

.guestbook-grid {
  position: absolute;
  inset: 0;
  opacity: .52;
  background-image:
    linear-gradient(rgba(var(--brand-rgb), .05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(var(--brand-rgb), .05) 1px, transparent 1px);
  background-size: 32px 32px;
  -webkit-mask-image: linear-gradient(to bottom, transparent, #000 12%, #000 88%, transparent);
  mask-image: linear-gradient(to bottom, transparent, #000 12%, #000 88%, transparent);
}

.guestbook-inner {
  position: relative;
  z-index: 1;
}

.guestbook-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(310px, .65fr);
  align-items: end;
  gap: 80px;
  margin-bottom: 56px;
}

.guestbook-eyebrow {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 18px;
  color: var(--brand);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: .12em;
}

.guestbook-eyebrow span {
  font-size: 15px;
}

.guestbook-heading h2 {
  margin: 0;
  font-family: inherit;
  font-size: clamp(34px, 4.1vw, 52px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -.065em;
  white-space: nowrap;
}

.guestbook-heading h2 em {
  color: var(--brand);
  font: inherit;
  font-style: normal;
}

.guestbook-composer-intro h2 em {
  color: var(--brand);
  font-family: "Songti SC", STSong, SimSun, serif;
  font-style: normal;
  font-weight: 500;
}

.guestbook-intro {
  max-width: 650px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.8;
}

.guestbook-poem {
  position: relative;
  margin: 0 0 4px;
  padding: 27px 28px 25px 34px;
  border-left: 3px solid var(--brand);
  background: rgba(255, 255, 255, .62);
}

.guestbook-poem > span {
  position: absolute;
  top: -20px;
  right: 18px;
  color: rgba(var(--brand-rgb), .12);
  font-family: Georgia, serif;
  font-size: 100px;
  line-height: 1;
}

.guestbook-poem p {
  position: relative;
  margin: 0;
  font-family: "Songti SC", STSong, serif;
  font-size: 20px;
  letter-spacing: .04em;
}

.guestbook-poem footer {
  margin-top: 12px;
  color: var(--muted);
  font-size: 11px;
}

.guestbook-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 26px;
}

.guestbook-count {
  display: flex;
  align-items: baseline;
  gap: 9px;
}

.guestbook-count strong {
  color: var(--brand);
  font-family: Georgia, serif;
  font-size: 35px;
  font-style: italic;
}

.guestbook-count span {
  color: var(--muted);
  font-size: 12px;
}

.guestbook-sort {
  position: relative;
  display: inline-grid;
  gap: 4px;
  padding: 5px 0 7px;
  border: 0;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  text-align: left;
}

.guestbook-sort:focus-visible {
  border-radius: 4px;
  outline: 2px solid rgba(var(--brand-rgb), .35);
  outline-offset: 5px;
}

.guestbook-sort-indicator {
  --guestbook-sort-stroke: 2px;
  position: relative;
  width: 100%;
  height: 8px;
  display: block;
  color: var(--brand);
}

.guestbook-sort-indicator::before {
  position: absolute;
  top: 3px;
  right: 0;
  left: 0;
  height: var(--guestbook-sort-stroke);
  background: currentColor;
  content: "";
}

.guestbook-sort[data-sort="newest"] .guestbook-sort-indicator::after,
.guestbook-sort[data-sort="oldest"] .guestbook-sort-indicator::after {
  position: absolute;
  top: 0;
  z-index: 1;
  box-sizing: border-box;
  width: 7px;
  height: 7px;
  border: solid currentColor;
  border-width: 0 var(--guestbook-sort-stroke) var(--guestbook-sort-stroke) 0;
  background: transparent;
  content: "";
}

.guestbook-sort[data-sort="newest"] .guestbook-sort-indicator::after {
  left: 0;
  transform: rotate(135deg);
}

.guestbook-sort[data-sort="oldest"] .guestbook-sort-indicator::after {
  right: 0;
  transform: rotate(-45deg);
}

.guestbook-sort[data-sort="likes"] .guestbook-sort-indicator::after {
  position: absolute;
  top: -4px;
  right: -3px;
  left: -3px;
  z-index: 1;
  width: calc(100% + 6px);
  background: transparent;
  color: #b84c5b;
  content: "♥ ♥";
  font-size: 11px;
  font-style: normal;
  line-height: 12px;
  text-align: justify;
  text-align-last: justify;
}

.guestbook-sort[data-sort="likes"] .guestbook-sort-indicator::before {
  right: 7px;
  left: 7px;
}

.guestbook-sort[data-sort="likes"] .guestbook-sort-indicator {
  color: #b84c5b;
}

.guestbook-sort:hover span {
  color: var(--brand-dark);
}

.guestbook-sort:disabled {
  cursor: wait;
  opacity: .65;
}

.guestbook-write {
  min-width: 205px;
  min-height: 64px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 7px 16px 7px 8px;
  border: 0;
  border-radius: 18px;
  background: var(--brand);
  color: white;
  box-shadow: 0 14px 30px rgba(var(--brand-rgb), .22);
  text-align: left;
  transition: transform .2s ease, background-color .2s ease;
}

.guestbook-write:hover,
.guestbook-write:focus-visible {
  background: var(--brand-dark);
  outline: none;
  transform: translateY(-2px);
}

.guestbook-write-seal {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .4);
  border-radius: 14px 14px 14px 5px;
  background: rgba(255, 255, 255, .12);
  font-family: "Songti SC", STSong, serif;
  font-size: 23px;
}

.guestbook-write strong,
.guestbook-write small {
  display: block;
}

.guestbook-write strong {
  font-size: 13px;
}

.guestbook-write small {
  margin-top: 3px;
  color: rgba(255, 255, 255, .66);
  font-size: 9px;
  font-weight: 650;
}

.guestbook-write > i {
  font-size: 18px;
  font-style: normal;
}

.guestbook-wall {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  align-items: stretch;
  gap: 20px;
}

.guestbook-note {
  --tilt: 0deg;
  position: relative;
  min-height: 248px;
  display: flex;
  flex-direction: column;
  grid-column: span 4;
  padding: 27px 25px 22px;
  border: 1px solid rgba(29, 61, 84, .11);
  border-radius: 4px;
  background: #fffefa;
  color: var(--ink);
  box-shadow: 0 14px 32px rgba(16, 43, 66, .09);
  transform: rotate(var(--tilt));
  transition: transform .25s ease, box-shadow .25s ease;
}

.guestbook-note:hover {
  z-index: 2;
  box-shadow: 0 22px 48px rgba(16, 43, 66, .15);
  transform: rotate(0) translateY(-5px);
}

.guestbook-note.featured {
  min-height: 350px;
  grid-column: span 7;
  padding: 38px 38px 30px;
  border-top: 4px solid var(--brand);
  background:
    linear-gradient(120deg, rgba(var(--brand-rgb), .035), transparent 46%),
    #fff;
}

.guestbook-note.featured:only-child {
  grid-column: 1 / -1;
}

.guestbook-note.blue {
  grid-column: span 5;
  background:
    radial-gradient(circle at 90% 0, rgba(255, 255, 255, .12), transparent 14rem),
    var(--brand);
  color: white;
}

.guestbook-note.lined {
  background:
    repeating-linear-gradient(to bottom, transparent 0, transparent 35px, rgba(var(--brand-rgb), .075) 36px),
    #fffefa;
}

.guestbook-note.warm {
  background: #f7efe0;
}

.guestbook-note.quote {
  background: #f6fbff;
}

.guestbook-note-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
}

.guestbook-note-number {
  color: var(--brand);
  font-size: 9px;
  font-weight: 850;
  letter-spacing: .1em;
}

.guestbook-note.blue .guestbook-note-number {
  color: rgba(255, 255, 255, .72);
}

.guestbook-note time {
  color: var(--muted);
  font-size: 9px;
}

.guestbook-note.blue time {
  color: rgba(255, 255, 255, .58);
}

.guestbook-message {
  position: relative;
  z-index: 1;
  flex: 1;
  margin: 28px 0;
  white-space: pre-wrap;
  overflow-wrap: anywhere;
  font-family: "Songti SC", STSong, SimSun, serif;
  font-size: 18px;
  line-height: 1.8;
  letter-spacing: .025em;
}

.guestbook-note.featured .guestbook-message {
  max-width: 650px;
  margin: 43px 0 45px;
  font-size: clamp(22px, 3vw, 30px);
  line-height: 1.7;
  letter-spacing: -.015em;
}

.guestbook-note.blue .guestbook-message {
  font-size: 21px;
}

.guestbook-author {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 11px;
  padding-right: 64px;
}

.guestbook-author::after {
  position: absolute;
  right: 0;
  top: 50%;
  min-width: 52px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 10px;
  border: 1px solid rgba(189, 52, 73, .22);
  border-radius: 999px;
  background: rgba(255, 255, 255, .72);
  color: #a62e43;
  box-shadow: 0 5px 14px rgba(45, 34, 36, .07);
  content: "♡  " attr(data-like-count);
  font-family: Georgia, "Songti SC", serif;
  font-size: 13px;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  pointer-events: none;
  transform: translateY(-50%);
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}

.guestbook-author.liked::after {
  border-color: rgba(189, 52, 73, .3);
  background: #fff0f2;
  content: "♥  " attr(data-like-count);
}

.guestbook-author.likes-unavailable::after {
  opacity: .72;
}

.guestbook-author:has(.guestbook-like:hover:not(:disabled))::after,
.guestbook-author:focus-within::after {
  border-color: rgba(189, 52, 73, .52);
  background: white;
  transform: translateY(calc(-50% - 2px));
}

.guestbook-avatar {
  width: 38px;
  height: 38px;
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 12px 12px 12px 4px;
  background: var(--brand);
  color: white;
  font-family: "Songti SC", STSong, serif;
  font-size: 16px;
  font-weight: 800;
}

.guestbook-note.blue .guestbook-avatar {
  background: white;
  color: var(--brand);
}

.guestbook-author strong,
.guestbook-author small {
  display: block;
}

.guestbook-author strong {
  font-size: 12px;
}

.guestbook-author small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 9px;
}

.guestbook-note.blue .guestbook-author small {
  color: rgba(255, 255, 255, .58);
}

.guestbook-like {
  position: absolute;
  z-index: 3;
  top: 50%;
  right: 0;
  width: 52px;
  height: 34px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: transparent;
  cursor: pointer;
  opacity: 0;
  outline: none;
  transform: translateY(-50%);
}

.guestbook-like:disabled {
  cursor: default;
}

.guestbook-note.blue .guestbook-author::after {
  border-color: rgba(255, 255, 255, .34);
  background: rgba(255, 255, 255, .13);
  color: white;
  box-shadow: none;
}

.guestbook-note.blue .guestbook-author:has(.guestbook-like:hover:not(:disabled))::after,
.guestbook-note.blue .guestbook-author:focus-within::after,
.guestbook-note.blue .guestbook-author.liked::after {
  background: rgba(255, 255, 255, .24);
}

.guestbook-decoration {
  position: absolute;
  pointer-events: none;
}

.guestbook-decoration.clip {
  top: -12px;
  right: 38px;
  width: 15px;
  height: 47px;
  border: 2px solid #7190a7;
  border-radius: 10px;
  transform: rotate(8deg);
}

.guestbook-decoration.pin {
  top: 12px;
  left: 50%;
  width: 13px;
  height: 13px;
  border: 3px solid rgba(255, 255, 255, .7);
  border-radius: 50%;
  background: #bd3449;
  box-shadow: 0 3px 6px rgba(0, 0, 0, .16);
}

.guestbook-decoration.tape {
  top: -9px;
  left: 50%;
  width: 72px;
  height: 25px;
  background: rgba(220, 204, 164, .52);
  transform: translateX(-50%) rotate(-2deg);
}

.guestbook-empty {
  min-height: 270px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 10px;
  border: 1px dashed #b7cbd9;
  border-radius: 22px;
  background: rgba(255, 255, 255, .55);
  text-align: center;
}

.guestbook-empty[hidden] {
  display: none;
}

.guestbook-empty > span {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 18px 18px 18px 6px;
  background: var(--brand-soft);
  color: var(--brand);
  font-family: "Songti SC", STSong, serif;
  font-size: 23px;
}

.guestbook-empty h3 {
  margin: 5px 0 0;
  font-size: 18px;
}

.guestbook-empty p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

.guestbook-footer {
  display: grid;
  place-items: center;
  gap: 13px;
  margin-top: 48px;
}

.guestbook-footer button {
  min-height: 45px;
  padding: 0 19px;
  border: 1px solid #bed1df;
  border-radius: 999px;
  background: rgba(255, 255, 255, .76);
  color: var(--brand);
  font-size: 11px;
  font-weight: 800;
}

.guestbook-footer button:hover,
.guestbook-footer button:focus-visible {
  border-color: var(--brand);
  background: white;
  outline: none;
}

.guestbook-footer p {
  margin: 0;
  color: var(--muted);
  font-family: "Songti SC", STSong, serif;
  font-size: 11px;
}

.guestbook-composer {
  width: min(980px, calc(100% - 28px));
  max-height: calc(100vh - 32px);
  padding: 0;
  overflow: visible;
  border: 0;
  border-radius: 28px;
  background: transparent;
  box-shadow: 0 30px 90px rgba(6, 25, 39, .28);
}

.guestbook-composer::backdrop {
  background: rgba(13, 33, 49, .55);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}

.guestbook-composer-card {
  position: relative;
  max-height: calc(100vh - 32px);
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  overflow: hidden;
  border-radius: 28px;
  background: white;
}

.guestbook-close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2;
  width: 36px;
  height: 36px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: white;
  color: var(--muted);
  font-size: 22px;
  line-height: 1;
}

.guestbook-close:hover,
.guestbook-close:focus-visible {
  border-color: var(--brand);
  color: var(--brand);
  outline: none;
}

.guestbook-composer-intro {
  position: relative;
  overflow: hidden;
  padding: 50px 42px;
  background:
    radial-gradient(circle at 0 100%, rgba(255, 255, 255, .12), transparent 16rem),
    var(--brand);
  color: white;
}

.guestbook-composer-intro::after {
  position: absolute;
  right: -55px;
  bottom: -70px;
  width: 180px;
  height: 180px;
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: 50%;
  content: "";
  box-shadow: 0 0 0 28px rgba(255, 255, 255, .035), 0 0 0 58px rgba(255, 255, 255, .025);
}

.guestbook-composer-intro .guestbook-eyebrow {
  color: rgba(255, 255, 255, .72);
}

.guestbook-composer-intro h2 {
  margin: 50px 0 0;
  font-size: clamp(36px, 5vw, 54px);
  line-height: 1.02;
  letter-spacing: -.055em;
}

.guestbook-composer-intro h2 em {
  color: white;
}

.guestbook-composer-intro > p:not(.guestbook-eyebrow) {
  margin: 20px 0 0;
  color: rgba(255, 255, 255, .7);
  font-size: 12px;
  line-height: 1.7;
}

.guestbook-mini-note {
  position: relative;
  z-index: 1;
  margin-top: 44px;
  padding: 20px;
  border-radius: 3px;
  background: #fffefa;
  color: var(--ink);
  box-shadow: 0 18px 35px rgba(0, 38, 70, .18);
  transform: rotate(-2deg);
}

.guestbook-mini-note span {
  color: var(--brand);
  font-size: 8px;
  font-weight: 850;
  letter-spacing: .12em;
}

.guestbook-mini-note p {
  margin: 15px 0;
  font-family: "Songti SC", STSong, serif;
  font-size: 14px;
  line-height: 1.7;
}

.guestbook-mini-note i {
  display: block;
  color: var(--muted);
  font-family: "Songti SC", STSong, serif;
  font-size: 10px;
  font-style: normal;
  text-align: right;
}

.guestbook-fields {
  padding: 48px 48px 38px;
  overflow-y: auto;
}

.guestbook-field-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 16px;
}

.guestbook-field {
  position: relative;
  display: grid;
  gap: 8px;
  margin-bottom: 18px;
}

.guestbook-field > span,
.guestbook-poetry-check legend {
  color: var(--ink);
  font-size: 11px;
  font-weight: 800;
}

.guestbook-field input,
.guestbook-field textarea,
.guestbook-poetry-check input {
  width: 100%;
  border: 1px solid #cbd9e3;
  border-radius: 11px;
  background: #fbfcfd;
  color: var(--ink);
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease;
}

.guestbook-field input {
  min-height: 45px;
  padding: 0 13px;
}

.guestbook-field textarea {
  min-height: 122px;
  padding: 13px;
  resize: vertical;
  line-height: 1.6;
}

.guestbook-field input:focus,
.guestbook-field textarea:focus,
.guestbook-poetry-check input:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 4px rgba(var(--brand-rgb), .09);
}

.guestbook-field small {
  position: absolute;
  right: 10px;
  bottom: 8px;
  color: #9aa6b1;
  font-size: 9px;
}

.guestbook-privacy {
  margin-bottom: 28px;
  color: var(--muted);
  font-size: 9px;
  white-space: nowrap;
}

.guestbook-honeypot {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.guestbook-poetry-check {
  margin: 0;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: var(--brand-soft);
}

.guestbook-poetry-check legend {
  padding: 0 7px;
  color: var(--brand);
}

.guestbook-poetry-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  color: var(--muted);
  font-size: 9px;
}

.guestbook-poetry-line button {
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--brand);
  font-size: 9px;
  font-weight: 800;
}

.guestbook-poetry-check blockquote {
  margin: 15px 0;
  color: var(--brand-dark);
  font-family: "Songti SC", STSong, serif;
  font-size: 19px;
  line-height: 1.55;
  text-align: center;
}

.guestbook-poetry-check label {
  display: block;
}

.guestbook-poetry-check input {
  min-height: 43px;
  padding: 0 12px;
  background: white;
}

.guestbook-poetry-check > p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 9px;
}

.guestbook-poetry-check > p.error {
  color: #bd3348;
}

.guestbook-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 22px;
}

.guestbook-actions p {
  display: flex;
  align-items: center;
  gap: 7px;
  margin: 0;
  color: var(--muted);
  font-size: 9px;
}

.guestbook-actions p i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #e2a82d;
}

.guestbook-actions button {
  min-width: 150px;
  min-height: 47px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 0 15px 0 18px;
  border: 0;
  border-radius: 12px;
  background: var(--brand);
  color: white;
  font-size: 11px;
  font-weight: 800;
}

.guestbook-actions button:hover,
.guestbook-actions button:focus-visible {
  background: var(--brand-dark);
  outline: none;
}

.guestbook-actions button:disabled {
  cursor: wait;
  opacity: .6;
}

.guestbook-actions button i {
  font-size: 15px;
  font-style: normal;
}

.guestbook-toast {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 200;
  padding: 13px 17px;
  border-radius: 11px;
  background: var(--ink);
  color: white;
  box-shadow: 0 14px 34px rgba(0, 0, 0, .2);
  font-size: 11px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity .2s ease, transform .2s ease;
}

.guestbook-toast.show {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 920px) {
  .guestbook-heading {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .guestbook-poem {
    max-width: 520px;
  }

  .guestbook-note,
  .guestbook-note.featured,
  .guestbook-note.blue {
    min-height: 260px;
    grid-column: span 6;
  }

  .guestbook-note.featured {
    min-height: 330px;
    grid-column: span 12;
  }

  .guestbook-composer-card {
    grid-template-columns: 1fr;
  }

  .guestbook-composer-intro {
    display: none;
  }

  .guestbook-fields {
    padding-top: 60px;
  }
}

@media (max-width: 680px) {
  .guestbook {
    padding: 64px 0;
  }

  .guestbook-heading {
    margin-bottom: 38px;
  }

  .guestbook-heading h2 {
    font-size: clamp(27px, 7.6vw, 38px);
    white-space: normal;
  }

  .guestbook-intro {
    font-size: 13px;
  }

  .guestbook-toolbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .guestbook-write {
    width: 100%;
  }

  .guestbook-wall {
    gap: 14px;
  }

  .guestbook-note,
  .guestbook-note.featured,
  .guestbook-note.blue {
    min-height: 240px;
    grid-column: span 12;
    padding: 25px 22px 21px;
    transform: none;
  }

  .guestbook-note.featured {
    min-height: 320px;
  }

  .guestbook-note.featured .guestbook-message {
    margin: 34px 0;
    font-size: 22px;
  }

  .guestbook-fields {
    padding: 58px 18px 24px;
  }

  .guestbook-field-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .guestbook-privacy {
    margin: -11px 0 19px;
  }

  .guestbook-poetry-check blockquote {
    font-size: 17px;
  }

  .guestbook-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .guestbook-actions button {
    width: 100%;
  }

  .guestbook-toast {
    right: 12px;
    bottom: 12px;
    left: 12px;
    text-align: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  .guestbook *,
  .guestbook-composer *,
  .guestbook-toast {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }
}
