.author-posts-wrapper {
    max-width: 100%;
    margin: 0 auto;
}

.author-post {
    border-bottom: 1px solid RGB(0, 0, 0, .1);
    padding: 40px 0;
}

.post-title {
    font-family: Montserrat, sans-serif;
    font-weight: 600;
    font-size: 32px;
    line-height: 1.2;
}

.post-title a {
    text-decoration: none !important;
    color: #006f96 !important;
    font-weight: 600 !important;
}

.post-title a:hover {
    color: #006f96;
}

.post-date {
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
}

.post-content {
    display: flex;
    gap: 20px;
}

.post-image {
    flex: 1;
}

.post-image img {
    max-width: 100%;
    height: auto;
    border-radius: 5px;
}

.post-excerpt {
    flex: 2;
}

.post-excerpt a.read-more {
    font-family: Montserrat, sans-serif;
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 1px;
    text-align: center;
    text-transform: uppercase;
    border: 1px solid #FF8300;
    background-color: #FF8300;
    border-radius: 50px;
    padding: 13px 20px;
    color: #ffffff;
    display: inline-block;
}

.post-excerpt a.read-more:hover {
    background-color: #ffffff;
    color: #FF8300;
}

.author-posts-pagination {
    text-align: center;
    margin-top: 20px;
}

.load-more-posts {
    padding: 10px 20px;
    background-color: transparent;
    color: #0073aa;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    text-transform: uppercase;
    font-weight: 600;
}

.load-more-posts:hover {
    text-decoration: underline;
}

.load-more-posts:disabled {
    cursor: not-allowed;
}

/* Responsive design */
@media (max-width: 768px) {
    .post-content {
        flex-direction: column;
    }

    .post-image,
    .post-excerpt {
        flex: 1;
    }
}