/* ============ AUTHOR PROFILE PAGE ============ */

/* ----- Left card ----- */
.author-card {
    background: #fff;
    border: 1px solid #eef0f6;
    border-radius: 16px;
    padding: 32px 24px;
    box-shadow: 0 6px 24px rgba(30, 55, 145, 0.06);
}

.author-photo-ring {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    padding: 5px;
    background: linear-gradient(135deg, #16a085, #1565d8);
}

.author-photo-ring img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #fff;
}

.author-name {
    font-size: 24px;
    font-weight: 700;
    color: #1c2430;
    text-transform: capitalize;
}

.verified-expert {
    color: #16a34a;
    font-weight: 600;
    font-size: 15px;
}

.verified-expert i {
    margin-right: 4px;
}

.articles-badge {
    display: inline-block;
    background: #eef3ff;
    color: #1565d8;
    font-weight: 600;
    font-size: 14px;
    padding: 8px 18px;
    border-radius: 50px;
    border: 1px solid #dbe6ff;
}

.author-designation {
    color: #5b6472;
    font-size: 14px;
    line-height: 1.6;
}

.author-divider {
    margin: 22px auto 0;
    width: 70%;
    border-color: #e5e8ef;
}

/* ----- Right About box ----- */
.about-box {
    background: #e9edfb;
    border-radius: 16px;
    padding: 32px 36px;
    height: 100%;
}

.about-title {
    color: #1348d4;
    font-weight: 800;
    font-size: 30px;
}

.all-blogs-btn {
    background: #fff;
    color: #1348d4;
    font-weight: 600;
    font-size: 14px;
    padding: 9px 20px;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(20, 60, 180, 0.10);
    transition: all .25s ease;
    display: inline-flex;
    align-items: center;
}

.all-blogs-btn:hover {
    background: #1348d4;
    color: #fff;
}

.about-text {
    color: #3c4453;
    font-size: 16px;
    line-height: 1.8;
}

.follow-label {
    font-weight: 700;
    color: #1348d4;
    font-size: 15px;
}

.social-circle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    background: #fff;
    color: #0a66c2;
    border-radius: 50%;
    font-size: 18px;
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(20, 60, 180, 0.12);
    transition: all .25s ease;
}

.social-circle:hover {
    background: #0a66c2;
    color: #fff;
}

/* ----- Author blog cards ----- */
.author-blog-card {
    background: #fff;
    border: 1px solid #eef0f6;
    border-radius: 12px;
    overflow: hidden;
    transition: all .25s ease;
}

.author-blog-card img {
    height: 180px;
    object-fit: cover;
}

.author-blog-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 26px rgba(30, 55, 145, 0.10);
}

.blog-card-title {
    color: #1c2430;
    font-weight: 600;
    line-height: 1.45;
    margin-bottom: 6px;
}

/* ----- Responsive ----- */
@media (max-width: 991px) {
    .about-box {
        padding: 24px 20px;
    }

    .about-title {
        font-size: 24px;
    }
}