.container {
  padding: 20px;
}

.task-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: flex-start;
}

.task-card {
  width: calc(25% - 20px);
  background: #fff;
  border: 1px solid #eee;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  position: relative;
}

.task-time {
  position: absolute;
  top: 8px;
  left: 8px;
  background: #f8d7da;
  color: #d9534f;
  font-size: 13px;
  font-weight: bold;
  padding: 3px 8px;
  border-radius: 12px;
  z-index: 2;
}


.task-banner {
  width: 100%;
  height: 120px;
  object-fit: cover;
  border-bottom: 1px solid #eee;
}

.task-content {
  padding: 10px;
}

.task-title {
  font-weight: bold;
  font-size: 16px;
  margin-bottom: 4px;
}

.task-community {
  font-size: 0.85rem;
  color: #666;
  margin-bottom: 6px;
}

.task-info {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.badge {
  font-size: 0.75rem;
}
