/* 
 * Исправления для логотипа
 * Добавлено: 2025-05-04
 */

/* Основные стили для изображения логотипа */
.logo img {
  display: block;
  max-height: 100%;
  width: auto;
  object-fit: contain;
  -webkit-object-fit: contain;
}

/* Стили для логотипа в шапке */
.header__logo img {
  max-height: 54px;
  width: auto;
  object-fit: contain;
  -webkit-object-fit: contain;
}

/* Стили для прозрачной шапки (до прокрутки) */
.header--transparent:not(.header--fixed) .header__logo:after {
  width: 248px !important;
  height: 54px !important;
  background-size: contain !important;
  background-position: left center !important;
  max-width: 100%;
  top: 50% !important;
  transform: translateY(-50%) !important;
}

/* Медиа-запросы для адаптивности */
@media (max-width: 991px) {
  .header__logo img {
    max-height: 45px;
  }
  
  /* Для прозрачной шапки */
  .header--transparent:not(.header--fixed) .header__logo:after {
    width: 200px !important;
    height: 45px !important;
  }
}

@media (max-width: 767px) {
  .header__logo img {
    max-height: 40px;
  }
  
  /* Для прозрачной шапки */
  .header--transparent:not(.header--fixed) .header__logo:after {
    width: 140px !important;
    height: 40px !important;
  }
}
