._b-vacancies .staff > div{
	display: grid;
	width: 240px;
	padding: 10px;
	background: linear-gradient(180deg, #000, var(--green));
	border-radius: var(--r-1);
	box-shadow: var(--box-shadow-0);
	overflow: hidden;
	grid-template-rows: auto auto;
	grid-template-columns: 1fr;
	justify-items: center;
	gap: 10px;
	font-size: 14px;
	color: #fff;
}

._b-vacancies .staff .data{
	display: flex;
	width: 100%;
	flex-direction: column;
	align-items: flex-start;
	gap: 7px;
}

._b-vacancies .staff .tel{
	display: flex;
	width: 100%;
	padding-bottom: 5px;
	border-bottom: 1px solid #fff;
	justify-content: space-between;
	align-items: center;
	gap: 10px;
}

._b-vacancies .staff .tel > div{
	display: flex;
	align-items: center;
	gap: 10px;
}

._b-vacancies .staff .img{
	display: flex;
	width: 240px;
	height: calc(240px * 1.25 + 49px);
	position: relative;
	background-color: #000;
	border-radius: var(--r-0);
	overflow: hidden;
	align-items: end;
}

._b-vacancies .staff .img > img{
	width: 100%;
	position: absolute;
	top: 0;
	transition: opacity 300ms ease;
}
._b-vacancies .staff .img > img:nth-child(2){
	opacity: 0;
}

._b-vacancies .staff .header{
	display: flex;
	width: 100%;
	z-index: 1;
	background-color: var(--bgrey-160);
	transition: transform 200ms ease;
	transform: translateY(calc(100% - 50px));
	flex-direction: column;
}
._b-vacancies .staff .header > h3{
	margin: 0;
	padding: 5px 10px 0 10px;
	font-weight: 300;
	font-size: 1.6em;
	color: #000;
}
._b-vacancies .staff .header > span{
	padding: 0 10px;
	font-style: italic;
	color: var(--bgrey-60);
}

._b-vacancies .staff .functions{
	width: 100%;
	margin-top: 5px;
	padding: 5px 10px 0 10px;
	background: linear-gradient(180deg, #000 -450%, var(--green));
	color: #fff;
}
._b-vacancies .staff .functions > .__list{
	--color: #fff;
}

._b-vacancies .staff > div:hover .img > img:nth-child(1){
	opacity: 0;
}
._b-vacancies .staff > div:hover .img > img:nth-child(2){
	opacity: 1;
}

._b-vacancies .staff > div:hover .img > .header{
	background-color: rgba(var(--bgrey-160-rgb),0.9);
	transform: none;
}