.jobs-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 16px;
}

.job-card {
	display: flex;
	flex-direction: column;
	gap: 16px;
	padding: 20px;
	min-height: 172px;
	background: #fff;
	border: 1px solid #d9d9de;
	border-radius: 14px;
	text-decoration: none;
	color: inherit;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.job-card:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.job-card__top {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 12px;
}

.job-card__department {
	font-size: 14px;
	font-weight: 700;
	line-height: 24px;
	text-transform: uppercase;
	color: #CD172D;
}

.job-card__icon {
	font-size: 18px;
	line-height: 1;
	color: #232323;
}

.job-card__title {
	margin: 0;
	color: #1C1C1C;
	font-family: "Source Sans Pro";
	font-size: 20px;
	font-style: normal;
	font-weight: 700;
	line-height: 30px; /* 150% */

}

.job-card__locations,
.job-card__setup {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.job-card__divider {
	width: 100%;
	height: 1px;
	background: #ececef;
	margin-top: auto;
}

.job-pill {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 32px;
	min-width: 80px;
	padding: 6px 12px;
	border-radius: 999px;
	background: #f4f4f5;
	font-size: 14px;
	line-height: 20px;
	color: #51525C;
	white-space: nowrap;
}

.job-pill--location {
	border: 1px solid #D1D1D6;
	background: #F4F4F5;
	color:  #51525C;
	font-family: "Source Sans Pro";
	font-size: 14px;
	font-style: normal;
	font-weight: 400;
	line-height: 20px;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 8px;
}

.job-pill--location:before{
	content: url('/wp-content/uploads/2026/04/Location.svg');
	position: relative;
	top: 2px;
}

.jobs-empty {
	margin: 0;
	color: #666;
}

@media (max-width: 1024px) {
	.jobs-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 767px) {
	.jobs-grid {
		grid-template-columns: 1fr;
	}
}