.video-player-section {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  height: fit-content;
}

.video-player {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 2px;
  box-shadow: var(--box-shadow);
  border: none;
}

.video-player-placeholder {
  width: 100%;
  aspect-ratio: 16 / 9;
  backdrop-filter: blur(16px);
  border-radius: 2px;
  box-shadow: var(--box-shadow);
  border: 1px solid var(--grey04);
  border-radius: 2px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  padding: 2rem;
}

.video-player-placeholder p {
  color: var(--grey02);
  font-size: 1.25rem;
  margin: 0;
  text-align: center;
}

.video-player-placeholder form {
  width: 100%;
  display: flex;
  justify-content: center;
}

@media (max-width: 768px) {
  .video-player-placeholder {
    aspect-ratio: 16 / 9;
    gap: 1rem;
    padding: 1rem;
  }

  .video-player-placeholder p {
    font-size: 1rem;
  }
}
