<div class="search">search</div>
<div class="news">news</div>
<aside class="sidebar">sidebar</aside>
<main class="content">content</main>
.search{
width: 25%;
height: 50px;
background: red;
position: absolute;
right: 0;
top: 0;
}
.sidebar{
width: 25%;
height: 750px;
background: green;
position: absolute;
right: 0;
top: 50px;
}
.news{
width: 75%;
height: 350px;
background: blue;
}
.content{
width: 75%;
height: 450px;
background: black;
}
@media (max-width: 800px) {
.search{
position: static;
width: 75%;
margin: 0 auto;
}
.sidebar{
position: static;
width: 100%;
}
.news{
width: 100%;
}
.content{
width: 100%;
}
}