/* ============================================= */
/* ДОРАБОТКА ПЕРВОГО БЛОКА ДЛЯ МОБИЛЬНЫХ */
/* ТОЛЬКО ПО ТЗ: */
/* 1. Убрать кнопку "получить консультацию" */
/* 2. Сделать город синим цветом */
/* 3. Текст слева */
/* 4. Уменьшить шрифт, чтобы видеть людей на фото */
/* ============================================= */

@media only screen and (max-width: 767px) {
    /* 1. УБИРАЕМ КНОПКУ "ПОЛУЧИТЬ КОНСУЛЬТАЦИЮ" */
    .zakaz-zvonka-top {
        display: none !important;
    }
    
    /* 4. УМЕНЬШАЕМ РАЗМЕР ШРИФТА И УБИРАЕМ ФОН */
    /* Убираем фон и отступы, уменьшаем размер текста */
    .law_firm_headline {
        padding-top: 20px !important; /* Минимальный отступ сверху */
    }
    
    /* Убираем белый фон, оставляем прозрачным */
    .law_firm_headline h1 {
        background: none !important; /* Убираем белый фон */
        padding: 10px 15px !important; /* Минимальные отступы */
        margin-top: 10px !important;
        border-radius: 0 !important;
    }
    
    /* 2. ДЕЛАЕМ ГОРОД СИНИМ ЦВЕТОМ */
    .law_firm_headline h1 span[style*="margin-bottom: 40px"] {
        color: #2c6ecb !important;
    }
    
    /* 3. ТЕКСТ СЛЕВА С МЕНЬШИМ ШРИФТОМ */
    
    /* Основной заголовок - текст слева */
    .law_firm_headline h1 {
        display: block !important;
        text-align: left !important;
        width: 100% !important;
        margin-left: 0 !important;
    }

    /* Контейнеры с текстом - текст слева */
    .law_firm_headline h1 > div {
        display: block !important;
        text-align: left !important;
        width: 100% !important;
        margin-bottom: 10px !important; /* Уменьшили отступ */
    }

    /* Каждая строка текста - текст слева, маленький шрифт */
    .law_firm_headline h1 span {
        display: block !important;
        text-align: left !important;
        width: 100% !important;
        margin-bottom: 4px !important; /* Уменьшили отступ */
        font-size: 14px !important; /* УМЕНЬШИЛИ ШРИФТ */
        line-height: 1.2 !important; /* Уменьшили межстрочный */
        font-weight: bold !important;
        color: #222 !important;
        padding-left: 0 !important;
    }

    /* Особый стиль для последней строки с городом - СЛЕВА, СИНИЙ, меньше */
    .law_firm_headline h1 span[style*="margin-bottom: 40px"] {
        margin-bottom: 15px !important; /* Уменьшили отступ */
        font-size: 16px !important; /* УМЕНЬШИЛИ ШРИФТ */
        color: #2c6ecb !important;
        text-align: left !important;
    }

    /* Подзаголовок (если есть) - СЛЕВА, маленький */
    .law_firm_headline h1 div + div {
        display: block !important;
        text-align: left !important;
        width: 100% !important;
        margin: 8px 0 15px 0 !important; /* Уменьшили отступы */
        font-size: 12px !important; /* УМЕНЬШИЛИ ШРИФТ */
        line-height: 1.3 !important;
        color: #666 !important;
        font-weight: normal !important;
    }
}

/* Для очень маленьких экранов */
@media only screen and (max-width: 480px) {
    .law_firm_headline {
        padding-top: 15px !important; /* Еще меньше отступ */
    }
    
    .law_firm_headline h1 {
        padding: 8px 10px !important; /* Минимальные отступы */
        margin-top: 5px !important;
    }
    
    .law_firm_headline h1 span {
        font-size: 10px !important; /* ЕЩЕ МЕНЬШЕ ШРИФТ */
        text-align: left !important;
        margin-bottom: 3px !important;
    }

    .law_firm_headline h1 span[style*="margin-bottom: 40px"] {
        font-size: 14px !important; /* ЕЩЕ МЕНЬШЕ ШРИФТ */
        margin-bottom: 12px !important;
        color: #2c6ecb !important;
        text-align: left !important;
    }

    /* Подзаголовок меньшим шрифтом - СЛЕВА */
    .law_firm_headline h1 div + div {
        font-size: 11px !important; /* ЕЩЕ МЕНЬШЕ ШРИФТ */
        margin: 5px 0 10px 0 !important;
        text-align: left !important;
    }

    /* Кнопка УБРАНА */
    .zakaz-zvonka-top {
        display: none !important;
    }
}

/* Для планшетов */
@media only screen and (min-width: 768px) and (max-width: 992px) {
    .law_firm_headline {
        padding-top: 30px !important; /* Средний отступ */
    }
    
    .law_firm_headline h1 {
        background: none !important; /* Без фона */
        padding: 15px 20px !important;
    }
    
    .law_firm_headline h1 span {
        font-size: 15px !important; /* Меньше чем было */
        text-align: left !important;
    }

    .law_firm_headline h1 span[style*="margin-bottom: 40px"] {
        font-size: 18px !important; /* Меньше чем было */
        color: #2c6ecb !important;
        text-align: left !important;
    }

    /* Кнопка УБРАНА */
    .zakaz-zvonka-top {
        display: none !important;
    }
}

/* Для десктопов - оставляем как есть */
@media only screen and (min-width: 993px) {
    /* На десктопе оставляем оригинальное выравнивание */
}
