/* =========================
   Footer
========================= */

.site-footer{
    margin-right: calc(var(--sidebar-width) + 55px);
    margin-left: 55px;
    background: var(--panel);
    border: 1px solid var(--border);
    border-radius: 5px;
    padding: 20px 28px;
}

/* Mobile */
@media (max-width: 768px){
  .site-footer{
    margin-right: calc(var(--sidebar-width) + 10px);
    margin-left: 10px;
    padding: 25px 15px;
  
}}
@media (max-width: 480px){

    .site-footer{
        margin: 0;
        border-radius: 0;
        border-left: 0;
        border-right: 0;

        padding: 20px 16px;
    }

    .footer-inner{
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .footer-brand{
        width: 100%;

        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;

        text-align: center;
    }

}

/* =========================
   Layout
========================= */

.footer-inner{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}

/* =========================
   Brand
========================= */

.footer-brand{
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.footer-logo{
    color: var(--text);
    text-decoration: none;
    font-family: "Goodly-Regular";
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
}

.footer-copyright{
    color: var(--muted);
    font-size: .85rem;
    font-family: "Yekan-Regular";
}

/* =========================
   Trusts
========================= */

.footer-trusts{
    display: flex;
    align-items: center;
    gap: 12px;
}

.trust-item{
    width: 72px;
    height: 72px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid var(--border);
    border-radius: 14px;

    background: #fff;

    text-decoration: none;
    color: var(--muted);

    transition: .2s ease;
}

.trust-item:hover{
    color: var(--text);
    border-color: #e5e7eb;
}

/* =========================
   Responsive
========================= */

@media (max-width: 480px){

    .site-footer{
        margin-right: 0;
        padding: 20px 16px;
    }

    .footer-inner{
        flex-direction: column;
        align-items: flex-start;
    }

}



