.guides {
  padding: 64px 0 220px;
}
@media screen and (max-width: 1150px) {
  .guides {
    padding: 5.33vw 0 18.33vw;
  }
}
@media screen and (max-width: 600px) {
  .guides {
    padding-bottom: 120px;
  }
}
.guides__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 24px;
}
@media screen and (max-width: 1150px) {
  .guides__list {
    gap: 2vw;
  }
}
@media screen and (max-width: 600px) {
  .guides__list {
    gap: 5vw;
  }
}

.guide-card {
  width: calc(33% - 12px);
  padding: 24px;
  -webkit-box-shadow: 0 4px 16px 0 rgba(56, 81, 120, 0.1019607843);
          box-shadow: 0 4px 16px 0 rgba(56, 81, 120, 0.1019607843);
  border-radius: 20px;
  text-decoration: none;
  position: relative;
}
@media screen and (max-width: 1150px) {
  .guide-card {
    width: calc(33% - 1.2vw);
    padding: 2vw;
    border-radius: 1.66vw;
  }
}
@media screen and (max-width: 600px) {
  .guide-card {
    width: 100%;
    padding: 4vw;
    border-radius: 4vw;
  }
}
.guide-card:before, .guide-card:after {
  content: "";
  position: absolute;
  border-radius: 20px;
}
@media screen and (max-width: 1150px) {
  .guide-card:before, .guide-card:after {
    border-radius: 1.66vw;
  }
}
@media screen and (max-width: 600px) {
  .guide-card:before, .guide-card:after {
    border-radius: 4vw;
  }
}
.guide-card:hover:before {
  opacity: 1;
}
.guide-card:before {
  background: linear-gradient(177.45deg, #FF3C6A 2.13%, #D704BE 117.1%);
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  -webkit-transition: opacity 0.4s ease-out;
  transition: opacity 0.4s ease-out;
}
.guide-card:after {
  background-color: #FFFFFF;
  left: 1px;
  top: 1px;
  width: calc(100% - 2px);
  height: calc(100% - 2px);
}
.guide-card__image {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 1150px) {
  .guide-card__image {
    margin-bottom: 1.33vw;
  }
}
@media screen and (max-width: 600px) {
  .guide-card__image {
    margin-bottom: 4vw;
  }
}
.guide-card__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  border-radius: 16px;
}
@media screen and (max-width: 1150px) {
  .guide-card__image img {
    border-radius: 1.33vw;
  }
}
@media screen and (max-width: 600px) {
  .guide-card__image img {
    border-radius: 4vw;
  }
}
.guide-card__content {
  position: relative;
  z-index: 1;
}
.guide-card__tags {
  margin-bottom: 16px;
}
@media screen and (max-width: 1150px) {
  .guide-card__tags {
    margin-bottom: 1.33vw;
  }
}
@media screen and (max-width: 600px) {
  .guide-card__tags {
    margin-bottom: 4vw;
  }
}
.guide-card__title {
  display: block;
  margin-bottom: 16px;
  color: #151536;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.4;
  text-decoration: none;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media screen and (max-width: 1150px) {
  .guide-card__title {
    margin-bottom: 1.33vw;
    font-size: 1.5vw;
  }
}
@media screen and (max-width: 600px) {
  .guide-card__title {
    margin-bottom: 4vw;
    font-size: 4vw;
  }
}
.guide-card__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
}
.guide-card__info-item {
  padding: 8px 12px 8px 8px;
  background-color: #F6F7F9;
  border-radius: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
}
@media screen and (max-width: 1150px) {
  .guide-card__info-item {
    padding: 0.66vw 1vw 0.66vw 0.66vw;
    border-radius: 1.33vw;
    gap: 0.66vw;
  }
}
@media screen and (max-width: 600px) {
  .guide-card__info-item {
    padding: 2vw 3vw;
    border-radius: 4vw;
    gap: 2vw;
  }
}
.guide-card__info-item img {
  width: 20px;
  height: 20px;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 1150px) {
  .guide-card__info-item img {
    width: 1.66vw;
    height: 1.66vw;
  }
}
@media screen and (max-width: 600px) {
  .guide-card__info-item img {
    width: 4vw;
    height: 4vw;
  }
}
.guide-card__info-item span {
  color: #424448;
  font-weight: 300;
  font-size: 14px;
  line-height: 1.42;
}
@media screen and (max-width: 1150px) {
  .guide-card__info-item span {
    font-size: 1.16vw;
  }
}
@media screen and (max-width: 600px) {
  .guide-card__info-item span {
    font-size: 3vw;
  }
}

.blog-posts__tags {
  margin-bottom: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 8px;
}
@media screen and (max-width: 1150px) {
  .blog-posts__tags {
    margin-bottom: 1.33vw;
  }
}
@media screen and (max-width: 600px) {
  .blog-posts__tags {
    margin-bottom: 4vw;
  }
}
.blog-posts__tag {
  padding: 2px 16px;
  background: linear-gradient(90.03deg, #3ED156 0.04%, #55A7FF 99.98%);
  border-radius: 24px;
  display: block;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  color: #FFFFFF;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.42;
  text-decoration: none;
}
@media screen and (max-width: 1150px) {
  .blog-posts__tag {
    padding: 2px 1.33vw;
    border-radius: 2vw;
    font-size: 1.16vw;
  }
}
@media screen and (max-width: 600px) {
  .blog-posts__tag {
    padding: 2px 3vw;
    border-radius: 5vw;
    font-size: 3vw;
  }
}
.blog-posts__rating .kk-star-ratings {
  gap: 8px;
}
@media screen and (max-width: 1150px) {
  .blog-posts__rating .kk-star-ratings {
    gap: 0.66vw;
  }
}
@media screen and (max-width: 600px) {
  .blog-posts__rating .kk-star-ratings {
    gap: 2vw;
  }
}
.blog-posts__rating .kk-star-ratings .kksr-stars .kksr-stars-inactive,
.blog-posts__rating .kk-star-ratings .kksr-stars .kksr-stars-active {
  display: none !important;
}
.blog-posts__rating .kk-star-ratings .kksr-stars:before {
  content: "";
  background-image: url("../images/blog/star.svg");
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 20px;
  height: 20px;
}
@media screen and (max-width: 1150px) {
  .blog-posts__rating .kk-star-ratings .kksr-stars:before {
    width: 1.66vw;
    height: 1.66vw;
  }
}
@media screen and (max-width: 600px) {
  .blog-posts__rating .kk-star-ratings .kksr-stars:before {
    width: 5vw;
    height: 5vw;
  }
}
.blog-posts__rating .kk-star-ratings .kksr-legend {
  margin: 0;
  color: #424448;
  font-weight: 300;
  font-size: 14px !important;
  line-height: 1.42;
}
@media screen and (max-width: 1150px) {
  .blog-posts__rating .kk-star-ratings .kksr-legend {
    font-size: 1.16vw !important;
  }
}
@media screen and (max-width: 600px) {
  .blog-posts__rating .kk-star-ratings .kksr-legend {
    font-size: 3vw !important;
  }
}
/*# sourceMappingURL=../sourcemaps/page-blog.css.map */
