.performances-section {
  width: 100%;
  margin: 0 auto;
  padding: 2rem 0;
}
.perf-format-filters {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 1.1rem;
  flex-wrap: wrap;
}
.perf-format-btn {
  background: #23243a;
  color: #fff;
  padding: 0.6em 1.3em;
  border-radius: 8px;
  border: none;
  font-weight: 400;
  cursor: pointer;
  font-size: 1.08rem;
  margin-bottom: 0.2rem;
  transition: background .15s;
}
.perf-format-btn.active {
  background: #44446a;
  color: #fff;
}

/* --- Удалены все hover-стили для фильтров --- */

.perf-cards {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 1.5rem auto 0;
  width: 100%;
  max-width: 520px;
  padding: 0;
  box-sizing: border-box;
}

.perf-card.new-layout {
  display: flex;
  flex-direction: row;
  padding: 0;
  min-height: 120px; /* увеличена минимальная высота */
  font-size: 1.08rem;
  font-weight: 400;
  background: linear-gradient(90deg, #23243a 0%, #18191d 100%);
  border-radius: 15px;
  box-shadow: 0 2px 14px 0 rgba(31,37,56,.11);
  color: #f7f7fb;
  border: 1px solid rgba(125,130,156,.08);
  margin-bottom: 0;
  max-width: 100%;
  text-align: left;
  align-items: stretch;
  gap: 1.2rem;
  position: relative;
}

.perf-card-col {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-width: 110px;
  max-width: 110px;
  border-top-left-radius: 15px;
  border-bottom-left-radius: 15px;
  padding: 18px 12px 14px 13px;
  box-sizing: border-box;
  text-align: left;
  font-weight: 400;
}

.perf-date {
  color: #c0c8ff;
  font-weight: 400;
  white-space: pre-line;
  line-height: 1.25;
}

.perf-city {
  color: #e9d59c;
  font-weight: 400;
}

.perf-card-main {
  display: flex;
  flex-direction: column;
  justify-content: flex-end; /* прижимаем amount к низу */
  flex: 1 1 0;
  background: transparent;
  border-top-right-radius: 15px;
  border-bottom-right-radius: 15px;
  padding: 18px 18px 14px 19px;
  box-sizing: border-box;
  font-weight: 400;
  position: relative;
  min-height: 80px;
}

.perf-event-name {
  color: #ffd3e1;
  margin-bottom: 12px;
  font-weight: 400;
  word-break: break-word;
  flex: 1 1 auto;
}

.perf-amount {
  color: #c7ffd4;
  text-align: right;
  font-weight: 400;
  align-self: flex-end;
  margin-top: auto;
  margin-bottom: 0;
}

#perf-more-btn {
  font-size: 1.08rem;
  font-weight: 400;
  display: block;
  margin: 0 auto;
}

/* Подсветка предстоящих */
.perf-card.new-layout.is-upcoming {
  border: 1px solid rgba(120, 180, 255, 0.35);
  box-shadow: 0 0 0 2px rgba(120,180,255,0.12) inset, 0 6px 22px rgba(40,60,120,0.18);
  background: linear-gradient(90deg, #26304a 0%, #1a1c28 100%);
}

.perf-amount a.perf-amount-link {
  color: inherit;           /* тот же цвет, что и у обычного текста Amount */
  text-decoration: none;    /* без подчёркивания */
  font-weight: inherit;     /* одинаковая толщина шрифта */
}

.perf-amount a.perf-amount-link:active {
  opacity: 0.9;
}

.perf-badge {
  position: absolute;
  top: 8px;
  right: 10px;
  background: #6cf77a;
  color: #000;
  font-size: 0.82rem;
  font-weight: 600;
  padding: 3px 7px;
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

/* styles/performances-section.css */
.perf-event-name { white-space: pre-line; }

@media (max-width: 600px) {
  .perf-cards {
    max-width: 100%;
    padding: 0;
  }
  .perf-card.new-layout { min-height: 100px;}
  .perf-card-col, .perf-card-main { padding: 12px 7px 10px 8px;}
  .perf-event-name { font-size: 1.02rem; }
}