.kfzsitz-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    padding: 2rem 0;
}

.kfzsitz-gallery-item img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: transform 0.2s ease;
}

.kfzsitz-gallery-item img:hover {
    transform: scale(1.01);
}

@media (max-width: 991px) {
    .kfzsitz-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .kfzsitz-gallery-grid {
        grid-template-columns: 1fr;
    }
}