.blog-item {
  width: 33.33%;
  box-sizing: border-box;
  padding: 2.5rem;
  position: relative;
  background: #f7f5ff;
  min-height: 37rem;
  display: flex !important;
  flex-direction: column;
  justify-content: flex-end;
  transition: box-shadow 0.5s, background 0.35s;
  margin: 0 1.5rem;
}
.blog-item:first-child {
  margin-left: 0;
}
.blog-item:last-child {
  margin-right: 0;
}
@media (min-width: 1025px) {
  .blog-item:hover {
    background: #eeebf2;
  }
}
.blog-item > a {
  position: absolute;
  inset: 0;
  z-index: 11;
}
.blog-item__featured {
  justify-content: space-between;
  color: #ffffff;
}
.blog-item__featured .blog-item__bg {
  transition: none;
}
.blog-item__featured.blog-item--no-image {
  justify-content: flex-end;
}
@media (min-width: 1025px) {
  .blog-item__featured:hover .blog-item__bg {
    background: #003c4c url(../../../images/bg-card-over.svg) no-repeat 63% 50%/cover;
  }
  .blog-item__featured:hover .blog-item__bg svg {
    opacity: 0;
  }
}
.blog-item__text {
  justify-self: flex-end;
  z-index: 10;
  position: relative;
}
.blog-item__image {
  z-index: 10;
  position: relative;
  border-radius: 9.5rem 1.5rem 1.5rem 1.5rem;
  width: 147px;
  height: 147px;
  margin: 0 0 2rem auto;
}
.blog-item__image img {
  object-fit: cover;
}
.blog-item__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: #003c4c url(../../../images/bg-card.svg) no-repeat 63% 50%/cover;
  transition: background 0.35s;
}
.blog-item__bg svg {
  opacity: 0;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  object-fit: cover;
  height: 100%;
  transition: opacity 0.35s;
}
.blog-item__meta {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.blog-item .content-entry {
  margin-bottom: 2.5rem;
}
.blog-item__categories {
  display: flex;
  gap: 1rem;
  margin-bottom: 2.5rem;
}
.blog-item__download {
  padding-top: 2rem;
  font-size: 1.4rem;
  gap: 1rem;
}

@media (max-width: 767px) {
  .blog-item {
    width: calc(100vw - 9rem);
    margin: 0 1rem;
  }
}

/*# sourceMappingURL=blog-item.css.map */