.sc-sitemap__content {
  padding: 70px 0;
}

.sc-sitemap__list {
  display: flex;
  flex-wrap: wrap;
  gap: 0 20px;
}

.sc-sitemap__list__item {
  width: 490px;
  font-size: 16px;
  line-height: 24px;
}
.sc-sitemap__list__item a {
  display: block;
  position: relative;
  text-decoration: none;
  border-top: 1px solid #CDD6DD;
  font-weight: 700;
  padding: 20px 0 17px;
}
.sc-sitemap__list__item a::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: url("../img/shared/arrow_sitemap.svg") no-repeat center right/100% auto;
  width: 21px;
  height: 21px;
  right: 39px;
}
.sc-sitemap__list__item + .sc-sitemap__list__item {
  margin-top: 0;
}

h3 {
  color: #fff;
  background: var(--primary-color);
  padding: 9px 30px 11px;
  font-weight: 700;
  margin: 33px 0 41px;
  font-size: 24px;
  line-height: 1.5;
}

@media screen and (min-width: 561px) {
  .sc-sitemap__list {
    display: flex;
    flex-wrap: wrap;
    gap: 0 20px;
  }
  .sc-sitemap__list__item {
    width: 490px;
  }
}
@media screen and (max-width: 560px) {
  .sc-sitemap__list__item a {
    font-weight: 500;
    padding: 20px 0;
  }
  .sc-sitemap__list__item {
    font-size: 21px;
    line-height: 39px;
  }
  h3 {
    font-size: 28px;
    padding: 8px 0 8px 20px;
    margin: 0 0 27.5px;
  }
}