/* =========================================
   PLATFORM CAROUSEL
   ========================================= */
.plat-carousel { position: relative; overflow: hidden; border-radius: var(--radius); color: #fff; }
.plat-carousel-track { display: flex; transition: transform .35s ease; }
.plat-carousel-slide { min-width: 100%; padding: 20px 18px; }
.plat-carousel-slide .plat-emoji { font-size: 28px; margin-bottom: 8px; }
.plat-carousel-slide .plat-title { font-size: 15px; font-weight: 800; margin-bottom: 4px; line-height: 1.3; }
.plat-carousel-slide .plat-body { font-size: 12.5px; opacity: 0.88; line-height: 1.55; }
.plat-carousel-dots { display: flex; justify-content: center; gap: 6px; padding: 0 0 12px 0; }
.plat-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all .2s;
}
.plat-dot.active { background: #fff; width: 18px; border-radius: 4px; }
