.hotengine-ve-socials-style-7 {
    padding: 60px 20px;
    background: #ffffff; /* Светлый фон */
    text-align: center;
    font-family: sans-serif;
    position: relative;
    overflow: hidden;
    box-sizing: border-box;
}

.hotengine-ve-socials-style-7 .ve-title {
    font-size: 30px; 
    color: #1a1a1a; /* Темный заголовок */
    font-weight: 800; 
    margin: 0 0 10px 0; 
    letter-spacing: 1px;
}

.hotengine-ve-socials-style-7 .ve-subtitle {
    font-size: 16px; 
    color: #666666; /* Серый подзаголовок */
    margin: 0 0 40px 0; 
    font-weight: 300;
}

.hotengine-ve-socials-style-7 .ve-social-wrapper {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
    max-width: 1000px;
    margin: 0 auto;
}

.hotengine-ve-socials-style-7 .ve-social-box {
    position: relative;
    width: 70px;
    height: 70px;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 22px;
    background: rgba(0, 0, 0, 0.04); /* Легкая подложка */
    border: 1px solid rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.hotengine-ve-socials-style-7 .ve-social-box img {
    width: 32px;
    height: 32px;
    z-index: 2;
    transition: all 0.4s ease;
    position: relative;
    border-radius: 8px;
    background: #fff;
}

.hotengine-ve-socials-style-7 .ve-social-box::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    border-radius: 22px;
    background: var(--ve-soc7-accent);
    opacity: 0;
    transition: all 0.4s ease;
    transform: scale(0.5);
    z-index: 1;
}

.hotengine-ve-socials-style-7 .ve-social-box:hover {
    transform: translateY(-10px) rotate(8deg);
    border-color: transparent;
}

.hotengine-ve-socials-style-7 .ve-social-box:hover::before {
    opacity: 1;
    transform: scale(1);
    box-shadow: 0 10px 25px var(--ve-soc7-accent-alpha);
}

.hotengine-ve-socials-style-7 .ve-social-box:hover img {
    transform: scale(1.2) rotate(-8deg);
}

@media (max-width: 768px) {
    .hotengine-ve-socials-style-7 {
        padding: 40px 15px !important;
    }
    .hotengine-ve-socials-style-7 .ve-social-box {
        width: 60px !important;
        height: 60px !important;
    }
    .hotengine-ve-socials-style-7 .ve-title {
        font-size: 22px !important;
    }
}