.blogShare {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 26px;
    background: #FAFAFB;
    border: 1px solid rgba(5, 7, 60, 0.06);
    border-radius: 16px;
}

.blogShare__label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: var(--color-dark-1, #05073C);
    font-size: 15px;
}

.blogShare__label i {
    color: var(--color-accent-1, #EB662B);
    font-size: 16px;
}

.social-share {
    display: flex;          /* Flexbox for horizontal layout */
    flex-wrap: wrap;        /* Allow wrapping on narrow screens */
    gap: 10px;              /* Space between icons */
    align-items: center;    /* Vertically center icons */
}

.social-icon {
    display: inline-block; /* Ensures proper alignment */
}

.social-icon a {
    display: inline-flex;  /* Better icon alignment */
    align-items: center;
    justify-content: center;
    color: #717171;
    transition: transform 0.25s ease, background-color 0.25s ease, color 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid rgba(5, 7, 60, 0.08);
    box-shadow: 0 4px 10px rgba(5, 7, 60, 0.04);
    font-size: 16px;
}

.social-icon a:hover {
    transform: translateY(-4px);
    color: #fff;
    border-color: transparent;
    box-shadow: 0 10px 20px rgba(5, 7, 60, 0.16);
}

/* Platform-specific hover colors */
.social-icon a[href*="facebook.com"]:hover { background: #1877F2; }
.social-icon a[href*="twitter.com"]:hover { background: #1DA1F2; }
.social-icon a[href*="linkedin.com"]:hover { background: #0077B5; }
.social-icon a[href*="mailto:"]:hover { background: var(--color-accent-1, #EB662B); }
.social-icon a[href*="reddit.com"]:hover { background: #FF4500; }
.social-icon a[href*="t.me"]:hover { background: #26A5E4; }
.social-icon a[href*="whatsapp.com"]:hover { background: #25D366; }

@media (max-width: 575px) {
    .blogShare {
        flex-direction: column;
        align-items: flex-start;
        padding: 18px 20px;
    }
}
