.billboard-events {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.billboard-event {
  flex: 0 0 300px;
  max-width: 300px;
  border: 1px solid rgba(0, 0, 0, 0.15);
  padding: 1rem;
  border-radius: 8px;
  background: #dbdbdb;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
  width: 300px;
  text-align: left;
  color: #000;
}

.billboard-event img {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0.5rem 0;
}

.billboard-event-title {
  margin: 0 0 0.5rem;
  font-size: 1.15rem;
  font-weight: 600;
}

.billboard-event-date {
  margin: 0rem 0;
}

.billboard-event-button {
  display: block;
  margin: 0 auto;
  padding: 0.5rem 0.75rem;
  margin-top: 0.75rem;
  background-color: rgb(177, 74, 177);
  color: #fff;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.12s ease-in-out, transform 0.12s ease-in-out;
  text-align: center;
}

.billboard-event-button:link,
.billboard-event-button:visited {
  color: #fff;
  text-decoration: none;
}

.billboard-event-button:hover {
  background-color: #005fa3;
  transform: translateY(-1px);
}

.billboard-event-button:active {
  background-color: #005091;
  transform: translateY(0);
}

/* Mobile: make billboard events full width */
@media (max-width: 640px) {
  .billboard-event {
    flex: 1 1 100%;
    max-width: 100%;
    width: 100%;
  }
}
