/*=====================================
IN BLOG
=====================================*/

.inBlogPage{
    background:#f7fafc;
}

.blogContainer{
    width:min(1200px,calc(100% - 40px));
    margin:auto;
}

/*==============================
Hero
==============================*/

.blogArticleHero{
    padding:90px 0 70px;
    background:#fff;
}

.articleMeta{
    display:flex;
    align-items:center;
    gap:14px;
    margin-bottom:24px;
    font-size:14px;
    color:#0789c8;
    font-weight:600;
}

.articleMeta .dot{
    width:5px;
    height:5px;
    border-radius:50%;
    background:#0789c8;
}

.blogArticleHero h1{
    font-size:48px;
    line-height:1.3;
    color:#183241;
    margin-bottom:30px;
    font-weight:700;
}

.articleLead{
    max-width:900px;
    font-size:18px;
    line-height:2;
    color:#5c6d78;
}

.heroImage{
    margin-top:50px;
}

.heroImage img{
    width:100%;
    display:block;
    border-radius:18px;
}

/*==============================
Article
==============================*/

.blogArticleContent{
    padding:80px 0;
}

.editor{
    max-width:900px;
    margin:auto;
}

.editor h2{
    font-size:34px;
    color:#183241;
    margin:70px 0 25px;
    line-height:1.4;
    position:relative;
    padding-left:20px;
}

.editor h2::before{
    content:"";
    width:6px;
    height:34px;
    background:#0789c8;
    position:absolute;
    left:0;
    top:8px;
    border-radius:30px;
}

.editor h3{
    font-size:26px;
    color:#183241;
    margin:45px 0 18px;
    line-height:1.5;
}

.editor p{
    font-size:17px;
    color:#5c6d78;
    line-height:2.1;
    margin-bottom:28px;
    text-align:justify;
}

.editor img{
    width:100%;
    display:block;
    margin:45px auto;
    border-radius:16px;
}

/*==============================
Back
==============================*/

.articleBack{
    padding-bottom:90px;
    text-align:center;
}

.backBtn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:16px 40px;
    border:2px solid #0789c8;
    border-radius:999px;
    color:#0789c8;
    font-weight:700;
    transition:.35s;
}

.backBtn:hover{
    background:#0789c8;
    color:#fff;
}

/*==============================
Responsive
==============================*/

@media(max-width:1024px){

    .blogArticleHero h1{
        font-size:40px;
    }

    .editor h2{
        font-size:30px;
    }

    .editor h3{
        font-size:24px;
    }

}

@media(max-width:768px){

    .blogArticleHero{
        padding:70px 0 50px;
    }

    .blogArticleContent{
        padding:60px 0;
    }

    .articleBack{
        padding-bottom:70px;
    }

    .blogArticleHero h1{
        font-size:34px;
    }

    .articleLead{
        font-size:16px;
    }

    .editor h2{
        font-size:28px;
        margin:55px 0 20px;
    }

    .editor h2::before{
        height:28px;
        top:6px;
    }

    .editor h3{
        font-size:22px;
    }

    .editor p{
        font-size:16px;
    }

}

@media(max-width:480px){

    .blogContainer{
        width:calc(100% - 30px);
    }

    .articleMeta{
        flex-wrap:wrap;
        gap:8px;
        font-size:13px;
    }

    .blogArticleHero h1{
        font-size:28px;
    }

    .articleLead{
        font-size:15px;
        line-height:1.9;
    }

    .editor h2{
        font-size:24px;
        padding-left:16px;
    }

    .editor h2::before{
        width:5px;
        height:24px;
    }

    .editor h3{
        font-size:20px;
    }

    .editor p{
        font-size:15px;
        line-height:1.9;
    }

    .backBtn{
        width:100%;
    }

}