.csr-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 16px;
}
.csr-gallery-item {
    margin: 0;
    overflow: hidden;
    border-radius: 8px;
}
.csr-gallery-item a {
    display: block;
    cursor: pointer;
    border-radius: 8px 8px 0 0;
    overflow: hidden;
}
.csr-gallery-item img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.35s ease;
}
.csr-gallery-item:hover img {
    transform: scale(1.08);
}
.csr-gallery-item figcaption {
    padding: 8px 10px;
    font-size: 0.9rem;
    font-weight: 500;
    text-align: center;
    color: #333;
    background: #f8f9fa;
    border-radius: 0 0 8px 8px;
}
