.event-section {
  padding: 4rem 1rem;
  background-color: #ffffff;
  text-align: center;
}

.event-section .section-title {
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 2rem;
}

.event-list {
  list-style: none;
  padding: 0;
  margin: 0 auto 2rem;
  max-width: 800px;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.event-item a {
  display: flex;
  flex-direction: column;
  text-align: left;
  padding: 1rem;
  border: 1px solid #ddd;
  border-radius: 6px;
  background-color: #fdfdfd;
  text-decoration: none;
  transition: box-shadow 0.3s;
  color: inherit;
}

.event-item a:hover {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.08);
}

.event-date {
  font-size: 0.85rem;
  color: #888;
  margin-bottom: 0.3rem;
}

.event-title {
  font-size: 1.1rem;
  font-weight: bold;
  color: #333;
}

.more-link a {
  display: inline-block;
  padding: 0.5rem 1.2rem;
  border: 1px solid var(--color-border);
  border-radius: 4px;
  text-decoration: none;
  color: var(--color-primary);
  font-size: 0.95rem;
}

.more-link a:hover {
  background-color: var(--color-bg-hover);
}
