.gwsp-bedingungen {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
}

.gwsp-bedingungen__item {
    width: 100%;
}

.gwsp-bedingungen__summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.65rem 1.5rem;
    cursor: pointer;
    list-style: none;
    text-align: left;
}

.gwsp-bedingungen__summary::-webkit-details-marker {
    display: none;
}

.gwsp-bedingungen__label {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
}

.gwsp-bedingungen__title {
    font-family: var(--font-headline);
    color: #1D1D1B;
    line-height: 1;
}

.gwsp-bedingungen__date {
    font-size: 0.8rem;
    color: #666;
}

.gwsp-bedingungen__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    flex-shrink: 0;
}

.gwsp-bedingungen__icon svg {
    transform: rotate(90deg);
    transition: transform 0.35s ease;
}

.gwsp-bedingungen__item.is-open .gwsp-bedingungen__icon svg {
    transform: rotate(270deg);
}

.gwsp-bedingungen__body {
    width: 100%;
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.4s ease;
}

.gwsp-bedingungen__item.is-open .gwsp-bedingungen__body {
    max-height: 2000px;
}

.gwsp-bedingungen__content {
    padding: 0 1.5rem 1.25rem;
    color: #444;
    text-align: left;
}
