@charset "utf-8";
/* CSS Document */

.blog-premium-intro{
    background:#f8fafc;
    border:1px solid #e5e7eb;
    border-radius:24px;
    padding:35px;
    margin-bottom:35px;
}

.blog-premium-intro h2{
    font-size:36px;
    line-height:1.3;
    margin-bottom:18px;
    color:#111827;
}

.blog-premium-lead{
    font-size:19px;
    line-height:1.9;
    color:#475569;
}

.blog-highlight-box{
    background:#fff;
    border:1px solid #e5e7eb;
    border-radius:20px;
    padding:28px;
    margin:30px 0;
}

.blog-highlight-box h3{
    margin-bottom:16px;
    color:#111827;
}

.blog-highlight-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:18px;
    margin-top:20px;
}

.blog-highlight-item{
    background:#f8fafc;
    border-radius:16px;
    padding:20px;
}

.blog-highlight-item strong{
    display:block;
    margin-bottom:8px;
    color:#111827;
}

.blog-highlight-item p{
    margin:0;
    color:#64748b;
    line-height:1.7;
}

.blog-premium-section{
    margin:38px 0;
}

.blog-premium-section h2{
    color:#111827;
    margin-bottom:18px;
}

.blog-premium-section p{
    color:#475569;
    line-height:1.9;
}

.blog-tips-box{
    background:#111827;
    border-radius:24px;
    padding:32px;
    margin:40px 0;
}

.blog-tips-box h2{
    color:#fff;
    margin-bottom:18px;
}

.blog-tips-box li{
    color:#d1d5db;
    margin-bottom:10px;
}

.blog-faq{
    margin-top:40px;
}

.blog-faq h3{
    margin-top:24px;
    color:#111827;
}

.blog-faq p{
    color:#475569;
}

@media(max-width:991px){

    .blog-highlight-grid{
        grid-template-columns:1fr;
    }

    .blog-premium-intro{
        padding:24px;
    }

    .blog-premium-intro h2{
        font-size:28px;
    }

}