/*!*****************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[0].use[1]!./node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[0].use[2]!./slicing/src/scss/wt-components/blog-post-card.scss ***!
  \*****************************************************************************************************************************************************************************************************/
.blog-post-card {
  position: relative;
  height: 100%;
  min-height: 307px;
  display: flex;
  flex-direction: column;
  background-color: rgb(var(--white));
}
.blog-post-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: -1px;
  width: 42px;
  height: 25px;
  background-color: rgb(var(--background-color-grey));
  clip-path: polygon(100% 0, 0 100%, 100% 100%);
}
.blog-post-card:hover .blog-post-card__image img {
  transform: scale(1.1);
}
.blog-post-card:hover .blog-post-card__anchor {
  text-decoration: none;
}
.blog-post-card:hover .blog-post-card__link {
  text-decoration: underline;
  color: rgb(var(--primary-color));
}
.blog-post-card__anchor {
  position: relative;
  height: 100%;
}
.blog-post-card__image {
  height: 140px;
  overflow: hidden;
}
.blog-post-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.blog-post-card__body {
  height: calc(100% - 140px);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 2rem;
  color: rgb(var(--grey-dark));
}
.blog-post-card__title {
  margin: 0;
  text-decoration: none;
  font-size: 1.8rem;
}
.blog-post-card__category-title {
  display: none;
}
.blog-post-card__category {
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 35px;
  height: 30px;
  color: rgb(var(--white));
  background-color: rgb(var(--primary-color));
}
.blog-post-card__category svg {
  fill: rgb(var(--white));
}
.blog-post-card__category--green {
  background-color: rgb(var(--leaf-green));
}
.blog-post-card__link {
  margin: 0;
  margin-top: auto;
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 1.6rem;
}
