@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 */
.three-section {
  padding: var(--default-padding) 0;
}
.three-section__box {
  display: flex;
  flex-direction: column;
  gap: clamp(40px, 4.4379vw, 6rem);
}
.three-section__title {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: clamp(32px, 2.6627vw, 3.6rem);
  line-height: 111%;
  letter-spacing: -0.06em;
  color: var(--cl-b);
  text-align: center;
}
.three-section__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  row-gap: 4rem;
}
.three-section__item {
  gap: clamp(20px, 2.9586vw, 4rem);
  padding: 0 clamp(16px, 1.7751vw, 2.4rem);
  border-right: solid 0.1rem var(--br-b);
  display: flex;
  flex-direction: column;
}
.three-section__item .editor {
  gap: 2rem;
  transition: all 0.3s;
  border: 0.1rem solid transparent;
}
.three-section__item .editor p {
  transition: all 0.3s;
  color: var(--cl-t);
  font-family: var(--font-family);
  font-size: 2rem;
  font-style: normal;
  font-weight: 400;
  line-height: clamp(22px, 1.7751vw, 2.4rem);
  letter-spacing: -0.1rem;
}
.three-section__item .editor p strong {
  font-weight: 600;
}
.three-section__item .editor p:first-of-type {
  margin-bottom: 0.4rem;
}
.three-section__item .editor ul {
  transition: all 0.3s;
  gap: 2rem;
}
.three-section__item:last-of-type {
  border: none;
}
.three-section__item:first-of-type .editor p + ul {
  gap: 0.8rem;
  margin-top: -2.4rem;
}
.three-section__item:first-of-type .editor p:first-of-type {
  margin-bottom: 0;
}
@media (max-width: 1023.98px){
  .three-section__list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 1023.98px) and (min-width: 768px){
  .three-section__item:nth-child(odd) {
    border-right: solid 0.1rem var(--br-b) !important;
  }
  .three-section__item:nth-child(even) {
    border: none;
  }
}
@media (max-width: 767.98px){
  .three-section__list {
    grid-template-columns: 100%;
  }
  .three-section__item {
    border: none;
    padding: 0;
  }
}
@media (max-width: 575.98px){
  .three-section__title {
    letter-spacing: -1.92px;
  }
}
@media (hover: hover){
  .three-section__item:hover .editor {
    gap: clamp(20px, 1.7751vw, 2.4rem);
    border-radius: 1.6rem;
    border-color: rgba(73, 73, 73, 0.1);
    background: var(--bg-a);
    box-shadow: 0.7rem 0.9rem 1rem 0 rgba(0, 0, 0, 0.02);
    padding: 2.8rem 3.2rem;
  }
}
@media (hover: none){
  .three-section__item:active .editor {
    gap: clamp(20px, 1.7751vw, 2.4rem);
    border-radius: 1.6rem;
    border-color: rgba(73, 73, 73, 0.1);
    background: var(--bg-a);
    box-shadow: 0.7rem 0.9rem 1rem 0 rgba(0, 0, 0, 0.02);
    padding: 2.8rem 3.2rem;
  }
}
/*# sourceMappingURL=section-three.css.map */