.manifesto-shell {
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto auto;
}

.site-nav a[aria-current="page"] {
  color: var(--accent);
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 9px;
}

.manifesto-article {
  position: relative;
  min-height: clamp(900px, 116svh, 1320px);
  overflow: hidden;
  isolation: isolate;
}

.manifesto-stream {
  position: absolute;
  z-index: -1;
  inset: 0;
  pointer-events: none;
}

.manifesto-stream img {
  width: 100%;
  height: min(72vw, 980px);
  object-fit: cover;
  object-position: top right;
  -webkit-mask-image: linear-gradient(to bottom, #000 72%, transparent 100%);
  mask-image: linear-gradient(to bottom, #000 72%, transparent 100%);
}

.manifesto-content {
  width: min(1240px, calc(100% - 72px));
  margin: 0 auto;
  padding: clamp(300px, 31vw, 480px) 0 clamp(80px, 10vw, 150px);
}

.manifesto-index {
  margin: 0 0 34px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.manifesto-content h1 {
  max-width: 9ch;
  font-size: clamp(64px, 7vw, 108px);
  line-height: 0.9;
}

.manifesto-body {
  display: grid;
  gap: 1.45em;
  max-width: 670px;
  margin-top: clamp(54px, 7vw, 92px);
  color: var(--text);
  font-size: clamp(18px, 1.65vw, 25px);
  line-height: 1.58;
  text-wrap: pretty;
}

.manifesto-body p {
  margin: 0;
}

@media (max-width: 980px) {
  .manifesto-article {
    min-height: 1050px;
  }

  .manifesto-stream img {
    height: 720px;
  }

  .manifesto-content {
    width: min(760px, calc(100% - 56px));
    padding-top: 330px;
  }
}

@media (max-width: 640px) {
  .manifesto-article {
    min-height: 980px;
  }

  .manifesto-stream img {
    width: 100%;
    height: 760px;
    opacity: 0.88;
    object-position: top right;
    -webkit-mask-image: linear-gradient(
      to bottom,
      #000 0,
      #000 24%,
      rgba(0, 0, 0, 0.48) 38%,
      transparent 60%
    );
    mask-image: linear-gradient(
      to bottom,
      #000 0,
      #000 24%,
      rgba(0, 0, 0, 0.48) 38%,
      transparent 60%
    );
  }

  .manifesto-content {
    width: calc(100% - 32px);
    padding: 250px 0 72px;
  }

  .manifesto-index {
    margin-bottom: 20px;
    font-size: 11px;
  }

  .manifesto-content h1 {
    max-width: 8ch;
    font-size: clamp(48px, 14.5vw, 68px);
    line-height: 0.91;
  }

  .manifesto-body {
    max-width: calc(100% - 32px);
    margin-top: 48px;
    font-size: clamp(16px, 4.8vw, 20px);
    line-height: 1.55;
  }
}

@media (max-width: 380px) {
  .manifesto-content {
    padding-top: 220px;
  }

  .manifesto-content h1 {
    font-size: 46px;
  }
}
