Index: src/assets/css/style.css
===================================================================
--- src/assets/css/style.css	(revision 69a10e7f2a2e0bf55f2d34f93930ffffbbb06f59)
+++ src/assets/css/style.css	(revision 2f919c0ee3fc42d2d53fb741dbe580f4151b194d)
@@ -2486,12 +2486,16 @@
     margin-top: -1px;
 }
-/* Pinned-tile overall highlight: accent border + subtle inner glow */
-.grid-tile.is-pinned {
-    outline: 3px solid var(--accent);
-    outline-offset: -3px;
+/* Pinned/boosted tile: accent ring. An outline on the tile is painted UNDER the absolute
+   cover <img>, so draw the ring as a pseudo-element overlay ABOVE the image (z-index above
+   the img, below the corner badges + nsfw veil). */
+.grid-tile.is-pinned { position: relative; z-index: 1; }
+.grid-tile.is-pinned::after {
+    content: '';
+    position: absolute;
+    inset: 0;
+    border: 3px solid var(--accent);
+    border-radius: inherit;
+    pointer-events: none;
     z-index: 1;
-}
-.grid-tile.is-pinned:hover {
-    outline-offset: -2px;
 }
 .grid-tile-type {
