/*
 * Modal popup styles for bbs2alpa_modal_popup.
 *
 * This stylesheet contains only rules specific to the modal popup feature.
 * PhotoSwipe's own stylesheet (photoswipe.min.css) is loaded as a dependency
 * and handles all base lightbox presentation.
 *
 * .pswp--modal-popup is added to the PhotoSwipe root by the modal popup JS
 * after the opening animation completes, scoping all rules here to modal
 * popup instances only and leaving gallery slider lightboxes untouched.
 *
 * .pswp--has-link is added on top of .pswp--modal-popup when the popup
 * image carries a data-link attribute. It overrides the zoom-in cursor with
 * a pointer to correctly signal that clicking navigates rather than zooms.
 * The !important declaration is required because PhotoSwipe's own stylesheet
 * sets cursor: zoom-in on .pswp__img and loads after this file, making
 * specificity alone insufficient to win the cascade.
 */

.pswp--modal-popup .pswp__img {
}

.pswp--has-link .pswp__img {
	cursor: pointer !important;
}