DropShadow
data class DropShadow(val color: PdfColor = PdfColor(0f, 0f, 0f, 0.18f), val offsetX: Dp = Dp.Zero, val offsetY: Dp = Dp(2f), val blur: Dp = Dp(6f))
Soft shadow drawn behind a decorated container (card, box, column, row).
PDF has no native gaussian-blur primitive, so the renderer approximates the shadow with a small stack of concentric translucent rounded rectangles — visually close to a blur at typical card sizes while keeping the output fully vector.