@media only screen and (min-width: 600px) {
    .newsshelf{
        display:flex; 
        flex-wrap: wrap;
        justify-content: space-around;
    }
    .cell{
        margin-bottom: 3vw;
        display: flex;
        justify-content:safe;
        width: 49%;
        height: 25vw;
        border-top: 0.2vw solid #6e6c6b;
    }
    .piccover{
        width: 50%;
        height: 26vw;
        background-color: #20201fe7;
        background-size: cover;
        padding-bottom: 1vw;
    }
    .datetime{
        display: flex;
        width:98%;
        height:1.5vw;
        background: linear-gradient( to right, #f98305, #c0bdb9b0,#f98305 );
        color:#fcf9f9;
        font-size: 1vw;
        padding: 0.5vw;
        justify-content:space-between;
    }
    .picframe{
        width: 100%;
        background-size: cover;
        aspect-ratio: 1/1;
        
    }
    .story{
        margin-left: 0px;
        display: grid;
        width: 50%;
        padding: 1vw;
        height: 100%;
        font-size: 1.3vw;
        background-color:#e9e5e1 ;
        text-align: justify;
    }
    .storytittle{
        font-family: 'Times New Roman', Times, serif;
        font-weight:bold;
        color: #f17e0a;
        height: 4vw;
        margin-bottom: 2vw;
        
    }
    .storydetials{
        font-family: 'Times New Roman', Times, serif;
        height: 18vw;
        overflow: auto;
        font-size: 1.2vw;
    }
    .reaction{
        display: flex;
        justify-content:space-around;
        background: linear-gradient( to right,#e9e5e1, #c0bdb93f,#e9e5e1 );
        width:100%;
        height: 4vw;
    }
    .reactiontabs{
        text-align: center;
        background: linear-gradient( to right,#53514fe8, #6945013f,#53514fe8);
        color:white;
        width:5vw;
        height: 2vw;
        padding:0.5vw;
        padding-bottom:0px;
        font-size: 1vw;
        border-bottom-left-radius: 1vw;
        border-bottom-right-radius: 1vw;
        border: 0.1vw solid #f98305;
    }
}