
/* Styles par défaut - 3 colonnes */
.job-card {
    width: 30%;
    margin: 20px;
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1)!important;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.job-card:hover{
    font-size:14px!important;
}
@media (max-width: 1260px) {
    .job-card {
        width: 42%;
        margin-left: 4%;
        margin-right: 4%;
    }
}


@media (max-width: 768px) {
    .job-card {
        width: 100%;
    }
}

.button_position_none {
    width:80%;
    margin:auto;
    display:flex;
    justify-content:center;
    align-items: center;
    height:200px;
}

.job-card-content {
    flex-grow: 1;
}
.job-card-content h3 {
    color: #333;
}
.job-card-content p {
    color: #555;
}
.job-card-footer {
    margin-top: auto;
}
.job-card-footer p {
    color: #008996;
    text-decoration: none;
    font-weight: bold;
}
