.article{
    display: grid;
    width: 100%;
    grid-template-columns: 1fr 4fr;
}



.imgArt{
    display: block flex;
    background-color: white;
    height:100%;
    width: 100%;
    text-align: center;
    align-items: center;
    justify-content: center;
}

.imgArt img{
    max-width: 90%;
    max-height: 90%;
    width: auto;
    height: auto;
    margin: 0  auto;

}

.dateArt{
    background-color: white;
    border-bottom: 1px solid black;
    color: black;
    width: 100%;
    padding: 10px 0 7px 0;
    text-align: center;
}

.titleArt{
    background-color: white;
    border-bottom: 1px solid black;
    padding: 10px 0 7px 0;
    width: 100%;
    color: black;
    text-align: center;
}

.citationArt{
    font-family: druk;
    margin: 1vw;
    font-size: 2vw;
}

.redirectionArt{
    display: block;
    width: fit-content;
    line-height: 0;
    white-space: none;
    margin: 2vw 0;
    transition: .1s;
    background-color: black;
    padding: .5vw 1vw;
    border: 1px solid white;
}
.redirectionArt img{
    width: 1.5vw;
    height: auto;
}
.redirectionArt:hover{
    filter: invert(1);
}

.pageMedia{
    display: block;
    position: relative;
    margin: var(--marge);
}

.pageMedia a{
    font-family: druk;
    font-size: var(--DrTitle);
    transition: .2s;
    padding: 1vw 2vw;
    border: 1px solid white;
    background-color: black;
}

.pageMedia a:hover{
    background-color: white;
    color: black;
}


@media (orientation : portrait){
    .imgArt{
        display: none;
    }

    .article{
        display: block;
        width: 100%;
        grid-template-columns: unset;
    }

    .citationArt{
        line-height: 1.3;
        margin: 5vw;
        font-size: var(--DrTitle);
    }
    .redirectionArt{
        margin: 5vw 0;
        padding: 2.5vw 5vw;
        border: 1px solid white;
    }

    .redirectionArt img{
        width: 5vw;
        height: auto;
    }

    .pageMedia a{
        padding: 2.5vw 5vw;
    }
  

}