﻿/* === 分享區樣式 === */
.share-section {
    position: relative;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin: 30px auto;
    max-width: 900px;
}

    .share-section::before,
    .share-section::after {
        content: "";
        position: absolute;
        left: 0;
        right: 0;
        height: 1px;
        background-color: #dee2e6;
    }

    .share-section::before {
        top: 0;
    }

    .share-section::after {
        bottom: 0;
    }

.share-icon {
    border: none;
    background: none;
    color: #6c757d;
    font-size: 1.4rem;
    padding: 12px;
    cursor: pointer;
    transition: all 0.2s ease;
    z-index: 2;
}

    .share-icon:hover {
        color: #000;
        transform: scale(1.15);
    }


/* === blockquote 文章引言樣式 === */
blockquote {
    background-color: #ef62451c; /* 淺灰底 */
    border-left: 4px solid #dee2e6; /* 左側淡灰線 */
    border-radius: 0.25rem; /* 圓角 */
    padding: 1rem 1.25rem; /* 內距 */
    margin: 1.5rem 0; /* 上下間距 */
    font-style: normal;
    color: #555; /* 文字灰色 */
    font-size: 1rem;
    line-height: 1.7;
}

    blockquote p {
        margin-bottom: 0; /* 避免重複間距 */
    }
/*blockquote::before {
                content: "“";
                font-size: 2.5rem;
                color: #ced4da;
                line-height: 0;
                vertical-align: -0.6rem;
                margin-right: 0.3rem;
            }

            blockquote::after {
                content: "”";
                font-size: 2.5rem;
                color: #ced4da;
                line-height: 0;
                vertical-align: -0.6rem;
                margin-left: 0.1rem;
            }*/

.blog-hearer h2 {
    color: #6B6B6B;
    font-size: 22px;
}