.archive-title {
  font-size: 2rem;
  font-weight: bold;
  margin-top: 3rem;
  margin-bottom: 2rem;
  text-align: center;
}

.event-archive-list {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  margin-bottom: 4rem;
}

.event-archive-link {
  display: block;
  text-decoration: none;
  color: inherit;
  height: 100%;
}

.event-archive-item {
  flex: 1 1 calc(33.333% - 2rem);
  max-width: 360px;
  width: 100%;
  padding: 1.5rem;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 6px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s ease;
}

.event-archive-item:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.event-thumb img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 4px;
  margin-bottom: 1rem;
}

.event-content {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.event-title {
  font-size: 1.2rem;
  font-weight: bold;
  margin: 0;
  color: var(--color-text);
}

.event-meta {
  display: flex;
  gap: 1.5rem;
  font-size: 0.9rem;
  color: #666;
}

/* Responsive */
@media (max-width: 640px) {
  .event-archive-item {
    padding: 1rem;
  }

  .event-meta {
    flex-direction: column;
    gap: 0.5rem;
  }
}
