*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:tahoma;
}

body{

    background:#eef2f5;
    direction:rtl;
    color:#333;

}

.container{

    width:90%;
    max-width:1200px;
    margin:40px auto;

}

h1{

    text-align:center;
    color:#053734;
    margin-bottom:40px;
    font-size:38px;

}

.empty{

    background:#fff;
    padding:40px;
    text-align:center;
    border-radius:15px;
    box-shadow:0 8px 20px rgba(0,0,0,.08);
    font-size:22px;
    color:#666;

}

.news-card{

    display:flex;
    gap:25px;
    align-items:flex-start;

    background:#fff;

    border-radius:18px;

    overflow:hidden;

    margin-bottom:30px;

    box-shadow:0 10px 25px rgba(0,0,0,.08);

    transition:.3s;

    border-right:8px solid #D4AF37;

}

.news-card:hover{

    transform:translateY(-6px);

    box-shadow:0 15px 35px rgba(0,0,0,.15);

}

.news-card img{

    width:320px;
    height:220px;
    object-fit:cover;
    flex-shrink:0;

}

.news-content{

    flex:1;
    padding:25px;

}

.news-content h2{

    color:#053734;
    margin-bottom:10px;
    font-size:30px;

}

.date{

    color:#888;
    margin-bottom:18px;
    font-size:15px;

}

.news-content p{

    line-height:2;
    font-size:17px;
    color:#444;

}

.read-more{

    display:inline-block;

    margin-top:20px;

    background:#053734;

    color:white;

    padding:12px 28px;

    text-decoration:none;

    border-radius:8px;

    transition:.3s;

}

.read-more:hover{

    background:#D4AF37;

    color:#053734;

}

.back-btn{

    display:inline-block;

    margin-bottom:30px;

    text-decoration:none;

    background:#053734;

    color:white;

    padding:12px 22px;

    border-radius:8px;

    transition:.3s;

}

.back-btn:hover{

    background:#D4AF37;

    color:#053734;

}

@media(max-width:900px){

.news-card{

    flex-direction:column;

}

.news-card img{

    width:100%;
    height:260px;

}

}

@media(max-width:600px){

.container{

    width:95%;

}

h1{

    font-size:28px;

}

.news-content{

    padding:18px;

}

.news-content h2{

    font-size:24px;

}

.news-content p{

    font-size:15px;

}

.news-card img{

    height:220px;

}

.back-btn{

    width:100%;
    text-align:center;

}

.read-more{

    width:100%;
    text-align:center;

}

}

.badge{

    display:inline-block;

    background:#D4AF37;

    color:#053734;

    font-weight:bold;

    padding:6px 15px;

    border-radius:20px;

    margin-bottom:15px;

}