.vote-card {
  display: block;
  text-decoration: none;
  color: inherit;
  border: 1px solid #ccc;
  border-radius: 8px;
  padding: 16px;
  margin: 12px;
  background: #fff;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  transition: box-shadow 0.2s;
}
.vote-card:hover {
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}
.vote-card {
  position: relative;
  padding: 16px;
  border: 1px solid #ccc;
  border-radius: 8px;
  background: #fff;
  margin: 12px;
}
.badge-area {
  position: absolute;
  top: 8px;
  right: 8px;
  display: flex;
  flex-direction:  row;
  align-items: flex-end;
  gap: 4px;
flex-wrap: wrap; 
justify-content: flex-end;
}
.badge {
  font-size: 0.75em;
  padding: 2px 6px;
  border-radius: 4px;
  background-color: #eee;
  color: #333;
}
.badge.new { background-color: #4caf50; color: #fff; font-weight: bold;}
.badge.hot { background-color: #ffbfea; color: #fff; font-weight: bold;}
.badge.comment { background-color: #2196f3; color: #fff; font-weight: bold;}
.badge.category { background-color: #e91e63; color: #fff; font-weight: bold;}

@media (max-width: 600px) {
  .badge_area {
    top: auto;
    bottom: 8px;
    right: 8px;
    flex-direction: row;
    flex-wrap: wrap;
  }
}
