.video-card-mlb-section-odce {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  margin-top: 64px;
  padding: 0 16px;
  width: 100%;
  box-sizing: border-box;
}

.video-card-mlb-title-odce {
  font-weight: 700;
  font-size: 24px;
  line-height: 1.2;
  color: #000000;
  text-align: center;
  margin: 0;
}

.video-card-mlb-wrapper-odce {
  width: 100%;
  max-width: 600px;
}

.video-card-mlb-thumbnail-odce {
  position: relative;
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 16 / 10;
}

.video-card-mlb-image-odce {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.video-card-mlb-image-odce.desktop {
  display: none;
}

.video-card-mlb-overlay-odce {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.25);
  pointer-events: none;
}

.video-card-mlb-play-btn-odce {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 78px;
  height: 78px;
  border-radius: 50%;
  border: none;
  background: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  transition: transform 0.2s ease;
}

.video-card-mlb-play-btn-odce:hover {
  transform: translate(-50%, -50%) scale(1.08);
}

.video-card-mlb-play-btn-odce:focus-visible {
  outline: 2px solid #3483fa;
  outline-offset: 3px;
}

.video-card-mlb-play-icon-odce {
  object-fit: contain;
  display: block;
  width: 100%;
}

.video-card-mlb-player-odce {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  background: #000000;
}

@media (min-width: 1024px) {
  .video-card-mlb-section-odce {
    gap: 40px;
    padding: 0 24px;
  }

  .video-card-mlb-title-odce {
    font-size: 48px;
    line-height: 56px;
  }

  .video-card-mlb-wrapper-odce {
    max-width: 1200px;
  }

  .video-card-mlb-thumbnail-odce {
    border-radius: 40px;
    aspect-ratio: 16 / 9;
  }

  .video-card-mlb-image-odce.mobile {
    display: none;
  }

  .video-card-mlb-image-odce.desktop {
    display: block;
  }

  .video-card-mlb-play-btn-odce {
    width: 129px;
    height: 129px;
  }
}
