/* Blog Main Layout */
.blog_main {
    background: #fff;
}

/* Override global section padding inside blog layout */
.blog_main section {
    padding: 0;
}

/* Blog Hero Section */
.blog_hero {
    background: linear-gradient(135deg, var(--brandColor) 0%, #1664a3 100%);
    padding: 80px 0 60px;
    color: #fff;
}

.breadcrumb {
    font-size: 14px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.breadcrumb a {
    color: #fff;
    text-decoration: none;
    transition: opacity 0.3s;
}

.breadcrumb a:hover {
    opacity: 0.8;
}

.breadcrumb .separator {
    margin: 0 10px;
}

.breadcrumb .current {
    opacity: 0.7;
}

.blog_hero_title {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 25px;
    word-break: keep-all;
}

.blog_hero_meta {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    align-items: center;
}

.blog_hero_meta span {
    display: inline-flex;
    align-items: center;
    font-size: 15px;
    opacity: 0.9;
}

.category_badge {
    background: rgba(255, 255, 255, 0.25);
    padding: 6px 16px;
    border-radius: 20px;
    font-weight: 600;
}

/* Blog Container */
.blog_container {
    padding: 60px 0;
}

.blog_content_wrap {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Blog Content */
.blog_content {
    max-width: 820px;
}

.content_section {
    margin-bottom: 40px;
}

.section_title {
    font-size: 32px;
    font-weight: 700;
    color: #222;
    margin: 0 0 22px;
    line-height: 1.4;
    word-break: keep-all;
}

.section_text {
    font-size: 18px;
    line-height: 1.6;
    color: #444;
    margin-bottom: 10px;
    word-break: keep-all;
}

.section_text strong {
    color: #222;
    font-weight: 700;
}

.highlight_inline {
    background: linear-gradient(180deg, transparent 60%, var(--brandColor2) 60%);
    font-weight: 700;
    color: var(--brandColor);
}

/* Info Box */
.info_box {
    background: #f8f9fa;
    border-left: 4px solid var(--brandColor);
    padding: 30px;
    border-radius: 8px;
    margin: 30px 0;
}

.info_box_title {
    font-size: 22px;
    font-weight: 700;
    color: #222;
    margin-bottom: 20px;
}

.info_list {
    list-style: none;
    padding: 0;
}

.info_list li {
    padding: 12px 0;
    font-size: 16px;
    line-height: 1.7;
    color: #555;
    border-bottom: 1px solid #e8e8e8;
}

.info_list li:last-child {
    border-bottom: none;
}

/* Step Guide */
.step_guide {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 30px;
}

.step_guide_item {
    display: flex;
    gap: 25px;
    background: #fff;
    border: 2px solid #e8e8e8;
    border-radius: 16px;
    padding: 30px;
    transition: all 0.3s ease;
}

.step_guide_item:hover {
    border-color: var(--brandColor);
    box-shadow: 0 6px 20px rgba(30, 133, 182, 0.1);
}

.step_number {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--brandColor) 0%, #1664a3 100%);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 800;
}

.step_content h3 {
    font-size: 22px;
    font-weight: 700;
    color: #222;
    margin-bottom: 12px;
}

.step_content p {
    font-size: 16px;
    line-height: 1.7;
    color: #666;
}

/* Tip Box */
.tip_box {
    background: #e8f4f8;
    border-radius: 12px;
    padding: 20px 25px;
    margin-top: 20px;
}

.tip_box h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--brandColor);
    margin-bottom: 12px;
}

.tip_box ul {
    list-style: none;
    padding: 0;
}

.tip_box li {
    padding: 8px 0;
    padding-left: 20px;
    position: relative;
    font-size: 15px;
    line-height: 1.6;
    color: #555;
}

.tip_box li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--brandColor);
    font-weight: 700;
}

/* Warning Box */
.warning_box {
    background: #fff9f0;
    border: 2px solid #ffd966;
    border-radius: 12px;
    padding: 25px;
    margin: 30px 0;
}

.warning_title {
    font-size: 20px;
    font-weight: 700;
    color: #d97706;
    margin-bottom: 15px;
}

.warning_list {
    list-style: none;
    padding: 0;
}

.warning_list li {
    padding: 10px 0;
    font-size: 16px;
    line-height: 1.7;
    color: #555;
}

.warning_list li strong {
    color: #d97706;
}

/* Pyramid Guide */
.pyramid_guide {
    margin-top: 24px;
}

.pyramid_level {
    position: relative;
    margin: 0 auto 10px;
    padding: 12px 16px;
    border-radius: 10px;
    background: #f5f7f9;
    border: 1px solid #dde3ea;
    text-align: center;
}

.pyramid_level h3 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 6px;
    color: #222;
}

.pyramid_level p {
    font-size: 14px;
    line-height: 1.6;
    color: #555;
    margin: 0;
}

.pyramid_level--top {
    max-width: 380px;
}

.pyramid_level--middle {
    max-width: 520px;
}

.pyramid_level--bottom {
    max-width: 680px;
}

@media (max-width: 767px) {
    .pyramid_level--top,
    .pyramid_level--middle,
    .pyramid_level--bottom {
        max-width: 100%;
    }
}

/* Company Comparison */
.company_comparison {
    display: grid;
    gap: 25px;
    margin-top: 30px;
}

.company_item {
    background: #fff;
    border: 2px solid #e8e8e8;
    border-radius: 12px;
    padding: 25px;
}

.company_item h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--brandColor);
    margin-bottom: 15px;
}

.company_item p {
    font-size: 16px;
    line-height: 1.7;
    color: #666;
    margin-bottom: 10px;
}

/* Case Study */
.case_study {
    background: linear-gradient(to right, #f8f9fa 0%, #ffffff 100%);
    border-radius: 16px;
    padding: 35px;
    margin-top: 30px;
}

.case_item {
    margin-bottom: 30px;
}

.case_item:last-child {
    margin-bottom: 0;
}

.case_item h4 {
    font-size: 20px;
    font-weight: 700;
    color: #222;
    margin-bottom: 15px;
}

.case_item p {
    font-size: 16px;
    line-height: 1.7;
    color: #666;
    margin-bottom: 8px;
}

.savings {
    margin-top: 15px;
    padding: 15px;
    background: var(--brandColor2);
    border-radius: 8px;
    text-align: center;
}

.savings strong {
    font-size: 20px;
    color: var(--brandColor);
}

/* CTA Section */
.cta_section {
    background: linear-gradient(135deg, #f8fbff 0%, #e8f4f8 100%);
    border-radius: 20px;
    padding: 50px;
    text-align: center;
}

/* Back to main button wrapper (for blog pages) */
.blog_back_center {
    text-align: center;
    margin-top: 10px;
}

.cta_box {
    max-width: 700px;
    margin: 0 auto;
}

.cta_title {
    font-size: 32px;
    font-weight: 700;
    color: #222;
    margin-bottom: 20px;
}

.cta_text {
    font-size: 18px;
    line-height: 1.7;
    color: #666;
    margin-bottom: 30px;
}

.cta_button {
    display: inline-block;
    padding: 18px 40px;
    background: linear-gradient(135deg, var(--brandColor) 0%, #1664a3 100%);
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(30, 133, 182, 0.3);
}

.cta_button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(30, 133, 182, 0.4);
}

/* Blog FAQ */
.blog_faq {
    margin-top: 30px;
}

.blog_faq_item {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 20px;
}

.blog_faq_item h3 {
    font-size: 20px;
    font-weight: 700;
    color: #222;
    margin-bottom: 15px;
}

.blog_faq_item p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
}

/* Related Posts */
.related_posts {
    margin-top: 70px;
    padding-top: 70px;
    border-top: 2px solid #e8e8e8;
}

.related_title {
    font-size: 28px;
    font-weight: 700;
    color: #222;
    margin-bottom: 30px;
}

.related_grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.related_card {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.related_card:hover {
    background: #fff;
    border-color: var(--brandColor);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.related_card h4 {
    font-size: 18px;
    font-weight: 700;
    color: #222;
    margin-bottom: 10px;
}

.related_card p {
    font-size: 15px;
    color: #666;
}

/* Blog Sidebar */
.blog_sidebar {
    position: sticky;
    top: 30px;
    height: fit-content;
}

.sidebar_widget {
    background: #f8f9fa;
    border-radius: 16px;
    padding: 30px;
    margin-bottom: 25px;
}

.widget_title {
    font-size: 20px;
    font-weight: 700;
    color: #222;
    margin-bottom: 20px;
}

.widget_list {
    list-style: none;
    padding: 0;
}

.widget_list li {
    margin-bottom: 12px;
}

.widget_list a {
    font-size: 16px;
    color: #666;
    text-decoration: none;
    transition: color 0.3s;
    display: block;
    padding: 8px 0;
}

.widget_list a:hover {
    color: var(--brandColor);
}

.highlight_widget {
    background: linear-gradient(135deg, var(--brandColor) 0%, #1664a3 100%);
    color: #fff;
}

.highlight_widget .widget_title {
    color: #fff;
}

.widget_text {
    font-size: 15px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
}

.widget_button {
    display: block;
    width: 100%;
    padding: 14px;
    background: #fff;
    color: var(--brandColor);
    font-size: 16px;
    font-weight: 700;
    text-align: center;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.widget_button:hover {
    background: var(--brandColor2);
    transform: translateY(-2px);
}

/* Discount Cards */
.discount_card {
    background: #fff;
    border: 2px solid #e8e8e8;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 30px;
}

.discount_header {
    background: linear-gradient(135deg, var(--brandColor) 0%, #1664a3 100%);
    color: #fff;
    padding: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.discount_badge {
    background: rgba(255, 255, 255, 0.25);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
}

.discount_header h3 {
    font-size: 24px;
    font-weight: 700;
    flex: 1;
    margin: 0 20px;
}

.discount_amount {
    font-size: 28px;
    font-weight: 800;
}

.discount_body {
    padding: 30px;
}

.discount_desc {
    font-size: 17px;
    line-height: 1.8;
    color: #444;
    margin-bottom: 20px;
}

/* Recommend Cards */
.recommend_card {
    background: #fff;
    border: 2px solid #e8e8e8;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 40px;
}

.recommend_card.featured {
    border: 3px solid var(--brandColor);
    box-shadow: 0 10px 40px rgba(30, 133, 182, 0.15);
}

.recommend_header {
    background: linear-gradient(to right, #f8f9fa 0%, #ffffff 100%);
    padding: 30px;
    border-bottom: 2px solid #e8e8e8;
    display: flex;
    align-items: center;
    gap: 20px;
}

.rank_badge {
    flex-shrink: 0;
    width: 70px;
    height: 70px;
    background: #e8e8e8;
    color: #666;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 800;
}

.rank_badge.gold {
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    color: #fff;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.rank_badge.silver {
    background: linear-gradient(135deg, #c0c0c0 0%, #e8e8e8 100%);
    color: #666;
}

.rank_badge.bronze {
    background: linear-gradient(135deg, #cd7f32 0%, #d4a574 100%);
    color: #fff;
}

.recommend_header h3 {
    font-size: 26px;
    font-weight: 700;
    color: #222;
    flex: 1;
}

.rating {
    font-size: 18px;
    color: #f59e0b;
}

.recommend_body {
    padding: 35px;
}

.recommend_body h4 {
    font-size: 20px;
    font-weight: 700;
    color: #222;
    margin: 25px 0 15px;
}

.feature_list {
    list-style: none;
    padding: 0;
}

.feature_list li {
    padding: 12px 0;
    padding-left: 25px;
    position: relative;
    font-size: 16px;
    line-height: 1.7;
    color: #555;
    border-bottom: 1px solid #f0f0f0;
}

.feature_list li:last-child {
    border-bottom: none;
}

.feature_list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--brandColor);
    font-weight: 700;
    font-size: 18px;
}

.recommend_text {
    font-size: 17px;
    line-height: 1.8;
    color: #444;
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    margin: 15px 0;
}

.review_quote {
    background: #e8f4f8;
    border-left: 4px solid var(--brandColor);
    padding: 20px 25px;
    font-style: italic;
    font-size: 16px;
    line-height: 1.7;
    color: #555;
    margin: 20px 0;
}

.price_info {
    background: linear-gradient(135deg, #f8fbff 0%, #e8f4f8 100%);
    border-radius: 12px;
    padding: 20px;
    margin-top: 20px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
}

.price_info .label {
    font-size: 15px;
    color: #666;
}

.price_info .price {
    font-size: 28px;
    font-weight: 800;
    color: var(--brandColor);
}

.price_info .condition {
    font-size: 14px;
    color: #999;
}

/* Criteria Grid */
.criteria_grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.criteria_item {
    background: #fff;
    border: 2px solid #e8e8e8;
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    transition: all 0.3s ease;
}

.criteria_item:hover {
    border-color: var(--brandColor);
    box-shadow: 0 6px 20px rgba(30, 133, 182, 0.1);
}

.criteria_icon {
    font-size: 32px;
    margin-bottom: 15px;
}

.criteria_item h3 {
    font-size: 20px;
    font-weight: 700;
    color: #222;
    margin-bottom: 10px;
}

.criteria_item p {
    font-size: 15px;
    color: #666;
}

/* Age Recommendation */
.age_recommendation {
    display: grid;
    gap: 25px;
    margin-top: 30px;
}

.age_item {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 25px;
}

.age_item h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--brandColor);
    margin-bottom: 15px;
}

.age_item p {
    font-size: 16px;
    line-height: 1.7;
    color: #666;
    margin-bottom: 8px;
}

.age_reason {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #e8e8e8;
    font-style: italic;
    color: #888;
}

/* Vehicle Recommendation */
.vehicle_recommendation {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.vehicle_item {
    background: #fff;
    border: 2px solid #e8e8e8;
    border-radius: 12px;
    padding: 25px;
    text-align: center;
}

.vehicle_type {
    font-size: 32px;
    margin-bottom: 15px;
}

.vehicle_item h4 {
    font-size: 20px;
    font-weight: 700;
    color: #222;
    margin-bottom: 12px;
}

.vehicle_item p {
    font-size: 15px;
    color: #666;
}

/* Responsive */
@media (max-width: 1023px) {
    .blog_content_wrap {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .blog_sidebar {
        position: static;
    }
    
    .blog_hero_title {
        font-size: 38px;
    }
}

@media (max-width: 767px) {
    .blog_hero {
        padding: 60px 0 40px;
    }
    
    .blog_hero_title {
        font-size: 32px;
    }
    
    .blog_container {
        padding: 50px 0;
    }
    
    .section_title {
        font-size: 28px;
    }
    
    .section_text {
        font-size: 16px;
    }
    
    .step_guide_item {
        flex-direction: column;
    }
    
    .cta_section {
        padding: 30px 20px;
    }
    
    .cta_title {
        font-size: 26px;
    }
    
    .related_grid {
        grid-template-columns: 1fr;
    }
}

