.article-page{
    /* padding-top:120px ; */
    background:#f8fafc;
}

.article-content-wrapper{

    background:white;

    border-radius:30px;

    overflow:hidden;

    box-shadow:0 15px 40px rgba(0,0,0,.05);
}

.article-meta-box{

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:30px;
}

.author-box{

    display:flex;

    align-items:center;

    gap:15px;
}

.author-avatar{

    width:60px;
    height:60px;

    border-radius:50%;

    background:
    linear-gradient(
        135deg,
        #ff6b35,
        #dc2626
    );

    color:white;

    display:flex;

    align-items:center;
    justify-content:center;

    font-weight:700;

    font-size:22px;
}

.author-box h6{

    margin:0;

    color:#081120;
}

.author-box span{

    color:#64748b;
}

.article-category{

    background:#fff3ee;

    color:#dc2626;

    padding:10px 18px;

    border-radius:50px;

    font-size:13px;

    font-weight:600;
}

.article-featured-image{

    height:500px;
}

.article-featured-image img{

    width:100%;
    height:100%;

    object-fit:cover;
}

.article-body{

    padding:50px;
}

.article-body p{

    color:#475569;

    font-size:17px;

    line-height:2;
}

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

    color:#081120;

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

.article-body img{

    max-width:100%;

    border-radius:20px;

    margin:30px 0;
}

.article-sidebar{

    position:sticky;

    top:120px;
}

.sidebar-widget{

    background:white;

    padding:30px;

    border-radius:25px;

    margin-bottom:25px;

    box-shadow:0 10px 30px rgba(0,0,0,.05);
}

.sidebar-widget h4{

    margin-bottom:25px;

    color:#081120;
}

.sidebar-post{

    display:flex;

    gap:15px;

    margin-bottom:20px;
}

.sidebar-post img{

    width:90px;
    height:90px;

    object-fit:cover;

    border-radius:15px;
}

.sidebar-post h6{

    color:#081120;

    margin-bottom:6px;
}

.sidebar-post span{

    color:#64748b;

    font-size:13px;
}

.sidebar-cta{

    padding:35px;

    border-radius:25px;

    background:
    linear-gradient(
        135deg,
        #ff6b35,
        #dc2626
    );

    color:white;
}

.sidebar-cta h4{

    margin-bottom:15px;
}

.btn-sidebar{

    display:inline-block;

    margin-top:15px;

    background:white;

    color:#dc2626;

    padding:12px 25px;

    border-radius:50px;

    font-weight:600;
}

.blog-cta{
    /* padding:120px 0; */
    background:#f8fafc;
}

.blog-cta-box{

    position:relative;

    overflow:hidden;

    padding:80px 60px;

    border-radius:35px;

    background:
    linear-gradient(
        135deg,
        #ff6b35 0%,
        #f97316 40%,
        #dc2626 100%
    );

    box-shadow:
    0 30px 80px rgba(220,38,38,.25);
}

.blog-cta-box::before{

    content:"";

    position:absolute;

    width:400px;
    height:400px;

    right:-120px;
    top:-120px;

    border-radius:50%;

    background:rgba(255,255,255,.08);
}

.blog-cta-box::after{

    content:"";

    position:absolute;

    width:250px;
    height:250px;

    left:-70px;
    bottom:-70px;

    border-radius:50%;

    background:rgba(255,255,255,.05);
}

.cta-content{

    position:relative;
    z-index:2;

    max-width:750px;
}

.cta-badge{

    display:inline-block;

    padding:10px 20px;

    background:rgba(255,255,255,.15);

    backdrop-filter:blur(10px);

    border-radius:50px;

    color:white;

    font-weight:600;

    letter-spacing:1px;

    margin-bottom:20px;
}

.blog-cta h2{

    color:white;

    font-size:52px;

    font-weight:800;

    line-height:1.2;

    margin-bottom:25px;
}

.blog-cta p{

    color:rgba(255,255,255,.9);

    font-size:18px;

    line-height:1.9;

    margin-bottom:35px;

    max-width:650px;
}

.cta-buttons{

    display:flex;
    gap:15px;
    flex-wrap:wrap;
}

.cta-btn-primary{

    display:inline-flex;
    align-items:center;
    gap:10px;

    padding:16px 30px;

    background:white;

    color:#dc2626;

    border-radius:50px;

    font-weight:700;

    transition:.4s;
}

.cta-btn-primary:hover{

    transform:translateY(-5px);

    color:#dc2626;
}

.cta-btn-secondary{

    display:inline-flex;
    align-items:center;

    padding:16px 30px;

    border:2px solid rgba(255,255,255,.3);

    color:white;

    border-radius:50px;

    transition:.4s;
}

.cta-btn-secondary:hover{

    background:white;

    color:#dc2626;
}

.cta-decoration{

    position:absolute;

    right:60px;
    bottom:40px;

    z-index:1;
}

.cta-decoration i{

    font-size:180px;

    color:rgba(255,255,255,.08);
}

@media(max-width:991px){

    .blog-cta-box{
        padding:50px 30px;
    }

    .blog-cta h2{
        font-size:36px;
    }

    .cta-decoration{
        display:none;
    }
}