.gw-accordion {
    border: 1px solid;
    border-radius: 6px;
    background-color: #ffffff;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0,0,0,0.02);
}

.gw-accordion-header {
    cursor: pointer;
    padding: 14px 18px;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    font-size: 1.1em;
    font-weight: 700;
    transition: background 0.38s ease, color 0.25s ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: inherit;
    margin: 0 !important;
}

.gw-accordion-icon::after {
    font-size: 1.4em;
    font-weight: 400;
    transition: transform 0.25s ease;
    display: inline-block;
    line-height: 1;
}

.gw-accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease-out;
    background-color: #ffffff;
}

.gw-accordion-inner {
    padding: 15px 20px;
}

.gw-accordion-inner > *:first-child {
    margin-top: 0 !important;
}
.gw-accordion-inner > *:last-child {
    margin-bottom: 0 !important;
}

/* Letztes Akkordeon: Extra Abstand nach unten */
.gw-accordion:not(:has(~ .gw-accordion)) {
    margin-bottom: 5rem !important;
}

