.job {
    min-width: 340px;
    height: 300px;
    background: var(--white);
    box-shadow: 0 0 2px var(--grey);
    border-radius: 10px;
    padding: 20px;

    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: column;
}

.job_header {
    width: 100%;
    height: 20%;

    display: flex;
    justify-content: space-between;
    align-items: center;
    column-gap: 20px;
}

.job_logo {
    width: auto;
    height: 100%;
}

.job_header_titles {
    width: auto;
    height: auto;

    display: flex;
    justify-content: flex-start;
    align-items: flex-end;
    flex-direction: column;
    row-gap: 10px;
}

.job_header_rol,
.job_header_company,
.job_description {
    color: var(--grey);
}

.job_header_rol,
.job_header_company {
    text-align: right;
}

.job_header_company {
    font-weight: normal;
}

.job_description {
    font-weight: 600;
}

.job_footer {
    width: 100%;
    height: 26%;
    border-top: 1px solid var(--grey);

    display: flex;
    justify-content: space-between;
    align-items: center;
}

.job_salary {
    color: var(--grey);
    font-weight: bold;
}

.job_details_btn {
    width: auto;
    height: 60%;
    background: var(--violet);
    padding: 0 16px;
    border-radius: 6px;
    text-decoration: none;
    transition: ease .4s;
    color: var(--white);

    display: flex;
    justify-content: center;
    align-items: center;
}

@media(hover:hover) {
    .job_details_btn:hover {
        background: var(--dark_violet);
    }
}