.footer-cry-wolf {
    background-color: var(--header-primary);
    padding: 16px 24px;
}

.footer-cry-wolf__wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.footer-cry-wolf__brand {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-cry-wolf__logo {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    display: block;
}

.footer-cry-wolf__title {
    margin: 0 0 0.25rem;
    color: var(--color-light-text);
    font-size: 18px;
    font-weight: 600;
    line-height: 150%;
}

.footer-cry-wolf__copyright {
    margin: 0;
    color: var(--color-light-text);
    font-size: 12px;
    font-weight: 400;
    line-height: 133%;
}

.footer-cry-wolf__contact {
    display: grid;
    grid-template-columns: repeat(2, auto);
    column-gap: 3rem;
    row-gap: 1rem;
}

.footer-cry-wolf__contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: var(--color-light-text);
    text-decoration: none;
    font-size: 14px;
    line-height: 140%;
    font-weight: 400;
    font-style: normal;
    overflow-wrap: anywhere;
}

    .footer-cry-wolf__contact-item:hover {
        text-decoration: underline;
    }

    .footer-cry-wolf__contact-item:focus-visible {
        outline: 3px solid var(--color-white);
        outline-offset: 3px;
        border-radius: 2px;
    }

.footer-cry-wolf__icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    display: block;
}

/* Tablet */
@media (min-width: 768px) and (max-width: 1199px) {
    .footer-cry-wolf__wrapper {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-cry-wolf__contact {
        width: 100%;
        grid-template-columns: repeat(2, 1fr);
        column-gap: 1rem;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .footer-cry-wolf__wrapper {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-cry-wolf__contact {
        width: 100%;
        grid-template-columns: 1fr;
        column-gap: 0;
    }
}
