:root {
  --bg: #ffffff;
  --ink: #101116;
  --ink-soft: #5f6677;
  --line: #d5d8e0;
  --accent: #4b4ff2;
  --accent-strong: #3f43d8;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
}

body {
  position: relative;
  height: 100vh;
  overflow: hidden;
  color: var(--ink);
  font-family: "Manrope", sans-serif;
  background: var(--bg);
}

.ambient-bg {
  display: none;
}

.about-column {
  position: fixed;
  top: 0;
  left: 0;
  width: 30%;
  height: 100vh;
  padding: 1.3rem 1.45rem 0.7rem;
  z-index: 2;
}

.about-card {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  height: calc(100vh - 4.9rem);
  padding: 0;
  background: transparent;
  border: 0;
}

.tab-pane {
  display: none;
}

.tab-pane.active {
  display: block;
}

.eyebrow {
  margin: 0;
  color: var(--ink-soft);
}

.eyebrow,
.mini-gallery-label {
  font-size: 0.72rem !important;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.about-card h1 {
  margin: 0.35rem 0 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2rem, 2.9vw, 2.7rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--ink);
}

.about-card p {
  margin: 0.55rem 0 0;
  color: #1b1f2a;
  line-height: 1.64;
  font-size: 1rem;
}

.about-content p {
  margin-top: 0;
  font-size: 0.86rem;
  line-height: 1.38;
}

.about-content p + p {
  margin-top: 0.46rem;
}

.about-meta {
  display: grid;
  gap: 0.95rem;
  margin-top: 1.15rem;
}

.about-card .meta-label {
  margin: 0;
  color: #757d8f;
  font-size: 0.73rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.about-card .meta-value {
  margin: 0.2rem 0 0;
  color: var(--ink);
  font-weight: 700;
  line-height: 1.4;
}

.letter-column {
  margin-left: 30%;
  width: 70%;
  height: 100vh;
  overflow-y: auto;
  padding: 2rem 3rem 8.5rem 2rem;
  z-index: 1;
}

.letter-toolbar {
  position: sticky;
  top: 0.4rem;
  z-index: 5;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.3rem;
  padding: 0.75rem;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.65);
  background: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(18px);
  transition: top 180ms ease;
}

.letter-toolbar.toolbar-compact {
  top: -1.85rem;
}

.language-switch {
  position: relative;
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  gap: 0.22rem;
  max-width: 100%;
  overflow: visible;
  white-space: normal;
  scrollbar-width: none;
  padding: 0.26rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.65);
  background: rgba(255, 255, 255, 0.34);
  backdrop-filter: blur(20px) saturate(130%);
}

.language-switch::-webkit-scrollbar {
  display: none;
}

.language-switch::-webkit-scrollbar-thumb {
  display: none;
}

.lang-btn {
  flex: 1 1 0;
  min-width: 0;
  border: 0;
  background: transparent;
  padding: 0.42rem 0.18rem;
  border-radius: 999px;
  color: #44516d;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(0.62rem, 0.66vw, 0.74rem);
  font-weight: 700;
  letter-spacing: 0.025em;
  text-align: center;
  cursor: pointer;
  transition:
    color 220ms ease,
    background 220ms ease,
    opacity 220ms ease,
    transform 220ms ease,
    box-shadow 220ms ease;
}

.lang-btn.active {
  color: #ffffff;
  background: linear-gradient(145deg, #0b67f0, #0747a6);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.24), inset 0 0 0 1px rgba(6, 50, 120, 0.25);
  opacity: 1;
  transform: translateY(-1px);
}

.lang-btn:not(.active) {
  opacity: 0.8;
}

.lang-btn:hover:not(.active) {
  opacity: 0.95;
  background: rgba(255, 255, 255, 0.42);
}

.lang-btn:focus-visible {
  outline: 2px solid rgba(11, 103, 240, 0.5);
  outline-offset: 1px;
}

.counter {
  display: inline-flex;
  align-items: baseline;
  gap: 0.35rem;
  color: #677086;
}

.counter-value {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.66rem;
  font-weight: 700;
  color: var(--ink);
}

.counter-label {
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.about-counter {
  margin-top: 0.28rem;
  align-self: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.08rem;
  text-align: center;
  padding-top: 0.62rem;
  border-top: 1px solid var(--line);
}

.support-note {
  margin-top: 0.12rem !important;
  color: #5c6375 !important;
  font-size: 0.8rem !important;
  line-height: 1.38 !important;
}

.about-counter .counter-value {
  line-height: 1;
}

.about-share-group {
  margin-top: 0.28rem;
  align-self: center;
  flex: 0 0 auto;
  min-height: 0;
  position: relative;
  z-index: 5;
  justify-content: center;
  padding-top: 0;
  border-top: 0;
}

.about-share-hint {
  grid-column: auto;
  margin-top: 0.26rem;
  text-align: center;
}

.mini-gallery {
  margin-top: 0.16rem;
  padding-top: 0.44rem;
  border-top: 1px solid var(--line);
  width: min(100%, 430px);
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
}

.mini-gallery-label {
  margin: 0;
  color: #6b7388;
}

.mini-gallery-stack {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 0;
  height: 195px;
  margin-top: 0.42rem;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 0.56rem 0.5rem 0.86rem;
  scrollbar-width: thin;
  scrollbar-color: rgba(11, 24, 52, 0.25) transparent;
}

.mini-gallery-stack::-webkit-scrollbar {
  height: 6px;
}

.mini-gallery-stack::-webkit-scrollbar-thumb {
  background: rgba(11, 24, 52, 0.22);
  border-radius: 999px;
}

.mini-gallery-stack .gallery-thumb {
  position: relative;
  flex: 0 0 66px;
  width: 66px;
  height: 86px;
  padding: 4px 4px 5px;
  margin-right: -18px;
  border: 0;
  border-radius: 6px;
  background: #ffffff;
  box-shadow: 0 6px 14px rgba(14, 18, 28, 0.2);
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease;
  transform-origin: 50% 92%;
  transform: translateY(var(--y, 0px)) rotate(var(--r, 0deg));
}

.mini-gallery-stack .gallery-thumb:nth-child(6n + 1) {
  --r: -12deg;
  --y: 10px;
}

.mini-gallery-stack .gallery-thumb:nth-child(6n + 2) {
  --r: 10deg;
  --y: 2px;
}

.mini-gallery-stack .gallery-thumb:nth-child(6n + 3) {
  --r: -7deg;
  --y: 14px;
}

.mini-gallery-stack .gallery-thumb:nth-child(6n + 4) {
  --r: 11deg;
  --y: 4px;
}

.mini-gallery-stack .gallery-thumb:nth-child(6n + 5) {
  --r: -9deg;
  --y: 16px;
}

.mini-gallery-stack .gallery-thumb:nth-child(6n + 6) {
  --r: 6deg;
  --y: 0px;
}

.mini-gallery-stack .gallery-thumb:first-child {
  margin-left: 2px;
}

.mini-gallery-stack .gallery-thumb:last-child {
  margin-right: 2px;
}

.mini-gallery-stack .gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.mini-gallery-stack .gallery-thumb:hover,
.mini-gallery-stack .gallery-thumb:focus-visible {
  z-index: 6;
  box-shadow: 0 10px 18px rgba(14, 18, 28, 0.24);
  transform: translateY(calc(var(--y, 0px) - 2px)) rotate(var(--r, 0deg)) scale(1.03);
}

.mini-gallery-stack .gallery-thumb:focus-visible {
  outline: 2px solid rgba(75, 79, 242, 0.42);
  outline-offset: 2px;
}

.gallery-modal {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: none;
}

.gallery-modal.open {
  display: block;
}

.gallery-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 10, 16, 0.78);
  backdrop-filter: blur(2px);
}

.gallery-modal-panel {
  position: relative;
  width: min(62vw, 560px);
  height: min(92vh, 860px);
  margin: 5vh auto 0;
  border-radius: 18px;
  background: #11141d;
  box-shadow: 0 24px 44px rgba(0, 0, 0, 0.5);
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-modal-figure {
  margin: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 0;
}

#galleryModalImage {
  max-width: calc(100% - 3.1rem);
  max-height: calc(100% - 2rem);
  object-fit: contain;
  border-radius: 10px;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.45);
}

#galleryModalCaption {
  display: none;
}

.gallery-modal-close,
.gallery-modal-nav {
  position: absolute;
  border: 0;
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  color: #f4f7ff;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 160ms ease, transform 160ms ease;
}

.gallery-modal-close {
  top: 0.85rem;
  right: 0.85rem;
  font-size: 1.35rem;
}

.gallery-modal-nav {
  top: calc(50% - 1.15rem);
  font-size: 1.15rem;
  font-weight: 700;
}

.gallery-modal-nav.prev {
  left: 0.45rem;
}

.gallery-modal-nav.next {
  right: 0.45rem;
}

.gallery-modal-close:hover,
.gallery-modal-nav:hover,
.gallery-modal-close:focus-visible,
.gallery-modal-nav:focus-visible {
  background: rgba(255, 255, 255, 0.26);
  transform: scale(1.05);
  outline: none;
}

body.modal-open {
  overflow: hidden;
}

.letter-card {
  border: 0;
  background: transparent;
  padding: 0;
}

.letter-card h2 {
  margin: 0 0 1.2rem;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.9rem, 3.1vw, 3.1rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  color: var(--ink);
}

.letter-pane p {
  margin: 0;
  color: #171922;
  line-height: 1.72;
  font-size: 1.03rem;
}

.letter-pane p + p {
  margin-top: 0.85rem;
}

.letter-pane .demands-list {
  margin: 0.95rem 0 0;
  padding-left: 1.35rem;
  color: #171922;
  line-height: 1.7;
  font-size: 1.02rem;
}

.letter-pane .demands-list li + li {
  margin-top: 0.6rem;
}

.letter-signoff {
  margin-top: 1.35rem !important;
  font-size: 1.08rem !important;
}

.trust-note {
  margin-top: 1.5rem !important;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
  color: #5b6377 !important;
  font-size: 0.92rem !important;
}

.bottom-bar {
  position: fixed;
  left: 30%;
  right: 0;
  bottom: 0;
  width: 70%;
  z-index: 10;
  display: grid;
  grid-template-columns: minmax(180px, auto) minmax(0, 1fr) auto;
  align-items: center;
  column-gap: 1rem;
  row-gap: 0.5rem;
  padding: 0.7rem 1rem;
  border-top: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(8px);
}

.bottom-counter {
  justify-self: start;
}

.bottom-counter .counter-value {
  font-size: 1.82rem;
  line-height: 1;
}

.status {
  color: #575f72;
  font-size: 0.9rem;
}

.cta-group {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  justify-self: end;
  margin-left: auto;
  gap: 0.7rem;
}

.cta-group .petition-sign-wrapper {
  display: inline-flex;
  align-items: center;
}

.cta-group > .btn,
.cta-group > .petition-sign-wrapper {
  flex: 0 0 16rem;
  width: 16rem;
}

.cta-group > .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.78rem;
  padding: 0.72rem 1.18rem;
}

.cta-group > .petition-sign-wrapper .petition-sign-open {
  width: 100%;
  min-height: 2.78rem;
  padding: 0.72rem 1.18rem;
  border-radius: 999px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.share-group {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  overflow-x: auto;
  overflow-y: hidden;
  white-space: nowrap;
  scrollbar-width: none;
}

.share-group.about-share-group {
  justify-content: center;
  flex-wrap: wrap;
  overflow: visible;
  overflow-x: visible;
  overflow-y: visible;
  white-space: normal;
  row-gap: 0.45rem;
}

.about-share-group .share-btn {
  width: 3.15rem;
  height: 3.15rem;
}

.about-share-group .share-btn-story {
  padding: 0 0.85rem;
}

.about-share-group .share-icon {
  width: 1.4rem;
  height: 1.4rem;
}

.about-share-group .share-divider {
  height: 1.2rem;
}

.share-group::-webkit-scrollbar {
  display: none;
}

.share-btn {
  flex: 0 0 auto;
  border: 1px solid #bcc2d2;
  background: #ffffff;
  color: #232735;
  border-radius: 999px;
  width: 2.25rem;
  height: 2.25rem;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 160ms ease, border-color 160ms ease, transform 160ms ease, color 160ms ease;
}

.share-btn-story {
  width: auto;
  padding: 0 0.55rem;
}

.share-logos {
  display: inline-flex;
  align-items: center;
  gap: 0.42rem;
}

.share-divider {
  width: 1px;
  height: 0.9rem;
  background: #c8cedc;
}

.share-icon {
  width: 1rem;
  height: 1rem;
  fill: currentColor;
}

.share-btn[data-share="facebook"] {
  color: #1877f2;
}

.share-btn[data-share="x"] {
  color: #111111;
}

.share-btn[data-share="whatsapp"] {
  color: #25d366;
}

.share-btn[data-share="telegram"] {
  color: #229ed9;
}

.share-btn[data-share="sms"] {
  color: #4b4ff2;
}

.share-btn[data-share="story"] {
  color: #4b4ff2;
}

.share-btn:hover {
  background: rgba(75, 79, 242, 0.08);
  border-color: #9fa6bb;
  transform: translateY(-1px);
}

.share-btn:focus-visible {
  outline: 2px solid rgba(75, 79, 242, 0.4);
  outline-offset: 1px;
}

.share-hint {
  grid-column: 1 / -1;
  min-height: 0;
  color: #5d667b;
  font-size: 0.78rem;
  line-height: 1.2;
}

.share-hint:empty {
  display: none;
}

.share-hint.error {
  color: #ad2f40;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.btn {
  border: 0;
  border-radius: 999px;
  padding: 0.72rem 1.18rem;
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  text-decoration: none;
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease, color 160ms ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn:disabled {
  opacity: 0.65;
  cursor: not-allowed;
  transform: none;
}

.btn-primary {
  color: #ffffff;
  background: var(--accent);
}

.btn-primary:hover {
  background: var(--accent-strong);
}

.btn-ghost {
  color: #202431;
  background: transparent;
  border: 1px solid #bfc4d1;
}

.btn-ghost:hover {
  background: rgba(0, 0, 0, 0.04);
}

@media (min-width: 1025px) {
  .eyebrow,
  .mini-gallery-label {
    font-family: "Manrope", sans-serif !important;
    font-weight: 700 !important;
  }

  .about-content p {
    font-family: "Manrope", sans-serif !important;
  }

  .support-note {
    font-family: "Manrope", sans-serif !important;
  }
}

@media (max-width: 1024px) {
  body {
    display: flex;
    flex-direction: column;
    height: auto;
    overflow: auto;
  }

  .about-column {
    order: 2;
    position: static;
    width: 100%;
    height: auto;
    padding: 1rem 1rem 15rem;
  }

  .about-card {
    height: auto;
  }

  .about-share-group {
    align-self: center;
  }

  .language-switch {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    overflow: visible;
    white-space: normal;
    gap: 0.32rem;
    border-radius: 18px;
  }

  .lang-btn {
    flex: initial;
    min-width: 0;
    width: 100%;
    padding: 0.42rem 0.25rem;
    font-size: 0.96rem;
    letter-spacing: 0.02em;
  }

  .mini-gallery {
    width: 100%;
    max-width: none;
    margin-left: 0;
    margin-right: 0;
  }

  .mini-gallery-stack {
    height: auto;
    margin-top: 0.5rem;
    padding: 0.18rem 0 1rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-content: flex-start;
    overflow: visible;
    overflow-x: visible;
    overflow-y: visible;
  }

  .mini-gallery-stack .gallery-thumb {
    margin-right: -14px;
    margin-bottom: -18px;
  }

  .mini-gallery-stack .gallery-thumb:first-child {
    margin-left: 0;
  }

  .mini-gallery-stack .gallery-thumb:last-child {
    margin-right: 0;
  }

  .letter-column {
    order: 1;
    margin-left: 0;
    width: 100%;
    height: auto;
    overflow: visible;
    position: relative;
    padding: 0.9rem 1rem 2.2rem;
  }

  .about-content p {
    margin-top: 0;
    color: #171922;
    font-size: 1.03rem;
    line-height: 1.72;
  }

  .about-content p + p {
    margin-top: 0.85rem;
  }

  .support-note {
    margin-top: 0.85rem !important;
    color: #171922 !important;
    font-size: 1.03rem !important;
    line-height: 1.72 !important;
  }

  .letter-toolbar {
    position: sticky;
    top: 0.4rem;
    z-index: 30;
  }

  .letter-card h2 {
    font-size: clamp(1.7rem, 5vw, 2.4rem);
  }

  .eyebrow,
  .mini-gallery-label {
    font-family: "Space Grotesk", sans-serif !important;
    font-size: clamp(1.6rem, 5vw, 2.4rem) !important;
    font-weight: 700 !important;
    letter-spacing: -0.02em !important;
    text-transform: none !important;
    color: var(--ink) !important;
    margin: 0.2rem 0 0.8rem !important;
  }

  .bottom-bar {
    left: 0;
    right: 0;
    width: 100%;
  }

  .bottom-counter {
    justify-self: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.08rem;
    text-align: center;
  }
}

@media (max-height: 900px) and (min-width: 1025px) {
  .about-column {
    padding: 1rem 1.2rem 0.45rem;
  }

  .about-card {
    gap: 0.42rem;
    height: calc(100vh - 4rem);
  }

  .about-content p {
    margin-top: 0;
    font-size: 0.78rem;
    line-height: 1.32;
  }

  .about-content p + p {
    margin-top: 0.34rem;
  }

  .support-note {
    font-size: 0.72rem !important;
    line-height: 1.32 !important;
  }

  .counter-value {
    font-size: 1.4rem;
  }

  .counter-label {
    font-size: 0.7rem;
  }

  .mini-gallery-stack {
    height: 145px;
    padding-top: 0.42rem;
    padding-bottom: 0.6rem;
  }

  .mini-gallery-stack .gallery-thumb {
    flex-basis: 56px;
    width: 56px;
    height: 74px;
    margin-right: -16px;
    padding: 4px;
  }
}

@media (max-width: 680px) {
  .eyebrow {
    text-transform: uppercase !important;
    letter-spacing: 0.08em !important;
  }

  .letter-toolbar {
    position: static;
    top: auto;
    z-index: auto;
  }

  .counter {
    justify-content: center;
  }

  .letter-column {
    padding-bottom: 2rem;
  }

  .bottom-bar {
    left: 0;
    right: 0;
    width: 100%;
    grid-template-columns: 1fr;
    align-items: center;
    padding: 0.82rem;
  }

  .status {
    text-align: center;
  }

  .share-group {
    justify-content: flex-start;
  }

  .about-share-group {
    justify-content: center;
  }

  .cta-group {
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-end;
    justify-self: end;
    width: 100%;
    gap: 0.7rem;
  }

  .cta-group > .btn,
  .cta-group > .petition-sign-wrapper {
    flex: 1 1 0;
    width: auto;
    min-width: 0;
  }

  .btn {
    width: auto;
    text-align: center;
  }

  .cta-group .btn {
    padding: 0.62rem 0.9rem;
    font-size: 0.84rem;
    min-height: 2.78rem;
    height: 2.78rem;
    line-height: 1;
  }

  .cta-group > .petition-sign-wrapper .petition-sign-open {
    min-height: 2.78rem;
    height: 2.78rem;
    padding: 0.62rem 0.9rem;
    font-size: 0.84rem;
    line-height: 1;
  }

  .bottom-counter {
    justify-self: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.08rem;
    text-align: center;
  }

  .mini-gallery {
    width: 100%;
    max-width: none;
    margin-left: 0;
    margin-right: 0;
  }

  .mini-gallery-stack {
    height: auto;
    margin-top: 0.5rem;
    padding: 0.12rem 0 9.8rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-content: flex-start;
    overflow: visible;
    overflow-x: visible;
    overflow-y: visible;
  }

  .mini-gallery-stack .gallery-thumb {
    flex-basis: 64px;
    width: 64px;
    height: 84px;
    margin-right: -14px;
    margin-bottom: -18px;
    padding: 4px;
  }

  .mini-gallery-stack .gallery-thumb:first-child {
    margin-left: 0;
  }

  .mini-gallery-stack .gallery-thumb:last-child {
    margin-right: 0;
  }

  .language-switch {
    display: grid;
    grid-template-columns: repeat(10, minmax(0, 1fr));
    gap: 0.18rem;
    overflow: visible;
    white-space: normal;
  }

  .lang-btn {
    flex: initial;
    min-width: 0;
    width: 100%;
    padding: 0.34rem 0.08rem;
    font-size: 0.96rem;
    letter-spacing: 0.01em;
  }

  .gallery-modal-panel {
    width: 96vw;
    height: min(90vh, 740px);
    padding: 0.9rem;
  }

  .gallery-modal-nav.prev {
    left: 0.4rem;
  }

  .gallery-modal-nav.next {
    right: 0.4rem;
  }

  #galleryModalImage {
    max-width: calc(100% - 3.8rem);
    max-height: calc(100% - 1.8rem);
  }
}

.plain-letter {
  white-space: normal;
}

.plain-letter p {
  margin: 0;
}

.plain-letter p + p {
  margin-top: 0.85rem;
}
