.venue-card small {
  margin-top: 9px;
  color: rgba(255, 255, 255, .78);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .06em;
}

.venue-gig-spotlight {
  margin-top: 16px;
  padding: 18px;
  display: grid;
  grid-template-columns: 150px 1fr auto;
  align-items: center;
  gap: 22px;
  border: 1px solid rgba(216, 177, 91, .38);
  border-radius: 14px;
  background: linear-gradient(110deg, rgba(104, 8, 18, .7), rgba(8, 8, 8, .95));
  box-shadow: 0 22px 60px rgba(0, 0, 0, .35);
}

.venue-gig-art {
  height: 100px;
  padding: 12px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: #fff;
}

.venue-gig-art img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.venue-gig-spotlight span {
  color: var(--gold);
  font-size: 8px;
  font-weight: 900;
  letter-spacing: .12em;
}

.venue-gig-spotlight h3 {
  margin: 7px 0 5px;
  font: 900 36px/.9 "Barlow Condensed", sans-serif;
}

.venue-gig-spotlight p {
  margin: 0;
  color: rgba(255, 255, 255, .7);
  font-size: 10px;
}

.venue-gig-spotlight > a {
  padding: 13px 16px;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 7px;
  font-size: 8px;
  font-weight: 900;
  letter-spacing: .1em;
}

@media (max-width: 850px) {
  .venue-gig-spotlight { grid-template-columns: 120px 1fr; }
  .venue-gig-spotlight > a { grid-column: 1/-1; text-align: center; }
}

@media (max-width: 560px) {
  .venue-gig-spotlight { grid-template-columns: 1fr; }
  .venue-gig-art { height: 120px; }
}
