/**
 * Landing footer social icons — circular navy buttons with white glyphs.
 */

footer .footer-social-icons {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

footer .social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #282d62;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff !important;
    font-size: 16px;
    line-height: 1;
    text-decoration: none;
    margin-bottom: 0;
    transition: background-color 0.2s ease, transform 0.2s ease;
}

footer .social-icon:hover,
footer .social-icon:focus-visible {
    background-color: #1f2349;
    color: #ffffff !important;
    transform: translateY(-2px);
}

footer .social-icon .fa-facebook-f {
    transform: translateX(1px);
}
