.wrapper {
position: sticky;
top: 75px;
width: 60%;
z-index: 3;
min-height: 60px; // 2 lines of text
margin-top: -45px;
margin-bottom: 15px;
margin-left: auto;
margin-right: auto;
display: flex;
justify-content: center;
}
.blurWrapper {
position: absolute;
padding: 0 10px;
&::before {
content: '';
position: absolute;
background-color: black;
z-index: -1;
width: 100%;
height: 110%;
left: 0;
filter: blur(12px);
}
}