.hotengine-ve-socials-style-1 {
    padding: 40px;
    text-align: center;
    font-family: sans-serif;
    background: #fff;
    position: relative;
    box-sizing: border-box;
}

.hotengine-ve-socials-style-1 .ve-title {
    margin: 0 0 25px 0;
    color: #111;
    font-size: 20px;
    font-weight: 700;
}

.hotengine-ve-socials-style-1 .ve-flex-socials {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.hotengine-ve-socials-style-1 .ve-social-link {
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: #f8f9fa;
    border-radius: 50%;
    padding: 12px;
    box-sizing: border-box;
    text-decoration: none;
    border: 1px solid transparent;
}

.hotengine-ve-socials-style-1 .ve-social-link:hover {
    transform: translateY(-5px);
    background: #fff !important;
    border-color: var(--ve-soc1-accent);
    box-shadow: 0 10px 20px var(--ve-soc1-accent-alpha);
}

.hotengine-ve-socials-style-1 .ve-social-link img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.hotengine-ve-socials-style-1 .ve-social-link:hover img {
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .hotengine-ve-socials-style-1 {
        padding: 30px 15px !important;
    }
    .hotengine-ve-socials-style-1 .ve-flex-socials {
        gap: 10px !important;
        flex-wrap: wrap;
        justify-content: center;
    }
    .hotengine-ve-socials-style-1 .ve-social-link {
        width: 50px !important;
        height: 50px !important;
        padding: 10px !important;
    }
}