/* Блок социальных сетей */
.danit-social-block {
    /* Auto layout */
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
    padding: 32px;
    gap: 32px;
    
    width: 100%;
    min-height: 96px;
    
    /* Gradient-2 */
    background: radial-gradient(172.04% 100% at 100% 100%, #23C0AD 0%, #4C50CC 100%);
    border-radius: 16px;
    
    margin: 40px 0;
}

/* Текст */
.danit-social-text {
    width: auto;
    flex: 1;
    
    font-family: 'Manrope', sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 20px !important;
    line-height: 120%;
    
    color: #FFFFFF;
    
    order: 0;
    flex-grow: 1;
    
    margin: 0;
    align-self: center;
}

/* Контейнер иконок социальных сетей */
.danit-social-wrap {
    /* Auto layout */
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
    padding: 0px;
    gap: 24px;
    
    width: auto;
    height: 24px;
    
    order: 1;
    flex-grow: 0;
}

/* Ссылки на социальные сети */
.danit-social-link {
    display: block;
    width: 24px;
    height: 24px;
    flex: none;
    flex-grow: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.danit-social-link:hover {
    transform: scale(1.15);
    opacity: 0.85;
}

.danit-social-link svg {
    width: 24px;
    height: 24px;
    display: block;
}

.danit-social-link svg path,
.danit-social-link svg rect,
.danit-social-link svg circle {
    fill: #FFFFFF;
}

/* Facebook */
.danit-social-link.facebook {
    order: 0;
}

/* Twitter / X */
.danit-social-link.twitter {
    order: 1;
}

/* Instagram */
.danit-social-link.instagram {
    order: 2;
}

/* YouTube */
.danit-social-link.youtube {
    order: 3;
}

/* Telegram */
.danit-social-link.telegram {
    order: 4;
}

/* TikTok */
.danit-social-link.tiktok {
    order: 5;
}

/* Адаптивность для планшетов */
@media (max-width: 992px) {
    .danit-social-block {
        padding: 24px;
        gap: 24px;
    }
    
    .danit-social-text {
        font-size: 18px;
    }
    
    .danit-social-wrap {
        gap: 20px;
    }
}

/* Адаптивность для мобильных */
@media (max-width: 768px) {
    .danit-social-block {
        flex-direction: column;
        align-items: center;
        padding: 24px 20px;
        gap: 20px;
        text-align: center;
    }
    
    .danit-social-text {
        width: 100%;
        text-align: center;
    }
    
    .danit-social-wrap {
        justify-content: center;
        width: 100%;
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .danit-social-block {
        padding: 20px 16px;
        margin: 30px 0;
    }
    
    .danit-social-text {
        font-size: 16px;
        line-height: 130%;
    }
    
    .danit-social-wrap {
        gap: 16px;
        flex-wrap: wrap;
    }
    
    .danit-social-link {
        width: 28px;
        height: 28px;
    }
    
    .danit-social-link svg {
        width: 28px;
        height: 28px;
    }
}

