* {
  box-sizing: border-box;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

body {
  background: #f7f7f7;
  padding: 30px;
}

.event-list {
  max-width: 1100px;
  margin: auto;
}

.event-card {
  display: flex;
  gap: 20px;
  background: #ffffff;
  border-radius: 16px;
  padding: 16px;
  margin-bottom: 20px;
  border: 1px solid #eaeaea;
}

.event-image img {
  width: 260px;
  height: 180px;
  border-radius: 12px;
  object-fit: cover;
}

.event-content {
  flex: 1;
}

.event-badge {
  display: inline-block;
  background: #f1f1f1;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 12px;
  margin-bottom: 8px;
}

.event-title {
  margin: 8px 0;
  font-size: 20px;
}

.event-description {
  font-size: 14px;
  color: #555;
  margin-bottom: 12px;
}

.event-meta {
  display: flex;
  gap: 30px;
  font-size: 13px;
  color: #333;
}

.event-action {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  min-width: 140px;
}

.btn-primary {
  background: #000;
  color: #fff;
  border: none;
  padding: 10px 18px;
  border-radius: 24px;
  cursor: pointer;
}

.btn-primary:hover {
  opacity: 0.85;
}

.btn-link {
  margin-top: 10px;
  text-decoration: none;
  color: #000;
  font-size: 13px;
}

/* Responsive */
@media (max-width: 768px) {
  .event-card {
    flex-direction: column;
  }

  .event-image img {
    width: 100%;
    height: auto;
  }

  .event-action {
    align-items: flex-start;
    margin-top: 10px;
  }
}
