.event-listings {
  background-color: #121212;
  padding: 60px 0;
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 40px;
}

.event-card {
  border-radius: 14px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.event-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
}

.event-image-container {
  height: 250px;
  overflow: hidden;
}

.event-image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.event-category {
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.4em 0.6em;
  border-radius: 4px;
}

.event-info {
  background-color: #1e1e1e;
  padding: 20px;
  color: #fff;
}

.event-title {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.event-description {
  font-size: 0.9rem;
  color: #ccc;
  margin-bottom: 15px;
}

.btn-get-event {
  display: inline-block;
  padding: 10px 20px;
  background-color: #f44336;
  color: #fff !important;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  transition: background-color 0.3s ease;
  text-align: center;
}

.btn-get-event:hover {
  background-color: #d32f2f;
  color: #fff;
}
