/* ========== Blog Single Article Page Styles ========== */
.blog-single-hero {
    background: #0f2b4d;
}

.blog-single-section {
    padding: 40px 0 70px;
}
.blog-single-inner {
    display: grid;
    grid-template-columns: 2.4fr 1fr;
    gap: 40px;
}

/* Article Featured Image */
.featured-image {
    margin-bottom: 30px;
    border-radius: 6px;
    overflow: hidden;
}
.featured-image img {
    width: 100%;
    display: block;
}

/* Article Body */
.article-body {
    font-size: 16px;
    line-height: 1.7;
    color: #333;
}
.article-body p {
    margin-bottom: 20px;
}
.article-body h2 {
    font-size: 20px;
    margin: 32px 0 14px;
    color: #112b4d;
}

/* Info Box (blue highlight box) */
.info-box {
    background: #f0f7ff;
    border-left: 4px solid #0066cc;
    padding: 18px 20px;
    margin: 20px 0 28px;
    border-radius: 4px;
    display: flex;
    gap:14px;
    align-items:flex-start;
}
.info-icon {
    width:36px;
    height:36px;
    background:#0066cc;
    color:#fff;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    flex-shrink:0;
}
.info-box p {
    margin-bottom:0;
}

/* Conclusion Box */
.conclusion-box {
    background:#f8fafc;
    padding:24px;
    border-radius:6px;
    margin-top:36px;
}
.conclusion-box h3 {
    font-size:18px;
    margin-bottom:12px;
    color:#112b4d;
}

/* Post Meta */
.post-meta {
    display:flex;
    gap:24px;
    margin-top:12px;
    font-size:14px;
    color:#e0e8f2;
}
.post-meta span {
    display:flex;
    align-items:center;
    gap:6px;
}

/* ===== Responsive Blog Single ===== */
@media(max-width:1100px) {
    .blog-single-inner {
        grid-template-columns:1fr;
    }
}
@media(max-width:768px) {
    .post-meta {
        flex-direction:column;
        gap:8px;
    }
}




/* ====================== SIDEBAR 完整样式修复 ====================== */
.blog-sidebar {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.sidebar-widget {
    background: #ffffff;
    border-radius: 6px;
    padding: 24px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.06);
}

.sidebar-widget h4 {
    font-size: 18px;
    color: #0f2b4d;
    margin: 0 0 18px 0;
    font-weight: 600;
    border-bottom: 1px solid #e5e7eb;
    padding-bottom: 10px;
}

/* --- Search Widget --- */
.search-form {
    display: flex;
    gap: 0;
}
.search-form input {
    flex: 1;
    padding: 10px 12px;
    border: 1px solid #ddd;
    border-radius: 4px 0 0 4px;
    font-size:14px;
    outline:none;
}
.search-form input:focus {
    border-color:#0066cc;
}
.search-btn {
    background-color:#0066cc;
    color:#fff;
    border:none;
    padding:0 14px;
    border-radius:0 4px 4px 0;
    cursor:pointer;
}
.search-btn:hover {
    background:#0052aa;
}

/* --- Category List --- */
.category-list {
    list-style: none;
    padding:0;
    margin:0;
}
.category-list li {
    padding:8px 0;
    border-bottom:1px solid #f1f3f5;
}
.category-list li:last-child {
    border-bottom:none;
}
.category-list a {
    display:flex;
    justify-content:space-between;
    color:#333;
    text-decoration:none;
    font-size:14px;
}
.category-list a:hover {
    color:#0066cc;
}
.category-list span {
    color:#666;
}

/* --- Recent Posts --- */
.recent-posts-list {
    list-style:none;
    padding:0;
    margin:0;
}
.recent-posts-list li {
    margin-bottom:16px;
}
.recent-posts-list li:last-child {
    margin-bottom:0;
}
.recent-posts-list a {
    display:flex;
    gap:12px;
    text-decoration:none;
    color:#333;
}
.recent-posts-list img {
    width:50px;
    height:50px;
    object-fit:cover;
    border-radius:3px;
    flex-shrink:0;
}
.rp-text {
    display:flex;
    flex-direction:column;
    gap:4px;
}
.rp-title {
    font-size:14px;
    font-weight:500;
    line-height:1.4;
}
.rp-date {
    font-size:12px;
    color:#777;
}
.recent-posts-list a:hover .rp-title {
    color:#0066cc;
}

/* --- Tags --- */
.tags-wrap {
    display:flex;
    flex-wrap:wrap;
    gap:8px;
}
.tag {
    background:#f3f6f9;
    padding:6px 12px;
    border-radius:20px;
    font-size:12px;
    color:#444;
    text-decoration:none;
}
.tag:hover {
    background:#0066cc;
    color:#fff;
}

/* --- CTA Custom Solution Widget --- */
.cta-widget {
    background-color:#0f2b4d;
    color:#ffffff;
    text-align:center;
}
.cta-widget h4 {
    color:#fff;
    border-bottom:none;
    padding-bottom:0;
    margin-bottom:10px;
}
.cta-widget p {
    font-size:14px;
    margin-bottom:20px;
    line-height:1.6;
}
.cs-icon {
    width:44px;
    height:44px;
    background:rgba(255,255,255,0.15);
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    margin:0 auto 14px;
    font-size:18px;
}
.cta-widget .btn-primary {
    width:100%;
    justify-content:center;
}

/* ========== 原有博客文章页面样式保留 ========== */
.blog-single-hero {
    background: #0f2b4d;
}

.blog-single-section {
    padding: 40px 0 70px;
}
.blog-single-inner {
    display: grid;
    grid-template-columns: 2.4fr 1fr;
    gap: 40px;
}

/* Article Featured Image */
.featured-image {
    margin-bottom: 30px;
    border-radius: 6px;
    overflow: hidden;
}
.featured-image img {
    width: 100%;
    display: block;
}

/* Article Body */
.article-body {
    font-size: 16px;
    line-height: 1.7;
    color: #333;
}
.article-body p {
    margin-bottom: 20px;
}
.article-body h2 {
    font-size: 20px;
    margin: 32px 0 14px;
    color: #112b4d;
}

/* Info Box (blue highlight box) */
.info-box {
    background: #f0f7ff;
    border-left: 4px solid #0066cc;
    padding: 18px 20px;
    margin: 20px 0 28px;
    border-radius: 4px;
    display: flex;
    gap:14px;
    align-items:flex-start;
}
.info-icon {
    width:36px;
    height:36px;
    background:#0066cc;
    color:#fff;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    flex-shrink:0;
}
.info-box p {
    margin-bottom:0;
}

/* Conclusion Box */
.conclusion-box {
    background:#f8fafc;
    padding:24px;
    border-radius:6px;
    margin-top:36px;
}
.conclusion-box h3 {
    font-size:18px;
    margin-bottom:12px;
    color:#112b4d;
}

/* Post Meta */
.post-meta {
    display:flex;
    gap:24px;
    margin-top:12px;
    font-size:14px;
    color:#e0e8f2;
}
.post-meta span {
    display:flex;
    align-items:center;
    gap:6px;
}

/* ===== Responsive Blog Single ===== */
@media(max-width:1100px) {
    .blog-single-inner {
        grid-template-columns:1fr;
    }
}
@media(max-width:768px) {
    .post-meta {
        flex-direction:column;
        gap:8px;
    }
}





.breadcrumbs{
    font-size: 14px;
    color: #ffffff;
}

.page-hero-content H1{
    font-size: 26px;
    color: #fff;
}