.page{

    padding:40px;

}

.news-hero{

    margin:40px 0 60px;

}

.headline-card{

    background:linear-gradient(135deg,#2563eb,#3b82f6);

    color:#ffffff;

    border-radius:24px;

    padding:48px;

    box-shadow:0 20px 45px rgba(37,99,235,.25);

}

.news-tag{

    display:inline-block;

    background:#ffffff;

    color:#2563eb;

    padding:8px 18px;

    border-radius:999px;

    font-size:13px;

    font-weight:700;

    margin-bottom:24px;

}

.headline-card h2{

    font-size:42px;

    line-height:1.25;

    margin-bottom:22px;

}

.headline-card p{

    font-size:18px;

    line-height:1.9;

    max-width:900px;

    margin-bottom:24px;

}

.headline-card small{

    opacity:.9;

}

.news-section{

    margin-top:70px;

}

.news-section h2{

    font-size:30px;

    font-weight:800;

    margin-bottom:30px;

    color:#0f172a;

    border-bottom:3px solid #2563eb;

    padding-bottom:12px;

}

.news-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));

    gap:28px;

}

.news-card{

    background:#ffffff;

    border-radius:22px;

    overflow:hidden;

    border:1px solid #e5e7eb;

    box-shadow:0 10px 30px rgba(15,23,42,.05);

    transition:.25s;

    cursor:pointer;

}

.news-card:hover{

    transform:translateY(-8px);

    box-shadow:0 22px 45px rgba(37,99,235,.14);

}

.news-image{

    height:190px;

    background:linear-gradient(135deg,#60a5fa,#3b82f6,#8b5cf6);

}

.news-card h3{

    margin:24px 24px 16px;

    font-size:22px;

    color:#111827;

    line-height:1.5;

}

.news-card p{

    margin:0 24px 20px;

    color:#64748b;

    line-height:1.8;

}

.news-card span{

    display:inline-block;

    margin:0 24px 24px;

    background:#dbeafe;

    color:#2563eb;

    padding:8px 14px;

    border-radius:999px;

    font-size:13px;

    font-weight:700;

}

.news-list{

    display:flex;

    flex-direction:column;

    gap:18px;

}

.list-item{

    background:#ffffff;

    border:1px solid #e5e7eb;

    border-radius:18px;

    padding:22px 26px;

    transition:.2s;

}

.list-item:hover{

    background:#eff6ff;

}

.list-item h3{

    margin-bottom:10px;

    color:#111827;

}

.list-item p{

    color:#64748b;

    line-height:1.8;

}

.list-item strong{

    display:inline-block;

    width:90px;

    color:#2563eb;

    font-size:18px;

}

.list-item span{

    color:#111827;

}

@media(max-width:1200px){

    .headline-card{

        padding:36px;

    }

    .headline-card h2{

        font-size:34px;

    }

}

@media(max-width:768px){

    .page{

        padding:20px;

    }

    .headline-card{

        padding:28px;

    }

    .headline-card h2{

        font-size:28px;

    }

    .headline-card p{

        font-size:16px;

    }

    .news-grid{

        grid-template-columns:1fr;

    }

}