body{
    margin:0px;
    padding: 0px;
    background-image: url("../images/fancy-cushion.webp");
}

.page_content{
    max-width: 80%;
    margin: auto;
}

.blog_container{
    background-color: lightgray;
    padding: 10px;
    display: grid;
    row-gap: 20px;
}
.major_title{
    font-size: 25px;
    background-color: rgb(233, 229, 229);
    padding: 10px;
    border-radius: 10px;
}
.news_tabloid{
    background-color: aliceblue;
    border-radius: 10px;
    background-size: 100% auto;
    min-height: 300px;
    transition: background-color 0.3s ease-out;
    overflow: hidden;
}
.news_tabloid:hover{
    background-color: rgb(192, 199, 206);
    outline: 2px dashed rgb(0, 0, 0);
    box-sizing: content-box;
    
}
.news_tabloid:hover .news_tabloid_title_bar{
    opacity: 0.0;
}

.link_for_tabloids{
    color: black;
    text-decoration: none;
}
.news_tabloid_category{
    color: rgba(196, 196, 196, 0.418);
    font-size: 15px;
}
.news_tabloid_title_bar{
    background-image: linear-gradient(180deg, black, black, rgba(0, 0, 0, 0.808), rgba(0, 0, 0, 0.603), transparent);
    padding: 10px;
    padding-bottom: 50px;
    transition: opacity 0.2s ease-out; 
}
.news_tabloid_title{
    font-size: 20px;
    color: white;
    font-weight: 600;
}
.news_tabloid_short_desc{
    color: rgb(216, 208, 208);
    text-shadow: 0px 2px 5px black;
}

.front_page_news_grid{
    display: grid;
    grid-template-columns: 33% auto 33%;
    column-gap: 10px;
    row-gap: 10px;
}

.two_column_home_blog_layout{
    display: grid;
    grid-template-columns: auto max-content;
    column-gap: 10px;
}

.category_panel{
    background-color: rgb(233, 229, 229);
    border-radius: 10px;
}
.category_list{
    display: grid;
    height: max-content;
    row-gap: 4px;
    padding: 3px;
}

.category_btn{
    background-color: white;
    padding: 3px;
    border-radius: 5px;
    cursor: pointer;
}
.category_btn:hover{
    background-color: rgb(243, 243, 243);
}

/* BLOG PAGE VIEW */
.blog_view_author{
    font-size: 16px;
}
.blog_date{
    font-size: 14px;
}