body { 
    margin: 0; 
    background-color: #dddddd;
}
.container{
    padding: 25px 25px 50px 50px;
    gap:25px; 
    display:flex;
    
}
@media screen and (max-width:1000px) {
    .container{
        display: block;
        margin: 0;
        padding: 10px;        
    }
    
}
.news-detail{
    max-width: 1000px;
    padding: 20px;
    background-color: #f3f3f3;
    box-shadow: 0px 5px 1 0px #000000ee;
    border-radius: 10px;
    height: auto;
    margin-bottom: 40px;
}
.news-detail h1 {
    font-family: Roboto-Regular, sans-serif;
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 10px;
}
.news-detail-content {
    font-size: 18px;
    margin: 30px 0px;
    line-height: 1.5;
}
.news-detail img {
    width: 100%;
    max-height: 500px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 20px;
}
strong{
    font-style: italic;
}
.sidebar{
    max-width: 1000px;
    padding: 20px;
    background-color: #f3f3f3;
        
    border-radius: 10px;
    height: 100%;
}
.side-item{
    display:flex;
    gap:10px; 
    margin-bottom:15px;
}
.sidebar .side-item img {
    width: 80px;
    height: auto;
    object-fit: cover;
    border-radius: 6px;
}
.side-item a{
    text-decoration: none;
}
.side-item a:hover{
    text-decoration: underline;
}