#jobs-overview {
    background-color: #eaeaea;
    padding-top: 40px;
    padding-bottom: 60px;
}
.job-card-col {
    margin-bottom: 25px;
}
.job-card {
    display: flex;
    align-items: stretch;
    background-color: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    overflow: hidden;
    height: 100%;
    min-height: 200px;
    transition: box-shadow ease-in-out .15s, transform ease-in-out .15s;
}
.job-card:hover {
    box-shadow: 0 6px 16px rgba(0, 0, 0, .08);
    transform: translateY(-2px);
}
.job-card-img {
    flex: 0 0 38%;
    max-width: 38%;
    background-color: #f5f5f5;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
}
.job-card-body {
    flex: 1 1 auto;
    padding: 22px 25px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.job-card-body h3 {
    margin: 0 0 12px 0;
    padding: 0;
    color: #111;
    font-weight: 700;
    font-size: 1.15rem;
    line-height: 1.3;
}
.job-card-body .intro {
    margin: 0 0 16px 0;
    font-family: 'Open Sans', sans-serif;
    font-size: 0.85rem;
    line-height: 1.45rem;
    color: #6e6e6e;
}
.job-card-cta {
    align-self: flex-start;
    display: inline-block;
    background-color: #999;
    color: #000;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: .02em;
    padding: 9px 18px;
    text-decoration: none;
    transition: background-color ease-in-out .15s;
}
.job-card-cta:hover,
.job-card-cta:focus {
    background-color: #c1c1c1;
    color: #000;
    text-decoration: none;
}
@media only screen and (max-width: 767.88px) {
    .job-card {
        min-height: 140px;
    }
    .job-card-img {
        flex: 0 0 40%;
        max-width: 40%;
    }
    .job-card-body {
        padding: 15px 18px;
    }
    .job-card-body h3 {
        font-size: 1rem;
        margin-bottom: 8px;
    }
    .job-card-body .intro {
        font-size: 0.8rem;
        line-height: 1.3rem;
        margin-bottom: 12px;
    }
    .job-card-cta {
        font-size: 0.85rem;
        padding: 7px 14px;
    }
}
@media only screen and (max-width: 480px) {
    .job-card {
        flex-direction: column;
        min-height: 0;
    }
    .job-card-img {
        flex: 0 0 auto;
        max-width: 100%;
        height: 180px;
    }
}
