.ujam-accordeon__trigger { 
    display: flex;
    width: 100%;
    padding: 1rem 1rem 1rem 0;
    background: transparent;
    border: none;
    text-align: left;
    font-size: 1rem;
    cursor: pointer;
    gap: 0.5rem;
    align-items: center;
    justify-content: space-between;
}

.ujam-accordeon__trigger:focus { 
    outline: 2px solid #283146; 
}

.ujam-accordeon__panel { 
    max-height: 0; 
    overflow: hidden;
    transition: max-height 0.32s ease;
    padding: 0 1rem;
}

.ujam-accordeon__item { 
    border-bottom: 2px solid #2831461A; 
}
.ujam-accordeon__item.is-open .ujam-accordeon__arrow { 
    transform: rotate(225deg); 
}
.ujam-accordeon__item.is-open .ujam-accordeon__panel { 
    max-height: 2000px;
}

.ujam-accordeon-tab__body { 
    padding: 1rem 0 2rem 0; 
}

.ujam-accordeon__arrow { 
    display: inline-block;
    width: 10px;
    height: 10px;
    margin-left: 0.75rem;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg);
    transition: transform 0.24s ease;
}

/* Dark mode: make header and arrow white */
body.layout-dark-mode .ujam-accordeon__trigger,
body.layout-dark-mode .ujam-accordeon__title {
	color: #fff;
}

body.layout-dark-mode .ujam-accordeon__arrow {
	border-right-color: #fff;
	border-bottom-color: #fff;
}

body.layout-dark-mode .ujam-accordeon__item { 
    border-bottom: 2px solid #FFFFFF1A; 
}
