.blog-posts {
  margin-top: -65px;
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
  row-gap: 75px;
}
@media screen and (max-width: 768px) {
  .blog-posts {
    gap: 40px;
    margin-top: -22px;
  }
}
.blog-posts.blog-posts--no-margin {
  margin-top: 50px;
}
.blog-posts .blog-post {
  width: calc(33.33334% - 33.33334px);
  flex-shrink: 0;
  flex-grow: 0;
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 1250px) {
  .blog-posts .blog-post {
    width: calc(25% - 25px);
  }
}
@media screen and (max-width: 768px) {
  .blog-posts .blog-post {
    width: 100%;
  }
}
.blog-posts .blog-post .blog-post__image {
  margin-bottom: 30px;
  position: relative;
}
.blog-posts .blog-post .blog-post__image .blog-post__img {
  border-radius: 8px;
  width: 100%;
  height: auto;
  position: relative;
  z-index: 3;
}
.blog-posts .blog-post .blog-post__image:before {
  content: "";
  z-index: 2;
  position: absolute;
  width: 95%;
  aspect-ratio: 2.2314814815;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.8);
  filter: blur(10px);
  border-radius: 50%;
}
.blog-posts .blog-post .blog-post__image:after {
  content: "";
  position: absolute;
  z-index: 1;
  background: url(images/post-bg-1.png) no-repeat;
  background-size: contain;
  max-width: 70%;
  width: 345px;
  aspect-ratio: 1.369047619;
  left: 0;
  top: -25px;
}
.blog-posts .blog-post .blog-post__image.blog-post__image--second:after {
  background-image: url(images/post-bg-2.png);
  width: 468px;
  max-width: 100%;
  aspect-ratio: 2.052631579;
  right: 0;
  left: initial;
  top: -15px;
}
.blog-posts .blog-post .blog-post__more {
  margin-top: 10px;
  font-size: 12px;
  line-height: 1.3em;
  text-transform: uppercase;
  text-decoration: underline;
}
.blog-posts .blog-post.blog-post--featured {
  width: calc(50% - 25px);
}
@media screen and (max-width: 768px) {
  .blog-posts .blog-post.blog-post--featured {
    width: 100%;
  }
}
.blog-posts .blog-post.blog-post--featured .blog-post__image-container {
  width: 100%;
  position: relative;
  border-radius: 8px;
  overflow: hidden;
}
.blog-posts .blog-post.blog-post--featured .blog-post__image-container .title {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 20px;
  color: #ffffff;
  z-index: 2;
  transition: 300ms ease-in-out;
}
.blog-posts .blog-post.blog-post--featured .blog-post__image-container:after {
  position: absolute;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000000 100%);
  z-index: 1;
  lefT: 0;
  right: 0;
  bottom: 0;
  top: 50%;
  content: "";
}
@media screen and (max-width: 768px) {
  .blog-posts .blog-post.blog-post--featured .blog-post__image-container:after {
    top: 0;
  }
}
.blog-posts .blog-post.blog-post--featured .blog-post__image-container .blog-post__img {
  width: 100%;
  height: auto;
}
.blog-posts .blog-post.blog-post--featured:hover .blog-post__image-container .title {
  bottom: 30px;
}

.blog-author {
  display: flex;
  flex-direction: row;
  gap: 20px;
  padding-top: 50px;
  margin-top: 50px;
  border-top: 1px solid #E5E5E5;
  align-items: flex-start;
}
.blog-author .blog-author__img {
  max-width: 150px;
  height: auto;
  flex-shrink: 0;
  flex-grow: 0;
}
.blog-author .blog-author__content {
  flex-grow: 1;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  max-width: calc(100% - 170px);
}
.blog-author .blog-author__content .blog-author__sign {
  color: rgba(28, 29, 28, 0.6980392157);
  font-weight: 400;
}
.blog-author .blog-author__content .blog-author__text {
  font-size: 14px;
  line-height: 1.2em;
}/*# sourceMappingURL=lovecatering-blog.css.map */