.ww-site-footer {
    background: #010409;
    border-top: 1px solid #30363d;
    color: #8b949e;
    font-family: "Inter", "Poppins", sans-serif;
    font-size: 14px;
    line-height: 1.55;
    padding: 64px 0;
}

.ww-site-footer__grid {
    display: grid;
    gap: 48px;
    grid-template-columns: 1fr;
    margin: 0 auto;
    max-width: 1280px;
    padding: 0 24px;
}

.ww-site-footer__brand {
    align-items: center;
    display: flex;
    gap: 12px;
    margin-bottom: 24px;
}

.ww-site-footer__brand img {
    filter: grayscale(1);
    height: 32px;
    opacity: 0.72;
    width: 32px;
}

.ww-site-footer__brand span {
    color: #fff;
    font-size: 20px;
    font-weight: 800;
}

.ww-site-footer__disclaimer {
    margin: 0 0 24px;
    max-width: 390px;
}

.ww-site-footer h4 {
    color: #fff;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.14em;
    margin: 0 0 24px;
    text-transform: uppercase;
}

.ww-site-footer__list {
    display: grid;
    gap: 12px;
    list-style: none;
    margin: 0 0 24px;
    padding: 0;
}

.ww-site-footer a {
    color: #8b949e;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.15s ease;
}

.ww-site-footer a:hover {
    color: #fff;
}

.ww-site-footer__disclaimer a {
    color: #1cad75;
}

.ww-site-footer__disclaimer a:hover {
    color: #47d59d;
    text-decoration: underline;
}

.ww-site-footer__copyright {
    display: inline-block;
}

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

@media (min-width: 1200px) {
    .ww-site-footer__grid {
        grid-template-columns: repeat(6, minmax(0, 1fr));
    }

    .ww-site-footer__brand-col {
        grid-column: span 2;
    }
}
