.post-list-widget {
    max-width: 1200px;
    margin: 0 auto;
}

.post-list-filter {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.post-list-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}

.post-list-item {
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.post-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.post-list-item:hover .post-thumbnail img {
    transform: scale(1.05);
}

.post-content {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.post-title {
    margin: 0;
    transition: color 0.3s ease;
}

.post-excerpt {
    flex-grow: 1;
}

.read-more-btn {
    display: inline-block;
    align-self: flex-start;
    transition: all 0.3s ease;
}

/* Responsive */
@media (max-width: 767px) {
    .post-list-grid {
        grid-template-columns: 1fr;
    }
}