What is the CSS box-shadow syntax?
box-shadow: h-offset v-offset blur spread color; - all values required except spread and inset. h-offset: positive = right, negative = left. v-offset: positive = down, negative = up. blur: higher = softer (0 = sharp edge). spread: positive = larger shadow, negative = smaller. Example: box-shadow: 0 4px 12px rgba(0,0,0,0.15); - a common soft drop shadow.