.cadre__droite {
    width: 265px;
    background-color: #f5f5f5;
    padding: 18px 25px 45px 25px;
    display: flex;
    flex-direction: column;
    position: relative;
}

.droite__suggestions {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    margin-top: 18px;
    gap: 25px;
}

.cadre__droite h3 {

    width: 215px;
    font-size: 18px;
    color: var(--txtnoir);
}

.cadre__droite h3 span {
    font-weight: 700;
    color: var(--txtnoir);
}

.cadre__droite h3 span:first-of-type {
    color: var(--orange);
}

.cadre__droite>p {
    width: 100%;
    font-size: 8px;
    font-weight: 500;
    font-style: italic;
    text-align: end;
    bottom: 10px;
    padding-right: 10px;
    left: 0;
    position: absolute;
}

.cards {
    display: grid;
    grid-area: cards;
    row-gap: 30px;
    width: fit-content;
}

@media screen and (max-width:700px) {
    .droite__suggestions{
        justify-content: center;
    }
}