.mhs-slider-wrapper {
  width: 100%;
  position: relative;
  overflow: hidden;
}

.mhs-slide-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.mhs-slide {
  border-radius: 20px;
  overflow: hidden;
  background: #111;
  position: relative;
}

.mhs-thumb {
  position: relative;
}

.mhs-thumb img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block;
}

.mhs-play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 70px;
  background: rgba(0,0,0,0.6);
  width: 90px;
  height: 90px;
  border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.mhs-content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 28px;
  background: linear-gradient(to top, rgba(0,0,0,0.85), rgba(0,0,0,0));
}

.mhs-title {
  font-size: 30px;
  font-weight: 800;
  margin: 10px 0 10px;
  color: #fff;
}

.mhs-desc {
  font-size: 15px;
  margin: 0 0 18px;
  color: rgba(255,255,255,0.88);
  max-width: 900px;
}

.mhs-badge {
  display: inline-block;
  font-size: 12px;
  font-weight: 800;
  padding: 6px 12px;
  border-radius: 999px;
  margin-bottom: 8px;
  color: #000;
  background: #fff;
}

.mhs-btn {
  display: inline-block;
  padding: 10px 18px;
  border-radius: 999px;
  background: white;
  color: black;
  font-weight: bold;
  font-size: 14px;
}

.mhs-badge-youtube { background: #ff0000; color: #fff; }
.mhs-badge-podcast { background: #00c2ff; color: #000; }
.mhs-badge-post { background: #ffffff; color: #000; }
.mhs-badge-tiktok { background: #00f2ea; color: #000; }

.swiper-button-prev,
.swiper-button-next {
  color: #fff;
}

.swiper-pagination-bullet {
  background: #fff;
}

@media (max-width: 768px) {
  .mhs-thumb img {
    height: 320px;
  }

  .mhs-title {
    font-size: 22px;
  }

  .mhs-desc {
    font-size: 14px;
  }
}