diff --git a/src/components/letter/LetterStickers.tsx b/src/components/letter/LetterStickers.tsx
index 55652d07..b30e977a 100644
--- a/src/components/letter/LetterStickers.tsx
+++ b/src/components/letter/LetterStickers.tsx
@@ -14,47 +14,10 @@ import { sanitizeSvg } from '@/lib/sanitizeSvg';
const MIN_SCALE = 0.5;
const MAX_SCALE = 4;
-const BASE_SIZE_CQW = 14;
+const BASE_SIZE_CQW = 14; // cqw — base sticker size at scale=1, scales with card width
/** Inward buffer (%) so sticker centers can't reach the very edge of the card. */
const EDGE_BUFFER = 5;
-/** Aspect ratio of the letter card (width / height). */
-const CARD_ASPECT = 5 / 4;
-
-/**
- * Compute an edge-proximity scale factor so stickers shrink as their center
- * approaches any edge of the card. The sticker's nominal half-size (in %)
- * is compared against the distance from the center to the nearest edge;
- * when the distance is less than the half-size the sticker shrinks
- * proportionally so it always fits within the card boundary.
- *
- * Returns a multiplier in (0, 1] that should be applied on top of the
- * sticker's own `scale` value.
- */
-function edgeScale(x: number, y: number, baseScale: number): number {
- // Half-size of the sticker in percentage of container width
- const halfW = (BASE_SIZE_CQW * baseScale) / 2; // in cqw, which == % of width
- // Container height in cqw units = 100 / aspectRatio
- const containerHeightCqw = 100 / CARD_ASPECT; // 80 for 5:4
- // Half-size as % of container height
- const halfH = (BASE_SIZE_CQW * baseScale) / 2 / containerHeightCqw * 100;
-
- // Distance from center to each edge (in %)
- const dLeft = x;
- const dRight = 100 - x;
- const dTop = y;
- const dBottom = 100 - y;
-
- // How much room we need vs how much we have, per axis
- const fitX = Math.min(dLeft, dRight) / halfW;
- const fitY = Math.min(dTop, dBottom) / halfH;
-
- // Take the tightest constraint, clamp to (0, 1]
- const fit = Math.min(fitX, fitY, 1);
- // Floor at a tiny size so stickers don't vanish completely
- return Math.max(fit, 0.15);
-}
-
function isSafeUrl(url: string): boolean {
try {
return new URL(url).protocol === 'https:';
@@ -67,7 +30,7 @@ function StickerMedia({ sticker, sizeCqw, className }: { sticker: LetterSticker;
if (sticker.svg) {
return (