/* Стили футера в БЭМ */
.footer {
    background-color: #F5F5F5;
    padding: 64px 0;
}

.footer__container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .footer__container {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .footer__container {
        padding: 0 2rem;
    }
}

.footer__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .footer__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .footer__grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 3rem;
    }
}

.footer__column {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer__logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #052E31;
    text-decoration: none;
    line-height: 1.2;
}

.footer__description {
    color: #5F777B;
    font-size: 0.875rem;
    line-height: 1.6;
    margin: 0;
}

.footer__socials {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 0.5rem;
}

.footer__social-link {
    color: #5F777B;
    transition: color 0.2s ease;
    line-height: 1;
    text-decoration: none;
}

.footer__social-link:hover {
    color: #052E31;
}

.footer__social-link svg {
    width: 1.25rem;
    height: 1.25rem;
    display: block;
}

.footer__title {
    color: #052E31;
    font-weight: 600;
    font-size: 1.125rem;
    margin: 0 0 0.5rem 0;
    line-height: 1.3;
}

.footer__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer__link {
    color: #5F777B;
    font-size: 0.875rem;
    text-decoration: none;
    transition: color 0.2s ease;
    line-height: 1.4;
    display: inline-block;
}

.footer__link:hover {
    color: #052E31;
}

.footer__contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.footer__contact-icon {
    width: 1.25rem;
    height: 1.25rem;
    color: #0CAF60;
    flex-shrink: 0;
    margin-top: 0.125rem;
    display: block;
}

.footer__contact-text,
.footer__contact-link {
    color: #5F777B;
    font-size: 0.875rem;
    line-height: 1.5;
    margin: 0;
    text-decoration: none;
    transition: color 0.2s ease;
    display: inline-block;
}

.footer__contact-link:hover {
    color: #052E31;
}

.footer__bottom {
    margin-top: 2.5rem;
    padding-top: 2.5rem;
    border-top: 1px solid #D7DFE0;
}

.footer__bottom-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

@media (min-width: 768px) {
    .footer__bottom-content {
        flex-direction: row;
        justify-content: space-between;
    }
}

.footer__copyright {
    color: #5F777B;
    font-size: 0.875rem;
    margin: 0;
    line-height: 1.5;
}

.footer__links {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.footer__bottom-link {
    color: #5F777B;
    font-size: 0.875rem;
    text-decoration: none;
    transition: color 0.2s ease;
    line-height: 1.5;
    white-space: nowrap;
}

.footer__bottom-link:hover {
    color: #052E31;
}

@media (max-width: 640px) {
    .footer__bottom-link {
        white-space: normal;
        text-align: center;
    }
}
