@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300..700&display=swap');

body{
    background: black;
}

.wrapper{
    background: #f5f5ef;
    width: 100%;
    height: 100%;
    max-height: 800px;
    max-width: 1500px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    display: grid;
    grid-template-columns: 1fr 1fr 2fr 1.7fr;
    padding: 2rem;
    box-sizing: border-box;
    overflow: hidden;
}

.wrapper>div{
    display: flex;
    flex-direction: column;
    min-height: 0;
}

.article-header .bigTitle{
    font-size: 7rem;
    font-family: 'Space Grotesk',sans-serif;
    font-weight: bold;

}

.article-content{
    height: 100%;
    padding: 1rem;
    
    
}
.article-content img{
    height: 100%;
    max-height: 200px;
    filter: grayscale(1);
    margin: 20px 0 20px 20px ;

}

.page-no{
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    font-size: 3rem;
    border-right: 1px solid black;
    text-align: center;
}

.article-header{
    margin: 1rem;
    padding: 1rem;
    border-bottom: 1px solid black;
    margin-top: 0;
    scroll-snap-align: start;
}

.navigation{
    border-right: 1px solid black;
}

.navigation ul{
    list-style: none;
    padding: 0;
}

.navigation ul li {
    margin: 20px;
    font-size: 2rem;
    cursor: pointer;
}
.navigation ul li:hover {
    /* scale: 1.05; */
    transform: scale(1.05);
    
}

.article-content h3{
    font-family: 'Space Grotesk',sans-serif;
    font-size: 1.8rem;
    padding: 0;
    margin: 0;
    font-weight: 400;
}

.article-content .row{
    font-style: italic;
    display: flex;
    justify-content: space-between;
    margin: 1rem 0;
}

.article-content .article-content{
    font-size: 1.1rem;
}

.article-content .see-more{
    border-top: 1px solid black;
    display: flex;
    justify-content: flex-end;
    font-size: 1.5rem;
    cursor: pointer;
}
.suggested-articles{
    overflow: auto;
    scroll-snap-type:y mandatory;
    padding-bottom: 2rem;
}

.featured{
    border-left: 1px solid black;
    max-height: inherit;
    
}
.featured .smallTitle{
    font-size: 2rem;
    font-style: italic;
}
.featured .no{
    font-size: 3rem;
    font-style: normal;
}
.featured .row{
    align-items: flex-end;
}
.featured-articles{
    padding: 1rem;
    overflow: auto;
    height: 100%;
}
.feature{
    height: auto;
}
.feature .title{
    font-size: 1.7rem;
    font-weight: 500;
    padding-bottom: 0.5rem;
}

