.job_card {
    padding: 25px 30px;
    border-radius: 25px;
    background-color: #fff;
    border: 1px solid #f4a942;
    transition: all 0.3s ease-in-out;

    &:hover {
        box-shadow: 2px 2px 10px #00000020;
    }

    .text_urgency {
        width: fit-content;
        padding-inline: 20px;
        border-radius: 40px;
        color: #fff;
        background: #0351C4;
    }

    .apply_job {
        width: 100%;
        padding: 5px 0;
        border-radius: 50px;
        color: #fff;
        font-weight: bold;
        text-align: center;
        background-color: #f4a942;
        transition: all 0.3s ease-in-out;
    }

    .card_location_wrapper {
        position: relative;

        .card_location {
            width: 250px;
            display: block;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .card_tooltip {
            position: absolute;
            top: -45px;
            left: 0;
            padding: 5px 10px;
            border-radius: 5px;
            background-color: #696969;
            color: #fff;
            opacity: 0;
            transition: all 0.3s ease-in-out;
            white-space: nowrap;
            z-index: 10;
        }

        .card_location:hover ~ .card_tooltip {
            opacity: 1;
        }
    }

    .card_title,
    .card_location,
    .card_hiring,
    .card_urgency {
        color: #c57303;
    }
}
