
        /* Base styling for author bio box */
        .author-bio-box {
            display: flex;
            flex-direction: column;
            max-width: 100%;
            box-shadow: 0 2px 5px rgba(0,0,0,0.05);
            transition: all 0.3s ease;
        }
        
        .author-bio-box:hover {
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        
        .author-bio-header {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
        }
        
        .author-image {
            border-radius: 50%;
            margin-right: 15px;
            object-fit: cover;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        }
        
        .author-name {
            margin: 0;
            font-size: 1.3em;
            font-weight: 600;
        }
        
        .author-bio-text {
            margin-bottom: 15px;
            line-height: 1.6;
        }
        
        /* Social media icons */
        .author-social {
            display: flex;
            gap: 10px;
            margin-top: 15px;
        }
        
        .social-icon {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 36px;
            height: 36px;
            border-radius: 50%;
            background-color: #f5f5f5;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        
        .social-icon:hover {
            transform: translateY(-3px);
        }
        
        .social-icon i {
            font-size: 18px;
        }
        
        /* Specific social media brand colors on hover */
        .social-icon.twitter:hover {
            background-color: #1DA1F2;
            color: #fff !important;
        }
        
        .social-icon.facebook:hover {
            background-color: #4267B2;
            color: #fff !important;
        }
        
        .social-icon.instagram:hover {
            background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
            color: #fff !important;
        }
        
        .social-icon.linkedin:hover {
            background-color: #0077B5;
            color: #fff !important;
        }
        
        .social-icon.pinterest:hover {
            background-color: #E60023;
            color: #fff !important;
        }
        
        /* Responsive design */
        @media (max-width: 600px) {
            .author-bio-header {
                flex-direction: column;
                text-align: center;
            }
            
            .author-image {
                margin-right: 0;
                margin-bottom: 10px;
            }
            
            .social-icon {
                width: 32px;
                height: 32px;
            }
            
            .social-icon i {
                font-size: 16px;
            }
        }
        