@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 */
.info-section {
  padding: clamp(45px, 6.0345vw, 7rem) 0 clamp(40px, 5.1724vw, 6rem);
  background-color: var(--section-bg, var(--body-bg));
  position: relative;
}
.info-section__box {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(30px, 3.2759vw, 3.8rem);
}
.info-section__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 1.7241vw, 2rem);
}
.info-section__list:only-child {
  grid-column: 1/-1;
  max-width: 110rem;
  width: 100%;
  justify-self: center;
}
.info-section__item {
  border-radius: 1rem;
  background: var(--bg-f);
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  padding: 1rem;
  min-height: 13rem;
}
.info-section__item .editor {
  gap: 0.6rem;
}
.info-section__item p:not([class]) {
  color: var(--cl-e);
  font-family: var(--font-family);
  font-size: 1.4rem;
  font-style: normal;
  font-weight: 400;
  line-height: 157%;
}
@media (max-width: 1023.98px){
  .info-section__box > .editor .h1 br, .info-section__box > .editor .h2 br, .info-section__box > .editor .h3 br, .info-section__box > .editor .h4 br, .info-section__box > .editor .h5 br, .info-section__box > .editor .h6 br, .info-section__box > .editor h1 br, .info-section__box > .editor h2 br, .info-section__box > .editor h3 br, .info-section__box > .editor h4 br, .info-section__box > .editor h5 br, .info-section__box > .editor h6 br {
    display: none;
  }
  .info-section__box {
    grid-template-columns: 100%;
  }
}
@media (max-width: 766.98px){
  .info-section__list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 576.98px){
.term-stinovi-paneli .info-section__list {
    grid-template-columns: 100%;
  }
}
@media (max-width: 424.98px){
  .info-section__list {
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  }
}
/*# sourceMappingURL=section-info.css.map */