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

.formCategory {
  border-radius: 10px !important;
}
/* Match your real card shape */
.imageWrapper {
  width: 100%;
  height: 150px;
  position: relative;
  overflow: hidden;
  background-color: #607387;
  border-radius: 10px 10px 0 0;
}

/* Base shimmer style */
.skeleton {
  background: linear-gradient(90deg, #e9e9e9 25%, #f3f3f3 50%, #e9e9e9 75%);
  background-size: 200% 100%;
  animation: shimmer 1.4s ease-in-out infinite;
  border-radius: 6px;
}

/* Image area shimmer */
.image {
  width: 100%;
  height: 150px;
  border-radius: 10px 10px 0 0;
}
.cardWrapperImgHeight {
  width: 100%;
  height: 350px;
  border-radius: 10px 10px 0 0;
}

/* Title bar */
.title {
  width: 70%;
  height: 18px;
  margin-top: 10px;
}

/* Description bar */
.text {
  width: 90%;
  height: 14px;
}

/* Time bar */
.time {
  width: 40%;
  height: 12px;
}

/* Responsive tweaks */
@media (max-width: 768px) {
  .image {
    height: 130px;
  }
}
