/* Author Detail Page Styles */

.author_detail_area {
    padding: 80px 0;
    background: #f8f9fa;
}

.author_profile_card {
    background: #fff;
    border-radius: 12px;
    padding: 60px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
}

/* Author Avatar Section */
.author_avatar_section {
    display: flex;
    justify-content: flex-start;
    margin-bottom: 30px;
}

.author_avatar_large {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

/* Author Name Section */
.author_name_section {
    text-align: left;
    margin-bottom: 30px;
}

.author_name_section h2 {
    font-size: 36px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.author_title {
    font-size: 18px;
    color: #1e73be;
    font-weight: 500;
    margin: 0;
}

/* Author Bio Summary */
.author_bio_summary {
    margin-bottom: 50px;
    padding-bottom: 40px;
    border-bottom: 2px solid #e9ecef;
}

.author_bio_summary p {
    font-size: 17px;
    line-height: 1.8;
    color: #555;
    text-align: left;
}

/* Author Detail Content */
.author_detail_content {
    margin-bottom: 50px;
}

.author_section {
    margin-bottom: 40px;
}

.author_section h3 {
    font-size: 26px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 3px solid #1e73be;
    display: inline-block;
}

.author_section p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 15px;
    text-align: left;
}

/* Expertise List */
.expertise_list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.expertise_list li {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 15px;
    padding-left: 35px;
    position: relative;
    text-align: left;
}

.expertise_list li i {
    position: absolute;
    left: 0;
    top: 2px;
    font-size: 22px;
    color: #1e73be;
}

.expertise_list li strong {
    color: #1a1a1a;
    font-weight: 600;
}

/* Project List */
.project_list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.project_list li {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
    text-align: left;
}

.project_list li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #1e73be;
    font-size: 24px;
    line-height: 1.5;
}

/* Achievement List */
.achievement_list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.achievement_list li {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 15px;
    padding-left: 35px;
    position: relative;
    text-align: left;
}

.achievement_list li i {
    position: absolute;
    left: 0;
    top: 2px;
    font-size: 22px;
    color: #f39c12;
}

/* Certifications */
.certifications {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 20px;
}

.cert_badge {
    display: inline-block;
    padding: 10px 20px;
    background: #f0f7ff;
    color: #1e73be;
    font-weight: 600;
    font-size: 14px;
    border-radius: 6px;
    border: 2px solid #1e73be;
    transition: all 0.3s ease;
}

.cert_badge:hover {
    background: #1e73be;
    color: #fff;
}

/* Contact CTA */
.author_contact_cta {
    background: linear-gradient(135deg, #1e73be 0%, #155a8a 100%);
    padding: 40px;
    border-radius: 10px;
    text-align: center;
    color: #fff;
}

.author_contact_cta h3 {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #fff;
}

.author_contact_cta p {
    font-size: 16px;
    margin-bottom: 25px;
    color: rgba(255, 255, 255, 0.9);
}

.contact_btn {
    display: inline-block;
    padding: 14px 40px;
    background: #fff;
    color: #1e73be;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 30px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.contact_btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    color: #155a8a;
}

/* Responsive Design */
@media (max-width: 768px) {
    .author_profile_card {
        padding: 30px 20px;
    }

    .author_avatar_large {
        width: 150px;
        height: 150px;
    }

    .author_name_section h2 {
        font-size: 28px;
    }

    .author_title {
        font-size: 16px;
    }

    .author_bio_summary p {
        font-size: 15px;
    }

    .author_section h3 {
        font-size: 22px;
    }

    .author_section p,
    .expertise_list li,
    .project_list li,
    .achievement_list li {
        font-size: 15px;
    }

    .author_contact_cta {
        padding: 30px 20px;
    }

    .author_contact_cta h3 {
        font-size: 24px;
    }

    .certifications {
        gap: 10px;
    }

    .cert_badge {
        font-size: 12px;
        padding: 8px 15px;
    }
}
