/*!**********************************************************************************************************************************************************************************************************!*\
  !*** 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-featured-posts.scss ***!
  \**********************************************************************************************************************************************************************************************************/
.blog-featured-posts {
  background: rgb(var(--background-color-grey));
  padding: 1.5rem 2rem;
}
@media only screen and (min-width: 1630px) {
  .blog-featured-posts {
    padding-bottom: 2;
  }
}
.blog-featured-posts__container {
  max-width: 144rem;
  margin: 0 auto;
  height: 100%;
}
@media only screen and (min-width: 1920px) {
  .blog-featured-posts__container {
    max-width: 163rem;
  }
}
.blog-featured-posts__container .blog-featured-posts__title-wrapper {
  width: 100%;
  margin-bottom: 2rem;
  border-bottom: 1px solid #969696;
}
.blog-featured-posts__container .blog-featured-posts__title-wrapper .blog-featured-posts__title {
  display: flex;
  align-items: center;
  gap: 1rem;
  width: fit-content;
  height: 3rem;
  padding: 0 1rem;
  font-weight: bold;
  font-size: 13px;
  line-height: 13px;
  text-transform: uppercase;
  color: rgb(var(--white));
  background-color: rgb(var(--primary-color));
}
.blog-featured-posts__container .blog-featured-posts__title-wrapper .blog-featured-posts__title svg {
  fill: rgb(var(--white));
}
.blog-featured-posts__container .blog-featured-posts__title-wrapper .blog-featured-posts__title--alt {
  color: rgb(var(--primary-color));
  background: rgb(var(--white));
}
.blog-featured-posts__container .blog-featured-posts__title-wrapper .blog-featured-posts__title--green {
  background-color: rgb(var(--leaf-green));
}
.blog-featured-posts__container .blog-featured-posts__wrapper {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  height: calc(100% - 5rem);
}
@media only screen and (min-width: 768px) {
  .blog-featured-posts__container .blog-featured-posts__wrapper {
    justify-content: center;
  }
}
@media only screen and (min-width: 1200px) {
  .blog-featured-posts__container .blog-featured-posts__wrapper {
    gap: 3rem;
  }
}
.blog-featured-posts__container .blog-featured-posts__wrapper .blog-featured-posts__article {
  flex: 100%;
  display: flex;
  flex-direction: column;
  height: 43rem;
  background-color: rgb(var(--white));
}
@media only screen and (min-width: 576px) {
  .blog-featured-posts__container .blog-featured-posts__wrapper .blog-featured-posts__article {
    flex: calc(50% - 1rem) 0 0;
  }
}
@media only screen and (min-width: 992px) {
  .blog-featured-posts__container .blog-featured-posts__wrapper .blog-featured-posts__article {
    height: 50rem;
    flex-basis: calc(33.3333333333% - 2rem);
  }
}
.blog-featured-posts__container .blog-featured-posts__wrapper .blog-featured-posts__article__link {
  position: relative;
  text-decoration: none;
}
.blog-featured-posts__container .blog-featured-posts__wrapper .blog-featured-posts__article__img {
  position: relative;
  width: 100%;
  height: 20rem;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
@media only screen and (min-width: 992px) {
  .blog-featured-posts__container .blog-featured-posts__wrapper .blog-featured-posts__article__img {
    height: 30rem;
  }
}
.blog-featured-posts__container .blog-featured-posts__wrapper .blog-featured-posts__article__content {
  position: relative;
  height: 23rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 2rem;
  background-color: rgb(var(--white));
}
@media only screen and (min-width: 992px) {
  .blog-featured-posts__container .blog-featured-posts__wrapper .blog-featured-posts__article__content {
    position: absolute;
    bottom: -20rem;
    height: 20rem;
    padding: 3rem;
    transition: height 0.2s ease-out;
  }
}
.blog-featured-posts__container .blog-featured-posts__wrapper .blog-featured-posts__article__content__label {
  position: absolute;
  top: -2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.5rem 1rem;
  font-size: 1.3rem;
  font-weight: 700;
  text-transform: uppercase;
  color: rgb(var(--white));
  background-color: rgb(var(--primary-color));
}
.blog-featured-posts__container .blog-featured-posts__wrapper .blog-featured-posts__article__content__label svg {
  fill: rgb(var(--white));
}
.blog-featured-posts__container .blog-featured-posts__wrapper .blog-featured-posts__article__content h2 {
  margin-bottom: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  height: 100%;
  max-height: 5.5rem;
}
.blog-featured-posts__container .blog-featured-posts__wrapper .blog-featured-posts__article__content__text {
  font-weight: 400;
  color: #707070;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media only screen and (min-width: 992px) {
  .blog-featured-posts__container .blog-featured-posts__wrapper .blog-featured-posts__article__content__text {
    -webkit-line-clamp: 2;
    opacity: 0;
    transition: opacity 0.3s ease-out;
  }
}
.blog-featured-posts__container .blog-featured-posts__wrapper .blog-featured-posts__article__content__more {
  width: fit-content;
  margin-top: auto;
  line-height: 1.5rem;
  font-weight: 400;
  color: #707070;
}
@media only screen and (min-width: 992px) {
  .blog-featured-posts__container .blog-featured-posts__wrapper .blog-featured-posts__article:hover .blog-featured-posts__article__content {
    height: 22rem;
  }
  .blog-featured-posts__container .blog-featured-posts__wrapper .blog-featured-posts__article:hover .blog-featured-posts__article__content__text {
    max-height: 5rem;
    opacity: 1;
  }
  .blog-featured-posts__container .blog-featured-posts__wrapper .blog-featured-posts__article:hover .blog-featured-posts__article__content__more {
    color: rgb(var(--primary-color));
    border-bottom: 1px solid rgb(var(--primary-color));
  }
}
.blog-featured-posts__container .blog-featured-posts__wrapper .blog-featured-posts__article--green .blog-featured-posts__article__content__label {
  background-color: rgb(var(--leaf-green));
}
