/* Footer/Contact/Information */
.site-footer {
    background-color: #333;
    color: #ffffff;
    padding-top: 1.5rem;
    padding-bottom: 0.3rem;
    display: flex;
    flex-direction: column;
    margin-top: auto;
}

.site-footer .footer-content {
    width: 100%;
    max-width: 132em;
    margin: auto;
    display: flex;
    flex-direction: column;
    padding: 2rem clamp(1rem, 2.8vw, 4rem);
    justify-content: space-between;
    align-items: flex-start;
    gap: 1.5rem;
}

.site-footer .footer-section {
    padding-bottom: 1rem;
}

.site-footer .contact-info .footer-heading,
.site-footer .social-links .footer-heading,
.site-footer .footer-legal-links .footer-heading {
    font-size: 1.4rem;
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.site-footer .contact-info {
    font-style: normal;
}

.site-footer .social-links {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.site-footer .contact-info p,
.site-footer .social-links a,
.site-footer .footer-legal-links p {
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.site-footer .contact-info a {
    color: inherit;
    text-decoration: none;
}

.site-footer .footer-legal-links {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.site-footer .footer-legal-links a {
    color: inherit;
    text-decoration: none;
}

.site-footer .icon {
    width: 3rem;
    height: auto;
}

@media screen and (min-width: 35.3125em) {
    .site-footer .footer-content {
        flex-direction: row;
        padding: 1.25rem clamp(1rem, 3vw, 2.5rem);
    }

    .site-footer .footer-section {
        flex: 1 1 0;
    }
}

.site-footer .copyright {
    width: 100%;
    max-width: 132em;
    margin: 0 auto;
    padding-inline: clamp(1rem, 2.8vw, 4rem);
}

.copyright p {
    font-size: 0.8rem;
    width: 100%;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    text-align: center;
}

@media screen and (min-width: 150em) {
    .site-footer .footer-content,
    .site-footer .copyright {
        max-width: none;
    }
}
