.vs-library-rail.is-dragging a {
  pointer-events: none;
}

.vs-library-rail::-webkit-scrollbar {
  height: 10px;
}

.vs-library-rail::-webkit-scrollbar-track {
  background: rgba(251, 245, 235, .08);
  border-radius: 999px;
}

.vs-library-rail::-webkit-scrollbar-thumb {
  background: rgba(227, 201, 157, .38);
  border-radius: 999px;
}

.vs-library-card {
  min-width: 0;
  scroll-snap-align: start;
  border: 1px solid rgba(251, 245, 235, .12);
  border-radius: 8px;
  background: rgba(251, 245, 235, .075);
  box-shadow: 0 14px 32px rgba(0, 0, 0, .16);
  overflow: hidden;
  transition: transform .18s ease, filter .18s ease;
}

.vs-library-card:hover {
  transform: translateY(-4px);
}

.vs-library-cover {
  position: relative;
  display: block;
  aspect-ratio: 9 / 14;
  border-radius: 8px;
  overflow: hidden;
  background: #202a24;
  color: #fbf5eb;
  text-decoration: none;
  box-shadow: none;
}

.vs-library-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.01);
  transition: transform .28s ease;
}

.vs-library-card:hover .vs-library-cover img {
  transform: scale(1.06);
}

.vs-library-card-glow {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(17, 24, 20, .1), transparent 38%),
    linear-gradient(0deg, rgba(17, 24, 20, .92), rgba(17, 24, 20, .08) 62%);
}

.vs-library-kind {
  position: absolute;
  top: 12px;
  left: 12px;
  right: 12px;
  z-index: 1;
  width: fit-content;
  max-width: calc(100% - 24px);
  border-radius: 999px;
  background: rgba(17, 24, 20, .76);
  color: #e3c99d;
  padding: 8px 10px;
  backdrop-filter: blur(12px);
}

.vs-library-play {
  position: absolute;
  left: 14px;
  bottom: 14px;
  z-index: 1;
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(227, 201, 157, .92);
  color: #17201b;
}
