/* ==========================================================================
   BM CORE: UNIVERSAL SHARE BUTTONS
   ========================================================================== */

.bm-share-wrapper {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 2rem;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.bm-share-label {
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: inherit; 
    opacity: 0.7;
}

.bm-share-links {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

/* Base button uses theme's text color over a faint gray circle */
.bm-share-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.06); 
    color: inherit;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.25s ease;
    padding: 0;
}

/* Hover state turns the button dark and lifts it */
.bm-share-btn:hover {
    background-color: rgba(0, 0, 0, 0.85);
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.bm-share-btn svg {
    transition: transform 0.25s ease;
}

.bm-share-btn:hover svg {
    transform: scale(1.1);
}