/* custom-posts-styles.css */
.custom-posts-plugin {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
}

.custom-post {
    border: 2px solid #ddd;
    border-radius: 15px;
    padding: 15px;
    margin-bottom: 20px;
    background-color: #f9f9f9;
}

.custom-post-details {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.custom-author-avatar img {
    max-width: 50px;
    height: auto;
    margin-right: 10px;
    border-radius: 50%;
}

.custom-post-author {
    font-weight: bold;
    margin: 0;
}

.custom-post-content {
    margin-bottom: 10px;
}

.read-more-link {
    text-decoration: none;
    color: #0073e5;
    display: block;
    font-weight: bold;
    margin-top: 10px;
}

.custom-post-divider {
    display: none; /* Remove this line to keep dividers */
}

.show-less-button {
    display: none;
}
