.live-page {
  gap: clamp(18px, 3vw, 30px);
}

.live-controls {
  display: flex;
  justify-content: flex-end;
  width: 100%;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.live-sort-field {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.62);
  font-family: "Inter", sans-serif;
  font-size: 0.82rem;
  letter-spacing: 0;
}

.live-sort-select {
  min-height: 42px;
  padding: 0 38px 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 6px;
  background: #202020;
  color: rgba(255, 255, 255, 0.94);
  font-family: "Inter", sans-serif;
  font-size: 0.88rem;
  letter-spacing: 0;
  cursor: pointer;
}

.live-sort-select:focus-visible {
  border-color: rgba(0, 158, 134, 0.72);
  outline: 2px solid rgba(0, 158, 134, 0.2);
  outline-offset: 2px;
}

.live-empty {
  width: 100%;
  color: var(--text-main);
  font-family: "Inter", sans-serif;
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  line-height: 1.6;
  letter-spacing: 0;
}

.live-show-list {
  display: grid;
  width: 100%;
  min-width: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.live-show {
  display: grid;
  grid-template-columns: minmax(128px, 0.55fr) minmax(0, 1.7fr) minmax(120px, auto);
  gap: clamp(20px, 4vw, 48px);
  align-items: center;
  min-height: 118px;
  padding: 22px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.live-show-date {
  color: var(--text-main);
  font-family: "Inter", sans-serif;
  font-size: clamp(0.94rem, 1.4vw, 1.05rem);
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: 0;
}

.live-show-details {
  display: grid;
  gap: 7px;
  min-width: 0;
}

.live-show-location {
  color: #fff;
  font-size: clamp(1.9rem, 4vw, 3.2rem);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: 0;
  text-transform: uppercase;
  overflow-wrap: anywhere;
}

.live-show-venue {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-family: "Inter", sans-serif;
  font-size: 0.92rem;
  line-height: 1.45;
  letter-spacing: 0;
}

.live-show-venue--link {
  width: fit-content;
  color: var(--accent);
  text-decoration-color: rgba(0, 158, 134, 0.45);
  text-underline-offset: 4px;
}

.live-show-actions {
  display: flex;
  justify-content: flex-end;
}

.live-show-tickets {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 16px;
  border: 1px solid rgba(255, 191, 0, 0.48);
  border-radius: 6px;
  color: var(--text-main);
  font-family: "Inter", sans-serif;
  font-size: 0.86rem;
  font-weight: 600;
  letter-spacing: 0;
  text-decoration: none;
  white-space: nowrap;
  transition: background 160ms ease, border-color 160ms ease, color 160ms ease;
}

.live-show-tickets:hover,
.live-show-tickets:focus-visible {
  border-color: var(--accent);
  background: rgba(0, 158, 134, 0.1);
  color: #fff;
  outline: none;
}

@media (max-width: 700px) {
  .live-controls {
    justify-content: flex-start;
  }

  .live-show {
    grid-template-columns: 1fr;
    gap: 10px;
    min-height: 0;
    padding: 22px 0 24px;
  }

  .live-show-actions {
    justify-content: flex-start;
    margin-top: 8px;
  }

  .live-show-tickets {
    width: 100%;
  }
}
