/* Simple Card Image Fix */

/* Card image container */
.card-img {
  height: 200px;
  position: relative;
  overflow: hidden;
  background-color: #1a1a2e;
}

/* Direct image styling */
.card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.card:hover .card-img img {
  transform: scale(1.05);
}

/* Overlay gradient */
.card-img::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, transparent 50%, rgba(0, 0, 0, 0.7) 100%);
  z-index: 1;
  pointer-events: none;
}

/* Responsive adjustments */
@media (max-width: 576px) {
  .card-img {
    height: 180px;
  }
}
