/* .photos-media{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 100px;
    gap: .5em;
}
.wrapper a:nth-child(2) {
    grid-column: 3;
    grid-row: 2 / 4;
}
.wrapper a:nth-child(5) {
    grid-column: 1 / 3;
    grid-row: 1 / 3;
}
.photos-media a img{
    width: 100%;
} */

.bloc{
    text-align: left;
}

.photos-media{
    display: grid;
    /* grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); */
    grid-template-columns: repeat(auto-fit, minmax(175px, 1fr));
    grid-template-rows: 125px;
    grid-gap: 0.5em;
    grid-auto-rows: 125px;
    grid-auto-flow: dense;
    grid-gap: 0.35em;
}

@media (max-width: 785px) {
    .photos-media {
      /* padding: 0.5em; */
      grid-gap: 0.25em;
    }
}

.photos-media a {
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
}

.photos-media a:nth-of-type(3n) {
    grid-column: span 2;
}
@media (max-width: 400px) {
    .photos-media a:nth-of-type(3n) {
        grid-column: span 1;
    }
}

.photos-media a:nth-of-type(4n) {
    grid-row: span 2;
}
.photos-media a img {
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
        object-fit: cover;
    border-radius: 5px;
    transition: all .35s ease;
}
.photos-media a img:hover {
    cursor: pointer;
    filter: brightness(0.5);
}

.btn-download{
    display: inline-block;
    padding: 0.6em 0.9em;
    border-radius: 0.5em;
    font-size: 14px;
    background: white;
    color: black;
    margin-top: 2em;
    transition: all .35s ease;
}
.btn-download:hover{
    filter: brightness(0.75);
}

.flex{
    display: flex;
    gap: 1em;
    /* align-items: flex-start; */
}

.flex .bloc.newsroom h1{
    margin-bottom: .6em;
}

.flex .bloc.newsroom{
    flex: 3 1 0;
    padding: 1.5em .5em 1.5em 1.5em;
}
.flex .bloc.presskit{
    flex: 1 1 0;
    min-width: 273px;
    display: flex;
    align-items: center;
}

.flex .bloc.newsroom .scroll{
    overflow-y: auto;
    height: 350px;
}

.flex .bloc.newsroom .scroll::-webkit-scrollbar {
    width: 10px;
}
.flex .bloc.newsroom .scroll::-webkit-scrollbar-track {
    /* background-color: hsl(0, 0%, 3%); */
    background-color: rgba(255, 255, 255, 0.15);
    border-radius: 100px;
    margin: 0 5rem;
}
.flex .bloc.newsroom .scroll::-webkit-scrollbar-thumb { 
    background-color: var(--main-orange-color);
    border-radius: 100px;
    border: 2px solid transparent;
    background-clip: content-box;
}
.flex .bloc.newsroom .scroll::-webkit-scrollbar-thumb:hover { 
    background-color: rgba(255, 255, 255, 1);
}

.news{
    margin-top: 1em;
    margin-right: 1em;
    display: block;
    border-left: .65em solid var(--secondary-lightbrown-color);
    padding: .55em .55em .55em 1em;
    border-top-left-radius: 0.5em;
    border-bottom-left-radius: 0.5em;
    border-top-right-radius: 0.25em;
    border-bottom-right-radius: 0.25em;
    background: rgba(0, 0, 0, 0.5);
    transition: all .15s ease;
}
.news:first-child{
    margin-top: 0;
}
.news:hover{
    border-left: .65em solid var(--main-orange-color);
    background: rgba(0, 0, 0, 0.75);
}
.news:hover .news-title{
    color: var(--main-orange-color);
}
.news p{
    margin: 0;
}
.news .news-date{
    font-family: 'Source Sans Pro Italic';
    font-size: .8em;
    color: rgba(255, 255, 255, 0.5);
}
.news .news-date:before{
    font-family: "Font Awesome 5 Free";
    content: "\f073";
    display: inline-block;
    padding-right: 5px;
    /* vertical-align: middle; */
    font-weight: 900;
}
.news .news-title{
    font-family: 'Source Sans Pro Black';
    color: var(--secondary-lightbrown-color);
    /* text-transform: uppercase; */
    padding: .25em 0;
    line-height: 16px;
    transition: all .15s ease;
}
.news .news-title .parenthese{
    font-family: 'Source Sans Pro Italic';
    color: rgba(255, 255, 255, 0.5);
    text-transform: none;
}
.news .news-link{
    text-decoration: underline;
}




@media only screen and (max-width: 685px){
    .flex{
        display: block;
    }
  }
