hr {
    border: 0;
    height: 1px;
    background: var(--c-border-light);
    margin: 0;
    padding: 0;
}

/* Details / Summary styling for accessible accordion */
.arbeitsweise-card {
    margin: 0;
    padding: 0;
    
    summary {
        -webkit-user-select: none;
        user-select: none;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 1rem;
        background: transparent;
        border: 0;
        padding: 0 var(--l);

        p{
            color: var(--c-heading-primary);
            font-weight: 600;
        }
        
    }
    &:hover {
        background-color: var(--c-border-light);
    }
}

.arbeitsweise-card summary::after {
    content: '+';
    font-size: 1.5rem;
    line-height: normal;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.5rem;
    height: 1.5rem;
    /*margin-right: var(--xl);*/
    transition: transform .18s ease, opacity .18s ease;
    color: var(--muted, #c5c5c5);
}

/* If open, show minus */
.arbeitsweise-card[open] > summary::after {
    content: '−';
    transform: rotate(180deg);
    vertical-align: middle;
}

.arbeitsweise-card .card-body {
    padding: 0 0 1rem 0;
    color: var(--text-color, #333);
    line-height: 1.6;
    overflow: hidden;
    max-height: 1000px;
    transition: all .35s ease;
    padding: 0 var(--l);

    p {
        margin-top: 0;
    }
}

.arbeitsweise-card:not([open]) .card-body {
    max-height: 0;
    padding-top: 0;
    opacity: 0;
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  .arbeitsweise-card summary::after,
  .arbeitsweise-card .card-body {
    transition: none;
  }
}

/* Touch target improvements */
.arbeitsweise-card summary .card-title {
  display: inline-block;
}