.newsMainContainer {
    width: 100%;
    height: fit-content;
    margin-top: 5%;
}

.manchette-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 90%;
    margin: 0 auto;
    padding: 20px 0 20px 0;
    background-color: #410000;
}

.manchette-container a {
    text-align: center;
    font-size: 1.7rem;
    font-weight: bold;
    width: 100%;
    color: #fff;
}

.newsContainer {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    border-radius: 30px;
    width: 90%;
    margin: 0 auto;
    margin-top: 1%;
}

/* ALL NEWS CONTAINER ON THE LEFT */
.news-left {
    height: 80%;
    width: 35%;
}

.title-left h3 {
    padding: 0 20px 0 0;
    color: #000000;
    font-size: 1.8rem;
    font-weight: 600;
    text-align: right;
    border-right: 2px #e6e4e4 solid;
    border-left: 2px #e6e4e4 solid;
    width: 100%;
    border-bottom: 2px solid #e6e4e4;
    border-top: 3px solid #410000;
}

.title-left h3:hover {
    color: #410000;
    transition: all 0.55s ease;
}

.news-left-description {
    float: left;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: #888 #f5f5f5;
    height: 100vh;
    border-right: none;
    border-bottom: 2px #e6e4e4 solid;
    border-right: 2px #e6e4e4 solid;
    border-left: 2px #e6e4e4 solid;
    width: 100%;
}

.news-left-description div {
    display: flex;
    align-items: flex-start;
    flex-direction: row-reverse;
}

.newsShortDesc {
    width: 100%;
    height: 90px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    border-bottom: 1px solid #e6e4e4;
}

.time h3 {
    font-size: 16px;
    font-weight: normal;
}

.newsContent {
    text-align: right;
    direction: rtl;
    color: black;
    padding-right: 4%;
}

/* NEWS RIGHT SCROLL BAR */
.news-left-description::-webkit-scrollbar {
    width: 12px;
    /* width of the scrollbar */
}

.news-left-description::-webkit-scrollbar-track {
    background-color: rgba(230, 230, 230, 0.66);
}

.news-left-description::-webkit-scrollbar-thumb {
    background-color: rgba(160, 160, 160, 0.399);
}

/* THE IMAGE/PDF CONTAINER */
.pdf-container {
    display: flex;
    width: 60%;
}

.pdfImgContainer {
    width: 100%;
    height: 90%;
}

.pdf-image {
    width: 100%;
    height: 100%;
}

.flyer-wrapper {
    position: relative;
    background-color: #410000;
    height: 100%;
}

.flyerTextContainer {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
}

.flyerText {
    color: rgb(255, 255, 255);
    font-size: 18px;
    font-weight: normal;
}

@media screen and (min-width: 851px) and (max-width: 1200px){
    .newsContent {
        font-size: 0.8rem;
    }
    
    .title-left h3{
        font-size: 1.3rem;
    }

    .flyerText h2{
        font-size: 1.3rem;
        padding: 15px;
    }

    .manchette-container a{
        font-size: 1.3rem;
    }
}

@media screen and (max-width: 850px){

    .newsMainContainer{
        margin-bottom: 20%;
    }

    .manchette-container a{
        font-size: 1rem;
    }

    .newsContainer{
    flex-direction: column;
    height: auto;
    }

    .news-left{
    order: 1;
    width: 100%;
    margin-top: 10%;
    }

    .pdf-container{
        width: 100%;
    }

    .flyerText h2{
        font-size: 1rem;
    }

}