.latest-posts-grid-Gutenberg {
margin: 20px auto;
max-width: 1200px;
padding: 0 15px;
}

.latest-posts-grid-Gutenberg > .posts-grid-container {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 20px;
}

.latest-posts-grid-Gutenberg > .posts-grid-container > .post-grid-item {
background: #fff;
border: 1px solid #ddd;
border-radius: 5px;
overflow: hidden;
transition: transform 0.2s;
}

.post-grid-item:hover {
transform: translateY(-5px);
}

.latest-posts-grid-Gutenberg > .posts-grid-container > .post-grid-item > .post-thumbnail img {
width: 100%;
height: auto;
}

.latest-posts-grid-Gutenberg > .posts-grid-container > .post-grid-item > .post-content {
padding: 15px;
}

.latest-posts-grid-Gutenberg > .posts-grid-container > .post-grid-item > .post-title {
font-size: 18px;
margin: 10px 0;
}

.latest-posts-grid-Gutenberg > .posts-grid-container > .post-grid-item > .post-excerpt {
font-size: 14px;
color: #666;
}