.rcv-ev-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 99999;
  font-family: Inter, Roboto, Arial, sans-serif;
  font-size: 14px;
  line-height: 1.5;
  color: #1a1a1a;
}
.rcv-ev-overlay[aria-hidden=false] {
  display: block;
}
.rcv-ev-overlay button,
.rcv-ev-overlay input,
.rcv-ev-overlay select,
.rcv-ev-overlay textarea {
  background: none;
  background-color: transparent;
  border: none;
  padding: 0;
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  color: inherit;
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.rcv-ev-overlay *,
.rcv-ev-overlay *::before,
.rcv-ev-overlay *::after {
  box-sizing: border-box;
}
.rcv-ev-overlay__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
}
.rcv-ev-overlay__dialog {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: min(960px, 96vw);
  max-height: 90vh;
  overflow-y: auto;
  background: #fff;
  border-radius: 12px;
  padding: 32px 28px 24px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.rcv-ev-overlay__close {
  position: absolute;
  top: 12px;
  right: 16px;
  background: none;
  border: none;
  line-height: 1;
  cursor: pointer;
  color: #666;
  padding: 6px;
  border-radius: 4px;
  transition: color 0.15s, background 0.15s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.rcv-ev-overlay__close svg {
  width: 20px;
  height: 20px;
  display: block;
}
.rcv-ev-overlay__close:hover {
  color: #000;
  background: #f5f5f5;
}
.rcv-ev-overlay__content {
  margin-top: 8px;
}

.rcv-event-list {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(1, 1fr);
  font-family: Inter, Roboto, Arial, sans-serif;
  font-size: 14px;
  line-height: 1.5;
}
.rcv-event-list button {
  background: none;
  background-color: transparent;
  border: none;
  padding: 0;
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  color: inherit;
  cursor: pointer;
}
.rcv-event-list *,
.rcv-event-list *::before,
.rcv-event-list *::after {
  box-sizing: border-box;
}
@media (min-width: 600px) {
  .rcv-event-list--cols-2, .rcv-event-list--cols-3, .rcv-event-list--cols-4 {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 250px;
  }
}
@media (min-width: 900px) {
  .rcv-event-list--cols-3 {
    grid-template-columns: repeat(3, 1fr);
  }
  .rcv-event-list--cols-4 {
    grid-template-columns: repeat(4, 1fr);
  }
}

.rcv-ev-card {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  cursor: pointer;
  background: #222;
  min-height: 220px;
}
.rcv-ev-card--featured {
  grid-column: span 2;
  grid-row: span 2;
}
.rcv-ev-card__media {
  position: absolute;
  inset: 0;
  background-color: #333;
  background-size: cover;
  background-position: center;
  transition: transform 0.4s ease;
}
.rcv-ev-card:hover .rcv-ev-card__media {
  transform: scale(1.04);
}
.rcv-ev-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.2) 60%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.rcv-ev-card__body {
  padding: 14px 16px 18px;
  color: #fff;
}
.rcv-ev-card__name {
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 8px;
  color: #fff;
}
.rcv-ev-card__meta {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 12px;
  font-size: 0.8rem;
}
.rcv-ev-card__price-badge {
  background: #fff;
  color: #107C41;
  padding: 2px 8px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 0.78rem;
  flex-shrink: 0;
  white-space: nowrap;
}
.rcv-ev-card__desc {
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.35;
}
.rcv-ev-card__btn--book {
  padding: 8px 20px;
  background: #0057C2;
  color: #fff;
  border: none;
  border-radius: 4px;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.15s;
}
.rcv-ev-card__btn--book:hover {
  background: #004aaa;
}

.rcv-bw-list-header {
  margin-bottom: 1.25rem;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--rcv-text);
}

.rcv-bw-list-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
@media (max-width: 500px) {
  .rcv-bw-list-grid {
    grid-template-columns: 1fr;
  }
}

.rcv-bw-list-card {
  border: 1px solid var(--rcv-border);
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  transition: border-color 0.15s, box-shadow 0.15s;
  background: #fff;
}
.rcv-bw-list-card:hover {
  border-color: var(--rcv-accent);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}
.rcv-bw-list-card__img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  display: block;
}
.rcv-bw-list-card__body {
  padding: 10px 12px;
}
.rcv-bw-list-card__name {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--rcv-text);
  margin: 0 0 4px;
  line-height: 1.3;
}
.rcv-bw-list-card__price {
  font-size: 0.8rem;
  color: var(--rcv-text-light);
}
