/* ============================================================
   ГЛОБАЛЬНОЕ УЛУЧШЕНИЕ КАЧЕСТВА ИЗОБРАЖЕНИЙ НА МОБИЛЬНЫХ
   ============================================================ */

/* 1. минус размытие и принудительное сжатие */
@media (max-width: 980px) {
  img, .t-bgimg {
    image-rendering: auto !important;
    transform: scale(1.001);
    filter: none !important;
  }
}

/* 2. +++ чёткость фоновых изображений */
@media (max-width: 980px) {
  .t-bgimg {
    background-size: cover !important;
    background-position: center !important;
    image-rendering: auto !important;
  }
}

/* 3. отмена подстановки уменьшенных версий Tilda CDN */
@media (max-width: 980px) {
  img[src*="tildacdn.com"] {
    object-fit: contain !important;
    content-visibility: auto !important;
  }
}

/* 4. убрать артефакты масштабирования для декоративных элементов */
@media (max-width: 980px) {
  .t396__elem, .t396__artboard {
    transform: translateZ(0);
    backface-visibility: hidden;
  }
}
body {
  overflow-x: hidden;
}
