.high__text p span {
  color: var(--main-red);
}

.content.high-contacts {
  display: grid;
  gap: 22px;
  padding: 30px 22px;
  background-color: white;
  border-radius: 12px;
  margin-top: 50px;
}

.high-contacts__el {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.high-contacts__title {
  font-size: 14px;
  font-weight: 700;
  line-height: 18.2px;
  color: #999999;
  text-transform: uppercase;
}

.high-contacts__text,
.high-contacts__text a {
  font-size: 16px;
  font-weight: 600;
  line-height: 19.2px;
  color: var(--main-black);
  text-decoration: none;
}

.high-contacts__text a:hover {
  color: var(--main-red);
}

@media screen and (min-width: 768px) {
  .content.high-contacts {
    grid-template-columns: auto auto;
    padding: 40px 30px;
  }
  .high-contacts__el:nth-child(1) {
    grid-column: 1/3;
    order: 2;
  }
  .high-contacts__title {
    font-size: 14px;
    font-weight: 700;
    line-height: 16.8px;
    padding-bottom: 4px;
  }

  .high-contacts__text,
  .high-contacts__text a {
    font-size: 18px;
    font-weight: 600;
    line-height: 21.6px;
  }
}

@media screen and (min-width: 1200px) {
  .content .news-detail__text,
  .high__text.news-detail__text {
    margin-top: 40px;
  }
  .content.high-contacts {
    grid-template-columns: 346px auto auto;
    padding: 42px 58px;
    gap: 56px;
  }
  .high-contacts__el:nth-child(1) {
    grid-column: unset;
    order: unset;
  }
}
