/* Site footer */
.site-footer {
    padding: 5rem 0;
    background: #fafafa;
    border-top: 1px solid #f0f0f0;
}

.site-footer__grid{
    display:grid;
    grid-template-columns:2fr 3fr;
    gap:5rem;
    align-items:flex-start;
}

.site-footer__brand {
    max-width: 42rem;
}

.site-footer__brand-heading {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.site-footer__logo {
    display: block;
    flex: 0 0 auto;
    width: 42px;
    line-height: 0;
}

.site-footer__logo img {
    width: 100%;
    height: auto;
    max-height: 42px;
    object-fit:cover;
    border-radius:50%;
    display:block;
    overflow:hidden;
}

.site-footer h2 {
    color: #111;
    font-family: "Lato", Arial, sans-serif;
    font-size: 1rem;
    font-weight: 700;
}

.site-footer__brand-name {
    margin: 0;
}

.site-footer p,
.site-footer__social a {
    color: #4d5968;
    font-family: "Lato", Arial, sans-serif;
    font-size: .875rem;
}

.site-footer__brand-description {
    margin: .75rem 0 0;
}

.site-footer__social {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 1rem;
}

.site-footer__social a {
    display: inline-flex;
    transition: color .2s ease, transform .2s ease;
}

.site-footer__social a:hover,
.site-footer__social a:focus-visible {
    color: #111;
    transform: translateY(-2px);
}

body.dark-mode .site-footer__social a {
    color: #f6f4ef;
}

body.dark-mode .site-footer__social a:hover,
body.dark-mode .site-footer__social a:focus-visible {
    color: #c9a96e;
}

@media (max-width: 768px) {
    .site-footer {
        padding: 3.5rem 0;
    }

    .site-footer__logo {
        width: 42px;
    }

    .site-footer__logo img {
        max-height: 42px;
    }
}

@media (max-width: 480px) {
    .site-footer__brand-heading {
        gap: .75rem;
    }

    .site-footer__logo {
        width: 42px;
    }

    .site-footer__logo img {
        max-height: 42px;
    }
}

.site-footer__copyright {
    margin: 1rem 0 0;
    padding-top: 10px;
    padding-bottom: 2rem;s
    border-top: 1px solid var(--color-border);
    font-size: .9rem;
    line-height: 1.6;
    text-align: center;
    color: inherit;
    opacity: .75;
}

.site-footer__column{
    display:flex;
    flex-direction:column;

}

.site-footer__column-wrapper{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:3rem;
}

.site-footer__heading{
    margin:0 0 1.5rem;
    font-size:1rem;
    font-weight:700;
    color:inherit;
}

@media (max-width:768px){
    .site-footer__grid{
        grid-template-columns:1fr;
        gap:2rem;
    }
    .site-footer__brand{
       margin-bottom:.5rem;
    }
    .site-footer__brand{
        grid-column:1/-1;
    }

    .site-footer__column-wrapper{
        display:grid;
        grid-template-columns:repeat(3,1fr);
        gap:1rem;
    }
}

.site-footer__list{
    margin:0;
    padding:0;
    list-style:none;
}

.site-footer__list li{
    margin-bottom:.8rem;
}

.site-footer__list a,
.site-footer__list span{
    color:inherit;
    text-decoration:none;
    font-size:.9rem;
    transition:.25s;
}

.site-footer__list a:hover{
    opacity:.7;
}
