@charset "utf-8";

.page-title {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  margin-top:2rem;
  text-align: center;
}

.page-description {
  text-align: center;
  margin-bottom: 2rem;
  color: #555;
}

.event-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  padding: 0 1rem;
}

.event-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 3px 8px rgba(0,0,0,0.1);
  display: flex;
  flex-direction: column;
}

.event-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.event-info {
  padding: 1rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.event-title {
  font-size: 1.2rem;
  margin-bottom: 0.3rem;
}

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

.event-summary {
  flex: 1;
  font-size: 0.95rem;
  color: #555;
  margin-bottom: 1rem;
}

.event-button {
  display: inline-block;
  background: #005D48;
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 5px;
  text-decoration: none;
  font-size: 0.9rem;
  text-align: center;
}

.event-button:hover {
  background: #004737;
}