#idBarrierefreiheitSection {
    background-image: linear-gradient(to top, #f5f3f1, rgb(255 255 255) 50%);
}
.barrierefreiheit_container {
    width: 80%;
    margin: 0 auto;
    padding-bottom: 2em;
}
.barrierefreiheit_header {
    width: 80%;
}
.barrierefreiheit_header p {
    padding-bottom: 1em;
}
.barrierefreiheit_header a,
.barrierefreiheit_text a {
    display: inline-flex;
    align-items: center;
    gap: 0.3em;
    color: var(--main-brand-color);
    font-weight: bold;
    text-decoration: none;
    transition: all 150ms ease-in;
}
.barrierefreiheit_header a:hover,
.barrierefreiheit_text a:hover,
.barrierefreiheit_header a:focus-visible,
.barrierefreiheit_text a:focus-visible {
    color: var(--text-color);
}
.barrierefreiheit_text a:hover svg,
.barrierefreiheit_text a:focus-visible svg {
    stroke: var(--text-color);
}
.barrierefreiheit_text h2 {
    padding-top: 1em;
    padding-bottom: 0.5em;
    color: var(--accent-color);
    font-weight: bold;
}
.barrierefreiheit_text p {
    padding-bottom: 0.6em;
    text-align: justify;
    hyphens: auto;
}
.schlichtungsstelle-adresse {
    margin-bottom: 1em;
    font-size: clamp(0.95rem, 1vw, 1.4rem);
    font-style: normal;
}
.schlichtungsstelle-kontakt {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0.5em 1em;
    margin-top: 1em;
}
.schlichtungsstelle-kontakt dt {
    font-size: clamp(0.95rem, 1vw, 1.4rem);
    font-weight: normal;
}
.schlichtungsstelle-kontakt dd {
    margin-left: 0;
    font-size: clamp(0.95rem, 1vw, 1.4rem);
}
.barrierefreiheit_text a:focus-visible {
    outline: 2px solid var(--accent-color);
    outline-offset: 2px;
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
    .barrierefreiheit_header p a,
    .barrierefreiheit_text a {
        transition: none;
    }
}

@media (max-width: 799px) {
    .barrierefreiheit_container {
        width: 85%;
    }
}
@media (max-width:480px) {
    .schlichtungsstelle-kontakt {
        grid-template-columns: 1fr;
        gap: 0.2em;
    }
}