.series-events-container {
  margin-top: 40px;
}

.series-events-title {
  font-size: 48px;
  font-weight: bold;
  margin-top: 30px;
  margin-bottom: 20px;
  text-align: center;
  color: #000000;
}

.series-events-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.series-event-card {
  background-color: #ffffff;
  color: #ffffff;
  padding: 20px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.series-event-content {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.series-event-title {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 10px;
}

.series-event-description {
  font-size: 14px;
  margin-bottom: 15px;
  flex-grow: 1;
  color: #000000;
}

.series-learn-more-btn {
  background-color: #0a8543;
  color: #ffffff;
  text-decoration: none;
  padding: 10px 15px;
  border-radius: 5px;
  font-weight: bold;
  display: inline-block;
  margin-top: auto;
}

.series-learn-more-btn:hover {
  background-color: #07b056;
}
