.event-section {
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, "Helvetica Neue", Arial, sans-serif;
  max-width: 820px;
  margin: 2rem auto;
  padding: 1.25rem 1.5rem;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  background: #ffffff;
}

.event-title {
  font-size: 1.5rem;
  line-height: 1.3;
  margin: 0 0 .75rem;
  color: #111827;
}

.event-meta {
  margin: .5rem 0 1rem;
  color: #374151;
  font-size: .95rem;
}

.event-link {
  font-size: 1.125rem;
  margin: 0;
}

.event-link a {
  display: inline-block;
  padding: .6rem 1rem;
  border-radius: 999px;
  border: 1px solid #111827;
  text-decoration: none;
  color: #111827;
  transition: all .2s ease;
}

.event-link a:hover {
  background: #111827;
  color: #ffffff;
}

/* Dark Mode */
@media (prefers-color-scheme: dark) {
  .event-section {
    background: #0b0f14;
    border-color: #1f2937;
  }
  .event-title { color: #e5e7eb; }
  .event-meta { color: #9ca3af; }
  .event-link a {
    border-color: #e5e7eb;
    color: #e5e7eb;
  }
  .event-link a:hover {
    background: #e5e7eb;
    color: #0b0f14;
  }
}
