/* social-share.css */

/* --- Social Share --- */

.social-share {
    margin-top: 40px;
    font-size: 16px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

/* Ikony */

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #1a237e;
    color: #fff;
    font-size: 22px;
    text-decoration: none;
    box-shadow: 0 2px 5px rgba(0,0,0,0.15);
    transition: background 0.3s ease, transform 0.3s ease;
}

.social-icon:hover {
    transform: scale(1.15);
    background: #3949ab;
}

/* Przycisk wsparcia */

.support-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 48px;
    padding: 0 18px;
    border-radius: 999px;
    background: #5fbf9f;
    color: #fff;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 2px 5px rgba(0,0,0,0.15);
    transition: background 0.3s ease, transform 0.3s ease;
}

.support-btn:hover {
    transform: scale(1.10);
    background: #4aa88a;
}

/* Mobile */

@media (max-width: 768px) {
    .social-share {
        justify-content: center;
    }

    .social-icon {
        width: 42px;
        height: 42px;
        font-size: 18px;
    }

    .support-btn {
        height: 42px;
        padding: 0 14px;
        font-size: 14px;
    }
}