    .author-page-wrapper {
        max-width: 1200px;
        margin: 0 auto;
        padding: 40px 20px;
    }

    /* En-tête auteur */
    .author-header {
        background-color: #ffffff;
        border: 1px solid #e0e0e0;
        border-radius: 8px;
        padding: 40px;
        margin-bottom: 40px;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    }

    .author-header-content {
        display: flex;
        align-items: center;
        gap: 30px;
    }

    .author-header-avatar img {
        border-radius: 50%;
        width: 150px;
        height: 150px;
        object-fit: cover;
        border: 4px solid #e65f0d;
    }

    .author-header-info {
        flex: 1;
    }

    .author-header-name {
        font-size: 2.5rem;
        font-weight: bold;
        color: #1a1a1a;
        margin-bottom: 15px;
        position: relative;
        padding-left: 15px;
    }

    .author-header-name::before {
        content: "";
        display: inline-block;
        width: 5px;
        background-color: #e65f0d;
        position: absolute;
        left: -5px;
        height: calc(100% - 0.4em);
        top: 50%;
        transform: translateY(-50%);
    }

    .author-header-bio {
        font-size: 1.1rem;
        line-height: 1.6;
        color: #555;
        margin-bottom: 10px;
    }

    .author-header-count {
        font-size: 0.95rem;
        color: #888;
        font-weight: 600;
    }

    /* Grille des articles */
    .author-posts-section {
        margin-top: 40px;
    }

    .author-posts-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
        margin-bottom: 40px;
    }

    .author-post-card {
        background: white;
        border-radius: 8px;
        overflow: hidden;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }


    .author-post-link {
        text-decoration: none;
        color: inherit;
        display: block;
    }

    .author-post-thumbnail {
        height: 200px;
        overflow: hidden;
    }

    .author-post-thumbnail img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.3s ease;
    }


    .author-post-content {
        padding: 20px;
    }

    .author-post-title {
        font-size: 1.2rem;
        font-weight: bold;
        color: #1a1a1a;
        margin-bottom: 10px;
        line-height: 1.4;
    }

    .author-post-meta {
        display: flex;
        gap: 15px;
        font-size: 0.85rem;
        color: #666;
        margin-bottom: 10px;
    }

    .author-post-date,
    .author-post-category {
        display: flex;
        align-items: center;
        gap: 5px;
    }

    .author-post-category {
        background-color: #f0f0f0;
        padding: 3px 8px;
        border-radius: 4px;
        font-weight: 600;
    }

    .author-post-breve {
        background-color: #e65f0d;
        color: #ffffff;
    }

    .author-post-excerpt {
        font-size: 0.95rem;
        line-height: 1.6;
        color: #555;
    }

    /* Pagination */
    .author-pagination {
        display: flex;
        justify-content: center;
        margin-top: 40px;
    }

    .author-pagination ul {
        display: flex;
        gap: 10px;
        list-style: none;
        padding: 0;
    }

    .author-pagination li {
        display: inline-block;
    }

    .author-pagination a,
    .author-pagination .current {
        display: block;
        padding: 10px 15px;
        background-color: #f0f0f0;
        color: #1a1a1a;
        text-decoration: none;
        border-radius: 5px;
        transition: all 0.3s ease;
    }

    .author-pagination a:hover {
        background-color: #e65f0d;
        color: white;
    }

    .author-pagination .current {
        background-color: #e65f0d;
        color: white;
        font-weight: bold;
    }

    .no-posts {
        text-align: center;
        font-size: 1.2rem;
        color: #666;
        padding: 40px 0;
    }

    /* Responsive */
    @media (max-width: 1024px) {
        .author-posts-grid {
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
        }
    }

    @media (max-width: 768px) {
        .author-page-wrapper {
            padding: 20px 15px;
        }

        .author-header {
            padding: 30px 20px;
        }

        .author-header-content {
            flex-direction: column;
            text-align: center;
        }

        .author-header-avatar img {
            width: 120px;
            height: 120px;
        }

        .author-header-name {
            font-size: 1.8rem;
        }

        .author-posts-grid {
            grid-template-columns: 1fr;
            gap: 20px;
        }

        .author-post-thumbnail {
            height: 180px;
        }
    }
