/* ========================================
   ROCKONTEUR — SHOW CARDS (ticket section)
   ======================================== */

.rk-shows-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.1rem;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (max-width: 900px) {
  .rk-shows-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 560px) {
  .rk-shows-grid { grid-template-columns: repeat(2, 1fr); }
}

.rk-show-card {
  background: rgba(255, 255, 255, 0.08);
  border: 2px solid #e8b74a;
  border-radius: 12px;
  padding: 1.25rem 1.15rem 1.1rem;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  transition: transform 0.35s ease, background 0.35s ease, box-shadow 0.35s ease;
}

.rk-show-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.18);
  box-shadow: 0 10px 26px rgba(30, 50, 70, 0.22);
}

.rk-date {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  color: #e8b74a;
  font-weight: 500;
}

.rk-date-day {
  font-size: 2.5rem;
  line-height: 1;
  font-weight: 500;
}

.rk-date-month {
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.rk-date-year {
  color: #3a4a58;
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  margin-left: auto;
}

.rk-city {
  color: #1c2a38;
  font-size: 1.25rem;
  font-weight: 500;
  margin: 0.2rem 0 0;
  line-height: 1.2;
}

.rk-venue {
  color: #3a4a58;
  font-size: 0.88rem;
  margin: 0;
  font-style: italic;
  line-height: 1.3;
}

.rk-divider {
  height: 1px;
  background: #e8b74a;
  opacity: 0.4;
  margin: 0.35rem 0 0.25rem;
}

.rk-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  background: transparent;
  color: #1c2a38;
  border: 2px solid #e8b74a;
  padding: 0.6rem 0.9rem;
  border-radius: 7px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.8rem;
  font-weight: 500;
  text-decoration: none;
  transition: gap 0.3s ease, color 0.3s ease;
  margin-top: 0.4rem;
  position: relative;
  overflow: hidden;
}

.rk-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #e8b74a;
  transform: translateX(-100%);
  transition: transform 0.35s ease;
  z-index: 0;
}

.rk-btn span {
  position: relative;
  z-index: 1;
}

.rk-btn:hover::before {
  transform: translateX(0);
}

.rk-btn:hover {
  color: #1c2a38;
  gap: 0.65rem;
  text-decoration: none;
}

.rk-btn-quiet {
  border-color: rgba(28, 42, 56, 0.35);
  color: #3a4a58;
}

.rk-btn-quiet::before {
  background: rgba(28, 42, 56, 0.12);
}