@font-face {
	font-family: 'Satoshi';
	src: url('../fonts/Satoshi-Medium.woff2') format('woff2');
	font-weight: 500;
	font-style: normal;
	font-display: swap;
}

.elixo-job-cards {
	display: flex;
	flex-direction: column;
	gap: 1rem;
	max-width: 100%;
	margin: 0 auto;
	font-family: 'Inter', sans-serif;
}

.elixo-job-card {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	background: #fff;
	border: 1px solid #e4e5e7;
	border-radius: 2rem;
	padding: 2.5rem 3rem;
	transition: box-shadow 0.2s ease;
	position: relative;
	box-shadow: 0 0 10px 6px #f4f4f4;
	transition: all 0.3s ease;
	padding-bottom: 2rem;
}

.elixo-job-card:hover {
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
	transform: translateY(-4px);
}

.elixo-card-content {
	flex: 1;
	padding-right: 20px;
}

.elixo-dept-pill {
	display: inline-block;
	padding: 5px 20px;
	border-radius: 100px;
	border: 1px solid #e4e5e7;
	font-size: 14px;
	font-weight: 500;
	margin-bottom: 12px;
	color: inherit;
	background: transparent;
}

.elixo-dept-pill.elixo-dept-design {
	background: #DCFCE7;
	border-color: #DCFCE7;
	color: #16A34A;
}

.elixo-dept-pill.elixo-dept-engineering {
	background: #DBEAFE;
	border-color: #DBEAFE;
	color: #1D4ED8;
}

.elixo-dept-pill.elixo-dept-management {
	background: #FEF9C3;
	border-color: #FEF9C3;
	color: #A16207;
}

.elixo-dept-pill.elixo-dept-marketing {
	background: #FAE8FF;
	border-color: #FAE8FF;
	color: #9333EA;
}

.elixo-job-title {
	font-family: 'Satoshi', sans-serif;
	margin-top: 1rem;
}

.elixo-card-link {
	color: #222425;
	font-size: 1.6rem;
}

.elixo-card-link::after {
	content: '';
	position: absolute;
	inset: 0;
	z-index: 1;
}

.elixo-job-meta-row {
	display: flex;
	align-items: center;
	font-size: 14px;
	color: #74767e;
	gap: 1.7rem;
}

.elixo-meta-item {
	display: inline-flex;
	align-items: center;
	gap: 6px;
}

.elixo-meta-item img {
	width: 16px;
	height: 16px;
	opacity: 0.7;
}

.elixo-card-action {
	margin-left: 20px;
}

.job-apply-btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	position: relative;
	z-index: 2;
}

.job-apply-btn img {
	width: 18px;
	height: 18px;
	vertical-align: middle;
}

.elixo-recent-jobs-footer {
	margin-top: 30px;
	text-align: left;
	padding-left: 3rem;
}

.elixo-recent-jobs-footer a {
	text-decoration: none;
	color: #222425;
	font-weight: 500;
	display: inline-flex;
	align-items: center;
	font-size: 16px;
	font-family: 'Inter', sans-serif;
}

.elixo-recent-jobs-footer a:hover {
	color: #04AD68;
}

.elixo-recent-jobs-footer a svg {
	margin-left: 8px;
	width: 18px;
	height: 18px;
}

.elixo-card-action a.job-apply-btn {
	border: 1px solid #e4e5e7;
	padding: 13px 30px;
	border-radius: 2rem;
	font-size: 18px;
	color: #222425;
	transition: all 0.3s ease;
}

.elixo-job-card:hover .elixo-card-action a.job-apply-btn {
	border-color: #04AD68;
	transition: all 0.3s ease;
}

.elixo-job-card .elixo-card-action a.job-apply-btn:hover {
	transition: all 0.3s ease;
	background: #04AD68;
}

@media (max-width: 768px) {
	.elixo-job-card {
		flex-direction: column;
		align-items: flex-start;
		padding: 1.5rem;
	}

	.elixo-card-action {
		margin-top: 20px;
		margin-left: 0;
	}

	.elixo-job-meta-row {
		flex-wrap: wrap;
		gap: 12px 16px;
	}
}