.photo-panel {
  position: relative;
  min-height: 440px;
  overflow: hidden;
  border-radius: 34px;
  background: #0b1725;
  box-shadow: 0 30px 80px rgba(7, 17, 29, .2);
}
.photo-panel img {
  width: 100%;
  height: 100%;
  min-height: 440px;
  object-fit: cover;
  object-position: center;
}
.photo-panel::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(5, 12, 20, .88));
  content: "";
}
.photo-caption {
  position: absolute;
  z-index: 2;
  right: 28px;
  bottom: 24px;
  left: 28px;
  display: flex;
  gap: 18px;
  align-items: end;
  justify-content: space-between;
  color: #fff;
}
.photo-caption strong { font-size: 1.1rem; }
.photo-caption span { max-width: 580px; color: #c8d1da; font-size: .8rem; text-align: right; }
.production-scene-grid { display: grid; grid-template-columns: minmax(0, 1.12fr) minmax(300px, .88fr); gap: 22px; align-items: stretch; }
.scene-copy { display: flex; flex-direction: column; justify-content: center; padding: 42px; border: 1px solid rgba(255,255,255,.13); border-radius: 34px; background: rgba(255,255,255,.045); }
.scene-copy p { color: #bdc8d4; }
@media (max-width: 900px) {
  .production-scene-grid { grid-template-columns: 1fr; }
  .photo-panel, .photo-panel img { min-height: 360px; }
}
@media (max-width: 620px) {
  .photo-panel, .photo-panel img { min-height: 300px; }
  .photo-caption { right: 18px; bottom: 16px; left: 18px; display: block; }
  .photo-caption span { display: block; margin-top: 4px; text-align: left; }
  .scene-copy { padding: 26px; }
}
