.animss-grid {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 40px;
}

.animss-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  width: 260px;
  max-width: 100%;
  box-shadow: 0 4px 20px rgba(0,0,0,0.12);
  transition: transform 0.2s ease;
}

.animss-card:hover {
  transform: translateY(-6px);
}

.animss-img {
  width: 100%;
  height: auto;
  display: block;
}

.animss-name {
  font-size: 13px;
  font-weight: 600;
  color: #7d1a23;
}

.animss-day {
  font-size: 12px;
  color: #aaa;
}