/* 
 Theme Name:   Tantraparadies Theme
 Theme URI:    
 Description:  
 Author:       
 Author URI:   https://tantraparadies.kiubo.ch
 Template:     Divi
 Version:      1.0
 License:      GNU General Public License v2 or later
 License URI:  http://www.gnu.org/licenses/gpl-2.0.html

 /* == Add your own styles below this line ==
--------------------------------------------*/
/*GALERIE CSS*/

.my-responsive-gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 4 columns on desktop */
    grid-gap: 10px; /* Adjust the gap as needed */
}

.gallery-item img {
    width: 100%;
    height: auto;
    display: block;
}

/* Tablet: 3 columns */
@media (max-width: 768px) {
    .my-responsive-gallery {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Mobile: 2 columns */
@media (max-width: 480px) {
    .my-responsive-gallery {
        grid-template-columns: repeat(2, 1fr);
    }
}
