.frame {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  background: var(--card);
  border: 1px solid var(--line);
  box-shadow: 0 40px 80px -40px rgba(0, 0, 0, .9), 0 0 0 1px rgba(255, 255, 255, .02) inset;
}
.frame .bar {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 11px 14px;
  background: var(--card-2);
  border-bottom: 1px solid var(--line);
}
.frame .bar i {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .13);
  flex: none;
}
.frame .bar .url {
  margin-left: 8px;
  flex: 1;
  height: 20px;
  border-radius: 6px;
  background: rgba(255, 255, 255, .045);
  display: flex;
  align-items: center;
  padding: 0 10px;
  font-size: 11.5px;
  color: var(--tx-3);
  letter-spacing: .01em;
  overflow: hidden;
  white-space: nowrap;
}
.frame > img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: var(--shot-ar, 16 / 10);
  object-fit: cover;
  background: var(--pg-2);
}
.frame.is-wide > img {
  aspect-ratio: var(--shot-ar, 1280 / 800);
}
.frame.is-short > img {
  aspect-ratio: var(--shot-ar, 900 / 560);
}
.frame.is-art {
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  overflow: visible;
}
.frame.is-art > img {
  object-fit: contain;
  background: transparent;
}
.showcase {
  background: var(--pg-2);
  border-block: 1px solid var(--line);
}
.shots {
  display: grid;
  gap: 54px;
  margin-top: 8px;
}
.shot {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 40px;
  align-items: center;
}
.shot:nth-child(even) .shot-copy {
  order: 2;
}
.shot-copy .label {
  margin-bottom: 14px;
}
.shot-copy h3 {
  font-family: var(--sans);
  font-weight: 500;
  font-size: clamp(24px, 2.7vw, 32px);
  line-height: 1.16;
  letter-spacing: -.022em;
  color: var(--tx);
  margin: 0 0 14px;
}
.shot-copy p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--tx-2);
  margin: 0 0 16px;
  max-width: 46ch;
}
.shot-copy p:last-child {
  margin-bottom: 0;
}
.shot-copy .more {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 14.5px;
  font-weight: 550;
  color: var(--glow-2);
  transition: gap .15s var(--ease);
}
.shot-copy .more:hover {
  gap: 11px;
}
.cell .shot-inline,
.way .shot-inline {
  margin-top: 16px;
  margin-bottom: 22px;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--pg-2);
}
.cell .shot-inline > img,
.way .shot-inline > img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: var(--shot-ar, 900 / 560);
  object-fit: cover;
}
.cell .shot-inline.is-tall,
.way .shot-inline.is-tall {
  border: 0;
  background: transparent;
  max-width: var(--shot-cap, 250px);
  margin-inline: auto;
}
.cell .shot-inline.is-tall > img,
.way .shot-inline.is-tall > img {
  object-fit: contain;
}
.shot-inline.is-art {
  border: 0;
  background: transparent;
  border-radius: 0;
}
.shot-inline.is-plain {
  border: 0;
  background: transparent;
  border-radius: 0;
  overflow: visible;
}
.shot-inline.is-art > img {
  aspect-ratio: var(--shot-ar, 1600 / 1180);
  object-fit: contain;
}
.page-shot {
  margin: 44px 0 0;
}
.page-shot.is-short {
  max-width: 900px;
  margin-inline: auto;
}
.page-shot.is-art {
  max-width: var(--shot-max, 1100px);
  margin-inline: auto;
}
.page-shot-caption {
  margin: 14px auto 0;
  max-width: 62ch;
  font-size: 13.5px;
  color: var(--tx-3);
  line-height: 1.6;
  text-align: center;
}
@media (max-width: 900px) {
  .shot {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .shot:nth-child(even) .shot-copy {
    order: 0;
  }
  .shots {
    gap: 44px;
  }
  .frame .bar {
    padding: 9px 11px;
  }
  .frame .bar .url {
    font-size: 10.5px;
  }
}
