.reassurance-picto {
    padding: 0 16px;
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-top: 60px;
    margin-bottom: 60px;
}

@media screen and (min-width: 1024px) {
    .reassurance-picto {
        padding: 0;
        gap: 64px;
        margin-top: 120px;
        margin-bottom: 120px;
    }
}

.reassurance-picto h2 {
    text-align: center;
}

.reassurance-picto .btn {
    align-self: center;
}

.reassurance-picto--content {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 32px;
}

@media screen and (min-width: 1024px) {
    .reassurance-picto--content {
        gap: 0;
        row-gap: 40px;
    }
}

.reassurance-picto--content-item {
    width: calc(50% - 16px);
    display: flex;
    flex-direction: column;
    gap: 16px;
    justify-content: center;
    align-items: center;
}

@media screen and (min-width: 1024px) {
    .reassurance-picto--content-item {
        padding: 0 32px;
        width: 25%;
    }

    .reassurance-picto--content-item:not(:last-child) {
        box-shadow: 1px 0px 0px 0px var(--green-light);
    }
}

.reassurance-picto--content-item span {
    display: block;
    text-align: center;
    font-size: 16px;
    font-weight: 600;
    line-height: 150%;
}

@media screen and (min-width: 1024px) {
    .reassurance-picto--content-item span {
        font-size: 1.125rem;
    }
}

.reassurance-picto--content-item .picto {
    width: 48px;
    height: 48px;
    -webkit-mask-size: contain;
    mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
}

.reassurance-picto--content-item:nth-child(4n - 3) .picto {
    background: var(--green);
}

.reassurance-picto--content-item:nth-child(4n - 2) .picto {
    background: var(--blue-dark);
}

.reassurance-picto--content-item:nth-child(4n - 1) .picto {
    background: var(--pink);
}

.reassurance-picto--content-item:nth-child(4n) .picto {
    background: var(--yellow);
}