.event-hover-animate {
  transition: box-shadow 0.2s, transform 0.2s;
}
.event-hover-animate:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12), 0 1.5px 6px rgba(0, 0, 0, 0.1);
  z-index: 2;
}
.event-image-container {
  width: 100%;
  height: 100%;
  background: #fafafa;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  /* Remove extra padding/margin if any */
  padding: 0;
  margin: 0;
}
.event-image-container img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  display: block;
  background: #fff;
  padding: 0;
  margin: 0;
}
.card.event-hover-animate {
  padding: 0 !important;
}
.card-body {
  padding: 0.75rem 0.75rem !important;
}
@media (max-width: 767.98px) {
  .event-hover-animate .card-body {
    padding: 0.5rem 0.5rem !important;
  }
  .event-image-container {
    width: 140px !important;
    min-width: 140px !important;
    height: 100% !important;
    max-height: none !important;
    padding: 0 !important;
    margin: 0 !important;
    display: flex;
    align-items: stretch;
  }
  .event-image-container img {
    object-fit: cover;
    width: 100%;
    height: 100%;
    min-height: 100%;
    padding: 0 !important;
    margin: 0 !important;
    display: block;
  }
}
