/**
 * 헤더 공유 버튼 CSS
 * header.asp에서 사용
 * 모든 페이지에서 공유 버튼 스타일 통일
 */

/* 공유 버튼 섹션 */
.share-section {
    margin: 20px 0 10px 0;
    display: flex;
    justify-content: flex-end;
}

.content-share {
    margin-top: 20px;
    display: flex;
    justify-content: flex-end;
}

.content-share .share-buttons {
    margin-top: 0;
}

/* 게시판 공유 버튼 - 게시판 타이틀 바로 아래 우측 정렬 (모든 디바이스 공통) */
.content-share-top {
    margin-top: 0;
    margin-bottom: 8px;
    text-align: right;
}

.content-share-top .share-buttons {
    margin-top: 0;
    justify-content: flex-end;
}

/* 콘텐츠 영역 공유 버튼 (모든 디바이스 공통) */
.content-share-content {
    margin-top: 0;
    margin-bottom: 20px;
    text-align: right;
}

.content-share-content .share-buttons {
    margin-top: 0;
    justify-content: flex-end;
}

.share-buttons {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.share-buttons .share-label {
    font-size: 14px;
    color: #555;
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 600;
}

.share-buttons .share-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #dcdcdc;
    background: #fff;
    color: #555;
    transition: all .2s ease;
    cursor: pointer;
    text-decoration: none;
}

.share-buttons .share-btn i {
    font-size: 16px;
}

.share-buttons .share-btn.share-kakao {
    background: #FEE500;
    border-color: #FEE500;
    color: #3c1e1e;
}

.share-buttons .share-btn.share-facebook {
    background: #3b5998;
    border-color: #3b5998;
    color: #fff;
}

.share-buttons .share-btn.share-twitter {
    background: #1da1f2;
    border-color: #1da1f2;
    color: #fff;
}

.share-buttons .share-btn.share-x {
    background: #000000;
    border-color: #000000;
    color: #fff;
}

.share-buttons .share-btn.share-naver {
    background: #03c75a;
    border-color: #03c75a;
    color: #fff;
    font-weight: bold;
}

.share-buttons .share-btn.share-link {
    background: #f4f4f4;
    border-color: #d0d0d0;
    color: #444;
}

.share-buttons .share-btn:hover {
    filter: brightness(0.9);
}

/* 인쇄 시 공유 버튼 숨김 (모든 페이지 공통) */
@media print {
    .share-section,
    .content-share,
    .content-share-content,
    .content-share-header,
    .content-share-top,
    .share-buttons,
    .share-label {
        display: none !important;
    }
}

/* 모바일 스타일 */
@media (max-width: 768px) {
    .content-share-content {
        margin-top: 15px;
        margin-bottom: 0;
        text-align: right;
    }

    .content-share-content .share-buttons {
        margin-top: 0;
        justify-content: flex-end;
        gap: 8px;
    }

    .share-buttons .share-label {
        font-size: 13px;
        gap: 5px;
    }

    .share-buttons .share-btn {
        width: 36px;
        height: 36px;
    }

    .share-buttons .share-btn i {
        font-size: 15px;
    }
}

