.author-page {
    background: #ffffff;
}

.author-hero {
    padding: 60px 20px 56px;
    background: #ffffff;
    border-bottom: 1px solid #f1f5f9;
}

.author-hero-inner {
    display: flex;
    align-items: flex-start;
    gap: 40px;
}

.author-hero-avatar-wrap {
    flex-shrink: 0;
}

.author-hero-img {
    width: 120px !important;
    height: 120px !important;
    border-radius: 50% !important;
    object-fit: cover;
    display: block;
    border: 3px solid #f1f5f9;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.author-hero-body {
    display: flex;
    flex-direction: column;
    gap: 10px;
    min-width: 0;
    padding-top: 4px;
}

.author-hero-label {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #618cfb;
}

.author-hero-name {
    font-size: 38px;
    font-weight: 800;
    line-height: 1.15;
    color: rgb(25, 42, 61);
    margin: 0;
}

.author-hero-title {
    font-size: 15px;
    font-weight: 500;
    color: rgb(58, 79, 102);
    margin: 0;
}

.author-hero-bio {
    font-size: 15px;
    line-height: 1.7;
    color: rgb(58, 79, 102);
    margin: 4px 0 0;
    max-width: 640px;
}

.author-hero-footer {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 6px;
}

.author-post-count {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 500;
    color: #94a3b8;
}

.author-post-count svg {
    color: #cbd5e1;
    flex-shrink: 0;
}

.author-social-links {
    display: flex;
    align-items: center;
    gap: 8px;
}

.author-social-btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 8px 16px;
    border-radius: 40px;
    font-size: 13px;
    font-weight: 500;
    font-family: 'Poppins', sans-serif;
    text-decoration: none;
    transition: opacity 0.15s ease, transform 0.15s ease;
    white-space: nowrap;
}

.author-social-btn:hover {
    opacity: 0.88;
    transform: translateY(-1px);
}

.author-social-linkedin {
    background: #0a66c2;
    color: #ffffff;
}

.author-social-twitter {
    background: #000000;
    color: #ffffff;
}

.author-posts-section {
    padding: 56px 20px 80px;
    background: #fafafa;
}

.author-posts-heading {
    font-size: 22px;
    font-weight: 700;
    color: rgb(25, 42, 61);
    margin: 0 0 36px;
}

.author-load-more-wrap {
    display: flex;
    justify-content: center;
    margin-top: 52px;
}

.author-load-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 36px;
    background: transparent;
    border: 1.5px solid #d1d5db;
    border-radius: 40px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: rgb(25, 42, 61);
    cursor: pointer;
    transition: border-color 0.15s ease, background 0.15s ease, color 0.15s ease;
}

.author-load-more-btn:hover {
    border-color: rgb(25, 42, 61);
    background: rgb(25, 42, 61);
    color: #ffffff;
}

.author-load-more-btn:disabled {
    opacity: 0.55;
    cursor: not-allowed;
    border-color: #d1d5db;
    background: transparent;
    color: rgb(25, 42, 61);
}

@media (max-width: 640px) {
    .author-hero {
        padding: 40px 20px 44px;
    }

    .author-hero-inner {
        flex-direction: column;
        gap: 20px;
        align-items: center;
        text-align: center;
    }

    .author-hero-name {
        font-size: 28px;
    }

    .author-hero-bio {
        font-size: 14px;
    }

    .author-hero-footer {
        justify-content: center;
    }

    .author-posts-section {
        padding: 40px 20px 60px;
    }

    .author-load-more-btn {
        width: 100%;
        justify-content: center;
    }
}