/**
 * Events Cards Shortcode Styles
 * Usage: [rbl_events]
 */
.events-cards-section {
  width: 100%;
}

.events-cards-header {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 30px;
}
@media (min-width: 768px) {
  .events-cards-header {
    gap: 10px;
  }
}

.events-cards-title {
  font-size: 28px;
  font-weight: 700;
  color: #1c1c1c;
  margin: 0;
}
@media (min-width: 768px) {
  .events-cards-title {
    font-size: 32px;
  }
}

.events-cards-description {
  max-width: 730px;
  font-size: 16px;
}

.events-toggle {
  display: flex;
  gap: 8px;
  background: #f5f5f5;
  padding: 4px;
  border-radius: 8px;
}

.events-toggle__btn {
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 500;
  color: #626361;
  background: transparent;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.events-toggle__btn:hover {
  color: #1c1c1c;
}
.events-toggle__btn--active {
  background: #fff;
  color: #1c1c1c;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
}

.events-cards-container {
  min-height: 200px;
}
.events-cards-container.loading {
  opacity: 0.6;
}

.events-loading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 200px;
  color: #626361;
  font-size: 16px;
}
.events-loading .spinner {
  width: 20px;
  height: 20px;
  border: 2px solid #e0e0e0;
  border-top-color: #29235C;
  border-radius: 50%;
  animation: spin-loading 0.8s linear infinite;
}

@keyframes spin-loading {
  to {
    transform: rotate(360deg);
  }
}
.events-cards-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .events-cards-grid--2 {
    grid-template-columns: repeat(2, 1fr);
  }
  .events-cards-grid--3 {
    grid-template-columns: repeat(3, 1fr);
  }
  .events-cards-grid--4 {
    grid-template-columns: repeat(4, 1fr);
  }
}

.events-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  text-decoration: none !important;
}
.events-card:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}
.events-card:hover .events-card__link {
  color: #29235C;
}

.events-card__image {
  position: relative;
  width: 100%;
  padding-top: 49%;
  overflow: hidden;
}

.events-card__sold-out-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  padding: 6px 12px;
  background: #d32f2f;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  border-radius: 4px;
}

.events-card--sold-out .events-card__img {
  filter: grayscale(70%);
  opacity: 0.7;
}

.events-card__price--sold-out {
  color: #d32f2f;
  font-weight: 600;
}

.events-card__img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.events-card__content {
  display: flex;
  flex-direction: column;
  padding: 20px;
  flex: 1;
}

.events-card__date {
  font-size: 14px;
  font-weight: 400;
  color: #626361;
  margin-bottom: 8px;
}

.events-card__title {
  font-size: 18px;
  font-weight: 700;
  color: #1c1c1c;
  margin: 0 0 12px;
  line-height: 1.4;
}
@media (min-width: 768px) {
  .events-card__title {
    font-size: 20px;
  }
}

.events-card__price {
  font-size: 16px;
  font-weight: 400;
  color: #3a3a3a;
  margin-bottom: 16px;
}

.events-card__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: #1c1c1c;
  margin-top: auto;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.events-card__link svg {
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.events-cards-footer {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

.events-cards-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  padding: 0 30px;
  background-color: #FFCC00;
  color: #000;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  border: none;
  border-radius: 8px;
  box-shadow: inset 0px -2px 0px 0px rgba(0, 0, 0, 0.04);
  cursor: pointer;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.events-cards-btn:hover {
  background-color: rgb(229.5, 183.6, 0);
  color: #000;
  text-decoration: none;
}
.events-cards-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.events-empty {
  text-align: center;
  padding: 40px 20px;
  color: #626361;
}

.events-archive-page {
  padding: 10px 0 80px;
}
@media (min-width: 768px) {
  .events-archive-page {
    padding: 60px 0 100px;
  }
}

.events-archive-title {
  font-size: 32px;
  font-weight: 700;
  color: #1c1c1c;
  margin: 0;
}
@media (min-width: 768px) {
  .events-archive-title {
    font-size: 42px;
  }
}

/*# sourceMappingURL=events-cards.css.map */
