h1.page-title{
    max-width: 950px;
    font-size: 36px;
    vertical-align: middle;
}

#accueil{
    display: flex;
}
#accueil >.left-col{
    width: 35%;
    padding-right: 40px;
    margin-right: 40px;
    position: relative;
}
#accueil > .left-col:before{
    content: '';
    position: absolute;
    top: -25px;
    left: -25px;
    width: 100%;
    height: 100%;
    background-image: url(../assets/img/yellow-trame.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 1000px;
}
#accueil> .left-col > *{
    position: relative;
}
#accueil > .left-col .site-description{
    position: relative;
}
#accueil > .left-col .site-description:before{
    content: '';
    position: absolute;
    top: -2px;
    left: 0;
    width: 40px;
    height: 8px;
    background-color: var(--blue-color);
}

#accueil > .right-col{
    width: 65%;
}
#accueil > .right-col > h2{
    margin-bottom: 20px;
}
#accueil > .right-col > h2:after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 40px;
    height: 4px;
    background-color: var(--blue-color);
}
#accueil > .right-col > h2::before{
    display: none;
}
#accueil .right-col-inner{
    display: grid;
    grid-template-columns: repeat(3, calc(33% - 50px));
    column-gap: 50px;
}
#accueil >  .left-col img{
    width: 80%;
}

#accueil .right-col .block-articles{
    padding-left: 20px;
    padding-top: 20px;
    position: relative;
    margin-bottom: 80px;
    cursor: pointer;
}
#accueil .right-col .block-articles:before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 90%;
    height: 200px;
    background-color: var(--yellow-color);
    transition: .3s;
}
#accueil .right-col .block-articles:hover:before{
    width: calc(100% + 20px);
    height: calc(100% + 20px);
}
#accueil .right-col .block-articles > *{
    position: relative;
    line-height: 1.4;
}
#accueil .right-col .block-articles .header-block{
    margin-bottom: 20px;
}
#accueil .right-col .block-articles .header-block img{
    position: relative;
    width: 100%;
    height: 190px;
    object-fit: cover;
}
#accueil .right-col .block-articles .main-block span{
    display: block;
}
#accueil .right-col .block-articles .title-block {
    font-weight: 900;
    font-size: 18px;
}
#accueil .right-col .block-articles .main-block .place-block{
    margin-bottom: 10px;
    font-weight: 900;
    line-height: 1.2;
}

#accueil .right-col .block-articles .main-block .date-block {
    text-transform: uppercase;
}
#accueil .right-col .block-articles .main-block .description-block {
    line-height: 1.2;
}
