.cel-event-wrapper {
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.cel-event-wrapper p,
.cel-event-wrapper span {
  font-family: "Geist";
}

.cel-event-card {
  display: flex;
  color: #fff;
  padding: 15px;
  align-items: center;
  border-bottom: 1px solid #333;
  justify-content: space-between;
}

/* .cel-event-card:last-child {
  border-bottom: none;
} */

.cel-event-thumb img {
  width: 80px;
  height: 80px !important;
  object-fit: cover;
  border-radius: 10px !important;
  margin-right: 15px;
  aspect-ratio: 1/1;
}

.cel-btn-ctr button.cel-load-more {
  padding: 5px 20px;
}

.cel-event-date {
  text-align: center;
  display: flex;
  flex-direction: column;
  width: 150px;
  justify-content: flex-start;
  align-items: flex-start;
}

.cel-event-header {
  display: flex;
  gap: 40px;
  align-items: center;
}

.cel-event-day {
  display: block;
  font-size: 40px;
  font-weight: bold;
}

.cel-event-month {
  font-size: 18px;
}

.cel-event-info {
  flex-grow: 1;
}

.cel-event-title {
  margin: 0;
  font-size: 30px;
  font-weight: 600;
  font-family: "Clash";
}

.cel-event-location,
.cel-event-time {
  margin: 0;
  font-size: 18px;
}

.cel-event-link a {
  font-family: "Geist", Sans-serif;
  color: var(--red);
  text-decoration: none;
  font-weight: 500;
  font-size: 18px;
}

.cel-btn-ctr {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 50px;
}

.cel-btn-ctr p {
  font-family: "Geist", Sans-serif;
  font-size: 20px;
  padding: 0;
  margin: 0;
}

.cel-event-link a:hover {
  color: white;
}

.cel-event-link a:hover + svg path {
  stroke: white;
}

.cel-event-link {
  white-space: nowrap;
}

.cel-event-middle {
  display: flex;
  justify-content: space-between;
  width: 100%;
  align-items: center;
  padding-left: 5rem;
}

@media (max-width: 1124px) {
  .cel-event-middle {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 20px;
    padding-left: 0;
  }
  .cel-event-card {
    flex-direction: row-reverse;
  }
}

@media (max-width: 768px) {
  .cel-btn-ctr p,
  .cel-btn-ctr a {
    font-size: 16px;
  }

  .cel-event-thumb img {
    width: 150px;
    height: 100% !important;
    object-fit: cover;
    border-radius: 10px !important;
    margin-right: 0px;
    aspect-ratio: 1/1;
  }

  /* .cel-event-thumb {
    display: none;
  } */
  .cel-event-middle {
    padding-left: 0;
  }

  .cel-btn-ctr {
    flex-direction: column;
    gap: 20px;
    padding: 0 15px;
    padding-top: 50px;
  }

  .cel-event-card {
    align-items: flex-start;
    padding: 20px 0;
    gap: 20px;
  }
}

.cel-load-more {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.cel-load-more .spinner {
  display: none;
  width: 16px;
  height: 16px;
  border: 2px solid #ccc;
  border-top: 2px solid #005cf1;
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
