.home-sticker{
  position:relative;
  display:grid;
  grid-template-columns:auto minmax(0,1fr);
  gap:12px;
  align-items:center;
  margin:0 0 22px;
  padding:10px;
  border-radius:999px;
  background:
    linear-gradient(135deg, rgba(15,23,42,.94), rgba(15,23,42,.86)),
    radial-gradient(circle at 8% 50%, rgba(37,99,235,.35), transparent 36%),
    radial-gradient(circle at 92% 50%, rgba(6,182,212,.28), transparent 34%);
  border:1px solid rgba(125,211,252,.18);
  box-shadow:
    0 18px 42px rgba(15,23,42,.16),
    inset 0 1px 0 rgba(255,255,255,.10);
  overflow:hidden;
}

.home-sticker__label{
  position:relative;
  z-index:2;
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:8px 13px;
  border-radius:999px;
  background:linear-gradient(135deg, #22d3ee, #60a5fa);
  color:#06111f;
  font-size:12px;
  font-weight:950;
  letter-spacing:.08em;
  text-transform:uppercase;
  white-space:nowrap;
  box-shadow:0 0 24px rgba(34,211,238,.32);
}

.home-sticker__viewport{
  min-width:0;
  overflow:hidden;
  mask-image:linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.home-sticker__track{
  display:flex;
  align-items:center;
  gap:12px;
  width:max-content;
  animation:homeStickerMarquee 34s linear infinite;
}

.home-sticker:hover .home-sticker__track{
  animation-play-state:paused;
}

.home-sticker__item{
  display:inline-flex;
  align-items:center;
  gap:8px;
  min-width:max-content;
  padding:8px 12px;
  border-radius:999px;
  color:rgba(255,255,255,.86);
  background:rgba(255,255,255,.07);
  border:1px solid rgba(255,255,255,.10);
  text-decoration:none;
  font-size:13px;
  font-weight:750;
  transition:background .22s ease, transform .22s ease, color .22s ease;
}

.home-sticker__item:hover{
  transform:translateY(-1px);
  color:#fff;
  background:rgba(255,255,255,.13);
}

.home-sticker__dot{
  width:7px;
  height:7px;
  border-radius:999px;
  background:#22d3ee;
  box-shadow:0 0 14px rgba(34,211,238,.85);
  flex:0 0 auto;
}

.home-sticker__title{
  max-width:360px;
  overflow:hidden;
  text-overflow:ellipsis;
  white-space:nowrap;
}

.home-sticker__date{
  color:rgba(255,255,255,.52);
  font-size:11px;
  font-weight:800;
}

@keyframes homeStickerMarquee{
  from{ transform:translateX(0); }
  to{ transform:translateX(-50%); }
}

@media (max-width:760px){
  .home-sticker{
    grid-template-columns:1fr;
    border-radius:22px;
  }

  .home-sticker__label{
    width:max-content;
  }

  .home-sticker__title{
    max-width:260px;
  }
}

