.posts-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    list-style: none;
    padding: 0;
}

.post-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    border: 1px solid #ddd;
    padding: 15px;
    border-radius: 8px;
}

.post-thumbnail {
    width: 100%;
    max-width: 125px;
    height: auto;
    border-radius: 8px;
    margin-right: 15px;
}

.post-title {
    font-size: 18px;
    font-weight: bold;
    text-decoration: none;
    color: #333;
}

.post-meta {
    font-size: 14px;
    color: #666;
}

@media (max-width: 768px) {
    .posts-grid {
        grid-template-columns: 1fr;
    }
    
    .post-item {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .post-thumbnail {
        margin-right: 0;
        margin-bottom: 10px;
        max-width: 100%;
    }
}