.trs-fullwidth {
width: 100%;
height: clamp(250px, 45vw, 450px);
overflow: hidden;
position: relative;
}
.trs-fullwidth__inner {
position: absolute; top: -15%;
left: 0;
right: 0;
bottom: -15%;
background-image: var(--parallax-bg);
background-size: cover;
background-position: center 50%;
background-repeat: no-repeat;
will-change: transform; transition: background-position 0ms linear;
}
@media (prefers-reduced-motion: reduce) {
.trs-fullwidth__inner {
top: 0;
bottom: 0;
background-position: center center;
}
}