/* median_akkordeon styles */

.ce-akkordeon {
    background-color: #f8f8f8;
    width: 100%;
}

.ce-akkordeon-container {
    padding: 40px 7.5px 40px 7.5px;
} 

.ce-akkordeon__overheadline {
    font-family: 'Open Sans', sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 30px;
    color: #343434;
    margin: 0 0 8px;
}

.ce-akkordeon__headline {
    font-family: 'Open Sans', sans-serif;
    font-size: 32px;
    font-weight: 700;
    line-height: 48px;
    color: #343434;
    margin: 0 0 32px;
}

.ce-akkordeon__headline--centered {
    text-align: center;
}

.ce-akkordeon__headline--right {
    text-align: right;
}

.ce-akkordeon-list {
    list-style: none;
    margin: 0 0 32px;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.ce-akkordeon-item {
    background-color: #ffffff;
    border-radius: 8px;
}

.ce-akkordeon-trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: none;
    padding: 24px 32px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    gap: 16px;

    &:focus {
        outline: none;
    }
}

.ce-akkordeon-title {
    font-family: 'Open Sans', sans-serif;
    font-size: 18px;
    font-weight: 700;
    line-height: 30px;
    color: #707173;
}

.ce-akkordeon-icon {
    display: block;
    position: relative;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: #0b7c72;
    color: #ffffff;

    &::before, &::after {
        display: block;
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 19px;
        height: 1px;
        background: #ffffff;
        transition: transform 0.2s ease;
    }

    &::after {
        transform: translate(-50%, -50%) rotate(90deg);
    }
}

.ce-akkordeon-item.is-open .ce-akkordeon-icon {
    &::before, &::after {
        transform: translate(-50%, -50%) rotate(180deg);
    }
}

.ce-akkordeon-panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.ce-akkordeon-panel__inner {
    padding: 0 32px 24px;
}

.ce-akkordeon-panel__body {
    display: flex;
    gap: 32px;
    align-items: flex-start;
}

.ce-akkordeon-panel__text {
    flex: 1 1 auto;
    min-width: 0;
}

.ce-akkordeon-panel__text ul {
    list-style: initial;
    padding: revert;
    margin: revert;
    margin-bottom: 1rem;
}
.ce-akkordeon-panel__text ol {
    margin-bottom: 1rem;
}

.ce-akkordeon-panel__image {
    flex: 0 0 auto;
    width: 240px;
}

.ce-akkordeon-panel__img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 4px;
}

@media (max-width: 767px) {
    .ce-akkordeon-panel__inner {
        padding: 0 16px 20px;
    }

    .ce-akkordeon-panel__body {
        flex-direction: column;
        gap: 16px;
    }

    .ce-akkordeon-panel__image {
        width: 100%;
        order: -1;
    }

    .ce-akkordeon-panel__text {
        width: 100%;
    }
}