.main-container{
display:flex;
gap:40px;
padding:40px;
}

/* LEFT NEWS AREA */

.world-wrapper{
width:70%;
}

.world-title{
font-size:32px;
font-weight:bold;
margin-bottom:30px;
letter-spacing:1px;
border-bottom:4px solid #d40000;
padding-bottom:10px;
display:inline-block;
}

.world-item{
display:flex;
gap:25px;
align-items:center;
margin-bottom:35px;
padding-bottom:25px;
border-bottom:1px solid #eee;
}

.world-text{
width:70%;
}

.world-text h3{
font-size:28px;
line-height:1.3;
margin-bottom:10px;
}

.world-text a{
text-decoration:none;
color:#111;
transition:.3s;
}

.world-text a:hover{
color:#d40000;
}

.world-text p{
font-size:16px;
color:#666;
line-height:1.5;
}

/* IMAGE */

.world-img{
width:30%;
}

.world-img img{
width:100%;
height:160px;
object-fit:cover;
border-radius:8px;
}


.world-img img{

transition:0.3s;
}

.world-img:hover img{
transform:scale(1.05);
}







/* RIGHT SIDEBAR SPACE */

.world-sidebar{
width:30%;
}

/* MOBILE */

@media(max-width:768px){

.main-container{
flex-direction:column;
padding:20px;
}

.world-wrapper{
width:100%;
}

.world-sidebar{
display:none;
}

.world-item{
flex-direction:column;
}

.world-text{
width:100%;
}

.world-img{
width:100%;
}

.world-text h3{
font-size:22px;
}

.world-img img{
height:200px;
}

}