/*
 * DIRECTION: two-image gallery fallback
 *
 * Flickity cannot show the only other cell on both sides when wrapAround is
 * enabled. Make two-image galleries full width so no blank gutter appears
 * when changing slides.
 */
@media only screen and (min-width: 769px) {
    .single .post-single .post-detail .post-content .gallery.gallery-two-items .flickity-viewport {
        height: calc(75vw + 40px) !important;
    }

    .single .post-single .post-detail .post-content .gallery.gallery-two-items .gallery-item {
        width: 100% !important;
        height: calc(75vw + 40px) !important;
    }

    .single .post-single .post-detail .post-content .gallery.gallery-two-items .flickity-prev-next-button {
        height: 75vw !important;
    }

    .single .post-single .post-detail .post-content .gallery.gallery-two-items .gallery-caption {
        left: 0;
    }
}

@media only screen and (max-width: 768px) {
    .single .post-single .post-detail .post-content .gallery.gallery-two-items .flickity-viewport {
        height: calc(75vw + 40px) !important;
    }

    .single .post-single .post-detail .post-content .gallery.gallery-two-items .gallery-item {
        width: 100% !important;
        height: calc(75vw + 40px) !important;
    }

    .single .post-single .post-detail .post-content .gallery.gallery-two-items .flickity-prev-next-button {
        height: 75vw !important;
    }

    .single .post-single .post-detail .post-content .gallery.gallery-two-items .gallery-caption {
        left: 0;
    }
}
