/**
 * Job Card Widget Styles
 */

.job-card {
    display: block;
    padding: 20px 25px;
    background-color: #ffffff;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    text-decoration: none;
    transition: border-color 0.3s ease, background-color 0.3s ease;
}

.job-card:hover {
    border-color: #f7941d;
    text-decoration: none;
}

.job-card__title {
    margin: 0 0 10px 0;
    font-size: 14px;
    font-weight: 700;
    color: #f7941d;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.job-card__desc {
    margin: 0;
    font-size: 14px;
    color: #666666;
    transition: color 0.3s ease;
}
