.wise-post-list {
    width: 100%;
}

.wise-post-list .post-item {
    display: flex;
    margin-bottom: 30px;
    padding: 20px;
    border: 1px solid #eee;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.wise-post-list .post-item:hover {
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.wise-post-list .post-thumbnail {
    flex: 0 0 200px;
    margin-right: 20px;
}

.wise-post-list .post-thumbnail img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 4px;
}

.wise-post-list .post-content {
    flex: 1;
}

.wise-post-list .post-title {
    margin: 0 0 10px;
    font-size: 20px;
    line-height: 1.4;
}

.wise-post-list .post-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.wise-post-list .post-title a:hover {
    color: #007bff;
}

.wise-post-list .post-meta {
    margin-bottom: 10px;
    font-size: 14px;
    color: #666;
}

.wise-post-list .post-meta span {
    margin-right: 15px;
}

.wise-post-list .post-meta span:last-child {
    margin-right: 0;
}

.wise-post-list .post-excerpt {
    font-size: 15px;
    line-height: 1.6;
    color: #666;
}

/* Responsive Styles */
@media (max-width: 767px) {
    .wise-post-list .post-item {
        flex-direction: column;
    }

    .wise-post-list .post-thumbnail {
        flex: 0 0 auto;
        margin-right: 0;
        margin-bottom: 15px;
    }

    .wise-post-list .post-thumbnail img {
        height: 200px;
    }
} 