.site-footer{
    width: 100%;
    border-top: 8px solid #ffce00;
    background: #0003ff;
    color: #fff;
}

.site-footer__inner{
    width: min(calc(var(--content-width) + var(--section-padding-inline) + var(--section-padding-inline)), 100%);
    margin: 0 auto;
    padding: 48px var(--section-padding-inline) 24px;
}

.site-footer__content{
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.site-footer__brand{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
}

.site-footer__brand a,
.site-footer__brand img{
    display: block;
}

.site-footer__brand img{
    width: 140px;
    height: auto;
}

.site-footer__brand p{
    max-width: 280px;
    font-family: "Poppins", sans-serif;
    font-size: 13px;
    line-height: 1.4;
}

.site-footer__nav{
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.site-footer__nav h2{
    color: #ffce00;
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    font-weight: 800;
    line-height: 1;
    text-transform: uppercase;
}

.site-footer__nav ul{
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px 24px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.site-footer a{
    color: #fff;
    font-family: "Poppins", sans-serif;
    text-decoration: none;
}

.site-footer__nav a{
    font-size: 12px;
    font-weight: 500;
    line-height: 1.3;
}

.site-footer a:hover,
.site-footer a:focus-visible{
    color: #ffce00;
}

.site-footer__bottom{
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.35);
}

.site-footer__bottom small,
.site-footer__bottom a{
    font-family: "Poppins", sans-serif;
    font-size: 10px;
    line-height: 1.4;
}

.site-footer__bottom small{
    color: rgba(255, 255, 255, 0.75);
}

.site-footer__bottom a{
    width: fit-content;
    font-weight: 700;
}

@media (min-width: 768px){
    .site-footer__inner{
        padding-block: 64px 28px;
    }

    .site-footer__content{
        flex-direction: row;
        align-items: flex-start;
        justify-content: space-between;
    }

    .site-footer__nav{
        width: min(460px, 55%);
    }

    .site-footer__nav ul{
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .site-footer__bottom{
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        margin-top: 56px;
    }
}

@media (min-width: 1024px){
    .site-footer__inner{
        padding-block: 80px 32px;
    }

    .site-footer__brand img{
        width: 180px;
    }

    .site-footer__brand p{
        max-width: 360px;
        font-size: 16px;
    }

    .site-footer__nav{
        width: min(560px, 50%);
    }

    .site-footer__nav h2{
        font-size: 16px;
    }

    .site-footer__nav a{
        font-size: 14px;
    }

    .site-footer__bottom small,
    .site-footer__bottom a{
        font-size: 12px;
    }
}
