*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:Arial,Helvetica,sans-serif;
    background:#f5f7fa;
    color:#333;
}

.hero{
    display:block;
    width:100%;
    height:auto;
}

main{
    width:96%;
    max-width:1700px;
    margin:30px auto;
    padding:0;
}

h1{
    font-size:2rem;
    margin-bottom:30px;
}

h2{
    font-size:1.4rem;
    margin:35px 0 15px;
    font-weight:600;
}

p{
    font-size:1.1rem;
    line-height:1.8;
    margin-bottom:20px;
}

hr{
    max-width:300px;
    margin:35px auto;
    border:0;
    border-top:1px solid #ddd;
}

footer{
    text-align:center;
    padding:15px 20px;
    color:#777;
    border-top:1px solid #ddd;
}

.news-list{
    display:flex;
    flex-direction:column;
    gap:16px;
    margin-top:25px;
}

.news-card{
    display:grid;
    grid-template-columns:150px 1fr;
    gap:18px;

    align-items:center;

    padding:12px 24px;

    width:100%;
    box-sizing:border-box;

    background:#fff;
    border:1px solid #dfe5ec;
    border-radius:16px;

    text-decoration:none;
    color:#222;

    transition:.2s;
}

.news-card:hover{
    border-color:#0b57c2;
    box-shadow:0 6px 18px rgba(0,0,0,.08);
}

.news-left{
    display:flex;
    justify-content:center;
    align-items:center;
}

.news-icon{
    width:130px;
    height:130px;
    object-fit:contain;
}

.news-center{
    display:flex;
    flex-direction:column;
    justify-content:center;
}

.news-top{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:6px;
}

.news-source{
    font-size:15px;
    font-weight:600;
    color:#555;
}

.news-date{
    font-size:14px;
    color:#888;
    white-space:nowrap;
}

.news-title{
    font-size:18px;
    font-weight:700;
    line-height:1.35;
    margin:0;
}

.news-perex{
    margin-top:8px;
    font-size:15px;
    line-height:1.5;
    color:#666;
}

.news-right{
    display:none;
}