/* CARD */
.flyer-card {
  background: #fff;
  padding: 15px;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  transition: 0.3s ease;
}

/* IMAGE */
.flyer-img {
  border-radius: 8px;
  width: 100%;
}

/* HOVER EFFECT */
.flyer-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}

/* OPTIONAL: CLICK EFFECT */
.flyer-card img {
  cursor: pointer;
  transition: 0.3s;
}

.flyer-card img:hover {
  opacity: 0.9;
}