/* === Custom Block Styling === */
.ajax__loadWrapper {
  text-align: center;
  margin-top: 32px;
}
.ajaxLoad {
  display: inline-block;
  cursor: pointer;
}
.ajax__loading {
  height: 100%;
  width: 100%;
  position: absolute;
  inset: 0;
  background-color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 100;
}
.ajax__loading i {
  animation: ajaxSpin 1s linear infinite;
}

/* === Ajax Post Items === */
.ajaxPost__imageWrapper {
  padding-bottom: 75%;
  width: 100%;
  position: relative;
  overflow: hidden;
  margin-bottom: 10px;
}
.ajaxPost__image {
  position: absolute;
  inset: 0;
  object-fit: cover;
  object-position: center;
  height: 100%;
  width: 100%;
}

@keyframes ajaxSpin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
