  /* Slider video YouTube */
  .rs-youtube-slider .youtube-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease;
  }
  .rs-youtube-slider .youtube-card:hover {
    transform: translateY(-6px);
  }
  .rs-youtube-slider .youtube-thumb {
    position: relative;
    display: block;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: #000;
  }
  .rs-youtube-slider .youtube-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease, opacity 0.4s ease;
  }
  .rs-youtube-slider .youtube-card:hover .youtube-thumb img {
    transform: scale(1.06);
    opacity: 0.85;
  }
  .rs-youtube-slider .youtube-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: rgba(255, 0, 0, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
  }
  .rs-youtube-slider .youtube-play svg {
    width: 22px;
    height: 22px;
    fill: #fff;
    margin-left: 3px;
  }
  .rs-youtube-slider .youtube-card:hover .youtube-play {
    background: #ff0000;
  }
  .rs-youtube-slider .youtube-content {
    padding: 14px 16px;
  }
  .rs-youtube-slider .youtube-title {
    margin: 0 0 8px;
    font-size: 15px;
    line-height: 1.45;
    font-weight: 600;
  }
  .rs-youtube-slider .youtube-title a {
    /* !important: section navy mewarnai teks jadi putih → judul
       tak terlihat di kartu putih. Paksa gelap. */
    color: #2b3944 !important;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .rs-youtube-slider .youtube-title a:hover {
    color: var(--e-global-color-primary, #0055a4);
  }
  .rs-youtube-slider .youtube-views {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12.5px;
    color: #777 !important;
  }
  .rs-youtube-slider .youtube-views svg {
    width: 15px;
    height: 15px;
    fill: #999;
  }
