.ansarel-small-post {
  backdrop-filter: blur(var(--ansarel-backdrop-filter-blur, 0)) brightness(var(--ansarel-backdrop-filter-brightness, 100%)) contrast(var(--ansarel-backdrop-filter-contrast, 1)) grayscale(var(--ansarel-backdrop-filter-grayscale, 0)) invert(var(--ansarel-backdrop-filter-invert, 0)) opacity(var(--ansarel-backdrop-filter-opacity, 1)) sepia(var(--ansarel-backdrop-filter-sepia, 0)) saturate(var(--ansarel-backdrop-filter-saturate, 1)) hue-rotate(var(--ansarel-backdrop-filter-hue-rotate, 0deg));
}

.ansarel-small-post {
  display: flex;
  gap: 20px;
  align-items: center;
}
.ansarel-small-post .ansarel-img-wraper {
  width: 100px;
  height: 100px;
  min-height: 50px;
  border-radius: 12px;
  flex: 0 0 auto;
  overflow: hidden;
  position: relative;
}
.ansarel-small-post .ansarel-img-wraper img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.ansarel-small-post .ansarel-inner {
  width: 100%;
}
.ansarel-small-post .ansarel-title {
  font-size: 20px;
}
.ansarel-small-post.layout-two {
  width: 100%;
  height: 250px;
  max-height: 100%;
  position: relative;
}
.ansarel-small-post.layout-two .ansarel-img-wraper {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  width: 100%;
  height: 100%;
}
.ansarel-small-post.layout-two .ansarel-img-wraper img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 0.3s;
}
.ansarel-small-post.layout-two .ansarel-img-wraper::before {
  content: "";
  inset: 0;
  background-color: #676ced;
  z-index: 1;
  position: absolute;
  border-radius: 10px;
  opacity: 0.4;
}
.ansarel-small-post.layout-two .ansarel-inner {
  padding: 20px;
  display: flex;
  justify-content: flex-end;
  flex-direction: column;
  z-index: 1;
  position: absolute;
  inset: 0;
  top: 0;
  bottom: 0;
  left: 0;
}
.ansarel-small-post.layout-two .ansarel-inner .ansarel-category {
  width: unset;
}

.ansarel-small-post.layout-three {
  width: 100%;
  position: relative;
  flex-direction: column;
}
.ansarel-small-post.layout-three .ansarel-img-wraper {
  width: 100%;
  height: 100px;
}
.ansarel-small-post.layout-three .ansarel-img-wraper img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.ansarel-featured-posts {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
  padding: 0;
}
.ansarel-featured-posts.layout-vertical .ansarel-post-left {
  min-width: 0;
}
.ansarel-featured-posts.layout-vertical .ansarel-post-right {
  flex: 1 1 0;
  min-width: 0;
  display: grid;
  gap: 1.2rem;
  align-content: start;
}
.ansarel-featured-posts.layout-horizontal {
  flex-direction: column;
}
.ansarel-featured-posts.layout-horizontal .ansarel-post-left {
  width: 100%;
}
.ansarel-featured-posts.layout-horizontal .ansarel-post-right {
  width: 100%;
  display: grid;
  gap: 1.2rem;
  align-content: start;
}

@media (max-width: 1024px) {
  .ansarel-featured-posts.layout-vertical .ansarel-post-left {
    flex: 0 0 100%;
  }
  .ansarel-featured-posts.layout-vertical .ansarel-post-right {
    flex: 0 0 100%;
    grid-template-columns: repeat(2, 1fr);
  }
  .ansarel-featured-posts.layout-horizontal .ansarel-post-right {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767px) {
  .ansarel-featured-posts.layout-vertical .ansarel-post-right {
    grid-template-columns: repeat(1, 1fr);
  }
  .ansarel-featured-posts.layout-horizontal .ansarel-post-right {
    grid-template-columns: repeat(1, 1fr);
  }
}/*# sourceMappingURL=small-blog.css.map */