.events-page {
  margin: 40px auto 0;
  text-align: center;
}

.events-grid {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.event-card {
  width: 320px;
  max-width: 100%;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: var(--color-surface);
  padding: 16px;
  text-align: center;
}

.event-image {
  margin-bottom: 12px;
}

.event-image img {
  max-width: 160px;
  height: auto;
}

.event-image--alt img {
  max-width: 120px;
  opacity: 0.9;
}

.event-date {
  font-weight: bold;
  margin: 8px 0 6px;
}

.event-location {
  color: var(--color-muted);
  margin-bottom: 10px;
}

.event-description {
  color: var(--color-text);
}

.event-link {
  display: inline-block;
  margin-top: 10px;
  text-decoration: none;
  color: var(--color-accent);
  font-weight: bold;
}
