.price-list__section {
  margin-bottom: var(--space-40-m30);
  padding: var(--space-20) 0;
  display: flex;
  align-items: flex-start;
  column-gap: 30px;
}

.price-list__section-image {
  flex-shrink: 0;
  width: 100px;
}

.price-list__section-image a {
  display: block;
}

.price-list__section-image img {
  display: block;
  width: 100%;
  height: auto;
}

.price-list__section-content {
  flex-grow: 1;
  min-width: 1px;
}

.price-list__section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  column-gap: 16px;
  font-size: var(--fs-h3);
  line-height: var(--lh-sm);
  font-weight: 600;
  margin-bottom: var(--space-30);
}

.price-list__section-header-link {
  display: flex;
  align-items: center;
  color: inherit;
}

:where(html.no-touch) .price-list__section-header-link:hover,
:where(html.is-touch) .price-list__section-header-link:active {
  color: var(--red-main-color);
}

.price-list__section-num {
  flex-shrink: 0;
  width: 28px;
}

.price-list__section-title small {
  font-size: 16px;
  color: var(--black-50);
  position: relative;
  top: -8px;
  white-space: nowrap;
}

.price-list__section-header-aside {
  display: flex;
  align-items: center;
  white-space: nowrap;
  column-gap: 16px;
  font-size: 14px;
  line-height: 1.2;
  font-weight: 500;
}

.price-list__list {
  margin: 0 0 0 28px;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  row-gap: 10px;
  font-size: 14px;
  line-height: 1.2;
}

.price-list__row {
  display: flex;
  align-items: center;
  column-gap: 40px;
  padding: 15px 16px;
  border-radius: 6px;
  background: var(--grey-light);
  color: var(--black);
}

.price-list__row-header {
  flex-grow: 1;
  min-width: 1px;
}

.price-list__row-title {
  display: inline-flex;
  align-items: center;
  vertical-align: top;
  color: inherit;
  column-gap: 8px;
}

:where(html.no-touch) .price-list__row-title:hover,
:where(html.is-touch) .price-list__row-title:active {
  color: var(--red-main-color);
}

.price-list__row strong {
  font-weight: bold;
  flex-shrink: 0;
  min-width: 29px;
}

.price-list__row-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  column-gap: 40px;
  min-width: 230px;
}

.price-list__row-count {
  color: var(--black-50);
}

.price-list__row-links {
  display: flex;
  align-items: center;
  column-gap: 16px;
}

@media (max-width: 1399.98px) {
  .price-list__section {
    column-gap: 20px;
  }

  .price-list__section-image {
    width: 70px;
  }
}

@media (max-width: 1199.98px) {
  .price-list__section-header {
    font-size: var(--fs-h4);
  }

  .price-list__section-title small {
    font-size: 13px;
    top: -7px;
  }
}

@media (max-width: 991.98px) {
  .price-list__section-header {
    margin-bottom: 20px;
  }
}

@media (max-width: 767.98px) {
  .price-list__section {
    padding: 0;
  }

  .price-list__section-image {
    display: none;
  }

  .price-list__section-header {
    flex-direction: column;
    align-items: stretch;
    row-gap: 16px;
  }

  .price-list__section-header-link {
    align-items: baseline;
  }

  .price-list__section-header-aside {
    padding-left: 28px;
  }

  .price-list__row {
    padding: 10px;
    flex-direction: column;
    align-items: stretch;
    row-gap: 8px;
  }

  .price-list__row-title {
    align-items: baseline;
    column-gap: 0;
  }

  .price-list__row strong {
    width: 37px;
  }

  .price-list__row-footer {
    width: auto;
    column-gap: 16px;
    padding-left: 37px;
    min-width: 0;
  }

  .price-list__row-count {
    font-size: 12px;
  }
}
