.recherche {
    .recherche__section {
        padding: 0 2rem;
    }

    .recherche__section__resultat {
        display: flex;
        margin: 3rem 0;
        flex-direction: column;
        align-items: stretch;
        width: 100%;

        .recherche__section__resultat__titre {
            a {
                font-family: var(--police-titres);
                font-weight: var(--graisseur-normal);
                font-size: var(--mobile-taille-grosTitresSecondaires);
            }
        }

        .recherche__section__resultat__post-type {
            font-style: italic;
            font-weight: var(--graisseur-tres-mince);
            font-size: var(--mobile-taille-liens);
        }

        hr {
            width: 100%;
            border-radius: 10px;
            height: 3px;
            border: 0;
            background-image: linear-gradient(90deg, #3FE4D6 21.9%, #892BE4 77.62%);
        }
    }

    @media screen and (min-width: 768px) {
        .recherche__section__resultat {
            .recherche__section__resultat__titre {
                a {
                    font-size: var(--tablette-taille-titresSecondaires);
                    cursor: pointer;
                }
            }
        }
    }

    @media screen and (min-width: 1024px) {}
}