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

.resource-preview-section.three-column-section .single-resource-preview {
  width: calc(33.33333% - 30px);
  margin-right: 30px;
}
.resource-preview-section.three-column-section .single-resource-preview .card-image {
  height: 250px;
}
.resource-preview-section .section-side-one {
  flex-direction: row;
  flex-wrap: wrap;
  margin-bottom: 30px;
  align-items: center;
}
.resource-preview-section .resource-preview-heading {
  width: 100%;
  display: flex;
  flex-direction: column;
  margin-bottom: 40px;
}
.resource-preview-section .overline {
  margin-bottom: 6px;
}
.resource-preview-section .headline {
  max-width: var(--text-max-width);
}
.resource-preview-section .section-side-two {
  flex-direction: row;
  flex-wrap: wrap;
}
.resource-preview-section .section-side-two > :last-child {
  margin-bottom: 30px;
}
.resource-preview-section.white-background-color .filters-container {
  background-color: var(--offWhite);
}
.resource-preview-section.white-background-color .filters-container select {
  background-color: var(--offWhite);
}
.resource-preview-section.white-background-color .card-content {
  background: var(--offWhite);
}
.resource-preview-section .single-resource-preview {
  text-decoration: none;
  display: inline-flex;
  flex-direction: column;
  width: calc(25% - 15px);
  margin-right: 15px;
  font-size: 16px;
  margin-bottom: 30px;
  transition: all var(--transition-timing) var(--transition-ease);
}
.resource-preview-section .single-resource-preview:after {
  display: none;
}
.resource-preview-section .single-resource-preview:hover .card-image img {
  transform: scale(1.05);
}
.resource-preview-section .card-image {
  position: relative;
  height: 175px;
  width: 100%;
  overflow: hidden;
}
.resource-preview-section .card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all var(--transition-timing) var(--transition-ease);
}
.resource-preview-section .categories-row {
  width: 100%;
  height: auto;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  margin-bottom: 7px;
}
.resource-preview-section .categories-row span {
  display: inline-block;
  margin: 0 6px;
}
.resource-preview-section .resource-category {
  color: var(--color1);
  margin: 0px;
}
.resource-preview-section .card-content {
  padding: 30px 30px 30px 30px;
  background: var(--white);
  height: auto;
  flex: 1;
  display: flex;
  flex-wrap: wrap;
  transition: all var(--transition-timing) var(--transition-ease);
}
.resource-preview-section .card-content .card-text-container {
  width: 100%;
  margin-bottom: 10px;
}
.resource-preview-section .card-content .headline {
  position: relative;
  font-weight: 500;
  margin-bottom: 10px;
}
.resource-preview-section .card-content .body-copy {
  margin-bottom: 10px;
}
.resource-preview-section .card-content .read-more-link {
  align-self: flex-end;
  text-transform: uppercase;
}
.resource-preview-section.color1-background-color .single-resource-preview, .resource-preview-section.gradient-background-color .single-resource-preview {
  color: var(--black);
}
@media screen and (max-width: 1240px) {
  .resource-preview-section .single-resource-preview {
    width: calc(33.33333% - 30px);
    margin-right: 30px;
  }
}
@media screen and (max-width: 1000px) {
  .resource-preview-section .single-resource-preview {
    width: calc(50% - 30px);
    margin-right: 30px;
  }
  .resource-preview-section.three-column-section .single-resource-preview {
    display: inline-block;
    width: calc(50% - 30px);
    margin-right: 30px;
  }
}
@media screen and (max-width: 767px) {
  .resource-preview-section .single-resource-preview {
    width: 100%;
    margin-right: 0;
  }
  .resource-preview-section.three-column-section .single-resource-preview {
    display: inline-block;
    width: 100%;
    margin-right: 0px;
  }
  .resource-preview-section .filter-title {
    display: none;
  }
}