.photo-gallery {
 display: grid;
 grid-template-columns: repeat(auto-fit,30%);
 justify-content: center;
 gap: 2rem;
}

.photo-gallery figure {
 margin-bottom: 10px;
}
.photo-gallery figcaption{
 font-size: 0.9rem;
 line-height: 1.3;
 background-color:white;
 padding:20px;
 min-height:200px;
}
.photo-gallery .js-pager__items {
    display: flex;
    flex-direction: row;
    list-style-type: none;
}
.js-pager__items li:not(:has(a)) {
  display: none;
}
.photo-gallery .js-pager__items a{
    background-color: #1a658f;
    padding: 5px 15px;
    color: white !important;
    margin: 0 20px;
}


#block-block-image-gallery-globewx {
	   border-radius: 25px;
    background: url(/themes/custom/globeweather/images/webp/backgrounds/sun.webp);
    border: 10px solid #324858;
    padding-top:20px;
}

@media (max-width: 700px) {
.photo-gallery {
	display:table;
	margin-left:auto;
	margin-right:auto;
}
.photo-gallery  {
	display: flex;
	flex-direction: column;
}

.photo-gallery  figcaption {
	min-height:auto;
}

}