/*
Theme Name: OceanWP Child
Theme URI: https://oceanwp.org/
Description: OceanWP WordPress theme example child theme.
Author: Nick
Author URI: https://oceanwp.org/
Template: oceanwp
Version: 1.0
*/

/* Parent stylesheet should be loaded from functions.php not using @import */

.gallery-masonry {
    margin: 0 auto;
}
.gallery-masonry .grid-sizer,
.gallery-masonry .grid-item {
    width: 33.33%;
}
.gallery-masonry .grid-item {
    padding: 10px;
    box-sizing: border-box;
}
.gallery-masonry .grid-item img {
    width: 100%;
    height: auto; /* Altura libre */
    display: block;
    object-fit: contain;
    border-radius: 6px;
}
@media screen and (max-width: 768px) {
    .gallery-masonry .grid-sizer,
    .gallery-masonry .grid-item {
        width: 50%;
    }
}
@media screen and (max-width: 480px) {
    .gallery-masonry .grid-sizer,
    .gallery-masonry .grid-item {
        width: 100%;
    }
}
