.vacancies-list{
    display: flex;
    gap: 15px;
    flex-direction: row;
    flex-wrap: wrap;
    width: 100%;
    align-items: flex-start;
}
.vacancies-item{
    width: 32.45%;
    background: white;
    background-image: url("/images/vacancies-bg.svg");
    background-repeat: no-repeat;
    background-position-x: 90%;
    background-position-y: 10%;
}

.vacancies-name{
    font-family: Manrope;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}
.vacancies-item-container{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding-top: 34px;
    padding-left: 30px;
    padding-right: 30px;
    padding-bottom: 40px;
    min-height: 156px;
}
.vacancies-list a{
    color: black;
}
.vacancies-list a:hover{
    color: black;
}

.vacancies-list .item-bottom{
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.vacancies-item .expr span{
    font-family: Manrope;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 21px;
    color: #747474;
}
.vacancies-item .expr{
    font-family: Manrope;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 21px;
    color: black;
}

.vacancies-item .item-city{
    color: #303030;
    font-family: Manrope;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 21px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.vacancies-item .item-cost{
    color: #303030;
    font-family: Manrope;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    display: flex;
    align-items: center;
    gap: 10px;
}
@media (max-width: 767px){
    .vacancies-list{
        flex-direction: column;
        align-items: center;
    }
    .vacancies-item{
        width: 100%;
    }
}
.vacancies-item.inactive{
    pointer-events: none;
    opacity: 0.6;
}