/**
 * Author Profile Styles
 * ToolsAIApp Theme
 */

/* ============================================
   Author Profile Hero
   ============================================ */
.author-profile-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 60px 0;
    margin-bottom: 40px;
}

.author-profile-card {
    display: flex;
    align-items: center;
    gap: 32px;
    background: white;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.author-avatar-large img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 4px solid #667eea;
    object-fit: cover;
}

.author-profile-info {
    flex: 1;
}

.author-name {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 12px;
}

.author-bio {
    font-size: 1.125rem;
    line-height: 1.7;
    color: #6b7280;
    margin-bottom: 24px;
}

.author-bio-empty {
    font-size: 1.125rem;
    color: #9ca3af;
    font-style: italic;
    margin-bottom: 24px;
}

.author-meta-stats {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}

.author-stat {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.938rem;
    color: #4b5563;
}

.author-stat svg {
    color: #667eea;
    flex-shrink: 0;
}

.author-stat strong {
    color: #1f2937;
    font-weight: 600;
}

.author-website {
    color: #667eea;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

.author-website:hover {
    color: #5568d3;
    text-decoration: underline;
}

/* ============================================
   Author Tools Section
   ============================================ */
.author-tools-section {
    padding: 40px 0 80px;
}

.author-tools-section .section-title {
    text-align: center;
    margin-bottom: 48px;
}

.author-tools-section .section-title h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 8px;
}

.author-tools-section .section-title p {
    font-size: 1rem;
    color: #6b7280;
}

/* No Tools Message */
.no-tools-message {
    text-align: center;
    padding: 80px 40px;
    background: #f9fafb;
    border-radius: 16px;
    border: 2px dashed #d1d5db;
}

.no-tools-message svg {
    color: #9ca3af;
    margin-bottom: 24px;
}

.no-tools-message h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #374151;
    margin-bottom: 12px;
}

.no-tools-message p {
    font-size: 1rem;
    color: #6b7280;
    margin-bottom: 24px;
}

/* ============================================
   Responsive Design
   ============================================ */
@media (max-width: 768px) {
    .author-profile-hero {
        padding: 40px 0;
    }

    .author-profile-card {
        flex-direction: column;
        text-align: center;
        padding: 32px 24px;
        gap: 24px;
    }

    .author-avatar-large img {
        width: 100px;
        height: 100px;
    }

    .author-name {
        font-size: 2rem;
    }

    .author-bio {
        font-size: 1rem;
    }

    .author-meta-stats {
        justify-content: center;
        gap: 20px;
    }

    .author-stat {
        font-size: 0.875rem;
    }

    .author-tools-section .section-title h2 {
        font-size: 1.5rem;
    }

    .no-tools-message {
        padding: 60px 24px;
    }
}
