/* DESKTOP */
#footer-global-section {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-sizing: border-box;
    padding-bottom: 80px;
    margin: 0 auto;
}
.footer-global{
    display: flex;
    flex-direction: column;
    width: 75dvw;
    max-width: 1300px;
    gap: 1em;
}
.footer-global-top{
    display: flex;
    justify-content: space-between;
}
.footer-global-socials{
    display: flex;
    gap: 3.5em;
}
.footer-global-socials a, .footer-global-email{
    text-decoration: none;
    font-size: 2rem;
    font-weight: 600;
    color: var(--color-light);
}
.footer-global-credits, .footer-global-credits-sub{
    display: flex;
}
.footer-global-credits{
    justify-content: space-between;
}
.footer-global-credits-sub{
    gap: 8em;
}
.footer-global-credits p{
    font-size: var(--fs-sm);
}


/* MOBILE */
.footer-global-mobile{
    display: none;
    flex-direction: column;
    width: 85dvw;
    gap: 2.5em;
}
.footer-global-mobile-sub{
    display: flex;
    flex-direction: row;
    width: 100%;
    justify-content: space-between;
}
.footer-global-mobile-email{
    font-size: 6.7cqi;
    font-weight: 600;
    text-decoration: none;
    color: var(--color-light);
}
.socials-mobile{
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: auto;
    row-gap: 2.5em;
    column-gap: 3em;
}
.socials-mobile a{
    text-decoration: none;
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--color-light);
}
.credits-mobile{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.footer-global-mobile-brackets{
    display: flex;
    justify-content: space-between;
    border-top: 1px solid #4c4c4c;
    border-bottom: 1px solid #4c4c4c;
    padding: 1em 0;
}
.footer-global-mobile-brackets p{
    font-weight: 500;
}


/* --- MID SIZE: ~1,250px and below --- */
@media (max-width: 78em) {
    #footer-global-section {
        padding-bottom: 60px;
    }
    .footer-global-socials{
        gap: 1em;
    }
    .footer-global-socials a, .footer-global-email{
        font-size: 1.5rem;
    }
}
/* --- TABLET: ~768px and below ------- */
@media (max-width: 48em) {
    #footer-global-section{
        padding-bottom: 2.4em;
        gap: 2.5em;
        container-type: inline-size;
    }
    .footer-global{
        display: none;
    }
    .footer-global-mobile{
        display: flex;
    }
}
/* --- MOBILE: ~480px and below ------- */
@media (max-width: 31em) {
    .footer-global-mobile{
        width: 90dvw;
    }
    .footer-global-mobile-email{
        font-size: 7.03cqi;
        font-weight: 600;
        text-decoration: none;
        color: var(--color-light);
    }
    .socials-mobile{
        column-gap: 2em;
        row-gap: 3em;
    }
    .socials-mobile a{
        font-size: 1.4rem;
    }
    .credits-mobile p{
        text-align: end;
    }
}
/* --- MINI: ~360px and below --------- */
@media (max-width: 20em) {
    .socials-mobile{
        column-gap: 1em;
    }
    .socials-mobile a{
        font-size: 1.2rem;
    }
}