.clpg-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    padding: 20px 0;
}

.clpg-item {
    background: #fff;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    text-align: center;
}

.clpg-item img {
    width: 100%;
    border-radius: 6px;
    margin-bottom: 12px;
}

.clpg-item h3 {
    margin: 0;
    font-size: 1.1em;
    color: #333;
}