.job-list{
padding: 0;
font-size: $baseFontSize;
line-height: 1.4;
list-style: none;
> * + * {
margin-top: 10px;
}
}
.job-list__link {
display: block;
padding: 20px;
border: solid 2px currentColor;
font-size: 1.1em;
color: $brightBlue;
text-decoration: none;
transition: all 0.2s;
&:hover {
color: #fff !important;
}
.on-light & {
color: $lightGrey;
&:hover {
color: $blue !important;
}
}
}