/**
 * Sol Author Info Widget Styles
 * Two-column layout with changeable background and editable icon colors
 */

.sol-author-info-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
    background: linear-gradient(135deg, #4CAF50 0%, #00783e 100%);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.sol-author-info-container:hover {
    transform: translateY(-2px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.sol-author-info-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    padding: 40px;
    width: 100%;
    max-width: 1200px;
    color: white;
    align-items: center;
}

/* Left Column - Name, Bio, Website, Wikipedia */
.sol-author-left-column {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.sol-author-name {
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    color: white;
}

.sol-author-bio {
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0;
    opacity: 0.95;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    color: white;
}

.sol-author-bio p {
    margin: 0 0 15px 0;
}

.sol-author-bio p:last-child {
    margin-bottom: 0;
}

.sol-author-links {
    display: flex;
    flex-direction: row;
    gap: 12px;
}

.sol-author-link a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 8px 0;
}

.sol-author-link a:hover {
    color: white;
    transform: translateX(5px);
}

.sol-author-link a i {
    font-size: 1.1em;
    width: 20px;
    text-align: center;
}

/* Right Column - Avatar and Social Media */
.sol-author-right-column {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    text-align: center;
}

.sol-author-avatar {
    position: relative;
}

.sol-author-avatar img {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    border: 4px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    object-fit: cover;
}

.sol-author-avatar:hover img {
    border-color: rgba(255, 255, 255, 0.6);
}

/* Social Links - Simple Icons */
.sol-social-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.sol-social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.15);
    color: white;
    font-size: 18px;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.sol-social-links a:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.6);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.sol-social-links a:active {
    transform: translateY(-1px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .sol-author-info-content {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 30px 20px;
        gap: 30px;
    }
    
    .sol-author-left-column {
        order: 2;
        align-items: center;
        text-align: center;
    }
    
    .sol-author-right-column {
        order: 1;
    }
    
    .sol-author-name {
        font-size: 2rem;
    }
    
    .sol-author-bio {
        font-size: 1rem;
    }
    
    .sol-author-avatar img {
        width: 100px;
        height: 100px;
    }
    
    .sol-social-links a {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .sol-author-links {
        align-items: center;
    }
    
    .sol-author-link a:hover {
        transform: none;
    }
}

@media (max-width: 480px) {
    .sol-author-info-container {
        min-height: 350px;
    }
    
    .sol-author-info-content {
        padding: 20px 15px;
        gap: 25px;
    }
    
    .sol-author-name {
        font-size: 1.75rem;
    }
    
    .sol-author-bio {
        font-size: 0.95rem;
    }
    
    .sol-author-avatar img {
        width: 80px;
        height: 80px;
    }
    
    .sol-social-links a {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }
}

/* Print styles */
@media print {
    .sol-author-info-container {
        background: #f8f9fa !important;
        color: #000000 !important;
        box-shadow: none !important;
        border: 1px solid #dee2e6 !important;
    }
    
    .sol-author-name,
    .sol-author-bio,
    .sol-author-link a {
        color: #000000 !important;
        text-shadow: none !important;
    }
    
    .sol-social-links {
        display: none !important;
    }
}

