.gig-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 600px;
  margin: 2rem auto;
  padding: 0 1rem;
}

.gig {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.25rem;
  gap: 2rem;
}

.gig-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex: 1;
}

.gig-date {
  font-weight: 600;
  color: #fff;
}

.gig-place {
  color: #777;
  font-size: 0.95rem;
}

.event-name {
  color: #bbb;
  font-size: 1rem;
}

.gig-tickets {
  text-decoration: none;
  background: #222;
  color: #fff;
  padding: 0.5rem 0.9rem;
  border-radius: 0.8rem;
  font-size: 0.9rem;
  transition: background 0.2s;
}

.gig-tickets:hover {
  background: #111;
}

.gig-info:hover .gig-date,
.gig-info:hover .gig-place,
.gig-info:hover .event-name {
  color: #e63946;
}
