.ksb-share-box {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #e4e4e4;
    text-align: center;
    font-family: "Noto Sans KR", sans-serif;
}

.ksb-share-box .ksb-title {
    display: block;
    font-weight: 600;
    margin-bottom: 14px;
    color: #333;
    font-size: 15px;
}

.ksb-icons {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.ksb-icons a {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: white;
    font-size: 20px;
    transition: transform 0.15s ease, opacity 0.15s ease;
    text-decoration: none;
}

.ksb-icons a:hover {
    transform: scale(1.1);
    opacity: 0.9;
}

/* 아이콘별 색상 */
.ksb-icons a.kakao { background-color: #FEE500; color: #3C1E1E; }
.ksb-icons a.naverblog { background-color: #1EC800; }
.ksb-icons a.facebook { background-color: #1877f2; }
.ksb-icons a.x { background-color: #000; }
.ksb-icons a.telegram { background-color: #229ED9; }

/* 모바일 대응 */
@media (max-width: 480px) {
    .ksb-icons a {
        width: 36px;
        height: 36px;
        font-size: 18px;
    }
}
