/* social-share.css */

.social-share {
    margin-top: 36px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.social-icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #fff;
    color: #3949ab;
    border: 1px solid rgba(57, 73, 171, 0.25);
    box-shadow: none;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 16px;
    line-height: 1;

    padding: 0;
}

.social-icon i {
    transform: translateY(1px);
}


.social-icon:hover {
    background: #3949ab;
    color: #fff;
    transform: translateY(-2px);
}

.support-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;

    height: 38px;
    padding: 0 16px;
    font-size: 14px;
    border-radius: 999px;

    background: #e8f5ef;
    color: #23785f;

    box-shadow: none;
    border: 1px solid rgba(35, 120, 95, 0.15);

    line-height: 1;
}

.support-btn:hover {
    background: #5fbf9f;
    color: #fff;
    transform: translateY(-2px);
}

.social-icon i {
    display: block;
    line-height: 1;
}


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