/* NewsNirikh social link buttons */
.social-links a,
.footer-social a {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: rgba(255,255,255,.11);
    color: #fff;
    font-size: 12px;
    font-weight: 900;
    line-height: 1;
    transition: transform .2s ease, background .2s ease, color .2s ease;
}

.social-links a:hover,
.footer-social a:hover {
    transform: translateY(-2px);
    background: var(--red, #e6002d);
    color: #fff;
}

.footer-social a {
    width: 36px;
    height: 36px;
}

.social-settings-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin: 14px 0 4px;
}

@media (max-width: 900px) {
    .social-settings-grid {
        grid-template-columns: 1fr;
    }
}
