/**
 * Cross-page polish: footer social grid, home wheel cursor hints (used with body classes).
 */

/* --- Footer: ordered social icons, consistent tap targets --- */
.footer-sction .social-links {
    text-align: left;
}

.footer-sction .social-links .social-intro {
    display: block;
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.55);
    margin-bottom: 10px;
}

.footer-sction .social-links .footer-social-grid {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-sction .social-links .footer-social-grid li {
    margin: 0;
    padding: 0;
}

.footer-sction .social-links .footer-social-grid a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.22);
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
    font-size: 18px;
    line-height: 1;
    text-decoration: none;
    transition: background 0.2s ease, border-color 0.2s ease, transform 0.15s ease;
}

.footer-sction .social-links .footer-social-grid a:hover,
.footer-sction .social-links .footer-social-grid a:focus-visible {
    color: #fff;
    background: rgba(255, 255, 255, 0.14);
    border-color: rgba(255, 255, 255, 0.45);
    transform: translateY(-1px);
    outline: none;
}

.footer-sction .copyright-footer .row {
    align-items: center;
}

@media (max-width: 991px) {
    .footer-sction .social-links {
        text-align: center;
    }
    .footer-sction .social-links .footer-social-grid {
        justify-content: center;
    }
}

/* --- Home hero: directional scroll cursor (paired with body.home-wheel-*) --- */
body.home-page.home-wheel-down .home-slider {
    cursor: s-resize;
}

body.home-page.home-wheel-up .home-slider {
    cursor: n-resize;
}

body.home-page .home-slider {
    transition: cursor 0.15s ease;
}
