/* Custom Author Bio Plugin Styles */
.custom-author-bio {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 25px;
    margin: 30px 0;
    display: flex;
    gap: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: box-shadow 0.3s ease;
}

.custom-author-bio:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.author-avatar {
    flex-shrink: 0;
}

.author-avatar img {
    border-radius: 50%;
    border: 3px solid #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.author-avatar img:hover {
    transform: scale(1.05);
}

.author-info {
    flex: 1;
}

.author-name {
    margin: 0 0 10px 0;
    font-size: 1.4em;
    color: #2c3e50;
    font-weight: 600;
}

.author-name a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.author-name a:hover {
    color: #3498db;
}

.author-description {
    color: #666;
    line-height: 1.6;
    margin: 0 0 15px 0;
    font-size: 0.95em;
}

.author-links {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.author-links a {
    display: inline-block;
    padding: 6px 12px;
    background: #3498db;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-size: 0.85em;
    font-weight: 500;
    transition: all 0.3s ease;
}

.author-links a:hover {
    background: #2980b9;
    transform: translateY(-1px);
}

.author-links .author-website {
    background: #27ae60;
}

.author-links .author-website:hover {
    background: #229954;
}

.author-social {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.author-social a {
    display: inline-flex;
    align-items: center;
    padding: 5px 10px;
    border-radius: 20px;
    text-decoration: none;
    font-size: 0.8em;
    font-weight: 500;
    transition: all 0.3s ease;
    color: white;
}

.social-twitter {
    background: #1da1f2;
}

.social-twitter:hover {
    background: #0d8bd9;
}

.social-facebook {
    background: #4267b2;
}

.social-facebook:hover {
    background: #365899;
}

.social-linkedin {
    background: #0077b5;
}

.social-linkedin:hover {
    background: #005885;
}

.social-instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-instagram:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}

/* Mobile responsive */
@media (max-width: 768px) {
    .custom-author-bio {
        flex-direction: column;
        text-align: center;
        padding: 20px;
        gap: 15px;
    }
    
    .author-avatar {
        align-self: center;
    }
    
    .author-links {
        justify-content: center;
    }
    
    .author-social {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .custom-author-bio {
        padding: 15px;
        margin: 20px 0;
    }
    
    .author-name {
        font-size: 1.2em;
    }
    
    .author-links a,
    .author-social a {
        font-size: 0.8em;
        padding: 5px 8px;
    }
}