/* ============================================================
   Mint Share Widget  —  mint-share.css
   Self-contained. Works independently of blog-post.css.
   ============================================================ */

.mint-share-widget {
    margin: 32px 0;
    padding: 24px 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.msw-inner {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* Label */
.msw-label {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: #0f3d57;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Button row */
.msw-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
}

/* Base button */
.msw-btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 9px 18px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    font-family: inherit;
    text-decoration: none;
    color: #fff;
    border: none;
    cursor: pointer;
    transition: opacity 0.2s, transform 0.2s;
    background-color: #0f3d57 !important;
    line-height: 1;
}

.msw-btn:hover {
    opacity: 0.85;
    transform: translateY(-2px);
    text-decoration: none;
    color: #fff;
}

.msw-btn i {
    font-size: 15px;
}

/* Platform colours */
.msw-facebook  { background: #1877F2; }
.msw-twitter   { background: #1DA1F2; }
.msw-whatsapp  { background: #25D366; }
.msw-linkedin  { background: #0A66C2; }
.msw-instagram { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.msw-copy      { background: #0f3d57; }

/* ── Responsive ── */

/* Hide text labels on small tablets */
@media (max-width: 600px) {
    .msw-btn span {
        display: none;
    }

    .msw-btn {
        padding: 10px 13px;
        border-radius: 50%;
        width: 40px;
        height: 40px;
        justify-content: center;
    }

    .msw-btn i {
        font-size: 16px;
    }

    .msw-buttons {
        gap: 8px;
    }
}

/* Show "Copied!" text even on mobile */
@media (max-width: 600px) {
    .msw-copy-label {
        display: none;
    }

    .msw-copy.copied .msw-copy-label {
        display: inline;
        font-size: 11px;
    }
}

@media (max-width: 380px) {
    .msw-btn {
        width: 36px;
        height: 36px;
        padding: 8px;
    }
}
