/* .mca-video-feed {
  display: flex;
  gap: 15px;
  flex-direction: row;
  flex-wrap: wrap;
} */

.mca-video-feed .owl-prev,
.mca-video-feed .owl-next {
  position: absolute;
  top: 50%;
  transform: translateY(-100%);
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin: 0 !important;
  display: flex !important;
  background: var(--mca-accent-color) !important;
  font-size: 70px !important;
  border-radius: 10px !important;
  color: white !important;
}

.mca-video-feed .owl-prev span,
.mca-video-feed .owl-next span {
  height: 120px;
}

.mca-video-feed .owl-prev {
  left: -50px;
}

.mca-video-feed .owl-next {
  right: -50px;
}

.mca-video-feed .mca-video-card {
  border-radius: 10px;
  overflow: hidden;
  background: var(--mca-primary-color);
  cursor: pointer;
  transition: 0.3s all;
  display: block;
}

.mca-video-feed .mca-video-card:hover {
  background: black;
  transform: scale(1.01);
}

.mca-video-feed .mca-video-card .thumbnail {
  width: 100%;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
}

.mca-video-feed .mca-video-card .thumbnail .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: var(--mca-accent-color);
  border-radius: 50%;
  overflow: hidden;
  font-size: 30px;
  color: white;
  transition: 0.3s all;
}

.mca-video-feed .mca-video-card .thumbnail .icon svg {
  transition: 0.3s all;
  fill: var(--mca-primary-color);
  width: 20px;
}

.mca-video-feed .mca-video-card:hover .icon {
  background: black;
}

.mca-video-feed .mca-video-card:hover .icon svg {
  fill: white;
}

.mca-video-feed .mca-video-card .details {
  padding: 15px 25px;
}

.mca-video-feed .mca-video-card h4 {
  color: white;
  font-weight: 700;
  font-size: 16px;
  margin: 0 0 5px;
}

.mca-video-feed .mca-video-card .published {
  color: var(--mca-accent-color);
  font-size: 12px;
  font-style: italic;
}
