.latest-events {
  margin: 50px auto;
  padding: 0 20px;
  width: 60%;
  font-family: 'Lexend', sans-serif;
}

.latest-events h2 {
  text-align: center;
  color: #dc4848;
  font-size: 2rem;
  margin-bottom: 30px;
  text-shadow: 0 0 20px;
}

.events-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.event-card {
  background: #70393b;
  padding: 20px;
  border-radius: 10px;
  margin-bottom: 15px;
  box-shadow: 0 0 20px rgba(195, 136, 136, 0.25);
  transition: transform 0.25s ease, background 0.3s;
}

.event-card:hover {
  transform: scale(1.05);
  background: #8a4c4d;
  cursor: pointer;
}

.event-card h3 {
  text-align: left;
  margin-bottom: 10px;
  color: #fff;
}

.event-card p {
  margin: 5px 0;
  color: #f1e4f8;
}

.view-event {
  color: #ffcdcd;
  font-weight: bold;
  display: inline-block;
  margin-top: 10px;
  text-decoration: none;
  transition: color 0.3s;
}

.view-event:hover {
  color: #ff4f4f;
}
