@font-face {
  font-family: 'Source Code Pro';
  src: url('/fonts/source-code-pro-variable.ttf') format('truetype');
  font-style: normal;
  font-weight: 200 900;
  font-display: swap;
}

:root {
  color-scheme: dark;
  --gallery: #11110f;
  --gallery-ink: #f1efe8;
  --gallery-muted: #77766f;
  --paper: #efefed;
  --ink: #10100f;
  --orange: #ee5f2b;
  --teal: #1d7580;
  --olive: #4d5848;
  --mono: 'Source Code Pro', 'Courier New', monospace;
  --sans: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  --heavy: 'Arial Black', 'Helvetica Neue', Arial, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  scroll-behavior: smooth;
  scroll-snap-type: y mandatory;
  background: var(--gallery);
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  background: var(--gallery);
  color: var(--gallery-ink);
  font-family: var(--mono);
  font-size: 12px;
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}

.gallery-head,
.study-nav,
.gallery-hint,
main {
  transition:
    filter 360ms var(--ease),
    opacity 360ms var(--ease);
}

body.is-leaving .gallery-head,
body.is-leaving .study-nav,
body.is-leaving .gallery-hint,
body.is-leaving main {
  filter: blur(12px);
  opacity: 0;
  pointer-events: none;
}

button,
a {
  color: inherit;
  font: inherit;
}

button {
  border: 0;
}

img {
  display: block;
  max-width: 100%;
}

::selection {
  background: #f3652f;
  color: #11110f;
}

.gallery-head {
  position: fixed;
  z-index: 20;
  top: 0;
  right: 0;
  left: 0;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 18px 20px;
  pointer-events: none;
  mix-blend-mode: difference;
}

.gallery-brand {
  display: flex;
  align-items: baseline;
  gap: 14px;
  color: #fff;
  line-height: 1;
  text-decoration: none;
  pointer-events: auto;
}

.gallery-brand span {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: -0.04em;
}

.gallery-brand small,
.gallery-status {
  margin: 0;
  font-size: 8px;
  font-weight: 560;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.gallery-brand small {
  color: rgba(255, 255, 255, 0.62);
  transition: color 220ms var(--ease);
}

.gallery-brand:hover small,
.gallery-brand:focus-visible small {
  color: #cddd81;
}

.gallery-status {
  display: flex;
  gap: 7px;
  color: #fff;
}

.study-nav {
  position: fixed;
  z-index: 20;
  top: 50%;
  right: 18px;
  display: grid;
  gap: 7px;
  transform: translateY(-50%);
  mix-blend-mode: difference;
}

.study-nav a {
  position: relative;
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 50%;
  color: #fff;
  font-size: 8px;
  text-decoration: none;
  transition:
    color 220ms var(--ease),
    background 220ms var(--ease),
    transform 220ms var(--ease);
}

.study-nav a:hover {
  transform: scale(1.12);
}

.study-nav a[aria-current='true'] {
  background: #fff;
  color: #000;
}

.gallery-hint {
  position: fixed;
  z-index: 20;
  bottom: 18px;
  left: 20px;
  display: flex;
  gap: 10px;
  margin: 0;
  color: #fff;
  font-size: 8px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  mix-blend-mode: difference;
  transition: opacity 300ms var(--ease);
}

.study {
  display: grid;
  min-height: 100vh;
  min-height: 100svh;
  place-items: center;
  padding: 34px 64px;
  overflow: hidden;
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

.study--still {
  background: #c9c9c5;
}

.study--slow {
  background: #244c50;
}

.study--room {
  background: #c7c5c1;
}

.study--signal {
  background: #c4b79f;
}

.study--idea {
  background: #c8bda8;
}

.study--drift {
  background: #9a4a25;
}

.study--reply {
  background: #9c927f;
}

.study--air {
  background: #8ca4ad;
}

.study--free {
  background: #829ca2;
}

.poster {
  --move-x: 0px;
  --move-y: 0px;
  position: relative;
  width: auto;
  max-width: calc(100vw - 128px);
  height: calc(100svh - 68px);
  max-height: 1240px;
  overflow: hidden;
  color: var(--ink);
  container-type: inline-size;
  isolation: isolate;
  opacity: 0;
  transform: translateY(34px) scale(0.985);
  transition:
    opacity 700ms var(--ease),
    transform 900ms var(--ease);
}

.study.is-visible .poster {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.poster::after {
  position: absolute;
  z-index: 12;
  inset: 0;
  content: '';
  opacity: 0;
  pointer-events: none;
}

.poster--still::after,
.poster--room::after,
.poster--idea::after,
.poster--air::after {
  background-image: url('/showcase/editorial-posters/assets/paper-grain.png');
  background-position: 37% 19%;
  background-repeat: repeat;
  background-size: 224px 224px;
  mix-blend-mode: multiply;
  opacity: 0.18;
}

.poster--room::after {
  background-position: 71% 43%;
  background-size: 207px 207px;
  opacity: 0.16;
}

.poster--idea::after {
  background-position: 18% 67%;
  background-size: 239px 239px;
  mix-blend-mode: multiply;
  opacity: 0.22;
}

.poster--air::after {
  z-index: 15;
  background-position: 43% 71%;
  background-size: 194px 194px;
  mix-blend-mode: multiply;
  opacity: 0.12;
}

.poster--generated {
  background: #f2efe6;
}

.poster--free {
  --poster-ratio: 0.63926;
  aspect-ratio: 1003 / 1569;
}

.generated-poster {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.poster__photo {
  transition: transform 900ms var(--ease);
}

.poster:hover .poster__photo {
  transform: translate(var(--move-x), var(--move-y)) scale(1.018);
}

.poster--still {
  aspect-ratio: 800 / 1228;
  background: #efefed;
}

.still-photo {
  position: absolute;
  z-index: 1;
  top: 2.6%;
  bottom: 3.3%;
  left: 2.4%;
  width: 35.6%;
  overflow: hidden;
  background: #c8c8c6;
}

.still-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
}

.still-photo-number {
  position: absolute;
  z-index: 2;
  top: 5.3%;
  left: 5.7%;
  margin: 0;
  font-family: var(--sans);
  font-size: 2.5cqw;
  font-weight: 800;
  letter-spacing: -0.07em;
}

.still-vertical {
  position: absolute;
  z-index: 3;
  top: 6.4%;
  left: 44.7%;
  display: flex;
  align-items: flex-start;
  gap: 0.5cqw;
  margin: 0;
  font-size: 1.32cqw;
  letter-spacing: 0.025em;
  line-height: 1.05;
  text-transform: uppercase;
  transform: rotate(90deg);
  transform-origin: top left;
}

.still-vertical strong {
  font-weight: 640;
}

.still-vertical span {
  color: #5c5c59;
}

.still-date {
  position: absolute;
  z-index: 3;
  top: 3.8%;
  right: 7.5%;
  margin: 0;
  font-family: var(--sans);
  font-size: 4.4cqw;
  font-weight: 900;
  letter-spacing: -0.09em;
  line-height: 0.8;
}

.still-kicker {
  position: absolute;
  z-index: 3;
  top: 37.4%;
  left: 68%;
  margin: 0;
  font-size: 1.7cqw;
  letter-spacing: 0.55em;
}

.still-title {
  position: absolute;
  z-index: 4;
  top: 43.5%;
  left: 62.2%;
  margin: 0;
  font-family: var(--sans);
  font-size: 8.1cqw;
  font-weight: 900;
  letter-spacing: -0.095em;
  line-height: 1;
}

.still-title span {
  position: absolute;
  z-index: -1;
  top: 72%;
  left: 0;
  color: transparent;
  -webkit-text-stroke: 0.12cqw rgba(16, 16, 15, 0.15);
  transform: scaleY(-1);
}

.still-copy {
  position: absolute;
  z-index: 3;
  top: 65%;
  left: 62%;
  width: 28%;
}

.still-copy strong {
  display: block;
  margin: 0 0 2.2cqw auto;
  font-family: Georgia, serif;
  font-size: 1.8cqw;
  font-style: italic;
  font-weight: 600;
  text-align: right;
}

.still-copy p {
  margin: 0;
  color: #5e5e5a;
  font-family: var(--sans);
  font-size: 1.52cqw;
  letter-spacing: -0.03em;
  line-height: 1.34;
}

.poster--slow {
  aspect-ratio: 996 / 1242;
  border-radius: 0;
  background: #e7ddc5;
}

.slow-photo {
  position: absolute;
  z-index: 0;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slow-topline,
.slow-label,
.slow-note,
.slow-title,
.slow-bottom,
.slow-issue {
  position: absolute;
  z-index: 3;
}

.slow-topline {
  top: 35.7%;
  right: 5.3%;
  left: 5.3%;
  display: grid;
  grid-template-columns: 1.15fr 1fr auto;
  color: #e76538;
  font-size: 0.88cqw;
  font-weight: 680;
  letter-spacing: 0.05em;
}

.slow-label {
  top: 38.4%;
  left: 5.3%;
  display: flex;
  width: 51.3%;
  align-items: center;
  justify-content: space-between;
  border: 0.13cqw solid rgba(231, 96, 48, 0.78);
  padding: 1.1cqw 1.8cqw;
  color: #e55f31;
}

.slow-label strong {
  font-family: Georgia, serif;
  font-size: 2.8cqw;
  font-weight: 900;
  letter-spacing: -0.05em;
  line-height: 1;
}

.slow-label span {
  font-size: 0.82cqw;
  font-weight: 680;
}

.slow-note {
  top: 38.4%;
  right: 5.3%;
  width: 36.5%;
  margin: 0;
  color: #ce613d;
  font-size: 0.82cqw;
  font-weight: 630;
  letter-spacing: 0.05em;
  line-height: 1.35;
}

.slow-title {
  top: 41.8%;
  right: 2.8%;
  left: 3.7%;
  margin: 0;
  color: #ee6331;
  font-family: var(--heavy);
  font-size: 17.7cqw;
  font-weight: 900;
  letter-spacing: -0.09em;
  line-height: 0.82;
  mix-blend-mode: multiply;
  white-space: nowrap;
}

.slow-bottom {
  bottom: 2.6%;
  left: 5.3%;
  margin: 0;
  color: #eee4c8;
  font-size: 1.05cqw;
  font-weight: 650;
  letter-spacing: 0.07em;
}

.slow-issue {
  right: 4.2%;
  bottom: 1.2%;
  margin: 0;
  color: #efe5c8;
  font-family: var(--heavy);
  font-size: 6.6cqw;
  font-weight: 900;
  letter-spacing: -0.09em;
}

.poster--room {
  aspect-ratio: 720 / 900;
  background: #f5f3ef;
}

.room-title,
.room-memory,
.room-data,
.room-copyright {
  position: absolute;
  z-index: 4;
}

.room-title {
  top: 30.3%;
  left: 2%;
  margin: 0;
  font-family: var(--sans);
  font-size: 7.7cqw;
  font-weight: 700;
  letter-spacing: -0.055em;
  line-height: 0.86;
  white-space: nowrap;
}

.room-photo {
  position: absolute;
  z-index: 1;
  right: 1.6%;
  bottom: 1.1%;
  left: 1.6%;
  width: 96.8%;
  height: 55.1%;
  clip-path: inset(7.4% 0 0);
  object-fit: contain;
  object-position: center bottom;
}

.poster--room:hover .room-photo {
  transform: none;
}

.room-memory {
  top: 41.35%;
  left: 54.2%;
  transform: translateX(-50%);
}

.room-folder {
  position: relative;
  display: grid;
  width: 8.3cqw;
  height: 6.85cqw;
  margin-top: 1.2cqw;
  place-items: center;
  background: #151412;
}

.room-folder::before {
  position: absolute;
  top: -1.2cqw;
  left: 0;
  width: 3.35cqw;
  height: 1.2cqw;
  background: #151412;
  content: '';
}

.room-folder span {
  color: #f5f3ef;
  font-size: 0.88cqw;
  font-weight: 680;
  letter-spacing: 0.16em;
  line-height: 1;
  text-indent: 0.16em;
}

.room-data {
  top: 38.5%;
  right: 2.2%;
  margin: 0;
  font-size: 0.86cqw;
  font-weight: 590;
  letter-spacing: -0.03em;
  line-height: 1.2;
  text-align: right;
}

.room-copyright {
  right: 2.4%;
  bottom: 1.6%;
  margin: 0;
  font-family: var(--sans);
  font-size: 2.4cqw;
  font-weight: 600;
  letter-spacing: -0.06em;
}

.poster--signal {
  aspect-ratio: 996 / 1240;
  border-radius: 0;
  background: #ded4c0;
}

.signal-photo {
  position: absolute;
  z-index: 0;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.signal-title,
.signal-meta,
.signal-date,
.signal-bottom {
  position: absolute;
}

.signal-title {
  z-index: 3;
  top: -1.5%;
  left: 2.5%;
  margin: 0;
  color: #4e594b;
  font-family: var(--heavy);
  font-size: 16.8cqw;
  font-weight: 900;
  letter-spacing: -0.085em;
  line-height: 0.86;
  white-space: nowrap;
}

.signal-meta {
  z-index: 3;
  top: 45.1%;
  display: grid;
  gap: 0.25cqw;
  color: #465046;
  font-size: 0.85cqw;
  font-weight: 660;
  letter-spacing: 0.02em;
  line-height: 1.15;
}

.signal-meta--left {
  left: 2.2%;
  text-align: center;
}

.signal-meta--right {
  right: 2.3%;
}

.signal-date {
  z-index: 3;
  top: 45.1%;
  left: 20.2%;
  margin: 0;
  color: #465046;
  font-size: 0.8cqw;
  font-weight: 650;
}

.signal-bottom {
  z-index: 2;
  right: 2.8%;
  bottom: -3.3%;
  left: 10.5%;
  margin: 0;
  color: #4e594b;
  font-family: var(--heavy);
  font-size: 20.7cqw;
  font-weight: 900;
  letter-spacing: -0.09em;
  line-height: 0.82;
  white-space: nowrap;
}

.poster--idea {
  aspect-ratio: 1122 / 1402;
  border-radius: 0;
  background: #f2ead8;
}

.idea-photo,
.drift-photo {
  position: absolute;
  z-index: 0;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.idea-dept,
.idea-code,
.idea-copy {
  position: absolute;
  z-index: 3;
}

.idea-dept {
  top: 8.4%;
  left: 15.2%;
  margin: 0;
  font-family: var(--sans);
  font-size: 2.45cqw;
  font-weight: 500;
  letter-spacing: -0.055em;
}

.idea-code {
  top: 9%;
  right: 8.2%;
  margin: 0;
  font-size: 0.88cqw;
  font-weight: 640;
  letter-spacing: 0.055em;
}

.idea-copy {
  bottom: 7%;
  left: 15.2%;
  width: 58%;
}

.idea-copy h2 {
  margin: 0 0 0.65cqw;
  font-family: var(--sans);
  font-size: 3.65cqw;
  font-weight: 520;
  letter-spacing: -0.055em;
  line-height: 1;
}

.idea-copy p {
  margin: 0;
  font-family: var(--sans);
  font-size: 1.15cqw;
  letter-spacing: -0.03em;
  line-height: 1.28;
}

.idea-copy strong {
  font-weight: 640;
}

.poster--drift {
  aspect-ratio: 978 / 1608;
  border-radius: 0;
  background: #efe4cc;
}

.drift-copy,
.drift-index {
  position: absolute;
  z-index: 3;
}

.drift-copy {
  top: 4.7%;
  right: 5.5%;
  width: 53.5%;
  color: #27241f;
}

.drift-date {
  margin: 0 0 1.75cqw;
  font-size: 1.15cqw;
  font-weight: 650;
  letter-spacing: 0.035em;
}

.drift-rule {
  display: block;
  width: 3.1cqw;
  height: 0.28cqw;
  margin-bottom: 0.9cqw;
  background: currentColor;
}

.drift-copy h2 {
  margin: 0;
  font-family: var(--heavy);
  font-size: 5.5cqw;
  font-weight: 900;
  letter-spacing: -0.065em;
  line-height: 0.92;
}

.drift-definition {
  max-width: 37cqw;
  margin: 1.3cqw 0 0;
  font-size: 1.05cqw;
  font-weight: 560;
  letter-spacing: -0.025em;
  line-height: 1.47;
}

.drift-issue {
  display: grid;
  gap: 0.35cqw;
  margin: 2cqw 0 0;
}

.drift-issue span {
  font-size: 0.86cqw;
  font-weight: 660;
  letter-spacing: 0.05em;
}

.drift-issue strong {
  font-size: 4.4cqw;
  font-weight: 520;
  letter-spacing: 0.04em;
  line-height: 1;
}

.drift-index {
  right: 3.2%;
  bottom: 2.2%;
  margin: 0;
  color: #28251f;
  font-size: 0.9cqw;
  font-weight: 650;
  letter-spacing: 0.06em;
}

.poster--reply {
  aspect-ratio: 1122 / 1402;
  border-radius: 0;
  background: #e6dfd1;
}

.reply-photo {
  position: absolute;
  z-index: 0;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.reply-title,
.reply-bubble,
.reply-meta,
.reply-date,
.reply-study,
.reply-bottom,
.reply-material {
  position: absolute;
}

.reply-title {
  z-index: 3;
  top: -1.15%;
  right: 2.2%;
  left: 2.2%;
  margin: 0;
  color: #42463f;
  font-family: var(--heavy);
  font-size: 15.3cqw;
  font-weight: 900;
  letter-spacing: -0.085em;
  line-height: 0.86;
  text-align: center;
  white-space: nowrap;
}

.reply-bubble {
  z-index: 5;
  top: 36.8%;
  left: 63.2%;
  margin: 0;
  border-radius: 10cqw;
  padding: 1.05cqw 2.15cqw 1.2cqw;
  background: #f16e22;
  color: #fff9ed;
  font-family: var(--sans);
  font-size: 2.45cqw;
  letter-spacing: -0.045em;
  line-height: 1;
  white-space: nowrap;
}

.reply-bubble::after {
  position: absolute;
  top: calc(100% - 0.3cqw);
  left: 0.95cqw;
  width: 0;
  height: 0;
  border-top: 1.45cqw solid #f16e22;
  border-left: 1.7cqw solid transparent;
  content: '';
}

.reply-meta {
  z-index: 3;
  top: 45.5%;
  display: grid;
  gap: 0.22cqw;
  color: #42463f;
  font-size: 0.8cqw;
  font-weight: 660;
  letter-spacing: 0.025em;
  line-height: 1.16;
}

.reply-meta--left {
  left: 2.2%;
  text-align: center;
}

.reply-meta--right {
  right: 2.3%;
}

.reply-date {
  z-index: 3;
  top: 45.5%;
  left: 20.5%;
  margin: 0;
  color: #42463f;
  font-size: 0.76cqw;
  font-weight: 650;
}

.reply-study {
  z-index: 3;
  top: 48.8%;
  right: 2.3%;
  margin: 0;
  color: #42463f;
  font-size: 0.74cqw;
  font-weight: 650;
  letter-spacing: 0.03em;
}

.reply-bottom {
  z-index: 2;
  right: 2.8%;
  bottom: -3.3%;
  left: 8%;
  margin: 0;
  color: #42463f;
  font-family: var(--heavy);
  font-size: 20.6cqw;
  font-weight: 900;
  letter-spacing: -0.09em;
  line-height: 0.82;
  text-align: center;
  white-space: nowrap;
}

.reply-material {
  z-index: 13;
  bottom: 1.35%;
  left: 2.2%;
  margin: 0;
  color: #42463f;
  font-size: 0.68cqw;
  font-weight: 650;
  letter-spacing: 0.06em;
}

.poster--air {
  aspect-ratio: 736 / 920;
  background: #efefe9;
}

.air-star,
.air-tags,
.air-heading,
.air-credit,
.air-note,
.air-index {
  position: absolute;
  z-index: 6;
}

.air-star {
  top: 2.1%;
  color: #22221f;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 5.1cqw;
  line-height: 1;
}

.air-star--left {
  left: 5.7%;
}

.air-star--right {
  right: 5.7%;
}

.air-tags {
  top: 18.4%;
  left: 6%;
  display: flex;
  gap: 3.9cqw;
  margin: 0;
  font-family: var(--sans);
  font-size: 2.05cqw;
  font-weight: 500;
  letter-spacing: -0.045em;
}

.air-heading {
  top: 38.6%;
  right: 5.7%;
  left: 5.7%;
}

.air-heading p {
  margin: 0 0 -1.1cqw;
  font-family: var(--sans);
  font-size: 3.45cqw;
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 1;
}

.air-heading h2 {
  margin: 0;
  background-image: url('/showcase/editorial-posters/assets/08-open-sky-v2.jpg');
  background-position: 50% 18%;
  background-size: 112% auto;
  background-clip: text;
  color: transparent;
  font-family: var(--heavy);
  font-size: 23.2cqw;
  font-weight: 900;
  letter-spacing: -0.115em;
  line-height: 0.81;
  white-space: nowrap;
  -webkit-background-clip: text;
}

.air-image {
  position: absolute;
  z-index: 7;
  top: 38.4%;
  right: 5.7%;
  bottom: 3.35%;
  left: 5.7%;
}

.air-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 94%;
}

.air-image__base {
  z-index: 2;
  clip-path: inset(calc(29.5% - 4px) 0 0 0);
}

.air-image__subject {
  z-index: 5;
}

.air-credit {
  z-index: 8;
  top: 51.7%;
  right: 5.7%;
  margin: 0;
  padding: 0.35cqw 0 0.35cqw 1cqw;
  background: #efefe9;
  font-family: var(--sans);
  font-size: 1.45cqw;
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 1;
}

.air-note {
  z-index: 8;
  bottom: 5.7%;
  left: 7.5%;
  margin: 0;
  color: rgba(239, 239, 233, 0.92);
  font-family: var(--sans);
  font-size: 1.15cqw;
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.35;
}

.air-index {
  z-index: 8;
  right: 7.2%;
  bottom: 5.7%;
  margin: 0;
  color: rgba(239, 239, 233, 0.92);
  font-size: 0.86cqw;
  font-weight: 620;
  letter-spacing: 0.055em;
}

@media (max-width: 760px) {
  html {
    scroll-snap-type: y proximity;
  }

  .gallery-head {
    padding: 13px 14px;
  }

  .gallery-hint {
    display: none;
  }

  .gallery-brand {
    gap: 9px;
  }

  .gallery-brand small {
    max-width: 92px;
    font-size: 6px;
    line-height: 1.15;
  }

  .study-nav {
    top: auto;
    right: 12px;
    bottom: 12px;
    grid-auto-flow: column;
    transform: none;
  }

  .study-nav a {
    width: 27px;
    height: 27px;
    background: rgba(17, 17, 15, 0.12);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
  }

  .study {
    min-height: 100svh;
    padding: 52px 12px 48px;
  }

  .poster {
    width: 100%;
    max-width: 100%;
    height: auto;
    max-height: none;
  }

  .poster--generated {
    width: min(100%, calc((100svh - 136px) * var(--poster-ratio)));
  }

  .poster:hover .poster__photo {
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .poster,
  .poster__photo,
  .study-nav a {
    transition-duration: 1ms !important;
  }
}
