.job-listings {
    display: flex;
    flex-direction: column;
    gap: 40px;
}
.job-listing {
    border-left: 10px solid #0047FF;
    padding: 50px 60px;
    background: #fff;
    box-shadow: 0 0 5px rgba(0,0,0,0.05);
}
.job-date {
    color: #0047FF;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 15px;
	letter-spacing:2px;
}
.job-title {
    font-size: 2.5em;
    font-weight: normal;
    margin: 0 0 12px 0;
}
.job-description {
    margin-bottom: 24px;
    font-size: 18px;
}
.job-button {
    background: #003CCF;
    border: 0 !important;
    box-shadow: none;
    font-family: 'Aktiv-grotesk-med', sans-serif !important;
    text-transform: uppercase;
    border-radius: 0;
    padding: 20px 30px;
    letter-spacing: 2px;
    font-size: 18px;
    transition: .25s;
	text-decoration:none;
	color:#fff;
	font-weight:500;
	display:inline-block;
}
.job-button:hover {
	color:#fff;
	background:#48C5E9;
}


