.custom-posts-grid {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(3, 1fr);
}
.cpg-item {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 8px;
    overflow: hidden;
    padding: 20px;
}
.cpg-thumb img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 4px;
    margin-bottom: 15px;
}
.cpg-title {
    font-size: 20px;
    margin: 0 0 10px;
}
.cpg-title a {
    text-decoration: none;
    color: #333;
}
.cpg-excerpt {
    font-size: 18px;
    color: #666;
}