.entry-card {
  background: white;
  border: 2px solid black;
  padding: 1rem;
  box-shadow: 5px 5px 0 rgba(0,0,0,0.3);
  transition: transform 0.2s ease;
}

.entry-card:hover {
  transform: rotate(-1deg) scale(1.02);
}

.entry-card img {
  width: 100%;
  height: auto;
  display: block;
  margin-bottom: 0.5rem;
}

.tag {
  font-size: 0.8rem;
  text-transform: uppercase;
  color: #666;
}
