/***OVERRIDE MAIN***/
:root{
	--event-kalender-border-radius: 0.3rem;
}

/** THIS **/
.jobs{
	overflow-x:auto;
	line-height: 1.2rem;
	padding:0.1rem;
}

.jobs p{margin:0;}

.jobs .job-ou,.jobs.jobs-content p{margin-bottom:0.75rem;}

.job-list{
	width:100%;
}

.job-list th {
	background-color: #ddd;
	padding:0.3rem;
	white-space:nowrap;
}

.job-list tr:nth-child(even) {
	background-color: #fcfcfc;
}

.job-list tr:nth-child(odd) {
	background-color: #f0f0f0;
}

.job-list td{
	border-bottom:none;
	padding:0.3rem;
}

.job-entry{
	border-radius: var(--event-kalender-border-radius);
	box-shadow: rgb(67 71 85 / 27%) 0px 0px 0.25em, rgb(90 125 188 / 5%) 0px 0.25em 1em;
	cursor: pointer;
	padding: 0.775rem;
	width: 100%;
	border: none;
	text-align: left;
	transition: all 0.25s ease;
	display:block;
	background-color: var(--grey-6);
}

.job-entry:hover{
	background-color: rgba(var(--rgb-main-color),0.15);
}

.job-entry:not(:last-child) {
	margin-bottom: 1rem;
}

.job-entry h3{
	background:unset;
	color:initial;
	padding:initial;
	margin:0;
}

.job-footer{
	border-top:1px solid var(--grey-4);
	padding-top:0.5rem;
	display:grid;
	grid-auto-flow:column;
	transition: all 0.25s ease;
}

.job-entry:hover .job-footer{
	border-top:1px solid var(--grey-3);
}

.job-footer p{
	color:var(--grey-1);
	margin:0;
}

.job-footer:after{
	content: "❯";
	float: right;
	color: rgb(0, 0, 0);
	justify-self: end;
}

.job-internal{
	font-weight:700;
	text-transform: uppercase;
	color:var(--main-color);
}