.divider-heading {
    width: 100%;
    position: relative;
    display: inline-block;
    margin-top: -2rem; 
    margin-bottom: 4rem;
    text-align: center;
    z-index: 2;
}

/* Hintergrundbild */
.divider-heading::before {
    width: 102%;
    height: 100%;
    content: "";
    position: absolute;
    inset: 0;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) rotate(2deg);
    z-index: -3;
    background-color: var(--accent);
}
.divider-heading::after {
    width: 102%;
    height: 100%;
    content: "";
    position: absolute;
    inset: 0;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) rotate(2deg);
    z-index: -2;
    background-image: url(../../img/association-theme-graffiti-bg.webp);
    background-size: cover;
    background-blend-mode: multiply;
    background-position: center;
    background-repeat: no-repeat;
    opacity: .3;
}



/* Weißer Balken */
.divider-heading h2 {
    position: relative;
    padding: 1.5rem 8rem;
    font-size: 4rem;
    font-weight: 700;
    color: var(--foreground-0);
    background: var(--foreground-100);
    box-shadow: oklch(from var(--foreground-100) l c h / .2) 0px 2px 8px 0px;
    width: 110%;
    transform: translate(-50%, 0) rotate(-1deg);
    left: 50%;
    z-index: 1;
    display: inline-block;
}

/* Hintergrundbild */
#fp-events .divider-heading::before {
    height: 18rem;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -20%) rotate(2deg);
}

/* Farb-Overlay (Akzentfarbe) */
#fp-events .divider-heading::after {
    height: 18rem;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -20%) rotate(2deg);
}

.subline {
	font-size: 1.3rem;
	color: var(--foreground-55);
	margin-top: 0.25rem;
	text-align: center;
	text-transform: uppercase;
	font-weight: 600;
}

@media screen and  (max-width: 992px) {
    .divider-heading h2 { 
        font-size: 3rem;
        padding: 1.2rem 4rem;
    }
}

@media screen and  (max-width: 600px) {
    .divider-heading h2 { 
        font-size: 2.5rem;
        padding: 1rem 2rem;
    }
}

@media screen and  (max-width: 400px) {
    .divider-heading h2 { 
        padding: 0.8rem 1rem;
    }
}