.archive-item {
    display: flex;
    flex-direction: column;
}

.archive-image {
    order: 1;
}

.archive-title {
    order: 2;
    font-size: 18px;
    padding: 1vw 1vw;
    text-align: center;
}

.archive-divider {
    order: 3;
    justify-self: center;
    margin: 1vw 0vw;
    width: 100%;
    border: solid 1px black;
    transition: all ease-in-out 0.5s;
}

.mcd-button-emplois {
    order: 4;
    display: inline-block;
    background-color: #FFC72C;
    color: #292929;
    padding: 8px 18px;
    margin: 10px auto;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: background-color 0.2s ease;
    align-self: center;
}

.mcd-button-emplois:hover {
    background-color: #FFBC0D;
}

.archive-item:hover .archive-divider {
    width: 70%;
    border: solid 1px #949494;
}

