/******* Do not edit this file *******
Woody Code Snippets CSS and JS
Saved: Apr 06 2026 | 13:25:43 */
/* ===================================
   HERO INFO CARD - Блок с ценой/инфо
   Применяется на всех страницах виджет Блок с иконкой
   Класс: .hero-info-card
   =================================== */

/* Десктоп - оставляем как есть */
@media (max-width: 767px) {
    .hero-info-card .elementor-icon-box-content {
        display: flex;
        flex-direction: column;
    }
    
    .hero-info-card .elementor-icon-box-description {
        order: 1; /* Заголовок СВЕРХУ */
    }
    
    .hero-info-card .elementor-icon-box-title {
        order: 2; /* Описание СНИЗУ */
    }
}

/* Мобилка - выравнивание иконки и текста по верху */
@media (max-width: 767px) {
    .hero-info-card .elementor-icon-box-wrapper {
        align-items: flex-start !important;
    }
}