/* Основная обёртка блока: две колонки */
.sborisov-block {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

/* Вертикальная обёртка для двух правых секций */
.sborisov-block__right-wrapper {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px; /* расстояние между основным текстом и контактами */
}

/* Левая колонка */
.sborisov-block__left {
  flex: 0 0 200px;
}

.sborisov-block__left img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 4px;
}

/* Основной текстовый блок (правая колонка) */
.sborisov-block__right {
  background-color: #f7f9fa;
  padding: 16px;
  border-radius: 4px;
}

/* Заголовок */
.sborisov-block__heading {
  margin-top: 0;
  margin-bottom: 0.5em;
  font-weight: bold;
}

/* Блок контактов */
.sborisov-block-contact__right {
  background-color: #f7f9fa;
  padding: 16px;
  border-radius: 4px;
  text-align: center;
}

/* Текст в блоке контактов */
.sborisov-contact-block__line {
  margin: 0 0 16px; /* Увеличено расстояние до иконок */
  font-weight: 500;
  font-size: 14px;
}

/* Обёртка иконок */
.sborisov-contact-block__icons {
  display: inline-flex;
  gap: 24px; /* УВЕЛИЧЕНО РАССТОЯНИЕ МЕЖДУ ИКОНКАМИ */
  justify-content: center;
  align-items: center;
}

/* Ссылки-иконки */
.sborisov-contact-block__icons a {
  color: #0073aa;
  text-decoration: none;
  transition: color .2s ease;
  display: inline-flex;
}

.sborisov-contact-block__icons a svg {
  width: 32px;
  height: 32px;
}



.sborisov-contact-block__icons .telegram svg {
  fill: #0088cc;
}


.sborisov-contact-block__icons a:hover {
  color: #005177;
}

/* Адаптив для планшетов */
@media screen and (max-width: 768px) {
  .sborisov-block {
    flex-direction: column;
    gap: 16px;
  }
  
  .sborisov-block__left {
    flex: none;
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
  }
  
  .sborisov-block__right-wrapper {
    width: 100%;
  }

  .sborisov-block-contact__icons a svg {
    width: 28px;  /* Адаптивный размер иконок */
    height: 28px; /* Адаптивный размер иконок */
  }
}

/* Адаптив для мобильных телефонов */
@media screen and (max-width: 480px) {
  .sborisov-block__right,
  .sborisov-block-contact__right {
    padding: 12px;
  }
  
  .sborisov-contact-block__line {
    font-size: 13px;
  }
  
  .sborisov-contact-block__icons {
    gap: 20px; /* Адаптивный отступ */
  }
}

/* ОПТИМИЗАЦИЯ ДЛЯ LITESPEED CACHE - только для изображения */
.sborisov-block__image {
    width: 100% !important;
    height: auto !important;
    border-radius: 4px !important;
    display: block !important;
}