.aa-post-loop-container.owl-carousel .owl-stage {
  display: flex;
}
.aa-post-loop-container {
  width: 100%;
  min-width: 100%;
  height: auto;
  display: flex;
  flex-flow: row nowrap;
  justify-content: flex-start;
  align-items: stretch;
  margin: 30px auto;
}
.aa-post-loop-container-grid {
  display:grid;
  gap: 20px;
}
.aa-post-loop-container-grid.aa-post-loop-1-col-layout {
  grid-template-columns: 1fr;
}
.aa-post-loop-container-grid.aa-post-loop-2-col-layout {
  grid-template-columns: 1fr 1fr;
}
.aa-post-loop-container-grid.aa-post-loop-3-col-layout {
  grid-template-columns: 1fr 1fr 1fr;
}
.aa-post-loop-container .aa-card {
  flex: 0 0 calc(33.333% - 15px);
  height: 100%;
}
.aa-post-loop-widget .owl-stage-outer{
  padding-bottom: 41px !important;
}

@media only screen and (max-width: 1000px) {
  .aa-post-loop-container .aa-card {
    flex: 0 0 calc(50% - 15px);
  }
}

@media only screen and (max-width: 800px) {
  .aa-post-loop-container .aa-card {
    flex: 0 0 100%;
  }
}
