.ece-post-list-ordered-item {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
    display: flex; /* Use flexbox for layout */
    align-items: center; /* Align items to the top */
}

.ece-post-list-ordered-thumbnail {
    flex-shrink: 0; /* Prevent thumbnail from shrinking */
    margin-right: 15px; /* Space between thumbnail and content */
}

.ece-post-list-ordered-thumbnail img {
    width: 80px; /* Adjust thumbnail size as needed */
    height: auto;
    display: block;
    border-radius: 4px;
}

.ece-post-list-ordered-content {
    flex-grow: 1; /* Allow content to take remaining space */
}

.ece-post-list-ordered-category {
    font-size: 16px;
    color: #999;
    margin-bottom: 5px;
    display: block; /* Ensure category name takes its own line */
    font-weight: 700;
}

.ece-post-list-ordered-link {
    text-decoration: none;
    color: #333;
}

.ece-post-list-ordered-title {
    font-size: 18px;
    font-weight: 600;
    margin: 0;
}