/* ===== Tour page ===== */

.tour-header {
  text-align: center;
  margin: 16px auto 10px;
}

.kicker {
  color: #00ffff;
  font-size: 13px;
  letter-spacing: 1px;
  margin: 0 0 8px;
}

.tour-header h1 {
  color: yellow;
  font-size: 42px;
  line-height: 1.05;
  margin: 0 0 10px;
  text-shadow: 2px 2px #660000;
}

.tour-header h1 span {
  font-size: 32px;
}

.lead {
  font-size: 19px;
  margin: 6px 0;
}

.tour-warning {
  display: inline-block;
  border: 3px double red;
  color: white;
  background: #111;
  padding: 6px 10px;
  margin: 8px auto 0;
  font-size: 14px;
}

.tour-main {
  width: min(95%, 980px);
  padding: 18px;
}

.tour-main h2 {
  color: yellow;
  text-align: center;
  margin: 0 0 12px;
}

.tour-intro {
  max-width: 760px;
  margin: 0 auto;
  line-height: 1.55;
}

.route-line {
  color: #00ffff;
  font-weight: bold;
}

.tour-dates {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.show-card {
  display: grid;
  grid-template-columns: 92px 1fr 150px;
  gap: 14px;
  align-items: stretch;
  background: #111;
  border: 4px ridge #666;
  padding: 10px;
  text-align: left;
}

.show-card.tentative {
  border-color: #996600;
}

.date-box {
  border: 3px outset #888;
  background: #000;
  color: yellow;
  text-align: center;
  padding: 7px 4px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 86px;
}

.date-box .month,
.date-box .weekday {
  color: #ffcc99;
  font-size: 15px;
  text-transform: uppercase;
}

.date-box .day {
  color: yellow;
  font-size: 34px;
  font-weight: bold;
  line-height: 1;
}

.show-info h3 {
  color: yellow;
  font-size: 24px;
  margin: 0 0 5px;
}

.venue {
  font-size: 17px;
  margin: 0 0 8px;
}

.lineup,
.venue-options {
  margin: 6px 0;
  line-height: 1.4;
}

.show-actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
  justify-content: center;
}

.ticket-button,
.venue-button {
  display: block;
  text-align: center;
  border: 3px outset #888;
  background: #000;
  padding: 8px 6px;
  color: yellow;
  text-decoration: underline;
  font-weight: bold;
}

.ticket-button:hover,
.venue-button:hover {
  background: yellow;
  color: #000;
}

.venue-button {
  color: #00ffff;
}

.other-shows {
  margin-top: 8px;
}

.mini-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.mini-grid article {
  border: 3px inset #666;
  background: #111;
  padding: 12px;
  text-align: center;
}

.mini-grid h3 {
  color: yellow;
  margin: 0 0 6px;
}

.ticket-placeholder {
  margin: 22px auto 0;
  max-width: 700px;
  border: 3px double #666;
  background: #111;
  padding: 14px;
  line-height: 1.5;
}

.official-stamp {
  width: fit-content;
  max-width: 90%;
  margin: 25px auto 5px;
  padding: 8px 14px;
  border: 4px double red;
  color: red;
  font-weight: bold;
  transform: rotate(-3deg);
  background: #111;
  font-size: 18px;
}

.return-link {
  margin-top: 20px;
}

@media (max-width: 760px) {
  .tour-header h1 {
    font-size: 32px;
  }

  .tour-header h1 span {
    font-size: 24px;
  }

  .show-card {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .date-box {
    width: 120px;
    margin: 0 auto;
  }

  .mini-grid {
    grid-template-columns: 1fr;
  }

  .show-actions {
    max-width: 260px;
    margin: 0 auto;
    width: 100%;
  }
}
