
  .cast-background {
    background-color: #f5f5f5;
  }
  
  .video-thumbnail {
    display: block;
    position: relative;
    text-decoration: none;
  }
  
  .video-thumbnail picture img {
    width: 100%;
    border-radius: 8px;
  }
  
  .overlay {
    position: absolute;
    top: 50%;
    inset-inline-end: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .white-bullet {
    color: white;
  }
  .white-bullet::before {
    content: "\2022";
    color: white;
    font-size: 1.5rem;
    margin: 0 0.5rem;
  }
  
  .box {
    background: linear-gradient(to bottom, #343434, #5d5d5d);
    border-radius: 5px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    text-align: center;
    padding: 3.7rem;
    flex: 1 1 calc(50% - 1.125rem);
    height: 100%;
  }
  
  @media (min-width: 992px) {
    .box {
      flex: 1 1 calc(25% - 1.125rem);
    }
  }
  
  .box h2 {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 10px;
  }
  
  .more-btn {
    border: 1px solid #fff;
    color: #fff;
    background: transparent;
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
    text-decoration: none;
  }
  
  .more-btn:hover {
    background: white;
    color: #343434;
    transition: 0.3s;
  }
  
  .h5-bold {
    font-size: 1.25rem;
    font-weight: 800;
  }
  