.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;
  }
}

body {
  background-position: top center;
  background-image: url("../images/guides/hero-bg.png");
  background-repeat: no-repeat;
}

.post-guide .entry-title-blog.l-blog-content-container-post-text {
  margin-bottom: 24px;
}
.post-guide .entry-top-b-blog .post-thumbnail {
  width: 500px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 100%;
}
.post-guide .entry-rating-bottom {
  margin-bottom: 24px;
  gap: 8px;
}
.post-guide .entry-rating-bottom .blog-info-st {
  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;
}
.post-guide .entry-rating-bottom .blog-info-st img {
  width: 20px;
  height: 20px;
  -o-object-fit: contain;
     object-fit: contain;
}
.post-guide .entry-rating-bottom .blog-info-st div {
  color: #424448;
  font-weight: 300;
  font-size: 14px;
  line-height: 1.42;
}
.post-guide__excerpt {
  color: #707381;
  font-weight: 300;
  font-size: 16px;
  line-height: 1.4;
}
.post-guide__excerpt p {
  margin: 0;
}

.related-guides {
  position: relative;
  z-index: 1;
  background-color: #FFFFFF;
}
/*# sourceMappingURL=../sourcemaps/single-guide.css.map */
