@font-face {
    font-family: 'PPNeueMachina-InktrapUltrabold';
    src: url('https://barrierenlos.com/assets/PPNeueMachina-InktrapUltrabold.woff2') format('woff2'),
        url('https://barrierenlos.com/assets/PPNeueMachina-InktrapUltrabold.woff') format('woff');
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Raleway';
    src: url('https://barrierenlos.com/assets/Raleway-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

body {
    font-family: 'Raleway', system-ui, -apple-system, blinkmacsystemfont, "Segoe UI", roboto, oxygen, ubuntu, cantarell, "Open Sans", "Helvetica Neue", sans-serif;
    line-height: 1.6;
    max-width: 800px;
    margin: 2rem auto;
    padding: 0 1rem;
    background-color: #fff;
    color: #151314;
    overflow-x: hidden;
}

h2, h3 {
    font-family: 'PPNeueMachina-InktrapUltrabold', system-ui, -apple-system, blinkmacsystemfont, "Segoe UI", roboto, oxygen, ubuntu, cantarell, "Open Sans", "Helvetica Neue", sans-serif;
    color: #151314;
}

.visually-hidden {
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    height: 1px;
    overflow: hidden;
    position: absolute;
    white-space: nowrap;
    width: 1px;
}

.carousel {
    position: relative;
    background-color: transparent;
    border: none;
    box-shadow: none;
}

.carousel-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    padding: 0 0.5rem;
}

#carousel-heading {
    margin: 0;
    font-size: 1.75rem;
}

.slides-container {
    list-style: none;
    padding: 0;
    margin: 0 -0.5rem;
    display: flex;
    transition: transform 0.75s cubic-bezier(0.49, 0.03, 0, 0.99);
}

.slides-container > li {
    flex: 0 0 100%;
    width: 100%;
    box-sizing: border-box;
    padding: 0 0.5rem;
}
.slides-container > li::before {
    content: none;
}

.slide {
    display: flex;
    outline: none;
    background-color: #F6F5F5;
    border-radius: 24px;
    padding: 2rem 3.5rem 3.5rem 3.5rem;
    text-align: center;
    min-height: 150px;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    visibility: hidden;
    opacity: 0;
    transform: scale(0.8);
    transition: transform 0.75s cubic-bezier(0.49, 0.03, 0, 0.99), opacity 0.75s cubic-bezier(0.49, 0.03, 0, 0.99), visibility 0.75s cubic-bezier(0.49, 0, 0, 0.99);
}
.slide.active {
    visibility: visible;
    opacity: 1;
    transform: scale(1);
}

.carousel-controls {
    display: flex;
    justify-content: center;
    margin-top: 1.5rem;
}

.carousel-navigation {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    transform: translate(-50%, -50%);
    display: flex;
    justify-content: space-between;
    padding: 0 1rem;
    box-sizing: border-box;
    list-style: none;
    margin: 0;
    pointer-events: none;
}

.carousel-navigation > li:not(:first-child) {
    margin: 0;
}

.carousel-navigation > li::before {
    content: none;
}

.carousel-btn,
.pause-play-btn,
.cta-button {
    cursor: pointer;
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.carousel-btn,
.pause-play-btn {
    background-color: #DAD8D8;
    color: #151314;
    border: none;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    justify-content: center;
    align-items: center;
    pointer-events: auto;
}
.carousel-btn:hover,
.pause-play-btn:hover {
    background-color: #151314;
    color: #fff;
    transform: scale(1.05);
}
.carousel-btn svg { width: 24px; height: 24px; fill: currentColor; }
.pause-play-btn svg { width: 18px; height: 18px; fill: currentColor; }

.cta-button {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background-color: #E42041;
    color: #fff;
    text-decoration: none;
    border-radius: 100px;
    font-weight: bold;
    margin-top: 1rem;
    box-shadow: 5px 5px 0 0 #BC1632;
    transition: transform .35s cubic-bezier(.49, .03, 0, .99), background .35s cubic-bezier(.49, .03, 0, .99), border-color .35s cubic-bezier(.49, .03, 0, .99), box-shadow .35s cubic-bezier(.49, .03, 0, .99), color .35s cubic-bezier(.49, .03, 0, .99);
}
.cta-button:hover {
    transform: scale(1.05);
    background: #151314;
    border-color: #151314;
    box-shadow: 10px 10px 0 0 #706F6F;
    color: #fff;
}

.carousel-btn:focus-visible,
.pause-play-btn:focus-visible,
.carousel-dot-label:focus-visible,
.cta-button:focus-visible,
.slide h3:focus-visible {
    outline: 3px solid #3153AD;
    outline-offset: 2px;
    box-shadow: none;
}

.slide h3:focus-visible {
    border-radius: 6px;
}

.carousel-dots {
    border: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 0.75rem;
    justify-content: center;
}

.carousel-dot-label {
    display: block;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background-color: #DAD8D8;
    cursor: pointer;
    transform: scale(0.8);
    transition: background-color .35s cubic-bezier(.49, .03, 0, .99), transform .35s cubic-bezier(.49, .03, 0, .99);
}
.carousel-dot-label:hover { background-color: #E42041; transform: scale(1.1); }
input[type="radio"]:checked + .carousel-dot-label { background-color: #E42041; transform: scale(1.0); }
input[type="radio"]:checked + .carousel-dot-label:hover { cursor: not-allowed; }
input[type="radio"]:focus-visible + .carousel-dot-label {
    outline: 3px solid #3153AD;
    outline-offset: 2px;
}

h3 { margin-block: 1em 0; font-size: 1.3rem; color: #151314; }
p  { margin: 0.5em 0; color: #706F6F; }

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
    }
    .slide { transition-property: opacity; }
    .slides-container { transition-property: none; }
}