.new-container {
  padding-left: 0px;
  padding-right: 0px;
}

.custom-hover-card {
  border: none;
  border-radius: 1rem;
  overflow: hidden;
  transition: transform 0.1s ease;
  position: relative;
  height: 100%; /* Tambahkan ini agar card isi penuh parent */
  display: flex;
  flex-direction: column;
}

.card-img-wrapper {
  position: relative;
  width: 100%;
  height: 180px;
  overflow: hidden;
}

.card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
}

.card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0); /* #593196 60% */
  z-index: 1;
  transition: background-color 0.1s ease;
}

.custom-hover-card:hover .card-overlay {
  background-color: rgba(59, 119, 163, 0.2); /* #593196 80% saat hover */
}

.custom-hover-card .card-body {
  background-color: #49ade7;
  position: relative;
  z-index: 2;
  padding: 1rem;
  flex-grow: 1; /* Penuhi ruang tersisa */
  display: flex;
  flex-direction: column;
}

.custom-hover-card:hover {
  transform: scale(1.03);
}