@charset "UTF-8";
/* stylelint-disable */
/* ---------- example ---------- */
/*
.selector {
  // только в промежутке tablet..desktop
  @include media-between(tablet, desktop) { ... }

  // ровно «только tablet» (1024..1239)
  @include media-only(tablet) { ... }

  // ≥ 1440
  @include for-desktop { ... }

  // ≤ 767
  @include small-tablet { ... }
}
*/
/* ---------- helpers ---------- */
/* Min-width */
/* Max-width */
/* stylelint-disable */
.blog-section {
  padding: var(--default-padding) 0;
}
.blog-section__box {
  display: flex;
  flex-direction: column;
  gap: clamp(24px, 2.9586vw, 4rem);
}
.blog-section .swiper-pagination {
  height: 0.2rem;
  display: block;
  width: 100%;
  width: calc(100% - var(--container-offset) * 2);
  margin: 3.6rem var(--container-offset) 0;
  background: var(--bg-p);
  z-index: 1;
  position: relative;
}
.blog-section .swiper-pagination span {
  width: 0;
  height: 2px;
  position: absolute;
  top: 0;
  z-index: 2;
  left: 0;
  display: block;
  background: #b2b2b2;
  transition: width 0.3s ease;
}
.blog-section .swiper-slide {
  height: 100%;
}
.blog-section .swiper-container {
  width: 100%;
}
.blog-section .blog-card {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
  height: 100%;
}
.blog-section .blog-card__image {
  display: flex;
  width: 100%;
  height: clamp(160px, 19.7485vw, 26.7rem);
  border-radius: clamp(7px, 0.7396vw, 1rem);
  overflow: hidden;
}
.blog-section .blog-card__image img,
.blog-section .blog-card__image picture, .blog-section .blog-card__image svg, .blog-section .blog-card__image .sprite {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: all 0.4s;
}
.blog-section .blog-card__title {
  color: var(--cl-p);
  font-family: var(--font-family);
  font-size: clamp(20px, 1.9231vw, 2.6rem);
  font-style: normal;
  font-weight: 500;
  line-height: 123%;
  letter-spacing: -0.156rem;
}
.blog-section .blog-card__link {
  display: flex;
  color: var(--cl-m);
  font-family: var(--font-family);
  font-size: 1.6rem;
  font-style: normal;
  font-weight: 500;
  line-height: 2.4rem;
  letter-spacing: -0.064rem;
  text-decoration-line: underline;
  text-decoration-style: solid;
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
  transition: all 0.3s;
}
.blog-section .blog-card__box {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  gap: 1.6rem;
}
.blog-section .blog-card .editor p:not([class]) {
  color: var(--cl-o);
  font-family: var(--font-family);
  font-size: 1.4rem;
  font-style: normal;
  font-weight: 500;
  line-height: 142.857%;
  letter-spacing: -0.056rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media (min-width: 768px){
  .blog-section__slider {
    width: 100%;
  }
  .blog-section__slider .swiper-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(16px, 1.7751vw, 2.4rem);
    width: 100%;
  }
  .blog-section .swiper-pagination {
    display: none;
  }
  .blog-section .blog-card__image {
    margin-bottom: 0.4rem;
  }
}
@media (min-width: 1024px){
  .blog-section .editors .main-button {
    opacity: 0;
    transition-timing-function: linear !important;
    transform: translateY(50px);
  }
}
@media (max-width: 767.98px){
  .blog-section .editors {
    display: contents;
  }
  .blog-section .editors .editor:first-of-type {
    order: -2;
  }
  .blog-section .editors * {
    text-align: center;
  }
  .blog-section__slider {
    order: -1;
    overflow: hidden;
    width: calc(100% + var(--container-offset) * 2);
    margin-left: calc(var(--container-offset) * -1);
    margin-bottom: 2.4rem;
  }
  .blog-section .swiper-container {
    padding: 0 var(--container-offset);
  }
  .blog-section .blog-card__title {
    font-weight: 600;
    letter-spacing: -0.1rem;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .blog-section .blog-card .editor p:not([class]) {
    font-size: 15px;
    line-height: 22px;
    letter-spacing: -0.6px;
  }
}
@media (max-width: 767.98px) and (max-width: 767.98px){
  .blog-section .editors .row:has(.main-button:only-child) {
    width: -moz-fit-content;
    width: fit-content;
  }
  .blog-section .editors p[data-btn-count="1"] {
    margin: 0 auto;
  }
}
@media (max-width: 575.98px){
  .blog-section .blog-card__image {
    border: 1px solid var(--br-b);
  }
}
@media (hover: hover){
  .blog-section .blog-card__link:hover {
    text-decoration-color: transparent;
  }
  .blog-section .blog-card:hover .blog-card__image .sprite, .blog-section .blog-card:hover .blog-card__image svg, .blog-section .blog-card:hover .blog-card__image img,
  .blog-section .blog-card:hover .blog-card__image picture {
    transform: scale(1.12);
  }
}
@media (hover: none){
  .blog-section .blog-card__link:active {
    text-decoration-color: transparent;
  }
  .blog-section .blog-card:active .blog-card__image .sprite, .blog-section .blog-card:active .blog-card__image svg, .blog-section .blog-card:active .blog-card__image img,
  .blog-section .blog-card:active .blog-card__image picture {
    transform: scale(1.12);
  }
}
/*# sourceMappingURL=section-related-blog.css.map */