 .bricks-layout-item figure { margin: 0; overflow: hidden;  border-radius: 8px;  transition: box-shadow 0.4s ease; }  .bricks-layout-item img { display: block; width: 100%; height: auto; transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), filter 0.4s ease; will-change: transform;  }  .bricks-layout-item:hover figure { box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);  } .bricks-layout-item:hover img { transform: scale(1.06);  filter: brightness(0.85);  }  :root { --mouse-x: 50vw; --mouse-y: 50vh; }  body::after { content: ""; position: fixed; top: 0; left: 0; width: 100vw; height: 100vh; pointer-events: none; z-index: 9999; background: radial-gradient( circle 200px at var(--mouse-x) var(--mouse-y), rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 100% );   animation: flashlight-pulse 4s ease-in-out infinite; }  @keyframes flashlight-pulse { 0% { opacity: 1;  } 50% { opacity: 0.15;  } 100% { opacity: 1;  } } html {  scroll-behavior: smooth;  scroll-padding-top: 100px; }