.live-events-carousel {
  margin: 2rem 0 2rem 0;
}

.live-events-card-wrapper {
  position: relative;
  width: calc(33% - 2rem);
  margin-right: 0rem;
}

.js-flickity .live-events-card-wrapper {
  margin-right: 2.5rem;
}



.live-events-card-link {
  position: absolute;
  inset: 0;
  z-index: 5;
  content: '';
  display: block;
}

.live-events-card {
  background-color: #000;
  color: #fff;
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  font-family: 'Inter', sans-serif;
  border: 2px white solid;
  transition: transform 0.3s ease;
}

.live-events-card-top {
  padding: 1rem 1rem 0 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
}

.live-events-card-tag--location {
  background-color: var(--purple);
  color: #000;
  font-size: 0.75rem;
  font-weight: bold;
  padding: 0.15rem 0.8rem;
  border-radius: 4px;
  display: inline-block;
  text-transform: uppercase;
  margin: 0;
}

.live-events-card-tag--type {
  background-color: var(--blue);
  color: #000;
  font-size: 0.75rem;
  font-weight: bold;
  padding: 0.15rem 0.8rem;
  border-radius: 4px;
  display: inline-block;
  text-transform: uppercase;
  margin: 0;
}

.live-events-card-bottom {
  padding: 1rem;
}

.live-events-card-title {
  font-size: 2rem;
  font-weight: 700;
  margin: 0 0 0.5rem;
}

.live-events-card-title a {
  color: #fff;
  text-decoration: none;
}

.live-events-card-title a:hover {
  text-decoration: underline;
}

.live-events-card-divider {
  width: 100%;
  height: 100%;
}

.live-events-card-datetime {
  font-weight: 600;
  margin-bottom: 0.5rem;
  font-size: 18px;
  line-height: 1.4;
}

.live-events-card-description {
  font-size: 0.875rem;
}

.elev8-live-tag {
  position: absolute;
  top:1.5rem;
  left:1.5rem;
  z-index: 4;
}

.live-events-card-image-wrapper {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
  height: 175px;
}

.live-events-card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.live-events-card-wrapper:hover .live-events-card-image {
  transform: scale(1.05);
}


.live-events-carousel .flickity-prev-next-button {
  top: calc(100% + 70px);
}


.live-events-carousel .flickity-button.next {
  position: absolute;
  right: calc(50% - 70px);
}

.live-events-carousel .flickity-button.previous {
  position: absolute;
  left:calc(50% - 70px);

}

.live-events-carousel .flickity-button {
  transition: ease-in-out 100ms all;
  background: white;
  z-index: 4;
  bottom: 0;
}
.live-events-carousel .flickity-button:hover {
  transform: scale(1.7) translateY(-15px);

}

@media screen and (max-width: 767px) {

  .live-events-card-wrapper {
    width: 100%;
  }

}

.live-events-carousel:not(.flickity-enabled) {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}

.live-events-carousel:not(.flickity-enabled) {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  overflow: visible;
}


.live-events-card-wrapper {
  position: relative;

}

.live-events-actions {
  display: flex;
  justify-content: center;
  padding: 2rem 0 4rem;
}

.live-events-actions button {
  display: flex;
  justify-content: center;
  cursor: pointer;
  display: inline-flex
    ;
  text-align: center;
  transition: all 0.15s linear;
  white-space: normal;
  border-radius: 2rem;
  background-color: var(--light-blue);
  padding: .75rem 2.25rem .6rem 2.25rem;
  line-height: 1.25;
  color: var(--black);
  text-decoration: none;
  font-weight: bold;
  text-transform: uppercase;
  font-family: "din-2014", sans-serif;
  letter-spacing: 0.04em;
}

.live-events-carousel {
	position: relative; /* <-- anchors your absolute arrow positions */
	margin: 0rem 0 2rem 0;
}

/* keep just one of these; remove the duplicate */
.live-events-carousel:not(.flickity-enabled) {
	display: flex;
	flex-wrap: wrap;
	gap: 2rem;
	overflow: visible;
}

.live-events-carousel.js-flickity.flickity-enabled.is-draggable {
    margin-bottom: 10rem;
}

.live-events-empty {
  text-align
}