section.stellen .accordion .item {
    background: white;
    border-radius: 10px;
    margin: 20px 0;
    padding: 20px;
}

.header {
    all: unset;
    width: 100%;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 24px;
    font-weight: bold;
    letter-spacing: .2px;
    margin-bottom: 8px;
}

.header:focus-visible {
    outline: 2px solid #007aff;
}

.arrow {
    width: 12px;
    height: 12px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg);
    transition: transform 0.3s ease;
}

.header[aria-expanded="true"] .arrow {
    transform: rotate(-135deg);
}

.tags {
    display: flex;
    flex-direction: row;
}

.tags span {
    height: 48px;
    margin-right: 10px;
    background: #f5f5f5;
    border-radius: 10px;
    padding-left: 10px;
    padding-right: 10px;
    align-content: center;
}

.content {
    overflow: hidden;
    padding: 0 1rem;
    transition: height 0.35s ease, opacity 0.25s ease;
}

.content .stelle__beschreibung {
    padding-top: 24px;
}

.content .bewerben {
    text-align: right;
}

.content .bewerben a {
    background: #e9df02;
    border-radius: 10px;
    padding: 8px 16px;
    color: #3c3c3c;
}

/* Mobile / kleine Screens */
@media (max-width: 768px) {
    .tags {
        gap: 8px;

        max-width: 75%;
        max-height: 48px;

        overflow-x: auto;
        overflow-y: hidden;

        white-space: nowrap;

        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;

        mask-image: linear-gradient(to right,
                black 85%,
                transparent);
    }

    .tags span {
        display: inline-flex;
        align-items: center;

        font-size: 14px;
        white-space: nowrap;

        flex: 0 0 auto;

        scroll-snap-align: start;
    }
}