.bodytext_wrapper {
    margin-bottom: 1rem;
}

.gallery-wrapper {
    display: flex;
    flex-wrap: wrap;
    margin-left: -1rem;
    width: calc(100% + 1rem);
}

.gallery-image-wrapper {
    /* 2 images in one row on mobile screens */
    max-width: calc(50% - 1rem);
    margin-left: 1rem;
    margin-bottom: 1rem;
}

.gallery-image-link {
    position: relative;
    display: block;
}

.gallery-image-link:after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;

    z-index: 1;
    transition: background-color 0.6s;
    background-color: rgba(0, 0, 0, 0.3);
}

.gallery-image-link:hover:after {
    background-color: transparent;
}

.gallery-image {
    display: block;
    margin: 0 auto;
}

.pswp__img {
    /* Avoid problems if zoomed in image is bigger than viewport */
    max-height: none;
    max-width: none;
}