/* Events Section */
.events-section {
  padding: 40px 20px;
  background-color: #111;
  color: #fff;
}

/* Section Title */
.events-title {
  font-size: 32px;
  color: #fff;
  margin-bottom: 30px;
  text-align: center;
  font-weight: bold;
}

/* Events Grid */
.events-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 20px;
  width: 90%;
  max-width: 1320px; /* Increased width by ~10% */
  margin: 0 auto;
}

/* Event Card */
.event-card {
  background-color: #1e1e1e;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  transition: transform 0.2s ease;
}

.event-card:hover {
  transform: translateY(-5px);
}

/* Event Image */
.event-img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

/* Card Content */
.event-content {
  padding: 16px;
}

/* Event Title */
.event-title {
  font-size: 20px;
  color: orange;
  font-weight: bold;
  margin-bottom: 8px;
}

/* Date & Location */
.event-date,
.event-location {
  font-size: 14px;
  margin-bottom: 6px;
  color: #ccc;
}

/* Description */
.event-desc {
  font-size: 14px;
  line-height: 1.4;
  color: #eee;
}
