.custom-post-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    padding: 10px 0;
}

.custom-post-item {
    border: 1px solid #ddd;
    padding: 10px;
    border-radius: 8px;
    background: #fff;
    text-align: center;
    transition: box-shadow 0.3s;
}

.custom-post-item:hover {
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.custom-post-item img {
    max-width: 100%;
    height: auto;
    border-radius: 6px;
    margin-bottom: 10px;
}

.post-title {
    font-size: 16px;
    margin: 0;
}

.post-title a {
    color: #333;
    text-decoration: none;
}

.post-title a:hover {
    text-decoration: underline;
}