.pcty-jobs-wrap {
	font-family: inherit;
	max-width: 1280px;
	margin: 0 auto;
}

.pcty-jobs-controls {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-bottom: 20px;
}

.pcty-jobs-controls input,
.pcty-jobs-controls select {
	padding: 8px 12px;
	border: 1px solid #ccc;
	border-radius: 4px;
	font-size: 14px;
}

.pcty-jobs-controls input {
	flex: 1 1 220px;
}

.pcty-jobs-controls select {
	flex: 1 1 160px;
}

.pcty-jobs-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(var(--pcty-col-min, 280px), 1fr));
	gap: 20px;
}

.pcty-job-card {
	border: 1px solid #e0e0e0;
	border-radius: 8px;
	padding: 20px;
	display: flex;
	flex-direction: column;
	background: #fff;
	transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.pcty-job-card:hover {
	box-shadow: 0 4px 14px rgba(0, 0, 0, 0.1);
	transform: translateY(-2px);
}

.pcty-job-card.pcty-hidden {
	display: none;
}

.pcty-job-title {
	font-size: 17px;
	font-weight: 600;
	margin: 0 0 8px;
	line-height: 1.3;
}

.pcty-job-title a {
	color: #1a1a1a;
	text-decoration: none;
}

.pcty-job-title a:hover {
	text-decoration: underline;
}

.pcty-job-meta {
	font-size: 13px;
	color: #555;
	margin-bottom: 4px;
}

.pcty-job-tags {
	margin: 10px 0;
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
}

.pcty-job-tag {
	background: #f0f0f0;
	color: #444;
	font-size: 12px;
	padding: 3px 9px;
	border-radius: 20px;
}

.pcty-job-apply {
	margin-top: auto;
	padding-top: 14px;
}

.pcty-job-apply a {
	display: inline-block;
	padding: 8px 18px;
	background: #1a1a1a;
	color: #fff;
	text-decoration: none;
	border-radius: 4px;
	font-size: 14px;
	font-weight: 500;
}

.pcty-job-apply a:hover {
	background: #333;
}

.pcty-jobs-empty {
	grid-column: 1 / -1;
	text-align: center;
	padding: 40px 0;
	color: #777;
}