div.populated-gallery .populated-context .divide-separator{
    display: flex;
    width: 27%;
    margin: 0 auto;
    border: 1px solid #a1a1a1;
}
div.populated-gallery .populated-context h2{
    margin: 35px 0 15px 0;
}
div.populated-gallery .gallery-section{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    column-gap: 5px;
}
div.populated-gallery .gallery-section .gallery-column{
    display: flex;
    flex-direction: column;
    justify-content: center;
}
div.populated-gallery .gallery-section .gallery-column .gallery-item{
    margin: 0 0 0.3em;
}
div.populated-gallery .gallery-section .gallery-column .gallery-item img{
    width: 100%;
    height: auto;
}
@media (max-width: 600px) {
    div.populated-gallery .gallery-section{
        display: flex;
        flex-direction: column;
    }
}