.asparagus-container{
    display: flex;
    justify-content: center;
    width: 100%;
    margin: 5rem 0 4rem;
    & .asparagus-wrapper{
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
        max-width: 800px;
        padding: 0 var(--container-space);
        & .asparagus-links{
            display: flex;
            gap: 2rem;
            & .asparagus-btn{
                display: flex;
                font-size: var(--wp--preset--font-size--s-text);
                font-weight: 600;
                gap: 0.5rem;
                padding-bottom: 0.5rem;
                border-bottom: solid 1px var(--wp--preset--color--noir);
                width: fit-content;
                transition: gap 0.3s ease;
                & span{
                    display: flex;
                    width: 16px;
                    height: 16px;
                    background: url(../../../assets/svg/btn-arrow-3.svg) no-repeat center center;
                    transform: rotate(90deg);
                }
                &:hover{
                    gap: 1.5rem;
                }
            }
        }
    }
}
@media (max-width: 576px) {
    .asparagus-container{
        margin: 1rem 0 2rem;
        & .asparagus-wrapper{
            & h1{
                & span{
                    font-size: var(--wp--preset--font-size--l-title) !important;
                }
            }
            & .asparagus-links{
                flex-direction: column;
                align-items: center;
            }
        }
    }
}