.career-loop{
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 45px 24px
}
.item-career{
	border-radius: 15px;
	background:#fff;
	padding: 30px;
	position: relative;
}
.item-career:after{
	content: '';
	background: url(/wp-content/uploads/2024/05/career-icon.svg) no-repeat;
	background-size: cover;
	width: 25px;
	height: 27px;
	position: absolute;
	top: 30px;
	right: 30px;
}
.item-career .s1{
	min-height: 30px;
}
.item-career .categories{
	background: #FAA61A;
	border-radius: 4px;
	color: #fff;
	font-size: 14px;
	font-weight: 700;
	display: inline-block;
	padding: 8px;
	line-height: 1;
	display: none;
}
.item-career .title{
	font-size: 18px;
	font-weight: 300;
	line-height: 1.355;
	padding: 20px 0 10px;
}
.item-career .excerpt{
	font-size: 14px;
	height: 130px;
}
.item-career .details{
	border-radius: 4px;
	border: 1px solid #E9ECEF;
	background: #F3F4F6;
	display: flex;
	justify-content: space-between;
	padding: 15px;
	margin: 20px 0;
}
.item-career .details .val{
	font-weight: 700;
	
}
.item-career .read-more-con a{
	font-size: 14px;
	font-weight: 700;
	text-transform: uppercase;
	position: relative;
	padding-right: 30px
}
.item-career .read-more-con a:after{
	content: '\e91c';
	font-family: 'icomoon';
	font-size: 20px;
	font-weight: 400;
	position: absolute;
	top: 0;
	bottom: 0;
	right: 0;
	margin: auto;
	display: flex;
	align-items: center;
	transition: .3s ease-in-out;
}
.item-career .read-more-con a:hover:after{
	right: -10px;
}


@media(max-width: 1024px){
	.career-loop{
		grid-template-columns: repeat(2, 1fr);
		gap: 30px 20px
	}
	.item-career{
		padding: 20px;
	}
		
}

@media(max-width: 767px){
	.career-loop{
		grid-template-columns: 1fr;
		gap: 20px
	}
	.item-career{
		padding: 20px 15px;
	}
    .item-career .details{
		flex-direction: column;
		padding: 10px;
	}
		
}