.recent-events-section {
  padding: 60px 20px;
  background-color: #f2f4f8;
  font-family: 'Segoe UI', sans-serif;
}

.section-title {
  text-align: center;
  font-size: 34px;
  margin-bottom: 50px;
  color: #2c3e50;
}

.events-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.event-card {
  background-color: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 6px 16px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.event-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

.event-image {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.event-info {
  padding: 20px;
}

.event-title {
  font-size: 20px;
  color: #2c3e50;
  margin: 0 0 8px;
}

.event-date {
  font-size: 14px;
  color: #888;
  margin-bottom: 12px;
}

.event-description {
  font-size: 15px;
  color: #555;
  line-height: 1.5;
}
