.wp-block-cpt-events-group-events-preview-section-1 .single-event-preview {
  pointer-events: none; /* Disable clicks */
  cursor: not-allowed; /* Optional: change the cursor to indicate it's disabled */
}

.events-preview-section-1 .content {
  flex-direction: column;
}
.events-preview-section-1 .section-side-one {
  flex-direction: row;
  flex-wrap: wrap;
}
.events-preview-section-1 .events-preview-heading {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: var(--inner-spacing-m);
  align-items: center;
}
.events-preview-section-1 .headline {
  width: auto;
  max-width: var(--text-max-width);
  margin-bottom: 0px;
}
.events-preview-section-1 .button-row {
  margin-bottom: 0px;
}
.events-preview-section-1 .section-side-two {
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
}
.events-preview-section-1 .single-event-card {
  display: flex;
  flex-direction: column;
  color: var(--black);
  text-decoration: none;
  width: calc(25% - 25px);
}
.events-preview-section-1 .single-event-card .image-container {
  height: 200px;
}
.events-preview-section-1 .single-event-card .image-container img {
  object-fit: cover;
  height: 100%;
}
.events-preview-section-1 .single-event-card .single-event-text {
  flex: 1;
  transition: background-color var(--transition-timing) var(--transition-ease);
  padding: var(--inner-spacing-s) var(--inner-spacing-s) var(--inner-spacing-m) var(--inner-spacing-s);
}
.events-preview-section-1 .single-event-card .headline {
  position: relative;
  margin-bottom: var(--inner-spacing-s);
}
.events-preview-section-1 .single-event-card .headline i {
  position: absolute;
  top: 10px;
  right: 0;
  font-size: 20px;
  opacity: 0;
  transition: opacity var(--transition-timing) var(--transition-ease);
}
.events-preview-section-1 .single-event-card:hover .single-event-text {
  background-color: var(--highlight-color);
}
.events-preview-section-1 .single-event-card:hover .headline {
  margin-bottom: var(--inner-spacing-s);
}
.events-preview-section-1 .single-event-card:hover .headline i {
  opacity: 1;
}
.events-preview-section-1 .single-event-card:hover .image-container img {
  scale: 1.1;
}
@media screen and (max-width: 1170px) {
  .events-preview-section-1 .single-event-card {
    width: calc(50% - 25px);
  }
}
@media screen and (max-width: 767px) {
  .events-preview-section-1 .single-event-card {
    width: 100%;
  }
}