/* =====================================================
   Bluesun Blog Global CSS System
===================================================== */

.bs-blog-content{
    max-width: 920px;
    margin: 0 auto;
    font-family: "Poppins", sans-serif;
    color: #444;
    font-size: 16px;
    line-height: 1.9;
    -webkit-font-smoothing: antialiased;
}

.bs-blog-content p{
    margin: 0 0 24px;
    color: #555;
}

/* ===== Headings ===== */

.bs-blog-content h2{
    font-size: 34px;
    line-height: 1.3;
    font-weight: 600;
    color: #111;
    margin: 70px 0 24px;
    padding-bottom: 14px;
    border-bottom: 1px solid #ececec;
    letter-spacing: -0.3px;
}

.bs-blog-content h3{
    font-size: 24px;
    line-height: 1.45;
    font-weight: 600;
    color: #222;
    margin: 42px 0 18px;
}

.bs-blog-content h4{
    font-size: 20px;
    line-height: 1.5;
    font-weight: 600;
    color: #222;
    margin: 32px 0 14px;
}

/* ===== Links ===== */

.bs-blog-content a{
    color: #f28c28;
    text-decoration: none;
    font-weight: 500;
    border-bottom: 1px solid rgba(242,140,40,0.28);
    transition: all .25s ease;
}

.bs-blog-content a:hover{
    color: #d97512;
    border-bottom-color: #d97512;
}

/* ===== Lists ===== */

.bs-blog-content ul{
    margin: 0 0 26px 22px;
    padding: 0;
}

.bs-blog-content ul li{
    margin-bottom: 10px;
    color: #555;
}

.bs-blog-content ol{
    margin: 0 0 26px 22px;
}

.bs-blog-content ol li{
    margin-bottom: 10px;
}

/* ===== Images ===== */

.bs-blog-content img{
    width: 100%;
    height: auto;
    border-radius: 16px;
    margin: 36px 0 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.bs-blog-content figure{
    margin: 0;
}

.bs-blog-content figcaption{
    text-align: center;
    font-size: 13px;
    color: #888;
    margin-top: 10px;
    line-height: 1.6;
}

/* ===== Highlight Box ===== */

.bs-blog-highlight{
    background: #fff8f1;
    border: 1px solid #f2dcc2;
    border-radius: 16px;
    padding: 28px;
    margin: 40px 0;
}

.bs-blog-highlight h3{
    margin-top: 0;
}

.bs-blog-highlight p:last-child{
    margin-bottom: 0;
}

/* ===== Table ===== */

.bs-blog-content table{
    width: 100%;
    border-collapse: collapse;
    margin: 34px 0;
    overflow: hidden;
    border-radius: 14px;
    box-shadow: 0 4px 18px rgba(0,0,0,0.04);
}

.bs-blog-content table th{
    background: #f28c28;
    color: #fff;
    font-weight: 600;
    font-size: 15px;
    padding: 14px;
    text-align: left;
}

.bs-blog-content table td{
    border: 1px solid #ececec;
    padding: 14px;
    font-size: 15px;
    color: #555;
    background: #fff;
}

/* ===== FAQ ===== */

.bs-blog-faq{
    margin-top: 60px;
    border-top: 1px solid #ececec;
}

.bs-blog-faq-item{
    border-bottom: 1px solid #ececec;
    padding: 24px 0;
}

.bs-blog-faq-question{
    font-size: 19px;
    line-height: 1.5;
    font-weight: 600;
    color: #111;
    margin-bottom: 12px;
}

.bs-blog-faq-answer{
    font-size: 15px;
    line-height: 1.85;
    color: #555;
}

/* ===== Divider ===== */

.bs-blog-divider{
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, transparent, #e5e5e5, transparent);
    margin: 60px 0;
}

/* ===== Mobile ===== */

@media(max-width:768px){

    .bs-blog-content{
        font-size: 15px;
        line-height: 1.85;
    }

    .bs-blog-content h2{
        font-size: 28px;
        margin: 52px 0 18px;
    }

    .bs-blog-content h3{
        font-size: 22px;
        margin: 34px 0 14px;
    }

    .bs-blog-content h4{
        font-size: 18px;
    }

    .bs-blog-highlight{
        padding: 22px;
        border-radius: 14px;
    }

    .bs-blog-content table th,
    .bs-blog-content table td{
        padding: 12px;
        font-size: 14px;
    }

}