/* Footer dedicated stylesheet */

.site-footer {
    background: #ffffff;
    color: #111;
    border-top: 1px solid #efefef;
}

.site-footer *,
.site-footer *::before,
.site-footer *::after {
    box-sizing: border-box;
}

.footer-main {
    padding: 3.5rem 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 2.5rem 3rem;
    align-items: flex-start;
}

.footer-block {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-heading {
    margin: 0 0 0.9rem;
    font-size: 1.05rem;
    font-weight: 700;
}

.footer-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
}

.footer-links a {
    color: #111;
    text-decoration: none;
    font-weight: 600;
}

.footer-links a:hover {
    text-decoration: underline;
}

.footer-social {
    margin-top: 2rem;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: center;
}

.footer-social-link {
    color: #111;
    text-decoration: none;
    font-weight: 600;
}

.footer-social-link:hover {
    text-decoration: underline;
}

@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem 1.5rem;
    }
}
