.jobs-block{
    display: flex;
    /* mobile defaults use CSS variables set inline on the wrapper */
    margin-top: var(--sb-mt-mobile, 0);
    margin-bottom: var(--sb-mb-mobile, 0);
    padding: 0 var(--gutters);
}
@media (min-width: 768px) {
    .jobs-block {
        /* desktop defaults use CSS variables set inline on the wrapper */
        margin-top: var(--sb-mt-desktop, 0);
        margin-bottom: var(--sb-mb-desktop, 0);
    }
}
.jobs-block__wrap {
    display: flex;
    width: 100%;
    flex-direction: column;
}
.jobs-block__up{
    display: flex;
    width: 100%;
    flex-direction: column;
}
.jobs-text p:first-child{
    margin-bottom: 0;
}
.jobs-text h2{
    margin-top: 0.5rem;
}
.jobs-item{
    display: flex;
    flex-direction: column;
    width: 100%;
    transition: color ease .3s;
    border: solid 1px #ECECEC;
    padding: 1rem 1rem;
}
.jobs-list{
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.jobs-tag{
    display: flex;
    width: fit-content;
    color: var(--wp--preset--color--blanc);
    text-transform: uppercase;
    padding: 5px 10px;
    font-family: "Lexend_Tera", sans-serif;
    font-size: var(--wp--preset--font-size--m-text);
}
.jobs-item-question{
    display: flex;
    font-size: var(--wp--preset--font-size--s-title);
    font-family: "Lexend_Tera", sans-serif;
    font-weight: 600;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    text-transform: uppercase;
}
.jobs-icon{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: url(../../../assets/svg/qa.svg) no-repeat center center;
    transition: transform ease .3s;
}
@media (max-width: 576px) {
    .jobs-icon{
        width: 80px;
    }
}
.jobs-item-answer{
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows ease .3s;
}
.jobs-item-answer div{
    overflow: hidden;
    transition: max-height ease .3s;
    max-height: 0;
}
.jobs-item.active .jobs-icon{
    transform: rotate(180deg);
}
.jobs-item.active .jobs-item-answer{
    grid-template-rows: 1fr;
}
.jobs-item.active .jobs-item-answer div{
    max-height: 1000px; /* large enough to show the full content */
}
.jobs-item:hover{
    cursor: pointer;
    color: var(--wp--preset--color--sauge);
}
.jobs-item-link-title{
    pointer-events: none;
}