/* =====================================================
   BLOG PAGE STYLES
   Loaded after bootstrap.css + style.css so these win
   ===================================================== */

/* --- Page Hero gradient background --- */
.page-hero {
    background: linear-gradient(135deg, #0e76bc, #075d94) !important;
    padding: 50px 0 40px !important;
    color: #fff !important;
}
.page-hero h1 {
    font-size: clamp(22px, 3.5vw, 34px) !important;
    font-weight: 900 !important;
    color: #fff !important;
    margin-bottom: 14px !important;
    margin-top: 0 !important;
    line-height: 1.25 !important;
}
.page-hero .meta {
    font-size: 13px !important;
    color: rgba(255,255,255,.72) !important;
    margin-bottom: 20px !important;
}
.page-hero > .auto-container > p {
    color: rgba(255,255,255,.85) !important;
    font-size: 15px !important;
}

/* --- Breadcrumb --- */
.breadcrumb-nav {
    background: #f0f8ff !important;
    padding: 12px 0 !important;
    font-size: 13px !important;
}
.breadcrumb-nav a { color: #0e76bc !important; text-decoration: none; }
.breadcrumb-nav span { color: #888 !important; margin: 0 6px; }

/* --- Article body text --- */
.article-body {
    font-size: 15px !important;
    line-height: 1.85 !important;
    color: #3d4f60 !important;
}
.article-body p {
    font-size: 15px !important;
    line-height: 1.85 !important;
    color: #3d4f60 !important;
    margin-bottom: 18px !important;
}
.article-body ul {
    padding-left: 22px !important;
    margin-bottom: 18px !important;
    list-style: disc !important;
}
.article-body ul li {
    font-size: 15px !important;
    color: #3d4f60 !important;
    margin-bottom: 8px !important;
    line-height: 1.7 !important;
}
.article-body strong { color: #1a2d3d !important; }
.article-body a { color: #0e76bc !important; font-weight: 700; text-decoration: none; }
.article-body a:hover { text-decoration: underline; }

/* --- Article H2 headings --- */
.article-body h2 {
    font-size: 21px !important;
    font-weight: 800 !important;
    color: #1a2d3d !important;
    margin-top: 44px !important;
    margin-bottom: 14px !important;
    padding-top: 14px !important;
    padding-bottom: 6px !important;
    border-top: 3px solid #0e76bc !important;
    display: block !important;
    line-height: 1.3 !important;
    background: none !important;
}

/* --- Article H3 headings --- */
.article-body h3 {
    font-size: 17px !important;
    font-weight: 700 !important;
    color: #0e76bc !important;
    margin-top: 26px !important;
    margin-bottom: 10px !important;
    line-height: 1.35 !important;
    background: none !important;
}

/* --- Callout box --- */
.callout-box {
    background: #f0f8ff !important;
    border-left: 4px solid #0e76bc !important;
    border-radius: 0 10px 10px 0 !important;
    padding: 18px 22px !important;
    margin: 28px 0 !important;
}
.callout-box p {
    margin: 0 !important;
    color: #444 !important;
    font-size: 14px !important;
    line-height: 1.7 !important;
}

/* --- Comparison table --- */
.table-compare {
    width: 100% !important;
    border-collapse: collapse !important;
    margin: 20px 0 !important;
    font-size: 14px !important;
}
.table-compare th {
    background: #0e76bc !important;
    color: #fff !important;
    padding: 12px 16px !important;
    text-align: left !important;
    font-weight: 700 !important;
    border: none !important;
}
.table-compare td {
    padding: 11px 16px !important;
    border-bottom: 1px solid #e0eaf3 !important;
    color: #3d4f60 !important;
    background: #fff !important;
}
.table-compare tr:nth-child(even) td {
    background: #f5faff !important;
}

/* --- FAQ --- */
.faq-item {
    border: 1px solid #e0eaf3 !important;
    border-radius: 10px !important;
    margin-bottom: 12px !important;
    overflow: hidden !important;
}
.faq-question {
    width: 100% !important;
    text-align: left !important;
    background: #fff !important;
    border: none !important;
    padding: 18px 24px !important;
    font-size: 15px !important;
    font-weight: 700 !important;
    color: #1a2d3d !important;
    cursor: pointer !important;
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    transition: .3s !important;
}
.faq-question:hover {
    background: #f0f8ff !important;
    color: #0e76bc !important;
}
.faq-question.active {
    background: #0e76bc !important;
    color: #fff !important;
}
.faq-question .faq-icon { font-size: 18px !important; transition: .3s !important; }
.faq-question.active .faq-icon { transform: rotate(45deg) !important; }
.faq-answer {
    display: none;
    padding: 16px 24px 20px !important;
    background: #fafcff !important;
    border-top: 1px solid #e0eaf3 !important;
    font-size: 14px !important;
    line-height: 1.8 !important;
    color: #444 !important;
}

/* --- Sidebar --- */
.article-sidebar {
    background: #f0f8ff !important;
    border-radius: 14px !important;
    padding: 28px 22px !important;
    border: 2px solid #d0e8f8 !important;
    position: sticky !important;
    top: 100px !important;
}
.article-sidebar h4 {
    font-size: 15px !important;
    font-weight: 800 !important;
    color: #1a2d3d !important;
    margin-bottom: 14px !important;
    margin-top: 0 !important;
}
.article-sidebar ul {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}
.article-sidebar ul li {
    padding: 6px 0 !important;
    border-bottom: 1px solid #e0eaf3 !important;
    font-size: 13px !important;
    color: #3d4f60 !important;
    background: none !important;
}
.article-sidebar ul li:last-child { border-bottom: none !important; }
.article-sidebar ul li a {
    color: #0e76bc !important;
    font-size: 13px !important;
    text-decoration: none !important;
    font-weight: 600 !important;
}

@media(max-width: 768px) {
    .article-sidebar {
        position: static !important;
        margin-bottom: 30px !important;
    }
}
