.article-hero{

    position:relative;

    height:600px;

    overflow:hidden;
}

.article-hero img{

    position:absolute;

    inset:0;

    width:100%;
    height:100%;

    object-fit:cover;
}

.article-overlay{

    position:absolute;

    inset:0;

    background:
    linear-gradient(
        to top,
        rgba(7,27,52,.95),
        rgba(7,27,52,.35)
    );
}

.article-hero .container{

    position:relative;

    z-index:2;

    height:100%;
}

.article-hero-content{

    height:100%;

    display:flex;

    flex-direction:column;

    justify-content:flex-end;

    padding-bottom:70px;
}

.article-category{

    display:inline-block;

    width:max-content;

    padding:12px 20px;

    background:#2DC7FF;

    color:#fff;

    border-radius:50px;

    font-weight:700;

    margin-bottom:25px;
}

.article-hero-content h1{

    color:#fff;

    font-size:58px;

    font-weight:800;

    max-width:900px;

    line-height:1.2;
}
.article-section{

    padding:100px 0;
}

.article-content{

    background:#fff;

    border-radius:30px;

    padding:50px;

    box-shadow:
    0 20px 60px rgba(0,0,0,.05);
}
.article-meta{

    display:flex;

    gap:30px;

    flex-wrap:wrap;

    margin-bottom:40px;

    padding-bottom:25px;

    border-bottom:1px solid #eef2f7;
}

.article-meta span{

    color:#64748b;

    font-weight:600;
}

.article-meta i{

    color:#2DC7FF;

    margin-right:8px;
}
.article-body{

    color:#475569;

    line-height:2;
}

.article-body h1,
.article-body h2,
.article-body h3{

    color:#071B34;

    font-weight:800;

    margin-top:35px;
    margin-bottom:20px;
}

.article-body p{

    margin-bottom:20px;
}

.article-body img{

    max-width:100%;

    border-radius:20px;

    margin:30px 0;
}

.article-body ul{

    padding-left:25px;
}
.article-sidebar{

    position:sticky;

    top:120px;
}