#headerimg {
  display: none;
}

.cauthorship-author {
    max-width: 100%;
    width: 100%;
}

.cauthorship-author .container {
    max-width: 1360px;
    margin: 0 auto;
    padding: 20px;
}

.cauthorship-author h2 {
    margin-top: 0;
    margin-bottom: 20px;
}

.cauthorship-author .ca-box {
    background: #fff;
    padding: 20px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 30px;
}

.cauthorship-author .cauthorship-author__box {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 30px;
}

.cauthorship-author .cauthorship-author__image {
    flex: 0 0 150px;
    height: 150px;
    overflow: hidden;
    border-radius: 50%;
    border-radius: 1px solid #c3c3c3;
}

.cauthorship-author .cauthorship-author__image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.cauthorship-author .expertise-list {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    list-style: none;
    padding: 0;
}

.cauthorship-author .socials {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    list-style: none;
    padding: 0;
}

.cauthorship-author .socials svg {
    width: 25px;
    height: 25px;
    transition: all 0.3s ease-in-out;
}

.cauthorship-author .socials a:hover svg{
    fill: #0073aa;
    transform: translateY(-2px);
}

.cauthorship-author .author-posts article {
    border-bottom: 1px solid #e1e1e1;
    padding: 15px 0;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.cauthorship-author .author-posts .post-img {
    flex: 0 0 100%;
    height: 200px;
    overflow: hidden;
    border-radius: 8px;
    border: 1px solid #c3c3c3;
}

.cauthorship-author .author-posts .post-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cauthorship-author .author-posts h3 {
    margin: 0 0 20px 0;
}

.cauthorship-author .title {
    display: flex;
    gap: 50px;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.cauthorship-author .title h2 {
    margin-bottom: 0;
}

.cauthorship-author .title p {
    display: none;
}

.cauthorship-author .author-post__excerpt {
    margin-bottom: 30px;
}

.cauthorship-author .author-posts a {
    text-decoration: none;
}

.cauthorship-author .author-post__meta {
   display: flex;
   flex-wrap: wrap;
   gap: 20px;
   font-size: 14px;
}

.cauthorship-author .pagination .navigation {
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    margin: 20px 0;
}

.cauthorship-author .pagination .nav-links .page-numbers {
    background: #fff;
    border: 1px solid #ccc;
    border-radius: 4px;
    text-decoration: none;
    padding: 10px 15px;
    margin: 0 5px;
    transition: all 0.3s ease;
}

.cauthorship-author .pagination .nav-links {
    display: flex;
}

.cauthorship-author .pagination .nav-links .page-numbers:hover {
    background: #000000;
    color: #fff;
}

.cauthorship-author .pagination .nav-links .page-numbers.current {
    background: #000000;
    color: #fff;
    border: 1px solid #000000;
}

@media screen and (min-width: 768px) {
    .cauthorship-author .author-posts article {
      flex-wrap: nowrap;
    }

    .cauthorship-author .author-posts .post-img {
        flex: 0 0 100px;
        height: 100px;
    }

    .cauthorship-author .ca-box {
        padding: 50px;
    }
}