/* ── Off-screen 2:3 Pinterest pin image ───────────────────────────────────
   Rendered at full size so the Pinterest browser extension can find and offer
   it, but positioned outside the viewport so readers never see it.
   Deliberately NOT display:none / visibility:hidden / width:1px — the
   extension skips images that are hidden or too small to be real content. */
.bas-pin-hidden {
	position: absolute !important;
	left: -99999px !important;
	top: 0 !important;
	pointer-events: none;
}

@media print {
	.bas-pin-hidden { display: none !important; }
}
