@media (max-width: 1024px) {
  .offers_top_home {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .offers_top_home .text_content_top_home {
    max-width: 100%;
  }
}
/* Адаптивность */
@media (max-width: 768px) {
  h1 { font-size: 32px; line-height: 44px; }
  h2 { font-size: 26px; line-height: 36px; }
  h3 { font-size: 22px; line-height: 30px; }
}

/* === Адаптивность === */
@media (max-width: 992px) {
  .offers_top_home {
    grid-template-columns: 1fr;
    height: auto;
    text-align: center;
    padding: 40px 20px;
  }

  .offers_top_home .carousel {
    flex-direction: row;
    overflow-x: auto;
  }

  .offers_top_home .carousel-column {
    flex-direction: row;
    animation: none; /* отключаем анимацию на мобилках */
  }

  .offers_top_home .carousel img {
    width: 150px;
  }
}



/* Адаптив */
@media (max-width: 992px) {
  .benefits_inner { grid-template-columns: 1fr 1fr; padding: 20px;}
}
@media (max-width: 576px) {
  .benefits_inner { grid-template-columns: 1fr; padding: 20px; }
}


  
/* === Скрываем карусель на мобильных и планшетах === */
@media (max-width: 1024px) {
  .offers_top_home {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .offers_top_home .carousel {
    display: none !important;
  }

  .offers_top_home .text_content_top_home {
    max-width: 100%;
  }
}