.pcg-grid {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(2, 1fr);
    margin-bottom: 30px;
}

@media (min-width: 768px) {
    .pcg-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.pcg-item {
    display: block;
    text-align: center;
    background: #fff;
    border-radius: 8px;
    padding: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

.pcg-item:hover {
    transform: scale(1.03);
    box-shadow: 0 8px 16px rgba(0,0,0,0.15);
}

.pcg-item img,
.pcg-placeholder {
    width: 100%;
    height: 140px;
    object-fit: cover;
    border-radius: 6px;
    display: block;
}

.pcg-placeholder {
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-weight: bold;
    font-size: 18px;
}

.pcg-item h4 {
    margin-top: 10px;
    font-size: 16px;
}

#pcg-load-more-wrap {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
}

#pcg-load-more {
    padding: 10px 20px;
    font-size: 16px;
    background: #0073aa;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
}

#pcg-load-more:hover {
    background: #005f8d;
}