.job-offers-wrap {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 50rem;
    margin-inline: auto;
    .job-offer {
        border: 1px solid #e1e1e1;
        padding: 1.5rem;
        border-left: 6px solid #1c3273;
        font-size: 1rem;
        margin-bottom: 1.25rem;
    }
}
[data-accordion-content] {
    display: block;
    overflow: hidden;
    transition: max-height 0.3s ease-in-out;
    &:not(.active){
        max-height: 0;
    }
}
.job-offers-about {
    display: grid;
    @media(min-width: 1024px){
        gap: 2rem;
        grid-template-columns: repeat(2,1fr);
    }
}
