.calendar-details h3 {
  letter-spacing: normal;
  word-spacing: normal;
}


.calendar-schedule {
  font-family: 'Roboto', 'Helvetica Neue', Helvetica, Arial, sans-serif;
}


.event-listing {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin: 3rem 0;
}

.event-row {
  display: flex;
  background-color: #0e1a2b;
  border-radius: 12px;
  overflow: hidden;
  color: #fff;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  transition: transform 0.2s ease;
}

.event-row:hover {
  transform: translateY(-4px);
}

.event-row img {
  width: 200px;
  height: 200px;
  object-fit: cover;
}

.event-info {
  padding: 1.25rem 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex: 1;
}

.event-info h3 {
  margin: 0 0 0.5rem;
  font-size: 1.4rem;
  font-weight: 600;
}

.event-info h3 a {
  color: #4ea1f3;
  text-decoration: none;
}

.event-info h3 a:hover {
  text-decoration: underline;
}

.event-meta {
  font-size: 1rem;
  color: #c0c0c0;
  margin: 0 0 0.75rem;
}

.event-link {
  background: #4ea1f3;
  color: white;
  padding: 0.5rem 1rem;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 600;
  width: fit-content;
  transition: background 0.2s ease;
}

.event-link:hover {
  background: #1c6fd4;
}

@media (max-width: 700px) {
  .event-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .event-row img {
    width: 100%;
    height: auto;
  }

  .event-info {
    padding: 1rem;
  }
}
.event-row img {
  width: 160px;
  height: 160px;
  object-fit: cover;
  object-position: center;
  border-radius: 8px;
}
/* Sort Button Container */
.event-toolbar {
  text-align: right;
  margin-bottom: 1rem;
}

/* Cool Blue Sort Button */
.sort-button {
  background: #1c6fd4;
  color: white;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 0.95rem;
  font-weight: 400;
  padding: 0.5rem 1rem;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.15s ease;
}

.sort-button:hover {
  background: #0f56a3;
  transform: translateY(-1px);
}
