.page-hero{
    padding:96px 0 58px;
    background:
            radial-gradient(circle at 50% 0%, rgba(47,128,237,.12), transparent 28rem),
            #ffffff;
    border-bottom:1px solid var(--line);
}

.page-hero small{
    display:block;
    margin-bottom:18px;
    color:var(--blue);
    font-size:14px;
    font-weight:800;
    letter-spacing:.32em;
    text-transform:uppercase;
}

.page-hero h1{
    margin:0 0 20px;
    max-width:820px;
    color:var(--navy-2);
    font-size:clamp(3rem, 5vw, 5rem);
    line-height:1;
    letter-spacing:-.06em;
    font-weight:900;
}

.page-hero p{
    margin:0;
    max-width:760px;
    color:var(--muted);
    font-size:clamp(1.05rem, 1.4vw, 1.35rem);
    line-height:1.65;
}

.insights-section{
    padding:72px 0 100px;
}

.insights{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:22px;
}

.article{
    overflow:hidden;
    background:#ffffff;
    border:1px solid var(--line);
    border-radius:24px;
    box-shadow:var(--shadow);
    transition:transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.article:hover{
    transform:translateY(-4px);
    border-color:#d3dae5;
    box-shadow:0 22px 55px rgba(14,27,45,.11);
}

.article-link{
    display:block;
    height:100%;
}

.article-media{
    aspect-ratio:16 / 10;
    background:
            linear-gradient(180deg, rgba(15,39,64,.10), rgba(15,39,64,.25)),
            url("../assets/home-ban.png") center / cover no-repeat;
}

.article-media.has-image{
    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;
}

.article-body{
    padding:24px;
}

.article-body small{
    display:block;
    margin-bottom:8px;
    color:#667381;
    font-weight:700;
}

.article h2{
    margin:0 0 10px;
    color:var(--navy-2);
    font-size:22px;
    line-height:1.12;
    letter-spacing:-.035em;
    font-weight:850;
}

.article p{
    margin:0;
    color:var(--muted);
    line-height:1.65;
}

.status-message{
    grid-column:1 / -1;
    padding:28px;
    border-radius:20px;
    background:#ffffff;
    border:1px solid var(--line);
    color:var(--muted);
    box-shadow:var(--shadow);
}

@media (max-width:980px){
    .insights{
        grid-template-columns:1fr 1fr;
    }
}

@media (max-width:640px){
    .insights{
        grid-template-columns:1fr;
    }
}