/* frontend.css */

.datanove-top-posts-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.top-post-item {
    display: flex;
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
    padding-bottom: 20px;
}

.top-post-thumbnail {
    flex: 0 0 100px;
    margin-right: 15px;
}

.top-post-thumbnail img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 4px;
}

.top-post-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.top-post-content h3 {
    margin: 0 0 10px 0;
    font-size: 18px;
}

.top-post-content h3 a {
    color: #333;
    text-decoration: none;
}

.top-post-content h3 a:hover {
    color: #0073aa;
}

.view-count {
    font-size: 14px;
    color: #666;
    margin-top: auto;
}

/* Responsive styles */
@media (max-width: 600px) {
    .top-post-item {
        flex-direction: column;
    }

    .top-post-thumbnail {
        flex: 0 0 auto;
        margin-right: 0;
        margin-bottom: 10px;
    }

    .top-post-thumbnail img {
        width: 100%;
        max-height: 200px;
    }

    .top-post-content h3 {
        font-size: 16px;
    }
}
