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

.mn-share-label {
    font-size: 0.85em;
    font-weight: 600;
    color: #9ca3af;
    margin-right: 4px;
}

.mn-share-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #f3f4f6;
    color: #374151;
    text-decoration: none;
    transition: background 0.15s, color 0.15s, transform 0.1s;
    flex-shrink: 0;
}

.mn-share-btn:hover {
    transform: scale(1.1);
    text-decoration: none;
}

.mn-share-btn svg {
    width: 18px;
    height: 18px;
    display: block;
}

.mn-share-bluesky:hover  { background: #0085ff; color: #fff; }
.mn-share-threads:hover  { background: #000; color: #fff; }
.mn-share-linkedin:hover { background: #0a66c2; color: #fff; }
.mn-share-email:hover    { background: #1C5C8A; color: #fff; }
.mn-share-facebook:hover { background: #1877f2; color: #fff; }
.mn-share-x:hover        { background: #000; color: #fff; }

/* 3-dot more menu */
.mn-share-more {
    position: relative;
}

.mn-share-more summary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #f3f4f6;
    color: #374151;
    cursor: pointer;
    list-style: none;
    transition: background 0.15s;
}

.mn-share-more summary::-webkit-details-marker { display: none; }
.mn-share-more summary::marker { display: none; }
.mn-share-more summary:hover { background: #e5e7eb; transform: scale(1.1); }

.mn-share-more summary svg {
    width: 18px;
    height: 18px;
}

.mn-share-dropdown {
    position: absolute;
    bottom: 44px;
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.12);
    padding: 6px;
    min-width: 160px;
    z-index: 100;
}

.mn-share-dropdown a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 12px;
    border-radius: 6px;
    color: #374151;
    font-size: 0.9em;
    text-decoration: none;
    transition: background 0.1s;
}

.mn-share-dropdown a:hover {
    background: #f3f4f6;
    text-decoration: none;
}

.mn-share-dropdown svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}
