/* Job Item Container */
.cdjl-job-item {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding-bottom: 16px;
}

/* Job Column 1 */
.cdjl-job-col-1 {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

/* Job Title */
.cdjl-job-title a {
	color: #EBEBEB !important;
	font-family: "Atyp Display", sans-serif;
	font-size: 28px;
	font-style: normal;
	font-weight: 500;
	line-height: 150%;
	letter-spacing: -0.56px;
}

/* Employment Type */
.cdjl-employment-type {
	color: #EBEBEB;
	font-family: "Atyp Display", sans-serif;
	font-size: 20px;
	font-style: normal;
	font-weight: 500;
	line-height: 150%;
	letter-spacing: -0.4px;
}

/* Job Location List */
.cdjl-job-location-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
}

/* Job Location Item */
.cdjl-job-location-item {
	color: #DBDBDB;
	font-family: "Atyp Display", sans-serif;
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: 150%;
	letter-spacing: -0.32px;
	display: flex;
	padding: 8px 12px;
	justify-content: center;
	align-items: center;
	gap: 8px;
	border-radius: 100px;
	background: rgba(255, 255, 255, 0.10);
}

/* Location Icon */
.cdjl-job-location-item::before {
	content: "";
	height: 16px;
	width: 16px;
	background-image: url('../images/location.svg');
	background-size: contain;
	background-repeat: no-repeat;
	display: inline-block;
}

/* Category Title */
.cdjl-category-title {
	color: #FAFAFA;
	font-family: "Atyp Display", sans-serif;
	font-size: 48px;
	font-style: normal;
	font-weight: 500;
	line-height: 150%;
	letter-spacing: -0.96px;
	text-transform: uppercase;
	padding-bottom: 32px;
}

/* Job Category Container */
.cdjl-job-category {
	border-bottom: 1px solid #E7C2FF;
	margin-bottom: 64px;
	padding-bottom: 16px;
}

/* Animated Button */
.cdjl-animated-btn a {
	text-transform: uppercase;
}

.cdjl-animated-btn span {
	line-height: 1em;
}

/* Job Filters Form */
form#cdjl-job-filters,
form.cdjl-job-filters {
	display: flex;
	justify-content: space-between;
	margin-bottom: 60px;
	gap: 30px;
}

/* Filter Dropdowns */
select#cdjl-filter-department,
select.cdjl-filter-department,
select#cdjl-filter-location,
select.cdjl-filter-location {
	padding: 16px;
	background: linear-gradient(90deg, rgba(255, 255, 255, 0.10) 0%, rgba(255, 255, 255, 0.06) 100%);
	border: none;
	color: #DBDBDB;
	font-family: "Atyp Text";
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	border-radius: 8px;
}

/* No Jobs Message */
.cdjl-no-jobs {
	color: #DBDBDB;
	font-family: "Atyp Display", sans-serif;
	font-size: 24px;
	text-align: center;
	padding: 40px 0;
}

/* Responsive Styles */
@media only screen and (max-width: 768px) {
	.cdjl-job-item {
		display: block;
	}

	.cdjl-animated-btn a {
		width: 100%;
		display: flex;
		justify-content: center;
		margin-top: 16px;
	}

	.cdjl-category-title {
		font-size: 32px;
	}
}
