html,
body {
  height: 100%;
}

body {
  margin: 0;
  background: #111;
  color: #f2f2f2;
  font-family: "Times New Roman", Georgia, serif;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
}

.poster {
  width: min(960px, 100%);
  background: #000;
  border: 2px solid #2a2a2a;
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.75);
  padding: 22px 22px 28px;
}

.caption {
  margin: 0 0 14px;
  text-align: center;
  font-size: clamp(22px, 3.6vw, 40px);
  font-weight: 700;
  letter-spacing: 0.3px;
  line-height: 1.12;
  text-shadow: 0 2px 0 rgba(0, 0, 0, 0.75);
}

.media-frame {
  background: #000;
  border: 3px solid #f0f0f0;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.55);
  padding: 10px;
}

.media-aspect {
  position: relative;
  width: 100%;
  aspect-ratio: 4/3;
  max-height: 62vh;
  background: #000;
  overflow: hidden;
}

.media {
  position: absolute;
  inset: 0;
  display: block;
  width: 120%;
  height: 120%;
  left: -10%; 
  top: -10%;
  background: #000;
  object-fit: contain;
}

@media (max-width: 520px) {
  body {
    padding: 12px;
  }

  .poster {
    padding: 16px 16px 20px;
  }

  .media-frame {
    padding: 8px;
  }
}
