#videos .video-card {
  padding: 1rem;
  border-radius: 10px;
  cursor: pointer;
}

#videos .video-card img {
  border-radius: 5px;
}

#videos .video-card h5 {
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

#videos .badge {
  background-color: var(--primary-color);
  padding: .5rem 1rem;
}

#videos h1 {
  color: var(--primary-color);
}

#videos button {
  background-color: var(--primary-color);
  color: white;
  width: 100%;
}

#videos button p {
  margin: 0;
}

#videos .video-img {
  position: relative;
}

#videos .video-img::before {
  content: '';
  width: 100%;
  height: 100%;
  border-radius: 5px;
  background-color: black;
  opacity: .5;
  top: 0;
  left: 0;
  position: absolute;
}

#videos .video-img::after {
  content: '';
  width: 60%;
  height: 100%;
  border-radius: 5px;
  background: url(clicktoSubscribe.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  position: absolute;
}