.pk-eachevent > * {
  padding-left: 10px;
  padding-right: 10px;
}

.pk-event-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.pk-eachevent {
  background: #242222;
  padding-bottom: 10px;
  border: 2px solid #ebe6d3;
  border-radius: 0px;
  display: flex;
  flex-direction: column;
  width: calc(33.33333% - 13.333333px);
}

@media screen and (max-width: 1024px) {
    .pk-eachevent {
  width: calc(50% - 10px);
}

}

@media screen and (max-width: 768px) {
    .pk-eachevent {
  width: 100%;
}

}

.pk-image {
  order: 2;
  padding: 0px;
}

.pk-image img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}

.pk-titles {
  order: 6;
}

.pk-titles a {
  color: #222222;
  text-decoration: none;
}

.pk-headline {
  font-family: sweet-sans-pro, sans-serif;
  font-weight: 800;
  font-style: normal;
  font-size: 28px;
  color: #ebe6d3;
  letter-spacing: -1.2px;
  line-height: 1;
  text-align: center;
  margin-top: 20px;
}

.pksubtitle {
  font-family: sweet-sans-pro, sans-serif;
  font-weight: 800;
  font-style: normal;
  font-size: 18px;
  color: #ebe6d3;
  letter-spacing: -1.2px;
  line-height: 1;
  text-align: center;
  margin-top: 10px;
  margin-bottom: 30px;
}

.pksubtitle {
  order: 7;
}

.pk-dates {
  background: #679999;
  color: #242222;
  font-family: coordinates, monospace;
  font-weight: 600;
  font-style: normal;
  font-size: 20px;
  text-align: center;
  padding-top: 10px;
  padding-bottom: 10px;
  border-bottom: 2px solid #ebe6d3;
}

.pk-dates {
  order: 1;
}

.pk-date-day:after {
  content: ",";
}

.pk-times {
  font-family: coordinates, monospace;
  font-weight: 600;
  font-style: normal;
  color: #ebe6d3;
}
.pk-times {
  text-align: center;
  font-size: 16px;
}
.pk-times {
  order: 4;
}

.pk-location {
  text-align: center;
  margin-top: 15px;
  font-size: 16px;
}
.pk-location {
  order: 3;
}
.pk-location {
  grid-area: location;
}

.pk-venue {
  font-family: coordinates, monospace;
  font-weight: 600;
  font-style: normal;
  font-size: x-large;
  color: #ebe6d3;
}

.pk-location {
  text-align: center;
  margin-top: 15px;
  font-size: 16px;
}

.pk-buttons {
  grid-area: buttons;
  display: flex;
  margin-top: 10px;
  flex-grow: 1;
  justify-content: flex-end;
  flex-direction: column;
  order: 8;
}

.pk-link {
  background: #252525;
  color: white;
  border-radius: 2px;
  text-decoration: none;
  width: 100%;
  display: block;
  cursor: pointer;
}

.pk-link {
  background: #242222;
  border: 4px solid #cf5524;
  width: fit-content;
  margin: auto;
  margin-bottom: 15px;
  border-radius: 0px;
  position: relative;
}

.pklinktext {
  padding: 10px 20px;
  display: block;
  text-align: center;
}

.pklinktext {
  font-family: coordinates, monospace;
  font-weight: 600;
  font-style: normal;
  color: #ebe6d3;
  text-transform: uppercase;
}

.pk-link:after {
  content: "";
  width: 106%;
  height: 112%;
  top: 1px;
  left: -6px;
  border-left: 6px solid #cf5524;
  border-bottom: 7px solid #cf5524;
  position: absolute;
}


.pk-link-load-more:after {
  content: "";
  width: 103%;
  height: 111%;
  top: 1px;
  left: -6px;
  border-left: 6px solid #cf5524;
  border-bottom: 7px solid #cf5524;
  position: absolute;
}




.axs-loading {
  display: none;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin: 20px 0;
}

.axs-loading span {
  width: 10px;
  height: 10px;
  background: #cf5524; /* dot color */
  border-radius: 50%;
  display: inline-block;
  animation: pulse 1s infinite ease-in-out;
}

.axs-loading span:nth-child(1) {
  animation-delay: 0s;
}
.axs-loading span:nth-child(2) {
  animation-delay: 0.2s;
}
.axs-loading span:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes pulse {
  0%, 80%, 100% {
    transform: scale(0);
    opacity: 0.3;
  }
  40% {
    transform: scale(1);
    opacity: 1;
  }
}
