/* MEDIA CONTENT HEADER */
.media-content-header {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: flex-start;
  align-items: flex-start;
  margin: 1rem 0;
}

/* COVER + SCORES */
.cover-column {
  flex: 0 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column; /* stack cover + scores */
  align-items: center;
  max-width: 400px; /* max width for desktop */
  width: 100%; /* scale down on smaller screens */
}

.cover-column img {
  width: 100%;        /* fill column */
  height: auto;
  max-height: 600px;  /* bigger than before */
  border: 1px solid #eee;
  box-shadow: 0 0 6px #eee;
  border-radius: 4px;
  object-fit: contain;
}

/* SCORES */
.scores-column {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  margin-top: 0.5rem;
  color: white;
  width: 100%; /* match cover width */
}

.score-item {
  display: flex;
  justify-content: space-between;
  padding: 0.25rem 0.5rem;
  border: 1px solid #eee;
  background-color: rgba(0,0,0,0.8);
  width: 100%;
}

/* VIDEO */
.video-column {
  flex: 0 0 auto;
  text-align: center;
}

.video-column iframe {
  width: 100%;
  aspect-ratio: 9/16;
  border-radius: 4px;
  height: 100%;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .media-content-header {
    flex-direction: column;
    align-items: center;
  }

  .video-column {
    width: 100%;
  }
}

/* Small screens */
@media (max-width: 500px) {
  .cover-column img {
    width: 100%;
    height: auto !important;
  }

  .score-item {
    flex-direction: column;
    align-items: flex-start;
  }
}
