/* ==================================================
   TABLE OF CONTENTS & SHARE BUTTONS (Single Post)
   ================================================== */

/* Share Buttons */
.share-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid var(--border-color);
    background: var(--bg-card);
    color: var(--text-secondary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: all 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.share-btn:hover {
    transform: scale(1.1);
    color: white;
    border-color: transparent;
}

.share-btn.fb:hover {
    background: #1877F2;
}

.share-btn.tw:hover {
    background: #000000;
    color: #ffffff;
    border-color: #000000;
}

[data-theme="dark"] .share-btn.tw:hover {
    background: #ffffff;
    color: #000000;
    border-color: #ffffff;
}

.share-btn.li:hover {
    background: #0A66C2;
}

.share-btn.wa:hover {
    background: #25D366;
}

.share-btn.cp:hover {
    background: #666666;
}

.share-btn.em:hover {
    background: #EA4335;
}

/* ==================================================
   Text Visibility Fix
   ================================================== */
.article-content,
.entry-content,
.entry-content p,
.entry-content h1,
.entry-content h2,
.entry-content h3,
.entry-content h4,
.entry-content h5,
.entry-content h6,
.entry-content li {
    color: var(--text-primary);
}

/* Fix Preformatted and Verse Block Visibility */
.entry-content .wp-block-preformatted,
.entry-content .wp-block-verse {
    color: var(--text-primary);
}