.photo-feature {
  padding: 0;
}

.photo-feature-media {
  margin: 0;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.photo-feature-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.photo-feature .card-title,
.photo-feature .card-copy {
  padding-inline: clamp(1.25rem, 3vw, 2rem);
}

.photo-feature .card-title {
  margin-top: 1.25rem;
}

.photo-feature .card-copy {
  padding-bottom: clamp(1.25rem, 3vw, 2rem);
}

.photo-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2.3rem;
}

.photo-card {
  position: relative;
  margin: 0;
  border: 1px solid rgba(57, 255, 20, .16);
  border-radius: 24px;
  overflow: hidden;
  background: rgba(17, 17, 17, .68);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .06), 0 24px 80px rgba(0, 0, 0, .32);
}

.photo-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.photo-card.hero-shot {
  grid-column: span 8;
  aspect-ratio: 16 / 9;
}

.photo-card.side-shot {
  grid-column: span 4;
  aspect-ratio: 3 / 4;
}

.photo-card.half-shot {
  grid-column: span 6;
  aspect-ratio: 4 / 3;
}

.photo-card.third-shot {
  grid-column: span 4;
  aspect-ratio: 4 / 3;
}

.photo-card figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 1rem 1.1rem;
  background: linear-gradient(180deg, transparent, rgba(5, 5, 5, .88));
  color: rgba(245, 245, 245, .9);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.premium-showcase {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.premium-shot {
  position: relative;
  margin: 0;
  border: 1px solid rgba(182, 255, 0, .28);
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 16 / 10;
}

.premium-shot img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.premium-shot figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: .85rem 1rem;
  background: linear-gradient(180deg, transparent, rgba(5, 5, 5, .9));
  color: var(--toxic);
  font-size: .76rem;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}

@media (max-width: 960px) {
  .photo-card.hero-shot,
  .photo-card.side-shot,
  .photo-card.half-shot,
  .photo-card.third-shot {
    grid-column: span 12;
  }

  .premium-showcase {
    grid-template-columns: 1fr;
  }
}
