.site-footer {
    background: #090d12;
    color: rgba(255, 255, 255, 0.72);
}

.footer-main {
    display: grid;
    grid-template-columns: 1.35fr 0.9fr 1fr;
    gap: 42px;
    padding: 64px 0 44px;
}

.footer-branding {
    display: inline-flex;
    margin-bottom: 18px;
}

.footer-branding img {
    max-width: 220px;
    height: auto;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.58);
    text-align: justify;
}

.site-footer h3 {
    margin-bottom: 20px;
    color: #fff;
    font-size: 14px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.footer-links ul,
.footer-category-list,
.footer-page-menu {
    list-style: none;
    display: grid;
    gap: 12px;
    margin: 0;
    padding: 0;
}

.footer-links a,
.footer-category-item a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    color: rgba(255, 255, 255, 0.72);
    transition: color var(--transition), transform var(--transition);
}

.footer-links a:hover,
.footer-category-item a:hover {
    color: var(--color-accent);
}

.footer-category-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 28px;
    height: 28px;
    padding: 0 10px;
    color: rgba(255, 255, 255, 0.62);
    font-size: 12px;
    font-weight: 600;
}

.footer-bottom {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px 0 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 13px;
}

@media (max-width: 1100px) {
    .footer-main {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .footer-brand {
        grid-column: 1 / -1;
    }
}

@media (max-width: 700px) {
    .footer-main {
        grid-template-columns: 1fr;
        gap: 28px;
        padding-top: 48px;
    }
}
