/* BEGIN: Job Board Section
-----------------------------------*/
.section-page--job_board_section {
	padding: 100px 0 5em;
}

.section-page--job_board_section header {
	text-align: center;
}

.section-page--job_board_section .section-content {
	width: 1015px;
	max-width: 100%;
	margin: 0 auto;
	padding: 58px 58px 85px;
	background: var(--teak-mint);
	border-radius: var(--teak-border-radius);
	color: var(--teak-evergreen);
}

.section-page--job_board_section .section-content h2,
.section-page--job_board_section .section-content h3 {
	font-size: 45px;
}

.section-page--job_board_section .job-listings {
	flex-direction: column;
	gap: 20px;
}

.section-page--job_board_section .job-listings li {
	width: 100%;
}

.section-page--job_board_section .job-listings li a {
	display: block;
	width: 100%;
	padding: 23px 38px;
	background: url('../images/arrow_right_evergreen_024732.svg') no-repeat right 24px center / 24px var(--teak-white);
	border-radius: var(--teak-border-radius);
	font-size: 14px;
	font-weight: 500;
	letter-spacing: 0.01em;
	text-transform: uppercase;
}

/* BEGIN: Resumator Reskin
-----------------------------------*/
.section-page--job_board_section .resumator-basic-widget {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.section-page--job_board_section .resumator-job {
	display: block;
	width: 100%;
	margin-bottom: 10px;
	padding: 23px 38px;
	background: url('../images/arrow_right_evergreen_024732.svg') no-repeat right 24px center / 24px var(--teak-white);
	border-radius: var(--teak-border-radius);
	font-size: 14px;
	font-weight: 500;
	letter-spacing: 0.01em;
	text-transform: uppercase;
	position: relative;
	transition: background-position 0.3s;
}

.section-page--job_board_section .resumator-job-title {
	border-top: none;
	margin: 0;
	padding: 0;
	font-size: 14px;
	font-weight: 500;
	letter-spacing: 0.01em;
	text-transform: uppercase;
	color: var(--teak-evergreen);
	font-family: var(--teak-body-font);
}

.section-page--job_board_section .resumator-job:hover .resumator-job-title {
	color: var(--teak-seagreen);
}

.section-page--job_board_section .resumator-job-info {
	display: none;
}

.section-page--job_board_section .resumator-job-view-details {
	color: transparent;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.section-page--job_board_section .resumator-job-view-details a {
	width: 100%;
	height: 100%;
	color: transparent;
	display: block;
}

#resumator-logo {
	padding-right: 20px;
	text-align: right !important;
}

/*/////////////////////////////////////////////
//// BEGIN: Media Queries
/////////////////////////////////////////////*/

/* BEGIN: Hovers
-----------------------------------*/
@media screen and (min-width: 992px) {

	.section-page--job_board_section .job-listings li:hover a {
		background-position: right 15px center;
	}

	.section-page--job_board_section .resumator-job:hover {
		background-position: right 15px center;
	}
}

/* BEGIN: Hovers
-----------------------------------*/
@media screen and (max-width: 992px) {

	.section-page--job_board_section .section-content h2,
	.section-page--job_board_section .section-content h3 {
		font-size: 24px;
	}

	.section-page--job_board_section .section-content {
		padding: 30px 25px 40px;
	}
	
	.section-page--job_board_section .resumator-job {
		padding: 10px 50px 10px 20px;
	}
}
/* FIN */