.site-footer {
    border-top: 1px solid #e5e5e5;
    margin-top: 4rem;
    padding: 2rem 1rem;
    font-size: 0.95rem;
}

.footer-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.footer-credit {
    margin-bottom: 1rem;
    color: #666;
}

.footer-social {
    margin: 1rem 0;
}

.social-list {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    transition: background 0.2s ease;
}

.social-link svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.social-link:hover {
    background: #f18080;
    color: 'black';
}

.social-link:focus-visible {
    outline: 3px solid #005fcc;
    outline-offset: 2px;
}

.footer-text {
    margin-top: 1rem;
    /* color: #777; */
}

/* Screen reader only */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip-path: inset(50%);
}