.news-block{
background:linear-gradient(180deg,#111827,#1c1c29);
padding:18px;
margin-bottom:20px;
border-radius:14px;
border:1px solid rgba(255,255,255,0.08);
box-shadow:0 10px 30px rgba(0,0,0,0.5);
transition:all 0.3s ease;
position:relative;
overflow:hidden;
}

.news-block:hover{
transform:translateY(-5px);
box-shadow:0 15px 40px rgba(0,0,0,0.7);
border:1px solid rgba(56,189,248,0.3);
}

.news-block h3{
color:#38bdf8;
margin-bottom:10px;
font-size:18px;
letter-spacing:0.5px;
}

.news-block p{
color:#cbd5f5;
line-height:1.6;
}

.news-info{
font-size:12px;
color:#94a3b8;
margin-bottom:10px;
}

.news-block:before{
content:"";
position:absolute;
left:0;
top:0;
width:4px;
height:100%;
background:#dc2626;
border-radius:2px;
}