section.m17_akkordeon .m17_akkordeon_main {
    display: flex;
    gap: 46px;
}

section.m17_akkordeon .m17_titel span {
    font-family: "IvyJournal", sans-serif;
    font-weight: 400;
}

section.m17_akkordeon .m17_text_content,
section.m17_akkordeon .m17_akkordeon_items {
    width: 50%;
}

section.m17_akkordeon .m17_akkordeon_items {
    display: flex;
    flex-direction: column;
    gap: 23px;
}

section.m17_akkordeon .m17_text_content {
    padding-right: 130px;
}

section.m17_akkordeon .m17_links_container {
    margin-top: 71px;
}

section.m17_akkordeon .m17_text_content {
    margin-top: -13px;
}

section.m17_akkordeon .m17_akkordeon_item_content_main *,
section.m17_akkordeon .m17_text_container * {
    font-family: "stratos-lights", sans-serif;
}

/* transition */

section.m17_akkordeon .m17_akkordeon_item_head_icon_container,
section.m17_akkordeon .m17_akkordeon_item_content,
section.m17_akkordeon .m17_akkordeon_item_head {
    -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -ms-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
}

/* *** */

section.m17_akkordeon .m17_akkordeon_item_head {
    display: flex;
    justify-content: space-between;
    padding: 27px 35px 24px 48px;
    background-color: #f5f8fa;
    cursor: pointer;
    align-items: center;
    border-radius: 20px;
}

/* beschriftung */

section.m17_akkordeon .m17_akkordeon_item_head_beschriftung {
    padding-right: 20px;
}

section.m17_akkordeon .m17_akkordeon_item_head_beschriftung * {
    -webkit-transition: color 0.4s;
    -moz-transition: color 0.4s;
    -ms-transition: color 0.4s;
    -o-transition: color 0.4s;
    transition: color 0.4s;
    font-weight: 400;
}

/* *** */

/* icon */

section.m17_akkordeon .m17_akkordeon_item_head_icon_container {
    border-radius: 17.5px;
    border: 1px solid rgba(0, 42, 77, 0.3);
    background-color: transparent;
    width: 35px;
    min-width: 35px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background-color .4s;
}

section.m17_akkordeon .m17_akkordeon_item_head:hover .m17_akkordeon_item_head_icon_container,
section.m17_akkordeon .m17_akkordeon_item.active .m17_akkordeon_item_head_icon_container {
    background-color: #002a4d;
}

section.m17_akkordeon .m17_akkordeon_item_head_icon_container svg {
    fill: #0a2f57;
    width: 19px;
    min-width: 19px;
    transform: rotate(90deg);
    transition: fill .4s, transform .4s;
}

section.m17_akkordeon .m17_akkordeon_item_head:hover .m17_akkordeon_item_head_icon_container svg,
section.m17_akkordeon .m17_akkordeon_item.active .m17_akkordeon_item_head_icon_container svg {
    fill: #fff;
    transform: rotate(-90deg);
}

/* *** */

/* content */

/* content */
section.m17_akkordeon .m17_akkordeon_item_content {
    overflow: hidden;
    padding: 0 140px 0 48px;
    background-color: #f5f8fa;
    border-radius: 0 0 20px 20px;
    
    max-height: 0;
    transition: max-height 0.45s cubic-bezier(0.4, 0, 0.2, 1),
                background-color 0.4s, all .4s;
}

section.m17_akkordeon .m17_akkordeon_item_content_main {
    padding-bottom: 40px;
}

section.m17_akkordeon .m17_akkordeon_item.active .m17_akkordeon_item_content {
    max-height: 600px; /* großzügig – passt sich nach unten an */
}

/* *** */

/* active & hover */

section.m17_akkordeon .m17_akkordeon_item.active .m17_akkordeon_item_head {
    border-radius: 20px 20px 0 0;
}

section.m17_akkordeon .m17_akkordeon_item.active .m17_akkordeon_item_head,
section.m17_akkordeon .m17_akkordeon_item.active .m17_akkordeon_item_content {
    background-color: #dde5eb;
}

section.m17_akkordeon .m17_akkordeon_item.active .m17_akkordeon_item_head_icon_container svg{
    -webkit-transform:rotate(-90deg);
    -moz-transform:rotate(-90deg);
    -ms-transform:rotate(-90deg);
    -o-transform:rotate(-90deg);
    transform:rotate(-90deg);
}

/* *** */

@media screen and (max-width: 991px) {
    section.m17_akkordeon .m17_text_content,
    section.m17_akkordeon .m17_akkordeon_items {
        width: 100%;
    }
    
    section.m17_akkordeon .m17_akkordeon_main {
        display: flex;
        flex-direction: column;
        gap: 46px;
    }
    
    section.m17_akkordeon .m17_links_container {
        margin-top: 30px;
    }
    
    section.m17_akkordeon .m17_text_content {
        margin-top: 0;
    }
}

@media screen and (max-width: 767px) {
    section.m17_akkordeon .m17_text_content {
        padding-right: 0;
    }
}

@media screen and (max-width: 575px) {
    section.m17_akkordeon .m17_akkordeon_item_head {
        padding: 17px 20px 14px 20px;
    }
    
    section.m17_akkordeon .m17_akkordeon_item_content {
        padding: 0 50px 0 20px;
        margin-top: -14px;
    }
    
    section.m17_akkordeon .m17_akkordeon_item_content_main {
        padding-bottom: 30px;
    }
    
    section.m17_akkordeon .m17_titel {
        hyphens: auto;
    }
}