.author-card-minimal {
    font-family: 'Segoe UI', system-ui, sans-serif;
    max-width: 500px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    overflow: visible;
    margin: 10px 0;
    position: relative;
    border: 1px solid #f0f4f9;
}

.author-content-minimal {
    display: flex;
    padding: 5px 5px 0 5px;
    gap: 15px;
	align-items: center;
}

.author-image-minimal img {
    width: 52px;
    height: 52px !important;
    border-radius: 50% !important;
    object-fit: cover;
    border: 2px solid #f0f4f9 !important;
}

.author-info-minimal {
    flex: 1;
}

.author-header-minimal {
    display: flex;
    align-items: center;
    gap: 8px;
    position: relative;
}

.verified-badge-minimal {
    color: #1d4ed8;
    font-size: 18px;
}

.author-name-minimal {
    font-size: 18px;
    font-weight: 700;
    color: #1e293b;
    cursor: pointer;
    position: relative;
    margin: 0;
    padding: 0;
    transition: color 0.2s;
}

.author-name-minimal:hover {
    color: #1d4ed8;
}

.author-tagline-minimal {
    font-size: 14px;
    color: #64748b;
    margin: 0;
    line-height: 1.4;
}

.written-by-minimal {
    background: #efe8f5;
    border-top: 1px solid #ebebeb;
    border-radius: 0 0 12px 12px;
    padding: 2px 20px;
    text-align: center;
    font-size: 13px;
    color: #3e4147;
    font-weight: 500;
}

.author-bio-tooltip-minimal {
    position: absolute;
    top: calc(100% + 12px);
    left: 0;
    width: 280px;
    background: white;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s ease;
    z-index: 100;
    border: 1px solid #e2e8f0;
}

.author-bio-tooltip-minimal::before {
    content: '';
    position: absolute;
    bottom: 100%;
    left: 20px;
    border-width: 8px;
    border-style: solid;
    border-color: transparent transparent white transparent;
    filter: drop-shadow(0 -2px 1px rgba(0,0,0,0.05));
}

.author-name-minimal:hover ~ .author-bio-tooltip-minimal,
.author-bio-tooltip-minimal:hover {
    opacity: 1;
    visibility: visible;
}

.tooltip-header-minimal {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #f1f5f9;
}

.tooltip-header-minimal h4 {
    font-size: 16px;
    font-weight: 700;
    color: #1e293b;
    margin: 0;
}

.author-bio-tooltip-minimal p {
    font-size: 14px;
    color: #475569;
    line-height: 1.6;
    margin-bottom: 15px;
}

/* Base Social Icon Styles */
.author-social-profiles {
    display: flex;
    gap: 12px;
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid #f1f5f9;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 6px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    color: #64748b;
    font-size: 14px;
    transition: all 0.2s ease;
}

.social-icon:hover {
    transform: translateY(-2px);
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

/* Platform-Specific Hover Colors */
.social-icon-fb:hover { background: #1877F2 !important; color: white !important; }
.social-icon-ig:hover { background: #E4405F !important; color: white !important; }
.social-icon-x:hover { background: #000000 !important; color: white !important; }
.social-icon-quora:hover { background: #B92B27 !important; color: white !important; }
.social-icon-medium:hover { background: #00AB6C !important; color: white !important; }
.social-icon-tiktok:hover { background: #010101 !important; color: white !important; }

.author-stats-minimal {
    display: none;
    display: flex;
    gap: 20px;
    padding-top: 15px;
    border-top: 1px solid #f1f5f9;
}

.stat-minimal {
    font-size: 14px;
    color: #64748b;
}

.stat-minimal strong {
    color: #1d4ed8;
    font-weight: 700;
    display: block;
    margin-bottom: 3px;
}

.last-updated-minimal {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #64748b;
    background: #f8fafc;
    padding: 6px 12px;
    border-radius: 20px;
    border: 1px solid #e2e8f0;
    margin-top: 8px;
}

.last-updated-minimal i {
    color: #10b981;
    font-size: 14px;
}

.share-icons-minimal {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.share-icon-minimal {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    color: #64748b;
    font-size: 14px;
    transition: all 0.2s ease;
    cursor: pointer;
}

.share-icon-minimal:hover {
    transform: translateY(-2px);
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

/* Platform-specific colors on hover */
.share-icon-minimal:nth-child(1):hover { background: #3b5998; color: white; } /* Facebook */
.share-icon-minimal:nth-child(2):hover { background: #e1306c; color: white; } /* Instagram */
.share-icon-minimal:nth-child(3):hover { background: #bd081c; color: white; } /* Pinterest */
.share-icon-minimal:nth-child(4):hover { background: #0084ff; color: white; } /* Messenger */
.share-icon-minimal:nth-child(5):hover { background: #ea4335; color: white; } /* Email */


@media (max-width: 480px) {
    .author-bio-tooltip-minimal {
        left: 50%;
        transform: translateX(-50%);
        width: 90%;
    }
    
    .author-bio-tooltip-minimal::before {
        left: 50%;
        transform: translateX(-50%);
    }
	
	.last-updated-minimal {
        margin: 0;
    }
	
	 .share-icons-minimal {
        justify-content: center;
        gap: 3px;
    }
    .share_email {
        display: none;
    }
}