.contact-bar { display: none !important; }

#jobs-section {
    background-image: url(/assets-2020/images/body-background-white.jpg);
    background-position: top center;
    background-size: 100%;
    background-repeat: no-repeat;
	background-attachment:fixed;
    position: relative;		
}

/* Modern Job Board Styles */
.jobs-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 2rem 1rem;
}

.jobs-header {
	text-align: center;
	margin-bottom: 3rem;
}

.jobs-header h2 {
	font-size: 2.5rem;
	font-weight: 800;
	color: #124f68;
	margin-bottom: 1rem;
	letter-spacing: -1px;
}

.jobs-header p {
	font-size: 1.2rem;
	color: #666;
	max-width: 600px;
	margin: 0 auto;
}

/* Search and Filter Section */
.jobs-filters {
	background: #f8f9fa;
	border-radius: 12px;
	border:1px solid #dddddd;
	padding: 1rem;
	margin-bottom: 3rem;
	box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.filter-row {
	display: flex;
	flex-wrap: wrap;
	gap: 2rem;
	align-items: center;
}

.search-box {
	flex: 1;
	min-width: 300px;
	margin-right: 1rem;
}

.search-box input {
	width: 100%;
	padding: 12px 16px;
	border: 2px solid #e9ecef;
	border-radius: 8px;
	font-size: 1rem;
	transition: border-color 0.3s ease;
}

.search-box input:focus {
	outline: none;
	border-color: #124f68;
}

.filter-select {
	padding: 12px 16px;
	border: 2px solid #e9ecef;
	border-radius: 8px;
	font-size: 1rem;
	background: white;
	min-width: 180px;
}

.clear-filters {
	background: #6c757d;
	color: white;
	border: none;
	padding: 12px 20px;
	border-radius: 8px;
	cursor: pointer;
	font-size: 1rem;
	transition: background-color 0.3s ease;
}

.clear-filters:hover {
	background: #5a6268;
}

/* Job Results */
.jobs-results {
	margin-bottom: 2rem;
}

.results-summary {
	font-size: 1.1rem;
	color: #666;
	margin-bottom: 1.5rem;
}

/* Category Sections */
.category-section {
	margin-bottom: 3rem;
}

.category-header {
	display: flex;
	align-items: center;
	margin-bottom: 2rem;
	padding: 1.5rem 2rem;
	background: #f8f9fa;
	border-radius: 12px;
	border:1px solid #dddddd;
	box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.category-title {
	font-size: 1.6rem;
	font-weight: 700;
	margin: 0;
	margin-right: 1rem;
	line-height:1;
}

.category-count {
	color: #6c757d;
	padding: 6px 14px;
	font-size: 0.95rem;
	font-weight: 600;
	background: white;
	border-radius: 8px;
	box-shadow: 0 1px 3px rgba(0,0,0,0.1);
	white-space:nowrap;
}

/* Category-specific badge colors */
.job-category-badge.category-office { background: #e8f5e8; color: #2e7d32; }
.job-category-badge.category-clinical { background: #e3f2fd; color: #1565c0; }
.job-category-badge.category-deaf { background: #f3e5f5; color: #7b1fa2; }
.job-category-badge.category-adult { background: #e3f2fd; color: #1565c0; }
.job-category-badge.category-youth { background: #fff3e0; color: #ef6c00; }		

/* Category-specific header colors */
.category-office .category-title { color: #2e7d32; }
.category-clinical .category-title { color: #1565c0; }
.category-deaf .category-title { color: #7b1fa2; }
.category-adult .category-title { color: #1565c0; }
.category-youth .category-title { color: #ef6c00; }

/* Category-specific header border colors */
.category-office .category-header { border-left:4px solid #2e7d32; }
.category-clinical .category-header { border-left:4px solid #1565c0; }
.category-deaf .category-header { border-left:4px solid #7b1fa2; }
.category-adult .category-header { border-left:4px solid #1565c0; }
.category-youth .category-header { border-left:4px solid #ef6c00; }


/* Job Cards Grid */
.jobs-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.5rem;
}

@media (min-width: 768px) {
	.jobs-grid {
		grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
		max-width: 100%;
	}
	
	/* Limit single job card width */
	.jobs-grid .job-card:only-child {
		max-width: 500px;
		justify-self: start;
	}
}

/* Individual Job Card */
.job-card {
	background: white;
	border-radius: 12px;
	padding: 2rem;
	box-shadow: 0 4px 20px rgba(0,0,0,0.08);
	transition: all 0.3s ease;
	border: 1px solid #e9ecef;
	position: relative;
}

.job-card:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.job-card-header {
	margin-bottom: 1.5rem;
}

.job-title {
	font-size: 1.4rem;
	font-weight: 700;
	color: #212529;
	margin-bottom: 0.5rem;
	line-height: 1.3;
}

.job-department {
	font-size: 1rem;
	color: #6c757d;
	margin-bottom: 1rem;
}

.job-category-badge {
	display: inline-block;
	padding: 4px 12px;
	border-radius: 20px;
	font-size: 0.85rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}		

.job-details {
	margin-bottom: 1.5rem;
}

.job-bonus {
	background: #e8f5e8;
	color: #2e7d32;
	padding: 8px 12px;
	border-radius: 6px;
	font-size: 0.9rem;
	font-weight: 600;
	margin-bottom: 0.5rem;
	display: inline-block;
}

.job-overview {
	color: #495057;
	font-size: 1rem;
	line-height: 1.6;
	margin-bottom: 1rem;
}

.job-actions {
	display: flex;
	gap: 1rem;
	flex-wrap: wrap;
}

.btn-primary {
	background: transparent;
	color: #124f68 !important;
	padding: 12px 24px;
	border: 2px solid #124f68;
	border-radius: 8px;
	font-weight: 600;
	text-decoration: none !important;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	transition: all 0.3s ease;
	font-size: 1rem;
}

.btn-primary:hover {
	background: #124f68 !important;
	color: white !important;
	text-decoration: none !important;
	transform: translateY(-1px);
}

.btn-primary:visited {
	color: #white !important;
	text-decoration: none !important;
}

.btn-primary:focus {
	color: #white !important;
	text-decoration: none !important;
	outline: 2px solid #124f68;
	outline-offset: 2px;
}

.btn-secondary {
	background: #2e7d32;
	color: white !important;
	padding: 12px 24px;
	border: 2px solid #2e7d32;
	border-radius: 8px;
	font-weight: 600;
	text-decoration: none !important;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	transition: all 0.3s ease;
	font-size: 1rem;
}

.btn-secondary:hover {
	background: #1b5e20 !important;
	color: white !important;
	text-decoration: none !important;
	transform: translateY(-1px);
	border-color: #1b5e20;
}

.btn-secondary:visited {
	color: white !important;
	text-decoration: none !important;
}

.btn-secondary:focus {
	color: white !important;
	text-decoration: none !important;
	outline: 2px solid #28a745;
	outline-offset: 2px;
}

.no-jobs {
	text-align: center;
	padding: 3rem 2rem;
	color: #6c757d;
}

.no-jobs i {
	font-size: 3rem;
	margin-bottom: 1rem;
	color: #dee2e6;
}

/* Mobile Responsiveness */
@media (max-width: 767px) {
	
	#jobs-section {
		background-size: cover;
	}
	
	.jobs-container {
		padding: 1rem;
	}
	
	.jobs-header h2 {
		font-size: 2rem;
	}
	
	.jobs-filters {
		padding: 1.5rem;
	}
	
	.filter-row {
		flex-direction: column;
		align-items: stretch;
	}
	
	.search-box {
		min-width: auto;
	}
	
	.filter-row {
		gap: 1rem;
	}	
	
	.filter-select {
		min-width: auto;
	}
	
	.job-card {
		padding: 1.5rem;
	}
	
	.category-count {	
		display:none;
	}
	
	.job-actions {
		flex-direction: column;
	}
	
	.btn-primary, .btn-secondary {
		justify-content: center;
		text-align: center;
	}
}

@media (-webkit-device-pixel-ratio: 1) {
	@media all and (min-width: 1024px) {
		.jobs-grid {
			grid-template-columns: repeat(3, 1fr);
			max-width: 100%;
		}
		
		/* Ensure the container can accommodate 3 cards */
		.jobs-container {
			max-width: 1400px;
		}
		
		/* Adjust single job card layout for 3-column grid */
		.jobs-grid .job-card:only-child {
			max-width: none;
			justify-self: start;
		}
		
		/* Optional: Adjust card padding for better spacing */
		.job-card {
			padding: 1.75rem;
		}
	}
}

