/* ===== Blog Styles — PolicyMatcher.com ===== */
/* Matches HomeProMatcher blog layout style */

/* ── Container ─────────────────────────────────────────────────── */
.blog-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px 20px 60px;
}

/* ── Page title ────────────────────────────────────────────────── */
.blog-page-title {
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0 0 30px;
}

/* ── Breadcrumb ────────────────────────────────────────────────── */
.blog-breadcrumb {
    font-size: 0.875rem;
    color: #666;
    margin-bottom: 20px;
    padding: 10px 0;
}
.blog-breadcrumb a {
    color: #0066cc;
    text-decoration: none;
}
.blog-breadcrumb a:hover {
    text-decoration: underline;
}
.blog-breadcrumb .sep {
    margin: 0 8px;
    color: #999;
}

/* ── Two-column layout ─────────────────────────────────────────── */
.blog-layout {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}
.blog-main {
    flex: 1;
    min-width: 0;
}

/* ── Blog card grid ────────────────────────────────────────────── */
.blog-grid {
    display: grid !important;
    gap: 30px;
}

.blog-container .blog-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    transition: box-shadow 0.2s, transform 0.2s;
    display: flex !important;
    flex-direction: row !important;
}
.blog-container .blog-card:hover {
    box-shadow: 0 6px 24px rgba(0,0,0,0.10);
    transform: translateY(-2px);
}

.blog-container .blog-card-image-link {
    display: block !important;
    width: 280px !important;
    flex-shrink: 0;
    overflow: hidden;
}
.blog-container .blog-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s;
}
.blog-container .blog-card:hover .blog-card-image {
    transform: scale(1.04);
}
.blog-container .blog-card-placeholder {
    width: 100%;
    height: 100%;
    min-height: 200px;
    background: #f0f4f8;
    display: flex !important;
    align-items: center;
    justify-content: center;
}
.blog-card-placeholder-logo {
    padding: 20px;
}
.blog-card-logo {
    max-width: 180px;
    max-height: 80px;
    object-fit: contain;
    opacity: 0.7;
}

.blog-container .blog-card-body {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.blog-card-date {
    font-size: 0.8rem;
    color: #888;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.blog-card-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0 0 12px;
    line-height: 1.35;
}
.blog-card-title a {
    color: #1a1a2e;
    text-decoration: none;
}
.blog-card-title a:hover {
    color: #0066cc;
}
.blog-card-excerpt {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
    margin: 0 0 16px;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.blog-read-more {
    font-size: 0.9rem;
    font-weight: 600;
    color: #0066cc;
    text-decoration: none;
}
.blog-read-more:hover {
    text-decoration: underline;
}

.blog-empty {
    text-align: center;
    color: #888;
    padding: 60px 20px;
    font-size: 1.1rem;
}

/* ── Sidebar ───────────────────────────────────────────────────── */
.blog-sidebar {
    width: 300px;
    flex-shrink: 0;
    position: sticky;
    top: 80px;
    align-self: flex-start;
    max-height: calc(100vh - 100px);
    overflow-y: auto;
}

.widget-box {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    padding: 24px;
    margin-bottom: 24px;
}
.widget-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0 0 16px;
    padding-bottom: 12px;
    border-bottom: 2px solid #0066cc;
}

/* Services widget */
.blog-sidebar .widget-services {
    display: flex !important;
    flex-direction: column;
    gap: 8px;
}
.blog-sidebar .service-link {
    display: block !important;
    padding: 10px 16px !important;
    background: #f0f7ff !important;
    color: #0066cc !important;
    border-radius: 8px;
    text-decoration: none !important;
    font-weight: 500;
    font-size: 0.95rem;
    transition: background 0.2s, color 0.2s;
}
.blog-sidebar .service-link:hover {
    background: #0066cc !important;
    color: #fff !important;
}

/* CTA widget */
.widget-cta {
    text-align: center;
}
.widget-cta-desc {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0 0 16px;
}
.widget-cta-btn {
    display: inline-block;
    padding: 12px 28px;
    color: #fff;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: opacity 0.2s;
}
.widget-cta-btn:hover {
    opacity: 0.9;
    color: #fff;
}

/* HTML widget */
.widget-html {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #444;
}
.widget-html a {
    color: #0066cc;
}

/* Image banner widget */
.widget-banner-img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    display: block;
}

/* ── Pagination ────────────────────────────────────────────────── */
.blog-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-top: 40px;
    flex-wrap: wrap;
}
.pagination-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 12px;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    color: #1a1a2e;
    background: #fff;
    border: 1px solid #ddd;
    transition: background 0.2s, color 0.2s;
}
.pagination-link:hover {
    background: #0066cc;
    color: #fff;
    border-color: #0066cc;
}
.pagination-current {
    background: #0066cc;
    color: #fff;
    border-color: #0066cc;
}

/* ── Single article ────────────────────────────────────────────── */
.blog-article-image {
    margin-bottom: 24px;
    border-radius: 12px;
    overflow: hidden;
}
.blog-article-image img {
    width: 100%;
    height: auto;
    display: block;
}
.blog-article-title {
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0 0 12px;
    line-height: 1.3;
}
.blog-article-meta {
    display: flex;
    gap: 20px;
    font-size: 0.9rem;
    color: #888;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}
.blog-article-content {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #333;
    overflow-wrap: break-word;
    word-wrap: break-word;
}

/* Headings */
.blog-article-content h2 {
    font-size: 1.6rem;
    font-weight: 700;
    color: #1a1a2e;
    margin: 40px 0 16px;
    padding-bottom: 10px;
    border-bottom: 2px solid #f0f0f0;
}
.blog-article-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1a1a2e;
    margin: 32px 0 12px;
}
.blog-article-content h4 {
    font-size: 1.15rem;
    font-weight: 600;
    color: #1a1a2e;
    margin: 28px 0 10px;
}
.blog-article-content h5,
.blog-article-content h6 {
    font-size: 1rem;
    font-weight: 600;
    color: #444;
    margin: 24px 0 8px;
}
.blog-article-content p {
    margin: 0 0 18px;
}

/* Links */
.blog-article-content a {
    color: #0066cc;
    text-decoration: underline;
    text-decoration-color: rgba(0,102,204,0.3);
    text-underline-offset: 2px;
    transition: text-decoration-color 0.2s;
}
.blog-article-content a:hover {
    text-decoration-color: #0066cc;
}

/* Images */
.blog-article-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 20px 0;
}
.blog-article-content img.img-fluid {
    max-width: 100%;
    height: auto;
}
.blog-article-content img.img-align-left {
    float: left;
    margin: 4px 24px 16px 0;
    max-width: 50%;
    border-radius: 8px;
}
.blog-article-content img.img-align-right {
    float: right;
    margin: 4px 0 16px 24px;
    max-width: 50%;
    border-radius: 8px;
}
.blog-article-content img.img-align-center {
    display: block;
    margin: 24px auto;
}
.blog-article-content img.img-full-width {
    width: 100%;
    border-radius: 12px;
    margin: 28px 0;
}

/* Figures & Captions */
.blog-article-content figure {
    margin: 28px 0;
    padding: 0;
}
.blog-article-content figure.align-left {
    float: left;
    margin: 4px 24px 16px 0;
    max-width: 50%;
}
.blog-article-content figure.align-right {
    float: right;
    margin: 4px 0 16px 24px;
    max-width: 50%;
}
.blog-article-content figure.align-center {
    text-align: center;
}
.blog-article-content figure img {
    margin: 0;
    border-radius: 8px;
}
.blog-article-content figcaption {
    font-size: 0.875rem;
    color: #777;
    margin-top: 10px;
    font-style: italic;
    text-align: center;
    line-height: 1.4;
}

/* Lists */
.blog-article-content ul,
.blog-article-content ol {
    margin: 0 0 20px;
    padding-left: 28px;
}
.blog-article-content li {
    margin-bottom: 8px;
    line-height: 1.7;
}
.blog-article-content li > ul,
.blog-article-content li > ol {
    margin-top: 8px;
    margin-bottom: 4px;
}

/* Blockquotes */
.blog-article-content blockquote {
    border-left: 4px solid #0066cc;
    margin: 28px 0;
    padding: 20px 24px;
    background: #f0f7ff;
    border-radius: 0 8px 8px 0;
    color: #444;
    font-size: 1.05rem;
    line-height: 1.7;
}
.blog-article-content blockquote p:last-child {
    margin-bottom: 0;
}
.blog-article-content blockquote cite {
    display: block;
    margin-top: 10px;
    font-size: 0.9rem;
    color: #888;
    font-style: normal;
}

/* Tables */
.blog-article-content .table-responsive {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin: 24px 0;
}
.blog-article-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0;
    font-size: 0.95rem;
}
.blog-article-content th,
.blog-article-content td {
    border: 1px solid #ddd;
    padding: 12px 16px;
    text-align: left;
    vertical-align: top;
}
.blog-article-content th {
    background: #f5f7fa;
    font-weight: 600;
    color: #1a1a2e;
    white-space: nowrap;
}
.blog-article-content tr:hover td {
    background: #fafbfc;
}
.blog-article-content table.table-striped tr:nth-child(even) td {
    background: #f9fafb;
}
.blog-article-content table.table-striped tr:nth-child(even):hover td {
    background: #f0f4f8;
}
.blog-article-content table.table-compact th,
.blog-article-content table.table-compact td {
    padding: 8px 12px;
    font-size: 0.9rem;
}
.blog-article-content caption {
    font-size: 0.9rem;
    color: #777;
    padding: 10px 0;
    caption-side: bottom;
    text-align: left;
    font-style: italic;
}

/* Code */
.blog-article-content code {
    background: #f4f4f5;
    color: #d63384;
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 0.9em;
    font-family: 'SFMono-Regular', Consolas, 'Liberation Mono', Menlo, monospace;
}
.blog-article-content pre {
    background: #1e1e1e;
    color: #d4d4d4;
    padding: 20px 24px;
    border-radius: 10px;
    overflow-x: auto;
    font-size: 0.875rem;
    line-height: 1.6;
    margin: 24px 0;
    font-family: 'SFMono-Regular', Consolas, 'Liberation Mono', Menlo, monospace;
    -webkit-overflow-scrolling: touch;
}
.blog-article-content pre code {
    background: none;
    color: inherit;
    padding: 0;
    border-radius: 0;
    font-size: inherit;
}

/* Horizontal Rule */
.blog-article-content hr {
    border: none;
    border-top: 2px solid #eee;
    margin: 40px 0;
}

/* Embedded Media */
.blog-article-content iframe,
.blog-article-content video {
    max-width: 100%;
    border-radius: 8px;
    margin: 24px 0;
}
.blog-article-content .mce-object-iframe,
.blog-article-content .embed-responsive {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    margin: 24px 0;
    border-radius: 8px;
}
.blog-article-content .mce-object-iframe iframe,
.blog-article-content .embed-responsive iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    margin: 0;
}

/* Clearfix for floated images */
.blog-article-content::after {
    content: '';
    display: table;
    clear: both;
}

/* Keyboard shortcut */
.blog-article-content kbd {
    background: #f0f0f0;
    border: 1px solid #ccc;
    border-radius: 4px;
    padding: 2px 6px;
    font-size: 0.85em;
    font-family: monospace;
    box-shadow: 0 1px 0 #ccc;
}

/* Mark/highlight */
.blog-article-content mark {
    background: #fff3cd;
    padding: 2px 4px;
    border-radius: 2px;
}

/* Definition list */
.blog-article-content dl {
    margin: 0 0 20px;
}
.blog-article-content dt {
    font-weight: 600;
    margin-top: 12px;
}
.blog-article-content dd {
    margin-left: 20px;
    color: #555;
}

.blog-article-back {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}
.blog-article-back a {
    color: #0066cc;
    text-decoration: none;
    font-weight: 500;
}
.blog-article-back a:hover {
    text-decoration: underline;
}

/* ── Related articles ──────────────────────────────────────────── */
.blog-related {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 2px solid #f0f0f0;
}
.blog-related-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0 0 20px;
}
.blog-related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.blog-related-card {
    text-decoration: none;
    color: inherit;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    transition: box-shadow 0.2s, transform 0.2s;
}
.blog-related-card:hover {
    box-shadow: 0 4px 16px rgba(0,0,0,0.10);
    transform: translateY(-2px);
}
.blog-related-img {
    width: 100%;
    height: 140px;
    object-fit: cover;
    display: block;
}
.blog-related-placeholder {
    width: 100%;
    height: 140px;
    background: #f0f4f8;
}
.blog-related-card-title {
    font-size: 0.95rem;
    font-weight: 600;
    padding: 12px 14px 4px;
    margin: 0;
    line-height: 1.3;
    color: #1a1a2e;
}
.blog-related-date {
    display: block;
    font-size: 0.8rem;
    color: #888;
    padding: 0 14px 12px;
}

/* ── Nav blog link ─────────────────────────────────────────────── */
.nav-link-blog {
    color: #0066cc !important;
    font-weight: 600;
}

/* ── Responsive ────────────────────────────────────────────────── */
@media (max-width: 768px) {
    .blog-layout {
        flex-direction: column;
    }
    .blog-sidebar {
        width: 100%;
        position: static;
    }
    .blog-container .blog-card {
        flex-direction: column !important;
        max-height: none;
    }
    .blog-container .blog-card-image-link {
        width: 100% !important;
        min-height: 180px;
        max-height: 220px;
    }
    .blog-article-title {
        font-size: 1.5rem;
    }
    .blog-related-grid {
        grid-template-columns: 1fr;
    }
    .blog-page-title {
        font-size: 1.5rem;
    }
    .blog-article-content img.img-align-left,
    .blog-article-content img.img-align-right {
        float: none;
        display: block;
        max-width: 100%;
        margin: 16px 0;
    }
    .blog-article-content figure.align-left,
    .blog-article-content figure.align-right {
        float: none;
        max-width: 100%;
        margin: 20px 0;
    }
    .blog-article-content table {
        font-size: 0.85rem;
    }
    .blog-article-content th,
    .blog-article-content td {
        padding: 8px 10px;
    }
    .blog-article-content h2 {
        font-size: 1.35rem;
    }
    .blog-article-content h3 {
        font-size: 1.15rem;
    }
    .blog-article-content pre {
        padding: 14px 16px;
        font-size: 0.8rem;
    }
    .blog-article-content blockquote {
        padding: 14px 16px;
        margin: 20px 0;
    }
}

@media (max-width: 480px) {
    .blog-container {
        padding: 20px 15px 40px;
    }
    .blog-card-body {
        padding: 16px;
    }
}

/* ================================================================
   Article Content Blocks — Professional Widgets & Components
   ================================================================ */

/* ── Callout Boxes ──────────────────────────────────────────────── */
.blog-article-content .callout-box {
    border-radius: 12px;
    padding: 20px 24px;
    margin: 28px 0;
    border-left: 4px solid #0066cc;
    background: #f0f7ff;
}
.blog-article-content .callout-box p:last-child { margin-bottom: 0; }
.blog-article-content .callout-box.callout-warning,
.blog-article-content .callout-box.warning {
    border-left-color: #f59e0b;
    background: #fffbeb;
}
.blog-article-content .callout-box.callout-success,
.blog-article-content .callout-box.success {
    border-left-color: #10b981;
    background: #ecfdf5;
}
.blog-article-content .callout-box.callout-danger,
.blog-article-content .callout-box.danger {
    border-left-color: #ef4444;
    background: #fef2f2;
}

/* ── Pro Tip ────────────────────────────────────────────────────── */
.blog-article-content .pro-tip {
    border-radius: 12px;
    padding: 24px;
    margin: 28px 0;
    background: #f5f3ff;
    border: 1px solid #e0dafb;
}
.blog-article-content .pro-tip::before {
    content: "\1F4A1  Pro Tip";
    display: block;
    font-weight: 700;
    color: #7c3aed;
    margin-bottom: 8px;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.blog-article-content .pro-tip p:last-child { margin-bottom: 0; }

/* ── Key Takeaway ───────────────────────────────────────────────── */
.blog-article-content .key-takeaway {
    border-radius: 12px;
    padding: 24px;
    margin: 28px 0;
    background: #f0f7ff;
    border: 2px solid #0066cc;
}
.blog-article-content .key-takeaway::before {
    content: "\1F4CC  Key Takeaway";
    display: block;
    font-weight: 700;
    color: #0066cc;
    margin-bottom: 8px;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.blog-article-content .key-takeaway p:last-child { margin-bottom: 0; }

/* ── Pros & Cons ────────────────────────────────────────────────── */
.blog-article-content .pros-cons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin: 28px 0;
}
.blog-article-content .pros-list,
.blog-article-content .cons-list {
    border-radius: 12px;
    padding: 20px 24px;
    list-style: none;
    margin: 0;
}
.blog-article-content .pros-list {
    background: #ecfdf5;
    border: 1px solid #a7f3d0;
}
.blog-article-content .cons-list {
    background: #fef2f2;
    border: 1px solid #fecaca;
}
.blog-article-content .pros-list::before {
    content: "\2713  Pros";
    display: block;
    font-weight: 700;
    color: #059669;
    margin-bottom: 12px;
    font-size: 1rem;
}
.blog-article-content .cons-list::before {
    content: "\2717  Cons";
    display: block;
    font-weight: 700;
    color: #dc2626;
    margin-bottom: 12px;
    font-size: 1rem;
}
.blog-article-content .pros-list ul,
.blog-article-content .cons-list ul {
    list-style: none;
    padding-left: 0;
    margin: 0;
}
.blog-article-content .pros-list li,
.blog-article-content .cons-list li {
    padding: 6px 0 6px 24px;
    position: relative;
    list-style: none;
}
.blog-article-content .pros-list li::before {
    content: "\2713";
    position: absolute;
    left: 0;
    color: #059669;
    font-weight: 700;
}
.blog-article-content .cons-list li::before {
    content: "\2717";
    position: absolute;
    left: 0;
    color: #dc2626;
    font-weight: 700;
}

/* ── Comparison Table ───────────────────────────────────────────── */
.blog-article-content table.comparison-table {
    border-collapse: separate;
    border-spacing: 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    margin: 28px 0;
    border: none;
}
.blog-article-content .comparison-table th {
    background: #1a1a2e;
    color: #fff;
    padding: 14px 20px;
    font-weight: 600;
    border: none;
    font-size: 0.9rem;
}
.blog-article-content .comparison-table td {
    padding: 14px 20px;
    border: none;
    border-bottom: 1px solid #f0f0f0;
}
.blog-article-content .comparison-table tr:nth-child(even) td {
    background: #f8f9fa;
}
.blog-article-content .comparison-table tr:last-child td {
    border-bottom: none;
}

/* ── Rate/Price Highlight ───────────────────────────────────────── */
.blog-article-content .rate-highlight {
    text-align: center;
    padding: 12px 16px;
    margin: 12px 0;
    background: #f0f7ff;
    border-radius: 10px;
    border: 2px solid #0066cc;
}
.blog-article-content .rate-highlight .rate-value {
    font-size: 1.5rem;
    font-weight: 800;
    color: #0066cc;
    line-height: 1.2;
}
.blog-article-content .rate-highlight .rate-label {
    font-size: 0.8rem;
    color: #666;
    margin-top: 2px;
    font-weight: 400;
}

/* ── FAQ Accordion ──────────────────────────────────────────────── */
.blog-article-content .faq-section {
    margin: 32px 0;
}
.blog-article-content .faq-item {
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    margin-bottom: 10px;
    overflow: hidden;
    transition: box-shadow 0.2s ease;
}
.blog-article-content .faq-item:hover {
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.blog-article-content .faq-question {
    padding: 18px 24px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    background: #f9fafb;
    display: flex;
    justify-content: space-between;
    align-items: center;
    user-select: none;
    margin: 0;
    color: #1a1a2e;
    line-height: 1.4;
}
.blog-article-content .faq-question::after {
    content: "+";
    font-size: 1.4rem;
    font-weight: 300;
    color: #999;
    transition: transform 0.2s ease;
    flex-shrink: 0;
    margin-left: 16px;
}
.blog-article-content .faq-item.active .faq-question::after {
    content: "\2212";
}
.blog-article-content .faq-answer {
    padding: 0 24px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}
.blog-article-content .faq-item.active .faq-answer {
    padding: 4px 24px 20px;
    max-height: 2000px;
}

/* ── CTA Banner ─────────────────────────────────────────────────── */
.blog-article-content .cta-banner {
    background: linear-gradient(135deg, #1a1a2e 0%, #0f3460 100%);
    color: #fff;
    border-radius: 16px;
    padding: 40px 32px;
    text-align: center;
    margin: 32px 0;
}
.blog-article-content .cta-banner h3 {
    color: #fff;
    font-size: 1.4rem;
    margin: 0 0 8px;
    border: none;
    padding: 0;
}
.blog-article-content .cta-banner p {
    color: rgba(255,255,255,0.8);
    margin-bottom: 20px;
}
.blog-article-content .cta-banner .cta-button {
    display: inline-block;
    background: #0066cc;
    color: #fff;
    padding: 14px 36px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    transition: background 0.2s ease;
}
.blog-article-content .cta-banner .cta-button:hover {
    background: #004d99;
    color: #fff;
    text-decoration: none;
}

/* ── Stats Row ──────────────────────────────────────────────────── */
.blog-article-content .stats-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 16px;
    margin: 28px 0;
}
.blog-article-content .stat-card {
    text-align: center;
    padding: 24px 16px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    border: 1px solid #f0f0f0;
}
.blog-article-content .stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: #0066cc;
    line-height: 1.2;
}
.blog-article-content .stat-label {
    font-size: 0.82rem;
    color: #666;
    margin-top: 6px;
}

/* ── Provider Card ──────────────────────────────────────────────── */
.blog-article-content .provider-card {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 28px;
    margin: 28px 0;
    background: #fff;
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}
.blog-article-content .provider-card img {
    width: 120px;
    max-width: 120px;
    height: auto;
    flex-shrink: 0;
    border-radius: 10px;
    margin: 0 !important;
    display: block;
}
.blog-article-content .provider-card > div {
    flex: 1;
    min-width: 0;
}
.blog-article-content .provider-card h4 {
    margin: 0 0 6px !important;
    font-size: 1.2rem;
    font-weight: 700;
    border: none;
    padding: 0;
}
.blog-article-content .provider-card .provider-rating {
    color: #f59e0b;
    font-size: 0.95rem;
    margin-bottom: 12px;
    font-weight: 600;
    display: block;
}
.blog-article-content .provider-card p {
    margin-bottom: 0;
    margin-top: 0;
}
.blog-article-content .provider-card p:last-child {
    margin-bottom: 0;
}
.blog-article-content .provider-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid #f0f0f0;
}
.blog-article-content .provider-logo {
    width: 64px;
    height: 64px;
    object-fit: contain;
    border-radius: 12px;
    border: 1px solid #eee;
    padding: 8px;
}
.blog-article-content .provider-name {
    font-size: 1.2rem;
    font-weight: 700;
    margin: 0;
    color: #1a1a2e;
    border: none;
    padding: 0;
}
.blog-article-content .provider-badge {
    display: inline-block;
    background: #dbeafe;
    color: #1d4ed8;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.78rem;
    font-weight: 600;
    margin-top: 4px;
}
.blog-article-content .provider-card .rating-stars {
    color: #f59e0b;
}

/* ── Table of Contents ──────────────────────────────────────────── */
.blog-article-content .toc-box {
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 0;
    margin: 28px 0;
    position: relative;
}
.blog-article-content .toc-box .toc-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 700;
    font-size: 1rem;
    color: #1a1a2e;
    padding: 18px 24px;
    cursor: pointer;
    user-select: none;
}
.blog-article-content .toc-box .toc-header::after {
    content: "+";
    font-size: 1.4rem;
    font-weight: 300;
    color: #999;
    flex-shrink: 0;
    margin-left: 16px;
    transition: transform 0.2s ease;
}
.blog-article-content .toc-box.open .toc-header::after {
    content: "\2212";
}
.blog-article-content .toc-box::before {
    display: none;
}
.blog-article-content .toc-box > h4 {
    display: none;
}
.blog-article-content .toc-box ul {
    list-style: none;
    padding: 0 24px;
    margin: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}
.blog-article-content .toc-box.open ul {
    max-height: 2000px;
    padding: 0 24px 20px;
}
.blog-article-content .toc-box li {
    padding: 8px 0;
    border-bottom: 1px solid #f0f0f0;
    margin: 0;
}
.blog-article-content .toc-box li:last-child {
    border-bottom: none;
}
.blog-article-content .toc-box a {
    color: #0066cc;
    text-decoration: none;
    font-weight: 500;
}

/* ── Numbered Steps ─────────────────────────────────────────────── */
.blog-article-content ol.steps-list {
    counter-reset: step-counter;
    list-style: none;
    padding: 0;
    margin: 28px 0;
}
.blog-article-content .steps-list li {
    counter-increment: step-counter;
    padding: 20px 20px 20px 72px;
    margin-bottom: 16px;
    background: #fff;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    position: relative;
    min-height: 60px;
}
.blog-article-content .steps-list li::before {
    content: counter(step-counter);
    position: absolute;
    left: 20px;
    top: 20px;
    width: 36px;
    height: 36px;
    background: #0066cc;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
}

/* ── Content Blocks Responsive ──────────────────────────────────── */
@media (max-width: 768px) {
    .blog-article-content .pros-cons {
        grid-template-columns: 1fr;
    }
    .blog-article-content .stats-row {
        grid-template-columns: 1fr 1fr;
    }
    .blog-article-content .cta-banner {
        padding: 28px 20px;
    }
    .blog-article-content .provider-header {
        flex-direction: column;
        align-items: flex-start;
    }
    .blog-article-content .callout-box,
    .blog-article-content .pro-tip,
    .blog-article-content .key-takeaway {
        padding: 16px 18px;
    }
    .blog-article-content .faq-question {
        padding: 14px 18px;
        font-size: 0.95rem;
    }
    .blog-article-content .faq-item.active .faq-answer {
        padding: 4px 18px 16px;
    }
    .blog-article-content .steps-list li {
        padding-left: 60px;
    }
    .blog-article-content .steps-list li::before {
        width: 30px;
        height: 30px;
        font-size: 0.8rem;
        left: 16px;
    }
}

/* ================================================================
   Insurify-Style Blocks — Provider Cards, Rating Bars, Reviews
   ================================================================ */

/* ── Provider Comparison Card ──────────────────────────────────── */
.blog-article-content .provider-compare-card {
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    margin: 28px 0;
    background: #fff;
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
    overflow: hidden;
}
.blog-article-content .provider-compare-card table,
.blog-article-content .provider-compare-card td,
.blog-article-content .provider-compare-card th {
    border: none;
    margin: 0;
    padding: 0;
    background: none;
}
.blog-article-content .provider-compare-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 28px;
    flex-wrap: wrap;
    gap: 16px;
}
.blog-article-content .provider-compare-info {
    display: flex;
    align-items: center;
    gap: 14px;
}
.blog-article-content .provider-compare-logo {
    height: 36px;
    width: auto;
    max-width: 140px;
    object-fit: contain;
    margin: 0;
    border-radius: 0;
}
.blog-article-content .provider-compare-badge {
    display: inline-block;
    background: #ecfdf5;
    color: #059669;
    border: 1px solid #a7f3d0;
    padding: 4px 14px;
    border-radius: 6px;
    font-size: 0.78rem;
    font-weight: 600;
    text-decoration: none;
}
.blog-article-content .provider-compare-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #ea580c;
    color: #fff !important;
    padding: 14px 28px;
    border-radius: 8px;
    text-decoration: none !important;
    font-weight: 700;
    font-size: 1rem;
    transition: background 0.2s;
    white-space: nowrap;
}
.blog-article-content .provider-compare-cta:hover {
    background: #c2410c;
}
.blog-article-content .provider-compare-divider {
    height: 1px;
    background: #e5e7eb;
    margin: 0 28px;
}
.blog-article-content .provider-compare-stats {
    display: flex;
    align-items: center;
    padding: 16px 28px;
    gap: 0;
    flex-wrap: wrap;
}
.blog-article-content .provider-compare-stat {
    flex: 1;
    min-width: 110px;
    padding: 8px 16px;
    border-right: 1px solid #f0f0f0;
}
.blog-article-content .provider-compare-stat:last-child {
    border-right: none;
}
.blog-article-content .provider-compare-stat-label {
    font-size: 0.75rem;
    color: #6b7280;
    margin-bottom: 4px;
    font-weight: 500;
}
.blog-article-content .provider-compare-stat-value {
    font-size: 0.95rem;
    color: #1f2937;
    font-weight: 600;
}
.blog-article-content .provider-compare-stat-value strong {
    font-size: 1.5rem;
    font-weight: 800;
    color: #111;
}
.blog-article-content .provider-compare-rating {
    font-size: 1.5rem;
    font-weight: 800;
    color: #111;
    margin-right: 6px;
}
.blog-article-content .provider-compare-stars {
    color: #f59e0b;
    font-size: 0.95rem;
    letter-spacing: -1px;
}
.blog-article-content .provider-compare-details-btn {
    flex: 0 0 auto;
    text-align: center;
    min-width: auto;
    border-right: none;
    padding: 8px;
}
.blog-article-content .provider-compare-toggle {
    background: #fff;
    border: 2px solid #3b82f6;
    color: #3b82f6;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.blog-article-content .provider-compare-toggle:hover {
    background: #eff6ff;
}
.blog-article-content .provider-compare-details {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    border-top: 1px solid #e5e7eb;
}
.blog-article-content .provider-compare-card.open .provider-compare-details {
    max-height: 5000px;
}

/* Tabs */
.blog-article-content .provider-compare-tabs {
    display: flex;
    border-bottom: 2px solid #e5e7eb;
    padding: 0 28px;
}
.blog-article-content .provider-compare-tab {
    padding: 16px 24px;
    font-weight: 600;
    font-size: 0.95rem;
    color: #6b7280;
    background: none;
    border: none;
    cursor: pointer;
    position: relative;
    transition: color 0.2s;
}
.blog-article-content .provider-compare-tab::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 3px;
    background: transparent;
    border-radius: 3px 3px 0 0;
    transition: background 0.2s;
}
.blog-article-content .provider-compare-tab.active {
    color: #1d4ed8;
}
.blog-article-content .provider-compare-tab.active::after {
    background: #1d4ed8;
}
.blog-article-content .provider-compare-tab-content {
    display: none;
    padding: 28px;
}
.blog-article-content .provider-compare-tab-content.active {
    display: block;
}

/* Reviews grid inside tab */
.blog-article-content .provider-compare-reviews-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
}
.blog-article-content .provider-compare-overall {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}
.blog-article-content .provider-compare-score {
    font-size: 2.5rem;
    font-weight: 800;
    color: #111;
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 8px 16px;
    line-height: 1;
}
.blog-article-content .provider-compare-score-label {
    font-weight: 700;
    font-size: 1.1rem;
    color: #111;
}
.blog-article-content .provider-compare-score-sub {
    font-size: 0.82rem;
    color: #6b7280;
    margin-top: 2px;
}
.blog-article-content .provider-compare-summary-section {
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 24px;
}
.blog-article-content .provider-compare-summary-section h4 {
    font-size: 1.05rem;
    font-weight: 700;
    margin: 0 0 12px;
    padding: 0;
    border: none;
    color: #111;
}
.blog-article-content .provider-compare-summary-section p {
    font-size: 0.9rem;
    color: #555;
    line-height: 1.6;
}
.blog-article-content .provider-compare-best-for {
    border-top: 1px solid #e5e7eb;
    padding-top: 16px;
    margin-top: 16px;
}
.blog-article-content .provider-compare-best-for strong {
    display: block;
    font-size: 0.95rem;
    margin-bottom: 10px;
}
.blog-article-content .provider-compare-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.blog-article-content .provider-compare-tag {
    background: #f3f4f6;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    padding: 6px 14px;
    font-size: 0.82rem;
    color: #374151;
    font-weight: 500;
}
.blog-article-content .provider-compare-why {
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 24px;
    margin: 20px 0;
}
.blog-article-content .provider-compare-why h4 {
    font-size: 1.05rem;
    font-weight: 700;
    margin: 0 0 12px;
    padding: 0;
    border: none;
    color: #111;
}
.blog-article-content .provider-compare-why p {
    font-size: 0.92rem;
    color: #555;
    line-height: 1.7;
}

/* ── Rating Bars ───────────────────────────────────────────────── */
.blog-article-content .rating-bars {
    margin: 16px 0;
}
.blog-article-content .rating-bar-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}
.blog-article-content .rating-bar-label {
    width: 130px;
    font-size: 0.82rem;
    color: #555;
    text-align: right;
    flex-shrink: 0;
    line-height: 1.3;
}
.blog-article-content .rating-bar-track {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 3px;
}
.blog-article-content .rating-bar-fill {
    height: 22px;
    border-radius: 3px;
    position: relative;
    min-width: 24px;
    transition: width 0.6s ease;
    font-size: 0.75rem;
    line-height: 22px;
    color: #fff;
    font-weight: 600;
    padding: 0 8px;
    box-sizing: border-box;
    overflow: visible;
    white-space: nowrap;
}
.blog-article-content .rating-bar-fill span {
    position: absolute;
    right: -30px;
    top: 0;
    font-size: 0.75rem;
    line-height: 22px;
    color: #374151;
    font-weight: 600;
}
.blog-article-content .rating-bar-company {
    background: #60a5fa;
}
.blog-article-content .rating-bar-industry {
    background: #1e3a5f;
}
.blog-article-content .rating-bars-legend {
    display: flex;
    gap: 20px;
    margin-top: 16px;
    font-size: 0.78rem;
    color: #6b7280;
}
.blog-article-content .rating-bars-legend span::before {
    content: '';
    display: inline-block;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin-right: 6px;
    vertical-align: middle;
}
.blog-article-content .rating-bars-legend .legend-company::before {
    background: #60a5fa;
}
.blog-article-content .rating-bars-legend .legend-industry::before {
    background: #1e3a5f;
}

/* ── Review Card ───────────────────────────────────────────────── */
.blog-article-content .review-card {
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 20px 24px;
    margin: 16px 0;
    background: #fff;
}
.blog-article-content .review-card-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}
.blog-article-content .review-card-name {
    font-weight: 700;
    font-size: 0.95rem;
    color: #111;
}
.blog-article-content .review-card-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 0.75rem;
    color: #059669;
    font-weight: 600;
}
.blog-article-content .review-card-badge::before {
    content: "\2713";
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 16px;
    height: 16px;
    background: #3b82f6;
    color: #fff;
    border-radius: 50%;
    font-size: 10px;
    font-weight: 700;
}
.blog-article-content .review-card-rating {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 4px;
}
.blog-article-content .review-card-stars {
    color: #f59e0b;
    font-size: 0.95rem;
    letter-spacing: -1px;
}
.blog-article-content .review-card-title {
    font-weight: 600;
    font-size: 0.9rem;
    color: #111;
}
.blog-article-content .review-card-date {
    font-size: 0.78rem;
    color: #6b7280;
    margin-bottom: 8px;
}
.blog-article-content .review-card-text {
    font-size: 0.9rem;
    color: #374151;
    line-height: 1.6;
    margin: 0;
}

/* ── Score Cards ───────────────────────────────────────────────── */
.blog-article-content .score-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 16px;
    margin: 20px 0;
}
.blog-article-content .score-card {
    text-align: center;
    padding: 20px 16px;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    background: #fff;
}
.blog-article-content .score-card-label {
    font-size: 0.78rem;
    color: #6b7280;
    margin-bottom: 8px;
    font-weight: 500;
}
.blog-article-content .score-card-value {
    font-size: 1.8rem;
    font-weight: 800;
    color: #111;
    line-height: 1.2;
}

/* ── Insurify Blocks Responsive ────────────────────────────────── */
@media (max-width: 768px) {
    .blog-article-content .provider-compare-header {
        padding: 16px 20px;
    }
    .blog-article-content .provider-compare-stats {
        padding: 12px 16px;
        flex-wrap: wrap;
    }
    .blog-article-content .provider-compare-stat {
        min-width: 45%;
        padding: 8px 10px;
        border-right: none;
    }
    .blog-article-content .provider-compare-reviews-grid {
        grid-template-columns: 1fr;
    }
    .blog-article-content .provider-compare-tab-content {
        padding: 20px;
    }
    .blog-article-content .provider-compare-tabs {
        padding: 0 16px;
    }
    .blog-article-content .provider-compare-tab {
        padding: 14px 16px;
        font-size: 0.85rem;
    }
    .blog-article-content .rating-bar-label {
        width: 80px;
        font-size: 0.75rem;
    }
    .blog-article-content .provider-compare-cta {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    .blog-article-content .provider-compare-divider {
        margin: 0 16px;
    }
    .blog-article-content .score-cards {
        grid-template-columns: repeat(3, 1fr);
    }
    .blog-article-content .review-card {
        padding: 16px 18px;
    }
}
