.job__lists-items-header{
	max-width: 696px;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 40px;
}

.job__lists-items-header h2{
	margin-bottom: 12px;
}

.job__lists-items-loop-grid{
	display: grid;
	grid-template-columns: repeat(1, 1fr);
	gap: 32px;
}

.job__lists-item-inner{
	overflow: hidden;
	border-radius: 8px;
	position: relative;
	height: 100%;
	background-color: var(--white);
	    display: flex;
    flex-direction: column;
}

.job__lists-item-inner a{
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	width: 100%;
	height: 100%;
}

.job__lists-item-featured-image img,
.job__lists-item-featured-image-placeholder{
	width: 100%;
	height: 230px;
	object-fit:contain;
}

 .job__lists-item-featured-image-placeholder svg{
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.job__lists-item-content-below{
	padding: 24px;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.job__lists-item-source{
	background-color: var(--dark-blue);
	color: var(--apricot);
	padding: 8px 12px;
	border-radius: 100px;
	letter-spacing: 1.44px;
	text-transform: uppercase;
	margin-bottom: 12px;
	width: fit-content;
}

.job__lists-item-content-below h3{
	margin-bottom: 12px;
}

.job__lists-item-content-below p{
	margin: 0;
}


.job__lists-item-content-below p.gb_inner-link-btn{
	padding-left: 0;
	width: fit-content;
}

.job__lists-item-content-below p.gb_inner-link-btn svg circle{
	color: var(--dark-blue);
}

.job__lists-item-content-below p.gb_inner-link-btn svg  path{
	color: var(--white);
}

.bg_darkblue .job__lists-items-header h2,
.bg_darkblue .job__lists-items-header p{
	color: var(--apricot);
}
 
@media screen and (min-width: 769px){
	.job__lists-items-header{
		margin-bottom: 56px;
	}
	
	.job__lists-items-loop-grid{
		grid-template-columns: repeat(2, 1fr);
	}
	
	.job__lists-item-featured-image{
		height: 260px;
	}
	
	.job__lists-item-content-below{
		padding: 32px;
	}
}

@media screen and (min-width: 980px){
	.job__lists-items-loop-grid{
		grid-template-columns: repeat(3, 1fr);
	}
}