/* 푸터 바로가기 버튼 */
.site-footer .footer-links {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    flex-wrap: wrap;
    font-size: 13px;
}

.site-footer .footer-links a {
    display: inline-flex;
    min-height: 40px;
    align-items: center;
    justify-content: center;
    padding: 0 16px;
    border: 1px solid #d5d6dc;
    border-radius: 999px;
    background: #fff;
    color: #34353a;
    font-size: 13px;
    font-weight: 600;
    line-height: 1;
    white-space: nowrap;
    transition: border-color .2s ease, background-color .2s ease, color .2s ease, transform .2s ease;
}

.site-footer .footer-links a:last-child {
    border-color: #29302d;
    background: #29302d;
    color: #fff;
}

.site-footer .footer-links a:hover,
.site-footer .footer-links a:focus-visible {
    border-color: #29302d;
    background: #29302d;
    color: #fff;
    transform: translateY(-2px);
}

.site-footer .footer-links a:focus-visible {
    outline: 3px solid rgba(139, 155, 141, .45);
    outline-offset: 3px;
}

.site-footer .footer-links a:active {
    transform: translateY(0);
}

@media (max-width: 760px) {
    .site-footer .footer-links {
        justify-content: flex-start;
        margin-top: 28px;
    }

    .site-footer .footer-links a {
        min-height: 42px;
        padding: 0 15px;
    }
}
