.sns-float {
    position: fixed;
    right: 20px;
    bottom: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 900;
}

.sns-float-item {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    color: #fff;
    font-size: 22px;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.18);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.sns-float-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.24);
}

.sns-float-youtube {
    background: #ff0000;
}

.sns-float-instagram {
    background: radial-gradient(circle at 30% 110%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285aeb 90%);
}

.sns-float-blog {
    background: #03c75a;
}

.sns-float-blog-text {
    font-size: 15px;
    font-weight: 700;
    letter-spacing: -0.5px;
}

/* index.html 하단 고정 문의바(.contact-bar)와 겹치지 않도록 위로 띄움 */
#sns-float-placeholder.has-contact-bar .sns-float {
    bottom: 90px;
}

@media (max-width: 700px) {
    .sns-float {
        right: 14px;
        bottom: 16px;
        gap: 10px;
    }

    .sns-float-item {
        width: 42px;
        height: 42px;
        font-size: 19px;
    }

    .sns-float-blog-text {
        font-size: 13px;
    }

    #sns-float-placeholder.has-contact-bar .sns-float {
        bottom: 74px;
    }
}
