﻿.video-grid-section .badge {
  background-color: rgba(0, 0, 0, 0.75);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 10px;
}
.video-select-card {
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  border-radius: 15px;
  background-color: black;
}
.video-select-card .card-image {
  position: relative;
  display: grid;
  place-items: center;
}
.video-select-card .card-image .video-track-card__play {
  position: absolute;
  font-size: 50px;
  border: 2px solid white;
  height: 75px;
  width: 75px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.5);
}
.video-select-card .card-image .video-track-card__play .fa-play {
  margin-left: 5px;
}
.video-select-card .card-body {
  background-color: black;
  color: white;
}
.video-select-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.12) !important;
}
.video-select-card.is-selected {
  outline: 3px solid rgba(0, 0, 0, 0.2);
  transform: translateY(-2px);
}
.featured-video-section {
  scroll-margin-top: 140px;
}
.featured-video-player {
  border: 1px solid #e02537;
  border-radius: 20px;
}
.featured-video-player iframe {
  border: 0;
}
.video-filter-btn {
  min-width: 96px;
}
.video-card-item .card-img-top {
  aspect-ratio: 16 / 9;
  object-fit: cover;
}
.featured-video-card .card {
  height: 100%;
}
.featured-video-card .card-img-top {
  aspect-ratio: 16 / 9;
  object-fit: cover;
}
@media (min-width: 992px) {
  .featured-video-card .card-body {
    padding: 1.75rem;
  }
  .featured-video-card h3 {
    font-size: 1.5rem;
  }
}