/* sergeev-footer-mobile.css — mobile footer block (all pages) */

@media (max-width: 767px) {
    .footer-mobile {
        display: block;
        background-color: #fff;
        padding: 20px 0;
    }
    .footer-mobile__title {
        font-size: 1.8rem;
        font-weight: bold;
        margin-bottom: 10px;
        color: #333;
    }
    .footer-mobile__menu {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    .footer-mobile__menu-item {
        margin-bottom: 10px;
    }
    .footer-mobile__menu-link {
        text-decoration: none;
        color: #333;
        font-size: 1.6rem;
    }
    .footer-mobile__menu-link:hover {
        text-decoration: underline;
    }
    .footer-mobile__text {
        font-size: 1.6rem;
        color: #333;
        margin: 0;
    }
    .footer .footer__support {
        display: none;
    }
}

@media (min-width: 768px) {
    .footer-mobile {
        display: none;
    }
}
