.job-listings-section {
	background: var(--main-100, #E5E5E5) linear-gradient(180deg, rgba(68, 204, 0, 0.05) 0%, rgba(68, 204, 0, 0.1) 100%);
	padding: 100px 0 120px;
}

/* Header Styles */
.job-listings-header {
	margin-bottom: 40px;
}

.job-listings-section .arrow-link {
	gap: 10px;
}

.job-listings-section .arrow-link h2,
.job-listings-section .arrow-link h3 {
	font-size: var(--font-size-h-2);
}

.job-listings-section a.arrow-link:hover h2,
.job-listings-section a.arrow-link:hover h3 {
	color: #44CC00 !important;
}

.job-listings-section .arrow-link svg {
	position: relative;
	top: 3px;
	width: 18px;
}

.page-home .job-listings-section .arrow-link svg {
	position: relative;
	top: 8px;
	width: 44px;
}

.page-home .job-listings-section .arrow-link h2 {
	font-size: var(--heading-font-size-large);
}

.section-title-wrapper {
	align-items: center;
	display: flex;
	gap: 25px;
}

.title-icon {
	height: 61px;
	width: 31px;
}

.section-title {
	color: var(--main-900, #1A1A1A);
	font-family: 'Stag LCG', serif;
	font-size: var(--heading-font-size-large);
	font-weight: 600;
	line-height: 1.05;
	margin: 0;
}

/* Grid Layout */
.job-listings-grid {
	display: grid;
	gap: 20px;
	grid-template-columns: repeat(4, 1fr);
	max-width: 1440px;
}

/* Job Card Styles */
.job-card {
	background-color: var(--main-0, #FFFFFF);
	border-bottom: 4px solid var(--main-300, #B2B2B2);
	border-radius: 2px;
	display: block;
	overflow: hidden;
	position: relative;
	text-decoration: none;
	transition: all 0.3s ease;
}

.job-card:hover .job-title {
	color: #44CC00;
}

.job-card:hover {
	border-bottom-color: #44CC00;
}

.job-card-content {
	display: flex;
	flex-direction: column;
	gap: 30px;
	justify-content: space-between;
	padding: 30px;
  position:relative;
  z-index:1
}

.job-card-header {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.job-category {
	color: var(--main-600, #666666);
	font-family: 'Inter', sans-serif;
	font-size: 10px;
	font-weight: 500;
	letter-spacing: 1px;
	line-height: 1.2;
	text-transform: uppercase;
}

.job-title {
	color: var(--main-900, #1A1A1A);
	font-family: 'Stag LCG', serif;
	font-size: 24px;
	font-weight: 400;
	line-height: 1.2;
	margin: 0;
	transition: all 0.3s ease;
}

.job-description {
	-webkit-box-orient: vertical;
	color: var(--main-900, #1A1A1A);
	display: -webkit-box;
	font-family: 'Inter', sans-serif;
	font-size: 16px;
	font-weight: 400;
	-webkit-line-clamp: 4;
	line-clamp: 4;
	line-height: 1.4;
	margin: 0;
	overflow: hidden;
	text-overflow: ellipsis;
}

.job-card-footer {
	display: flex;
	gap: 5px;
	justify-content: space-between;
}

.job-meta {
	color: var(--main-900, #1A1A1A);
	font-family: 'Inter', sans-serif;
	font-size: 10px;
	font-weight: 600;
	line-height: 1.2;
	white-space: nowrap;
}

@media (max-width: 1599px) {
	.job-listings-section {
		padding: 80px 0 100px;
	}
}

@media (max-width: 1023px) {
.job-listings-grid {
    grid-template-columns: repeat(2, 1fr);
}
}

@media (max-width: 767px) {
	.job-listings-grid {grid-template-columns: 1fr}
	.job-card{border-bottom-color: #44CC00}
	.job-card-content {padding:30px 20px}
}


.job-card:after {
    content: "";
    background: linear-gradient(180deg, rgba(68, 204, 0, 0.00) 50%, rgba(68, 204, 0, 0.10) 100%), var(--main-0, #FFF);
    bottom: 0;
    left: 0;
    right: 0;
    position: absolute;
    height: 0%;
    transition: all 0.3s ease;
}

.job-card:focus:after{height:90%}