/* 페이지 공유 섹션 - 세련된 미니멀 디자인 */

.page-share-section {
    background: transparent;
    border-top: 1px solid #f0f0f0;
    border-bottom: 1px solid #f0f0f0;
    padding: 16px 12px;
    margin-bottom: 0;
    text-align: center;
}

.page-share-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 12px;
    box-sizing: border-box;
    width: 100%;
}

.page-share-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    /* enable smooth scrolling on narrow viewports if needed */
    -webkit-overflow-scrolling: touch;
}

.page-share-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 8px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid #e8e8e8;
    background: #fafafa;
    color: #666;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    box-shadow: none;
}

.page-share-btn:hover {
    background: #f0f0f0;
    color: #333;
    border-color: #d0d0d0;
    transform: translateY(-1px);
}

.page-share-btn:active {
    transform: translateY(0);
    background: #e8e8e8;
}

.page-share-btn svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

/* 반응형 */
@media (max-width: 600px) {
    .page-share-section {
        padding: 12px 12px;
    }

    .page-share-buttons {
        gap: 10px;
        flex-wrap: nowrap;
        overflow-x: auto;
        padding-bottom: 6px;
    }

    .page-share-btn {
        width: 44px;
        height: 44px;
        padding: 8px 8px;
    }

    .page-share-btn svg {
        width: 20px;
        height: 20px;
    }
}

/* hide scrollbar visuals but keep scrolling usable */
.page-share-buttons::-webkit-scrollbar { height: 6px; }
.page-share-buttons::-webkit-scrollbar-thumb { background: rgba(0,0,0,0.12); border-radius: 99px; }
.page-share-buttons { scrollbar-width: thin; scrollbar-color: rgba(0,0,0,0.12) transparent; }
