/* Hide scrollbars utility (you already use this) */
.hide-scrollbar::-webkit-scrollbar {
  display: none;
}
.hide-scrollbar {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

/* ---------- Loading skeletons ---------- */
.skel-card {
  border-radius: 1rem;
  border: 1px solid #e2e8f0; /* ink-200 */
  background: #fff;
  overflow: hidden;
  box-shadow: 0 1px 2px rgba(16, 24, 40, 0.04);
}
.skel-img {
  position: relative;
  width: 100%;
  padding-bottom: 66.666%; /* 3:2 like our cards on mobile */
  background: linear-gradient(90deg, #f3f4f6 25%, #e5e7eb 37%, #f3f4f6 63%);
  background-size: 400% 100%;
  animation: skel 1.2s ease-in-out infinite;
}
.skel-body {
  padding: 0.75rem 0.75rem 1rem;
}
.skel-line {
  height: 10px;
  border-radius: 6px;
  background: #e5e7eb;
  margin-top: 8px;
}
.skel-line:nth-child(1) {
  width: 80%;
}
.skel-line:nth-child(2) {
  width: 55%;
}
.skel-line:nth-child(3) {
  width: 40%;
}

@keyframes skel {
  0% {
    background-position: 100% 0;
  }
  100% {
    background-position: 0 0;
  }
}

/* ---------- Card fade-in ---------- */
.card-fade {
  opacity: 0;
  transition: opacity 0.25s ease;
}
.card-fade.show {
  opacity: 1;
}

/* Motion-safe */
@media (prefers-reduced-motion: reduce) {
  .skel-img {
    animation: none;
  }
  .card-fade {
    transition: none;
  }
}
