/*
 * Theme-level PhotoSwipe styles.
 *
 * Loaded site-wide by Blockstudio (`global-styles.css`). Two sections:
 *
 *   1. Stock PhotoSwipe v5 CSS (verbatim from photoswipe.com).
 *   2. Nomon chrome — custom meta bar (title + caption + close), thumbnail
 *      strip, frosted-glass arrow buttons, gradient backdrop. Modeled
 *      after Lightbox3's chrome (lokesh/lightbox3) so the lightbox feels
 *      consistent across blocks. All translucent values are derived from
 *      brand tokens via `color-mix(... light/dark <pct>%, transparent)`.
 */

/* ============================================================
 * 1. Stock PhotoSwipe v5 CSS — by Dmytro Semenov | photoswipe.com
 * ============================================================ */

.pswp {
  --pswp-bg: #000;
  --pswp-placeholder-bg: #222;


  --pswp-root-z-index: 100000;

  --pswp-preloader-color: rgba(79, 79, 79, 0.4);
  --pswp-preloader-color-secondary: rgba(255, 255, 255, 0.9);

  /* defined via js:
  --pswp-transition-duration: 333ms; */

  --pswp-icon-color: #fff;
  --pswp-icon-color-secondary: #4f4f4f;
  --pswp-icon-stroke-color: #4f4f4f;
  --pswp-icon-stroke-width: 2px;

  --pswp-error-text-color: var(--pswp-icon-color);
}


/*
	Styles for basic PhotoSwipe (pswp) functionality (sliding area, open/close transitions)
*/

.pswp {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: var(--pswp-root-z-index);
	display: none;
	touch-action: none;
	outline: 0;
	opacity: 0.003;
	contain: layout style size;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

/* Prevents focus outline on the root element,
  (it may be focused initially) */
.pswp:focus {
  outline: 0;
}

.pswp * {
  box-sizing: border-box;
}

.pswp img {
  max-width: none;
}

.pswp--open {
	display: block;
}

.pswp,
.pswp__bg {
	transform: translateZ(0);
	will-change: opacity;
}

.pswp__bg {
  opacity: 0.005;
	background: var(--pswp-bg);
}

.pswp,
.pswp__scroll-wrap {
	overflow: hidden;
}

.pswp__scroll-wrap,
.pswp__bg,
.pswp__container,
.pswp__item,
.pswp__content,
.pswp__img,
.pswp__zoom-wrap {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.pswp__img,
.pswp__zoom-wrap {
	width: auto;
	height: auto;
}

.pswp--click-to-zoom.pswp--zoom-allowed .pswp__img {
	cursor: -webkit-zoom-in;
	cursor: -moz-zoom-in;
	cursor: zoom-in;
}

.pswp--click-to-zoom.pswp--zoomed-in .pswp__img {
	cursor: move;
	cursor: -webkit-grab;
	cursor: -moz-grab;
	cursor: grab;
}

.pswp--click-to-zoom.pswp--zoomed-in .pswp__img:active {
  cursor: -webkit-grabbing;
  cursor: -moz-grabbing;
  cursor: grabbing;
}

/* :active to override grabbing cursor */
.pswp--no-mouse-drag.pswp--zoomed-in .pswp__img,
.pswp--no-mouse-drag.pswp--zoomed-in .pswp__img:active,
.pswp__img {
	cursor: -webkit-zoom-out;
	cursor: -moz-zoom-out;
	cursor: zoom-out;
}


/* Prevent selection and tap highlights */
.pswp__container,
.pswp__img,
.pswp__button,
.pswp__counter {
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

.pswp__item {
	/* z-index for fade transition */
	z-index: 1;
	overflow: hidden;
}

.pswp__hidden {
	display: none !important;
}

/* Allow to click through pswp__content element, but not its children */
.pswp__content {
  pointer-events: none;
}
.pswp__content > * {
  pointer-events: auto;
}


/*

  PhotoSwipe UI

*/

/*
	Error message appears when image is not loaded
	(JS option errorMsg controls markup)
*/
.pswp__error-msg-container {
  display: grid;
}
.pswp__error-msg {
	margin: auto;
	font-size: 1em;
	line-height: 1;
	color: var(--pswp-error-text-color);
}

/*
class pswp__hide-on-close is applied to elements that
should hide (for example fade out) when PhotoSwipe is closed
and show (for example fade in) when PhotoSwipe is opened
 */
.pswp .pswp__hide-on-close {
	opacity: 0.005;
	will-change: opacity;
	transition: opacity var(--pswp-transition-duration) cubic-bezier(0.4, 0, 0.22, 1);
	z-index: 10; /* always overlap slide content */
	pointer-events: none; /* hidden elements should not be clickable */
}

/* class pswp--ui-visible is added when opening or closing transition starts */
.pswp--ui-visible .pswp__hide-on-close {
	opacity: 1;
	pointer-events: auto;
}

/* <button> styles, including css reset */
.pswp__button {
	position: relative;
	display: block;
	width: 50px;
	height: 60px;
	padding: 0;
	margin: 0;
	overflow: hidden;
	cursor: pointer;
	background: none;
	border: 0;
	box-shadow: none;
	opacity: 0.85;
	-webkit-appearance: none;
	-webkit-touch-callout: none;
}

.pswp__button:hover,
.pswp__button:active,
.pswp__button:focus {
  transition: none;
  padding: 0;
  background: none;
  border: 0;
  box-shadow: none;
  opacity: 1;
}

.pswp__button:disabled {
  opacity: 0.3;
  cursor: auto;
}

.pswp__icn {
  fill: var(--pswp-icon-color);
  color: var(--pswp-icon-color-secondary);
}

.pswp__icn {
  position: absolute;
  top: 14px;
  left: 9px;
  width: 32px;
  height: 32px;
  overflow: hidden;
  pointer-events: none;
}

.pswp__icn-shadow {
  stroke: var(--pswp-icon-stroke-color);
  stroke-width: var(--pswp-icon-stroke-width);
  fill: none;
}

.pswp__icn:focus {
	outline: 0;
}

/*
	div element that matches size of large image,
	large image loads on top of it,
	used when msrc is not provided
*/
div.pswp__img--placeholder,
.pswp__img--with-bg {
	background: var(--pswp-placeholder-bg);
}

.pswp__top-bar {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 60px;
	display: flex;
  flex-direction: row;
  justify-content: flex-end;
	z-index: 10;

	/* allow events to pass through top bar itself */
	pointer-events: none !important;
}
.pswp__top-bar > * {
  pointer-events: auto;
  /* this makes transition significantly more smooth,
     even though inner elements are not animated */
  will-change: opacity;
}


/*

  Close button

*/
.pswp__button--close {
  margin-right: 6px;
}


/*

  Arrow buttons

*/
.pswp__button--arrow {
  position: absolute;
  top: 0;
  width: 75px;
  height: 100px;
  top: 50%;
  margin-top: -50px;
}

.pswp__button--arrow:disabled {
  display: none;
  cursor: default;
}

.pswp__button--arrow .pswp__icn {
  top: 50%;
  margin-top: -30px;
  width: 60px;
  height: 60px;
  background: none;
  border-radius: 0;
}

.pswp--one-slide .pswp__button--arrow {
  display: none;
}

/* hide arrows on touch screens */
.pswp--touch .pswp__button--arrow {
  visibility: hidden;
}

/* show arrows only after mouse was used */
.pswp--has_mouse .pswp__button--arrow {
  visibility: visible;
}

.pswp__button--arrow--prev {
  right: auto;
  left: 0px;
}

.pswp__button--arrow--next {
  right: 0px;
}
.pswp__button--arrow--next .pswp__icn {
  left: auto;
  right: 14px;
  /* flip horizontally */
  transform: scale(-1, 1);
}

/*

  Zoom button

*/
.pswp__button--zoom {
  display: none;
}

.pswp--zoom-allowed .pswp__button--zoom {
  display: block;
}

/* "+" => "-" */
.pswp--zoomed-in .pswp__zoom-icn-bar-v {
  display: none;
}


/*

  Loading indicator

*/
.pswp__preloader {
  position: relative;
  overflow: hidden;
  width: 50px;
  height: 60px;
  margin-right: auto;
}

.pswp__preloader .pswp__icn {
  opacity: 0;
  transition: opacity 0.2s linear;
  animation: pswp-clockwise 600ms linear infinite;
}

.pswp__preloader--active .pswp__icn {
  opacity: 0.85;
}

@keyframes pswp-clockwise {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}


/*

  "1 of 10" counter

*/
.pswp__counter {
  height: 30px;
  margin-top: 15px;
  margin-inline-start: 20px;
  font-size: 14px;
  line-height: 30px;
  color: var(--pswp-icon-color);
  text-shadow: 1px 1px 3px var(--pswp-icon-color-secondary);
  opacity: 0.85;
}

.pswp--one-slide .pswp__counter {
  display: none;
}


/* ============================================================
 * 2. Nomon chrome — custom meta bar, thumbnail strip, arrows.
 *    Custom UI elements registered via `uiRegister` in
 *    global-scripts.view.js.
 * ============================================================ */

/*
 * Strip-height variables. Set to non-zero only when the thumbnail strip
 * is rendered (multi-slide). The meta bar reads `--strip-h` to position
 * itself flush above the strip; falls back to viewport floor when no
 * strip is present.
 */
.pswp {
	--strip-h: 0px;
	--strip-offset: 0px;
}

.pswp:has(.pswp__thumbnails) {
	--strip-h: 80px;
	--strip-offset: 16px;
}

/*
 * Title + caption + close button share a single frosted-glass pill —
 * copied from Lightbox3's `.lightbox3-chrome` bar (lokesh/lightbox3
 * src/style.css). Sits centered above the thumbnail strip. Title is
 * bolder, caption is smaller; both auto-hide when empty so the bar
 * resizes per slide. `is-empty` hides the entire pill when the active
 * slide has neither title nor caption (set by global-scripts.view.js).
 *
 * Translucent values flow through brand tokens via color-mix (no hex
 * literals per CLAUDE.md). Bar inherits PhotoSwipe's `pswp--ui-visible`
 * lifecycle so it fades in/out together with the rest of the chrome on
 * open/close.
 */
.pswp__meta {
	position: absolute;
	bottom: calc(var(--strip-h) + var(--strip-offset) + 1rem);
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 0.75rem;
	/* Asymmetric padding mirrors Lightbox3's `6px 6px 6px 18px` — text
	   gets generous left padding, the close button on the right pads
	   itself with its own circle. */
	padding: 0.375rem 0.375rem 0.375rem 1.125rem;
	width: max-content;
	max-width: min(90vw, 600px);
	background: color-mix(in srgb, var(--wp--preset--color--foreground) 80%, transparent);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	box-shadow: inset 0 1px 0 color-mix(in srgb, var(--wp--preset--color--background) 8%, transparent);
	color: color-mix(in srgb, var(--wp--preset--color--background) 90%, transparent);
	font-size: 15px;
	line-height: 1.3;
	letter-spacing: 0.02em;
	text-align: center;
	pointer-events: none;
	z-index: 10;
	opacity: 0;
	transition: opacity 333ms cubic-bezier(0.4, 0, 0.22, 1);
}

.pswp--ui-visible .pswp__meta {
	opacity: 1;
}

.pswp__meta-text {
	display: flex;
	flex-direction: column;
	gap: 0.125rem;
	flex: 1;
	min-width: 0;
}

.pswp__meta-text.is-empty {
	display: none;
}

/*
 * Collapse the asymmetric padding to a uniform 6px when there's no
 * visible text — bar shrinks to a circle around the close button.
 * Two cases:
 *   1. Both toggles off → no `.pswp__meta-text` element at all
 *   2. Toggles on but current slide has neither title nor caption
 *      → text wrapper exists but is `is-empty` (display: none)
 */
.pswp__meta:not(:has(.pswp__meta-text)),
.pswp__meta:has(.pswp__meta-text.is-empty) {
	padding: 0.375rem;
}

.pswp__meta .pswp__title {
	font-weight: 600;
}

.pswp__meta .pswp__title:empty {
	display: none;
}

.pswp__meta .pswp__caption {
	font-size: 14px;
	/* Multi-line clamp matches Lightbox3 — long captions wrap up to 10
	   lines, then truncate. */
	overflow: hidden;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 10;
}

.pswp__meta .pswp__caption:empty {
	display: none;
}

/*
 * Inline close button. 40px frosted-circle (Lightbox3-style chrome
 * shell), slightly more translucent than the arrow buttons since it
 * sits on top of the already-frosted meta pill. Icon is drawn via
 * `mask-image` from the theme's icon registry (`assets/icons/close.svg`);
 * the button itself is rendered empty by `global-scripts.view.js`.
 */
.pswp__meta-close {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	width: 40px;
	height: 40px;
	padding: 0;
	border: none;
	background: color-mix(in srgb, var(--wp--preset--color--background) 8%, transparent);
	cursor: pointer;
	pointer-events: auto;
	transition: background 0.15s ease;
}

.pswp__meta-close:hover {
	background: color-mix(in srgb, var(--wp--preset--color--background) 16%, transparent);
}

.pswp__meta-close:focus {
	outline: none;
}

.pswp__meta-close:focus-visible {
	outline: 2px solid color-mix(in srgb, var(--wp--preset--color--background) 80%, transparent);
	outline-offset: 2px;
}

.pswp__meta-close::before {
	content: '';
	width: 20px;
	height: 20px;
	background-color: var(--wp--preset--color--background);
	mask-image: url("../icons/close.svg");
	-webkit-mask-image: url("../icons/close.svg");
	mask-size: contain;
	-webkit-mask-size: contain;
	mask-repeat: no-repeat;
	-webkit-mask-repeat: no-repeat;
	mask-position: center;
	-webkit-mask-position: center;
	opacity: 0.85;
	transition: opacity 0.15s ease;
}

.pswp__meta-close:hover::before {
	opacity: 1;
}

.pswp__thumbnails {
	position: absolute;
	bottom: var(--strip-offset);
	left: 0;
	right: 0;
	height: var(--strip-h);
	display: flex;
	/*
	 * `safe center` centers thumbs when they fit in the viewport, but falls
	 * back to start-alignment when they overflow — without `safe`, browsers
	 * can't scroll past the center origin and earlier thumbs become
	 * unreachable. `scrollIntoView({ inline: 'center' })` in
	 * global-scripts.view.js still works in either mode.
	 */
	justify-content: safe center;
	gap: 0.25rem;
	padding: 0.5rem;
	overflow-x: auto;
	overflow-y: hidden;
	/*
	 * The gradient backdrop lives on `.pswp::after`, not on the strip
	 * itself. The strip needs `overflow-x: auto` for horizontal scrolling
	 * (and therefore `overflow-y: hidden` to keep thumbs from leaking),
	 * which would clip any ::before that tried to extend past the strip's
	 * own bounds. The ::after sits one level up so it can span from the
	 * viewport floor up through the strip without being clipped.
	 */
	background: transparent;
	z-index: 10;
	/*
	 * Hide the native scrollbar — the active thumb auto-centers on slide
	 * change (scrollIntoView in global-scripts.view.js), so a visible
	 * scrollbar adds clutter without UX value. Drag/wheel/touch still scroll.
	 */
	scrollbar-width: none;
}

.pswp__thumbnails::-webkit-scrollbar {
	display: none;
}

/*
 * Lightbox prev/next arrows. 48px frosted-glass circle (Lightbox3-style
 * chrome shell) with a 26px chevron drawn via `mask-image` from the
 * theme's icon registry (`assets/icons/chevron.svg`). Translucent
 * whites are expressed as color-mix(... light <pct>%, transparent) so
 * the values flow from brand tokens — no rgb/hex literals (per CLAUDE.md).
 *
 * PhotoSwipe init passes empty strings for `arrowPrevSVG` / `arrowNextSVG`
 * so the buttons render without inner SVG markup; the `::before` pseudo
 * paints the chevron via mask. Direction is per-button rotation of the
 * shared chevron shape (default down → prev = 90deg, next = -90deg).
 *
 * Selector qualified with `.pswp` to win specificity against PhotoSwipe's
 * default arrow rules (75x100 button, large icon).
 */
.pswp .pswp__button--arrow {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	margin: 0;
	top: 50%;
	transform: translateY(-50%);
	background: color-mix(in srgb, var(--wp--preset--color--background) 10%, transparent);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	box-shadow: inset 0 1px 0 color-mix(in srgb, var(--wp--preset--color--background) 8%, transparent);
	transition: background 0.15s ease;
}

.pswp .pswp__button--arrow--prev {
	left: 1rem;
}

.pswp .pswp__button--arrow--next {
	right: 1rem;
}

.pswp .pswp__button--arrow:hover {
	background: color-mix(in srgb, var(--wp--preset--color--background) 18%, transparent);
}

.pswp .pswp__button--arrow:focus-visible {
	outline: 2px solid color-mix(in srgb, var(--wp--preset--color--background) 80%, transparent);
	outline-offset: 2px;
}

.pswp .pswp__button--arrow::before {
	content: '';
	width: 26px;
	height: 26px;
	background-color: var(--wp--preset--color--background);
	mask-image: url("../icons/chevron.svg");
	-webkit-mask-image: url("../icons/chevron.svg");
	mask-size: contain;
	-webkit-mask-size: contain;
	mask-repeat: no-repeat;
	-webkit-mask-repeat: no-repeat;
	mask-position: center;
	-webkit-mask-position: center;
	opacity: 0.7;
	transition: opacity 0.15s ease;
}

.pswp .pswp__button--arrow--prev::before {
	transform: rotate(90deg);
}

.pswp .pswp__button--arrow--next::before {
	transform: rotate(-90deg);
}

.pswp .pswp__button--arrow:hover::before {
	opacity: 1;
}

.pswp:has(.pswp__thumbnails)::after {
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: calc(var(--strip-h) + var(--strip-offset));
	background: linear-gradient(
		to top,
		var(--wp--preset--color--foreground),
		transparent
	);
	pointer-events: none;
	/* Sits below the strip (z-index: 10) but above the image. */
	z-index: 9;
	/*
	 * Fade with the rest of the UI on open/close. PhotoSwipe toggles
	 * `pswp--ui-visible` on the root, removing it before the close
	 * animation runs — without a matching transition here the gradient
	 * snapped out while the top bar / strip / caption faded smoothly.
	 * Same easing PhotoSwipe uses for its own UI fade (333ms ease-in-out).
	 */
	opacity: 0;
	transition: opacity 333ms cubic-bezier(0.4, 0, 0.22, 1);
}

.pswp--ui-visible:has(.pswp__thumbnails)::after {
	opacity: 1;
}

.pswp__thumbnail {
	flex: 0 0 auto;
	width: 64px;
	height: 64px;
	padding: 0;
	border: 2px solid transparent;
	background: none;
	cursor: pointer;
	opacity: 0.6;
	transition: opacity 0.15s, border-color 0.15s;
}

.pswp__thumbnail:hover,
.pswp__thumbnail:focus-visible {
	opacity: 1;
}

.pswp__thumbnail.is-active {
	opacity: 1;
	border-color: var(--wp--preset--color--background);
}

.pswp__thumbnail img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* Play badge marking a video item in the thumbnail strip: accent circle
 * (::after) with a white play triangle layered above it (::before). */
.pswp__thumbnail--video {
	position: relative;
}

.pswp__thumbnail--video::after {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	z-index: 1;
	width: 22px;
	height: 22px;
	transform: translate(-50%, -50%);
	background-color: var(--wp--preset--color--accent);
	pointer-events: none;
}

.pswp__thumbnail--video::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	z-index: 2;
	width: 0;
	height: 0;
	/* Optically centre the triangle in the circle (nudge right of geometric centre). */
	transform: translate(-35%, -50%);
	border-style: solid;
	border-width: 4.5px 0 4.5px 7px;
	border-color: transparent transparent transparent #fff;
	pointer-events: none;
}

/* Video slide content — the YouTube embed fills the PhotoSwipe-sized box. */
.pswp__video-wrap {
	display: flex;
	background-color: #000;
}

.pswp__video-iframe {
	display: block;
	width: 100%;
	height: 100%;
	border: 0;
}

/* ============================================================
 * 3. Lightbox-anchor shared rules.
 *
 *    Single source for everything that applies to lightbox-enabled
 *    item anchors regardless of which block emitted them. Selector
 *    targets `[data-pswp-gallery] > a` so it hits both:
 *      - core/image — `<figure data-pswp-gallery> > <a>` (lightbox.php)
 *      - nomon/gallery — `<div data-pswp-gallery> > <a.nomon-gallery__item>`
 *    The "Show all" cell in nomon-gallery is a `<button>`, not an
 *    anchor, so it's naturally excluded from the icon overlay.
 *
 *    `line-height: 0` — core/image's anchor inherits WP's
 *    `.wp-block-image > a { display: inline-block }`. With inline-
 *    block, the anchor's bounding rect includes line-height ascender
 *    space above the image, so `getBoundingClientRect` returns a
 *    rect taller than the visible img. PhotoSwipe's open/close morph
 *    uses that rect as the thumbnail starting size, producing a
 *    visible jump on open. Setting line-height to 0 collapses the
 *    line-box without touching the image (WP gives the img
 *    `vertical-align: bottom`). Harmless for the gallery anchors
 *    (their content is a single block-formatted img + absolute
 *    overlays, no inline text).
 *
 *    `position: relative` — required so the magnifier pseudo
 *    positions against the anchor. `nomon/gallery` already sets
 *    relative on `.nomon-gallery__item`; this rule covers core/image.
 *
 *    `--nomon-zoom-icon` — magnifying-glass mask SVG sourced from the
 *    theme's single icon registry (`assets/icons/zoom-in.svg`). The
 *    pseudo-element renders it as a hover affordance in the
 *    bottom-right corner of every lightbox-enabled image. Using
 *    `mask-image` + `background-color` (rather than inline SVG +
 *    `currentColor`) means the icon tint flows through brand tokens
 *    (`--wp--preset--color--background`) instead of inheriting from the
 *    anchor's resolved color, and per-block opt-out is a CSS toggle
 *    on the wrapper rather than a markup branch. Shape change in
 *    `zoom-in.svg` propagates here automatically.
 * ============================================================ */

[data-pswp-gallery] > a {
	line-height: 0;
	position: relative;
	--nomon-zoom-icon: url("../icons/zoom-in.svg");
}

[data-pswp-gallery] > a::after {
	content: '';
	position: absolute;
	right: 0.75rem;
	bottom: 0.75rem;
	width: 2rem;
	height: 2rem;
	background-color: var(--wp--preset--color--background);
	mask-image: var(--nomon-zoom-icon);
	-webkit-mask-image: var(--nomon-zoom-icon);
	mask-size: contain;
	-webkit-mask-size: contain;
	mask-repeat: no-repeat;
	-webkit-mask-repeat: no-repeat;
	mask-position: center;
	-webkit-mask-position: center;
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.25s ease-out;
}

/*
 * Hover affordance gated behind `(hover: hover)` so touch devices don't
 * flash the icon on tap — mobile browsers fire a synthetic `:hover` for
 * a frame after touchstart, which read as a flicker before the lightbox
 * opened. Keyboard users still get the visual via `:focus-visible`.
 */
@media (hover: hover) {
	[data-pswp-gallery] > a:hover::after {
		opacity: 1;
	}
}

[data-pswp-gallery] > a:focus-visible::after {
	opacity: 1;
}

/*
 * Per-wrapper opt-out. nomon/gallery's `zoomIcon` toggle adds
 * `nomon-gallery--no-zoom-icon` when off; `content: none` removes
 * the pseudo entirely so it doesn't paint or take layout space.
 * core/image has no equivalent toggle — when the lightbox is on,
 * the icon is on. (If a per-image opt-out is ever needed, add a
 * second extension attribute and a parallel wrapper class.)
 */
.nomon-gallery--no-zoom-icon > a::after {
	content: none;
}

