/* ── Social Links Block ───────────────────────────────────────────── */

.sl-block {
    position: relative;
}

/* ── Wrap ─────────────────────────────────────────────────────────── */

.sl-wrap {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

/* ── Icon Button ──────────────────────────────────────────────────── */

.sl-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.10);
    color: #ffffff;
    border: none;
    text-decoration: none;
    flex-shrink: 0;
    transition: background 0.2s ease, color 0.2s ease;
}

.sl-btn:hover {
    background: #c41e2a;
    color: #ffffff;
}

.sl-btn i {
    font-size: 18px;
    line-height: 1;
}
