1
2
3
4
5
6
7
8
9
10
11
12












/* Replace #block-identifier with your block's actual ID */ #block-identifier .summary-item { position: relative; } #block-identifier .summary-content { position: absolute; top: 50%; left: 50%; opacity: 0; transform: translate(-50%, -50%); transition: opacity 0.5s; pointer-events: none; } #block-identifier .summary-item:hover .summary-content { opacity: 1; pointer-events: auto; }