.desktop-action-content {
    display: none;
}

.actions-title-with-line {
    margin-left: calc(50% - 40px);
}

.actions-wrapper-content {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin: 0 auto;
    /* width: 350px;*/
    /*fonctionne mieux sans  */
}

.action-column {
    width: 50%;
    max-width: 250px;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
}

.action-card {
    background-color: var(--grey-500);
    margin-bottom: 2rem;
    min-height: 450px;
}

.action-card .action-card-content {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.action-card .action-card-img {
    margin-bottom: 1.5rem;
    height: 220px;
    min-height: 220px;
    display: flex;
    justify-content: center;
    align-items: stretch;
    overflow: hidden;
}

.action-card img {
    width: unset;
    max-width: unset;
    height: 100%;
}

.action-card:hover {
    transform: scale(1.1);
    z-index: 10;
    position: relative;
    overflow: hidden;
}

.action-card {
    overflow: visible; /* Laisse l'image dépasser */
}


.action-card .action-card-title,
.action-card .action-card-paragraph {
    padding: 0 1.5rem;
}

.action-card .action-card-title {
    font-size: var(--font-size-20);
    font-weight: 400;
    text-align: center;
    text-transform: uppercase;
    line-height: 1.2;
    color: var(--black);
}

.action-card .action-card-paragraph {
    font-weight: 400;
    font-size: 16px;
    line-height: 1.2;
    text-align: center;
    color: var(--grey-700);
    /* margin: 50px 20px 20px 20px; */
    flex-grow: 1;
    display: flex;
    align-items: center;
}

@media (min-width: 768px) {
    .actions-title-with-line {
        margin-left: calc(50% - 20px);
    }

    .actions-wrapper-content {
        gap: 50px;
    }
}

@media (min-width: 1024px) {
    .our-actions {
        display: none;
    }

    .actions-title-with-line {
        margin-left: 2em;
    }

    .desktop-action-content {
        display: block;
        margin: 6rem auto;
    }

    .desktop-action-content .our-action-with-before {
        font-size: var(--font-size-32);
    }

    .desktop-action {
        display: flex;
        gap: 10px;
        /* overflow-x: auto; */
        justify-content: space-between;
    }

    .desktop-action>a,
    .desktop-action>.action-card {
        width: 18%;
        max-width: 250px;
    }

    .action-card {
        height: 500px;
        display: flex;
        flex-direction: column;
    }
}