.joblist {
    background-color: #e8f6ff;
}

.joblist-card {
    position: relative;
    background-color: #ffffff;
    padding: 1.5rem;
    margin: 10px 0;
    border-radius: 10px;
    border-bottom: 3px solid #d2e6ff;
    transition: all .2s ease-in-out;
}

.joblist-card:hover {
    transform: scale(1.02);
}

.joblist-card a {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.joblist-card-title {
    font-size: 18px;
    line-height: 1.5;
}

@media (max-width:576px) {
    .joblist-card-title {
        margin-top: 15px;
    }
}