.posts-grid-e899ab6b {
    display: grid;
    grid-template-columns: repeat(var(--grid-columns, 3), 1fr);
    gap: 20px;
}
.posts-grid-card-e899ab6b {
    background: #fff;
    border: 1px solid #eaeaea;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}
.posts-grid-card-e899ab6b:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}
.posts-grid-thumbnail-e899ab6b {
    position: relative;
    aspect-ratio: 16/9;
    overflow: hidden;
    background: #f0f0f0;
}
.posts-grid-thumbnail-e899ab6b img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.posts-grid-content-e899ab6b {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}
.posts-grid-title-e899ab6b {
    margin: 0 0 10px 0;
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 1.4;
}
.posts-grid-title-e899ab6b a {
    color: inherit;
    text-decoration: none;
}
.posts-grid-excerpt-e899ab6b {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
    flex-grow: 1;
}
.posts-grid-more-e899ab6b {
    display: inline-flex;
    align-items: center;
    font-weight: 500;
    font-size: 0.9rem;
    text-decoration: none;
    color: #3b82f6;
    margin-top: auto;
}
@media (max-width: 1024px) {
    .posts-grid-e899ab6b {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 768px) {
    .posts-grid-e899ab6b {
        grid-template-columns: 1fr;
    }
}
