.video-container {
  position: relative;
  margin-top: 5px;
  width: 100%;
  max-width: 700px; /* opcional: límite máximo */
  margin: auto;
  padding-bottom: 56.25%; /* relación 16:9 → 9 / 16 = 0.5625 */
  height: 0;
  overflow: hidden;
  border-radius: 12px; /* opcional: bordes redondeados */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}