.stroke-text-wrapper {
    transform: rotate(-2deg);
    display: grid;
    text-wrap: nowrap;
    overflow: clip;
    padding: 1rem;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.stroke-text-wrapper.full-width-outer {
    width: calc(100vw + 50px);
    max-width: calc(100vw - ( var(--body-margin) * 2 ) + 50px);
    transform: rotate(-2deg) translateX(-50px);
    margin-block: 0;
    padding: .5em 0;
}

.stroke-text-wrapper > div {
    grid-column: 1/-1;
    grid-row: 1/-1;
}

.stroke-text-background,
.stroke-text {
    font-family: "Sofia Sans Extra Condensed";
    font-style: italic;
    font-weight: 800;
    line-height: 1;
    text-transform: uppercase;
}

.stroke-text-background {
    color: var(--text-accent);
    -webkit-text-stroke-width: 0.5px;
    -webkit-text-stroke-color: var(--text-accent);
    opacity: 0.2;
    filter: blur(20px);
    z-index: 3;
}

.stroke-text {
    position: relative;
    opacity: .6;
}

.stroke-text::before,
.stroke-text::after {
    content: attr(data-text);
    position: absolute;
    inset: 0;
}

.stroke-text::before {
    color: transparent;
    -webkit-text-stroke: 2px var(--text-accent);
    z-index: 1;
    opacity: .6;
}

.stroke-text::after {
    z-index: 2;
}

.stroke-text[data-background="wit"]::after {
    color: var(--bg-light);
}

.stroke-text[data-background="grijs"]::after {
    color: var(--bg-soft);
}

.stroke-text[data-background="zwart"]::after {
    color: #080808;
}

