
/* =============================================================
   CAREERS — ADDITIVE STYLES
   Scoped to the Careers listing page and single job pages only.
============================================================= */
.px-careers-grid{
	display:grid;
	grid-template-columns:repeat(2,minmax(0,1fr));
	gap:24px;
}

.px-career-card{
	background:var(--px-white);
	border:1px solid #e5e5e8;
	box-shadow:var(--px-shadow-sm);
	padding:28px;
	display:flex;
	flex-direction:column;
	transition:transform var(--px-transition),box-shadow var(--px-transition),border-color var(--px-transition);
}

.px-career-card:hover{
	transform:translateY(-5px);
	box-shadow:var(--px-shadow-md);
	border-color:#d9dade;
}

.px-career-card h3{
	font-size:22px;
	margin:0 0 10px;
	color:var(--px-black);
}

.px-career-meta{
	display:flex;
	flex-wrap:wrap;
	gap:10px 18px;
	margin-bottom:14px;
}

.px-career-meta span{
	display:inline-flex;
	align-items:center;
	gap:6px;
	font-size:13px;
	color:var(--px-grey-700);
}

.px-career-meta svg{
	width:15px;
	height:15px;
	color:var(--px-red);
	flex-shrink:0;
}

.px-career-card p{
	color:var(--px-grey-700);
	font-size:14.5px;
	margin-bottom:20px;
	flex:1;
}

.px-career-empty{
	grid-column:1 / -1;
	padding:50px;
	text-align:center;
	background:var(--px-grey-100);
}

/* Single job page */
.px-career-single-meta{
	display:flex;
	flex-wrap:wrap;
	gap:14px 28px;
	padding:20px 0;
	margin-bottom:28px;
	border-top:1px solid #ececef;
	border-bottom:1px solid #ececef;
}

.px-career-single-meta span{
	display:inline-flex;
	align-items:center;
	gap:8px;
	font-size:14px;
	color:var(--px-grey-700);
}

.px-career-single-meta svg{
	width:16px;
	height:16px;
	color:var(--px-red);
	flex-shrink:0;
}

.px-career-closed{
	background:var(--px-grey-100);
	padding:26px;
	border-left:4px solid var(--px-red);
}

.px-career-apply-section{
	margin-top:16px;
}

.px-form input[type="file"]{
	border:1px solid #ddd;
	border-radius:0;
	padding:12px 14px;
	background:var(--px-white);
	width:100%;
	box-sizing:border-box;
	font-family:inherit;
	font-size:14px;
}

@media (max-width:900px){
	.px-careers-grid{
		grid-template-columns:1fr;
	}
}
