.newCustomSocialBlock {
    width: 100%;
    margin: 14px 0 20px;
}

.newCustomSocialBlockInner {
    min-height: 56px;
    border-radius: 14px;
    background: #fcfcfc;
    border: 1px solid #e8edf3;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    padding: 10px 20px;
}

.newCustomSocialBlockTitle {
    font-size: 24px;
    line-height: 1;
    color: #4f5560;
}

.newCustomSocialBlockList {
    display: flex;
    align-items: center;
    gap: 10px;
}

.newCustomSocialBlockItem {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    height: 32px;
    border-radius: 18px;
    padding: 0 12px;
    border: 1px solid #cfd9e6;
    background: #ffffff;
    color: #4f5560;
    font-size: 16px;
    text-decoration: none;
    transition: all .2s ease;
}

.newCustomSocialBlockItem:hover {
    border-color: #a9b8cc;
    color: #3c4654;
    transform: translateY(-1px);
    text-decoration: none;
}

.newCustomSocialBlockItem .icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.newCustomSocialBlockItem .text {
    line-height: 1;
}

@media (max-width: 992px) {
    .newCustomSocialBlockInner {
        flex-direction: column;
        gap: 10px;
        padding: 12px;
    }

    .newCustomSocialBlockTitle {
        font-size: 24px;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .newCustomSocialBlock {
        margin: 10px 0 16px;
    }

    .newCustomSocialBlockInner {
        border-radius: 12px;
    }

    .newCustomSocialBlockTitle {
        font-size: 14px;
    }

    .newCustomSocialBlockList {
        gap: 8px;
    }

    .newCustomSocialBlockItem {
        height: 30px;
        padding: 0 10px;
        font-size: 14px;
    }
}
