._b-vacancy{
	display: flex;
	width: calc(100% - var(--page-hor-padding) * 2);
	padding: 0 var(--page-hor-padding);
	flex-direction: column;
	align-items: center;
	gap: 10px;
	font-size: 16px;
}



._b-vacancy > div{
	display: flex;
	max-width: 1100px;
	width: calc(100% - 100px);
	/* position: relative; */
	padding: 15px 50px 25px 50px;
	border-radius: var(--r-1);
	background-color: #fff;
	overflow: hidden;
	flex-direction: column;
}



._b-vacancy > div > .overline{
	display: grid;
	padding-bottom: 8px;
	margin-bottom: 15px;
	border-bottom: 1px solid var(--grey-40);
	align-items: center;
	grid-template-columns: 1fr auto auto;
	gap: 20px;
}

._b-vacancy > div > .overline > .date{
	font-style: italic;
	color: var(--grey-60);
}

._b-vacancy > div > .overline > .id{
	cursor: pointer;
	font-size: 0.9em;
	color: var(--grey-40);
}

._b-vacancy > div > .overline > .id:hover{
	text-decoration: underline;
}

._b-vacancy > div > .overline > a{
	padding: 0.25em 1em;
	border: 0.2em solid;
	border-radius: var(--r-0);
	white-space: nowrap;
	font-size: 1.2em;
}



._b-vacancy > div > .header{
	display: flex;
	margin-bottom: 3px;
	justify-content: space-between;
	align-items: center;
	gap: 20px;
}

._b-vacancy > div > .header > h2{
	padding: 0;
	margin: 0;
	line-height: normal;
	font-size: 2.2em;
}

._b-vacancy > div > .header > .salary{
	white-space: nowrap;
	font-size: 1.6em;
	font-weight: 600;
}



._b-vacancy > div > .status{
	display: flex;
	margin-bottom: 15px;
	align-items: center;
	gap: 10px;
}

._b-vacancy > div > .status > div{
	display: flex;
	height: 28px;
	padding: 0 15px;
	border-radius: 14px;
	align-items: center;
	gap: 7px;
}

._b-vacancy > div > .status > div.hot{
	background-color: rgb(230,180,150);
	color: var(--red);
}

._b-vacancy > div > .status > div.armor{
	background-color: var(--green-10);
	color: var(--green);
}



._b-vacancy > div > .department{
	display: flex;
	margin-bottom: 20px;
	align-items: center;
	color: var(--grey-80);
}

._b-vacancy > div > .department > i{
	margin-right: 7px;
	font-size: 1.2em;
	color: var(--bgrey-60);
}



._b-vacancy > div > .description{
	color: var(--grey-60);
}
._b-vacancy > div > .description > img{
	max-width: 360px;
	max-height: 210px;
}