.jobplaces-wrapper {
	padding: 2rem 1rem;
	background: var(--bg-light);

}

.job-card-grid {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
	margin-bottom: 2rem;
}

.job-card {
	flex: 0 0 32%;
	box-sizing: border-box;
	background: var(--bg-light-85);
	border: var(--simple-border);
	border-radius: 1rem;
	padding: 1rem;
	box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.05);
	text-align: center;
	height: 650px
}

.job-image {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 200px;
	height: 250px;
	margin: 0.5rem auto;
}

.job-image img {
	object-fit: contain;
	border-radius: 1rem;
	width: 100%;
	height: 100%;
}

.job-card img {
	max-width: 100%;
	border-radius: 10px;
}

.job-info {
	display: flex;
	flex-direction: column;
	width: 100%;
	padding: 0;
	text-align: center;
	margin: 1rem auto;
}

.job-place-name {
	display: flex;
	justify-content: center;
	align-items: center;
	font-family: var(--heading-fontstack);
	font-size: var(--fs-lg);
	color: var(--text-first-light);
	min-height: 3rem;
	margin-bottom: 0.5rem;
}

.job-description {
	color: var(--lemon-teal);
	background: rgba(255, 255, 255, 0.3);
	padding: 1rem;
	border-radius: 1rem;
	backdrop-filter: blur(3px);
	overflow: scroll;
	max-height: 150px;
	margin-top: 0.5rem;
	margin-bottom: 1rem;
	border: var(--simple-border);
	height: 120px !important;
	width: 100%
}

.job-employees {
	font-size: 1rem;
	height: 120px !important;
	overflow: scroll;
}

.job-form-wrapper {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
	width: 100%;
	gap: 2%;
}

.job-form {
	margin-top: 1em;
}

.job-form input[type='text'] {
	padding: 4px;
	width: 60%;
}

.job-form input[type='submit'],
.job-form a.button {
	background: var(--peach, #f6cfc3);
	padding: 4px 10px;
	margin-top: 5px;
	border: none;
	cursor: pointer;
	border-radius: 5px;
	display: inline-block;
	text-decoration: none;
	color: black;
}

.job-form .disabled {
	opacity: 0.5;
	cursor: not-allowed;
}
