.bitcl-list {
  list-style: none;
  padding: 0;
  margin: 0;
  color: #fff;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.bitcl-list li.bitcl-item {
  margin-bottom: 1rem;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: space-between;
  background: linear-gradient(220deg, #000000 0%, rgba(19, 23, 21, 0.7) 100%);
}

.bitcl-date {
  font-size: 1.2rem;
  font-weight: bold;
}

span.bitcl-date-text {
  font-size: 1.4rem;
  font-weight: bold;
  font-family: "Oswald";
}

.bitcl-venue {
  font-size: 1.2rem;
  font-weight: bold;
}

.bitcl-item .bitcl-venue-name {
    display: block;
    font-family: "Oswald", sans-serif;
    font-size: 2rem;
    line-height: 3rem;
    color: #9f9264;
}
.bitcl-location {
  font-size: 1.2rem;
  font-weight: bold;
}

.bitcl-tickets a.bitcl-ticket-link {
  display: inline-block;
  padding: 0.8rem 1.6rem;
  margin-top: 1rem;
  background-color: transparent;
  text-decoration: none;
  border: 1px solid #9f9264;;
  color: #fff;
  font-size: 1.2rem;
}

.bitcl-tickets a.bitcl-ticket-link:hover {
    background-color: #9f9264;;
    color: #fff;
}

@media (max-width: 1020px) {
  .bitcl-list {
    grid-template-columns: 1fr;
  }
}
