/* ═══════════════════════════════════════════════════════════
   Blog & News — tg.verified.realestate
   Premium editorial design, brand orange (#ff6725)
   ═══════════════════════════════════════════════════════════ */

/* ── Google Fonts (EB Garamond for editorial headlines) ─── */
@import url('https://fonts.googleapis.com/css2?family=EB+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&display=swap');

/* ── Hero (matches tool page hero pattern) ───────────────── */
.blog-search-hero {
    background: linear-gradient(135deg, #ff6725 0%, #ff8f5c 50%, #ffb88c 100%);
    padding: 38px 32px 28px;
    border-radius: 20px 20px 0 0;
    position: relative;
    overflow: hidden;
}
.blog-search-hero-decoration {
    position: absolute;
    top: -60px;
    right: -60px;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    background: rgba(255,255,255,0.06);
    pointer-events: none;
}
.blog-search-hero-decoration::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 40px;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: rgba(255,255,255,0.04);
}
.blog-search-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255,255,255,0.18);
    color: #fff;
    padding: 5px 14px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 600;
    margin-bottom: 14px;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}
.blog-search-hero-title {
    font-family: 'EB Garamond', serif;
    font-size: 36px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 10px;
    line-height: 1.15;
}
.blog-search-hero-desc {
    font-size: 14px;
    color: rgba(255,255,255,0.88);
    max-width: 600px;
    line-height: 1.6;
}
.blog-search-hero-desc a {
    color: #fff;
    text-decoration: underline;
    text-underline-offset: 3px;
    font-weight: 600;
}

/* ── Post Card ───────────────────────────────────────────── */
.blog-card {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 1px 8px rgba(0,0,0,0.05);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(0,0,0,0.04);
}
.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 36px rgba(255,103,37,0.10), 0 4px 12px rgba(0,0,0,0.04);
}
.blog-card-img-wrap {
    position: relative;
    aspect-ratio: 16/9;
    overflow: hidden;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
}
.blog-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.blog-card:hover .blog-card-img { transform: scale(1.06); }
.blog-card-img-fallback {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #ff6725 0%, #ff8f5c 60%, #ffb88c 100%);
    position: relative;
}
.blog-card-img-fallback::before {
    content: '';
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
}
.blog-card-img-fallback::after {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
}
.blog-card-img-fallback i {
    font-size: 36px;
    color: rgba(255,255,255,0.4);
    position: relative;
    z-index: 1;
}
.blog-card-category {
    position: absolute;
    bottom: 12px;
    left: 12px;
    background: rgba(255,255,255,0.95);
    color: #ff6725;
    font-size: 10px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    backdrop-filter: blur(8px);
    text-decoration: none;
}
.blog-card-body {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.blog-card-title {
    font-family: 'EB Garamond', serif;
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 8px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.35;
}
.blog-card-title a { color: inherit; text-decoration: none; }
.blog-card-title a:hover { color: #ff6725; }
.blog-card-excerpt {
    font-size: 13px;
    color: #777;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.65;
    margin-bottom: 14px;
    flex: 1;
}
.blog-card-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 11px;
    color: #aaa;
    padding-top: 14px;
    border-top: 1px solid #f0ebe7;
    flex-wrap: wrap;
}
.blog-card-meta i { color: #ff8f5c; font-size: 10px; }
.blog-card-meta span { display: inline-flex; align-items: center; gap: 4px; }

/* ── Featured/Lead Card ──────────────────────────────────── */
.blog-featured-card {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 2px 20px rgba(0,0,0,0.06);
    overflow: hidden;
    margin-bottom: 20px;
    border: 1px solid rgba(0,0,0,0.04);
}
.blog-featured-card .row { --bs-gutter-x: 0; }
.blog-featured-img-wrap {
    position: relative;
    height: 100%;
    min-height: 300px;
    overflow: hidden;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
}
.blog-featured-img-wrap .blog-card-img-fallback { min-height: 300px; }
.blog-featured-img-wrap .blog-card-img-fallback i { font-size: 56px; }
.blog-featured-img {
    width: 100%;
    height: 100%;
    min-height: 300px;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.blog-featured-card:hover .blog-featured-img { transform: scale(1.03); }
.blog-featured-body {
    padding: 36px 32px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.blog-featured-body .blog-card-category {
    position: static;
    display: inline-block;
    margin-bottom: 16px;
    width: fit-content;
    background: #ff6725;
    color: #fff;
}
.blog-featured-body .blog-card-title {
    font-family: 'EB Garamond', serif;
    font-size: 28px;
    -webkit-line-clamp: 3;
    line-height: 1.25;
    margin-bottom: 12px;
}
.blog-featured-body .blog-card-excerpt {
    -webkit-line-clamp: 3;
    font-size: 14px;
    color: #666;
}
.blog-featured-body .blog-card-meta { border-top: none; padding-top: 0; }

/* ── Breaking badge ──────────────────────────────────────── */
.blog-badge-breaking {
    background: #dc3545;
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    width: fit-content;
    margin-bottom: 8px;
    animation: pulse-badge 2s infinite;
}
@keyframes pulse-badge {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

/* ── Category Filter Tabs ────────────────────────────────── */
.blog-category-tabs {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 2px;
}
.blog-category-tabs::-webkit-scrollbar { display: none; }
.blog-category-tab {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 500;
    background: #fff;
    color: #6c757d;
    text-decoration: none;
    border: 1px solid #e8e0da;
    transition: all 0.25s ease;
    white-space: nowrap;
    flex-shrink: 0;
}
.blog-category-tab:hover {
    background: #fff3ee;
    color: #ff6725;
    border-color: #ffd4be;
}
.blog-category-tab.active {
    background: #ff6725;
    color: #fff;
    border-color: #ff6725;
}
.blog-category-tab .count { font-size: 11px; opacity: 0.65; }

/* ══════════════════════════════════════════════════════════
   SINGLE POST — Premium Editorial Layout (Full-Width)
   ══════════════════════════════════════════════════════════ */

/* ── Article Hero (image + title overlay) ────────────────── */
.blog-article-hero {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background: #1a1a1a;
}
.blog-article-hero-img-wrap {
    position: relative;
    width: 100%;
    max-height: 440px;
    overflow: hidden;
}
.blog-article-hero-img {
    width: 100%;
    height: 440px;
    object-fit: cover;
    display: block;
}
.blog-article-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(26,26,26,0) 20%, rgba(26,26,26,0.85) 100%);
}
.blog-article-hero-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 40px 44px 36px;
    z-index: 2;
}
.blog-article-hero-content.no-image {
    position: relative;
    background: linear-gradient(135deg, #ff6725 0%, #ff8f5c 50%, #ffb88c 100%);
    padding: 48px 44px 40px;
}
.blog-article-hero-inner {
    max-width: 800px;
}
.blog-article-hero-cat {
    display: inline-block;
    background: rgba(255,255,255,0.15);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    padding: 5px 16px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    text-decoration: none;
    margin-bottom: 16px;
    backdrop-filter: blur(6px);
    transition: background 0.2s;
}
.blog-article-hero-cat:hover { background: rgba(255,255,255,0.25); color: #fff; }
.blog-article-hero-title {
    font-family: 'EB Garamond', serif;
    font-size: 40px;
    font-weight: 600;
    color: #fff;
    line-height: 1.18;
    margin-bottom: 18px;
    text-shadow: 0 2px 20px rgba(0,0,0,0.15);
}
.blog-article-hero-meta {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
    font-size: 13px;
    color: rgba(255,255,255,0.78);
}
.blog-article-hero-meta i { color: rgba(255,255,255,0.5); margin-right: 2px; font-size: 11px; }
.blog-article-hero-meta span { display: inline-flex; align-items: center; gap: 3px; }
.blog-article-hero-sep { opacity: 0.35; margin: 0 4px; }

/* ── Article Content ─────────────────────────────────────── */
.blog-content {
    max-width: 900px;
    margin: 0 auto;
    font-size: 17px;
    line-height: 1.85;
    color: #333;
    letter-spacing: -0.01em;
}
.blog-content h2 {
    font-family: 'EB Garamond', serif;
    font-size: 30px;
    font-weight: 600;
    margin-top: 44px;
    margin-bottom: 16px;
    color: #1a1a1a;
    line-height: 1.25;
    position: relative;
    padding-left: 18px;
}
.blog-content h2::before {
    content: '';
    position: absolute;
    left: 0;
    top: 4px;
    bottom: 4px;
    width: 3px;
    background: #ff6725;
    border-radius: 3px;
}
.blog-content h3 {
    font-family: 'EB Garamond', serif;
    font-size: 23px;
    font-weight: 600;
    margin-top: 32px;
    margin-bottom: 12px;
    color: #1a1a1a;
    line-height: 1.3;
}
.blog-content h4 {
    font-size: 18px;
    font-weight: 600;
    margin-top: 24px;
    margin-bottom: 10px;
    color: #1a1a1a;
}
.blog-content p {
    margin-bottom: 18px;
}
.blog-content img {
    max-width: 100%;
    height: auto;
    border-radius: 14px;
    margin: 24px 0;
    box-shadow: 0 2px 16px rgba(0,0,0,0.06);
}
.blog-content a {
    color: #ff6725;
    text-decoration: underline;
    text-underline-offset: 3px;
    text-decoration-color: rgba(255,103,37,0.3);
    transition: text-decoration-color 0.2s;
}
.blog-content a:hover {
    text-decoration-color: #ff6725;
}
.blog-content blockquote {
    background: linear-gradient(135deg, #fff8f4 0%, #fff3ee 100%);
    border-left: 3px solid #ff6725;
    padding: 22px 26px;
    margin: 28px 0;
    border-radius: 0 16px 16px 0;
    font-family: 'EB Garamond', serif;
    font-size: 20px;
    font-style: italic;
    color: #444;
    line-height: 1.6;
}
.blog-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0;
    font-size: 14px;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 1px 8px rgba(0,0,0,0.04);
}
.blog-content table thead th {
    background: #ff6725;
    color: #fff;
    padding: 12px 16px;
    text-align: left;
    font-weight: 600;
    font-size: 13px;
}
.blog-content table tbody td {
    padding: 11px 16px;
    border-bottom: 1px solid #f0ebe7;
}
.blog-content table tbody tr:nth-child(even) { background: #faf7f5; }
.blog-content table tbody tr:hover { background: #fff3ee; }
.blog-content ul, .blog-content ol {
    padding-left: 24px;
    margin-bottom: 18px;
}
.blog-content li {
    margin-bottom: 8px;
    line-height: 1.7;
}
.blog-content li::marker { color: #ff8f5c; }
.blog-content strong { color: #1a1a1a; }
.blog-content hr {
    border: none;
    height: 1px;
    background: #f0ebe7;
    margin: 36px 0;
}

/* ── Share Bar ───────────────────────────────────────────── */
.blog-share-bar {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    margin: 28px 0 0;
    padding: 18px 0;
    border-top: 1px solid #f0ebe7;
}
.blog-share-bar .share-label {
    font-size: 11px;
    font-weight: 700;
    color: #bbb;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-right: 4px;
}
.blog-share-bar .btn {
    font-size: 13px;
    padding: 6px 16px;
    border-radius: 50px;
    transition: all 0.2s;
}
.blog-share-bar .btn:hover {
    transform: translateY(-1px);
}

/* ── Category Hero (image-backed banner) ─────────────────── */
.blog-cat-hero {
    position: relative;
    border-radius: 20px 20px 0 0;
    overflow: hidden;
    min-height: 220px;
    display: flex;
    align-items: flex-end;
}
.blog-cat-hero-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.blog-cat-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(26,26,26,0.1) 0%, rgba(26,26,26,0.75) 100%);
}
.blog-cat-hero-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #ff6725 0%, #ff8f5c 50%, #ffb88c 100%);
}
.blog-cat-hero-content {
    position: relative;
    z-index: 2;
    padding: 32px 32px 28px;
    width: 100%;
}
.blog-cat-hero-title {
    font-family: 'EB Garamond', serif;
    font-size: 34px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 8px;
    line-height: 1.15;
    text-shadow: 0 2px 12px rgba(0,0,0,0.15);
}
.blog-cat-hero-desc {
    font-size: 14px;
    color: rgba(255,255,255,0.88);
    max-width: 600px;
    line-height: 1.6;
}
.blog-cat-hero-desc a {
    color: #fff;
    text-decoration: underline;
    text-underline-offset: 3px;
    font-weight: 600;
}

/* ── Tags ────────────────────────────────────────────────── */
.blog-tags-wrap { display: flex; gap: 6px; flex-wrap: wrap; margin-top: 12px; }
.blog-tag-pill {
    font-size: 12px;
    background: #f8f4f1;
    color: #ff6725;
    padding: 5px 14px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.25s;
    border: 1px solid transparent;
}
.blog-tag-pill:hover {
    background: #ff6725;
    color: #fff;
    border-color: #ff6725;
}

/* ── Related Posts ───────────────────────────────────────── */
.blog-related-title {
    font-family: 'EB Garamond', serif;
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #1a1a1a;
}

/* ── Sidebar ─────────────────────────────────────────────── */
.blog-sidebar { position: sticky; top: 100px; }
.blog-sidebar-card {
    background: #fff;
    border-radius: 20px;
    padding: 22px 24px;
    margin-bottom: 20px;
    box-shadow: 0 1px 8px rgba(0,0,0,0.04);
    border: 1px solid rgba(0,0,0,0.03);
}
.blog-sidebar-title {
    font-family: 'EB Garamond', serif;
    font-size: 17px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 2px solid #f0ebe7;
}
.blog-sidebar-cat-list { list-style: none; padding: 0; margin: 0; }
.blog-sidebar-cat-list li { margin-bottom: 1px; }
.blog-sidebar-cat-list a {
    font-size: 14px;
    color: #555;
    text-decoration: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    transition: color 0.2s;
}
.blog-sidebar-cat-list a:hover { color: #ff6725; }
.blog-sidebar-cat-list .cat-count {
    background: #fff3ee;
    color: #ff6725;
    font-size: 11px;
    font-weight: 600;
    padding: 2px 10px;
    border-radius: 50px;
    min-width: 28px;
    text-align: center;
}
.blog-sidebar-post {
    display: flex;
    gap: 14px;
    margin-bottom: 14px;
    padding-bottom: 14px;
    border-bottom: 1px solid #f5f0ec;
}
.blog-sidebar-post:last-child { border: none; margin: 0; padding: 0; }
.blog-sidebar-post-img {
    width: 72px;
    height: 52px;
    border-radius: 10px;
    object-fit: cover;
    flex-shrink: 0;
}
.blog-sidebar-post-title {
    font-family: 'EB Garamond', serif;
    font-size: 14px;
    font-weight: 500;
    color: #1a1a1a;
    line-height: 1.35;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.blog-sidebar-post-title a { color: inherit; text-decoration: none; }
.blog-sidebar-post-title a:hover { color: #ff6725; }
.blog-sidebar-post-date { font-size: 11px; color: #bbb; margin-top: 4px; }

/* ── Tool cards in sidebar ───────────────────────────────── */
.blog-tool-card {
    background: #fff8f4;
    border-radius: 14px;
    padding: 14px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
    transition: all 0.25s ease;
    text-decoration: none;
    border: 1px solid transparent;
}
.blog-tool-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(255,103,37,0.10);
    border-color: #ffd4be;
}
.blog-tool-card i {
    font-size: 16px;
    color: #ff6725;
    width: 36px;
    height: 36px;
    background: #fff;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 1px 4px rgba(0,0,0,0.06);
}
.blog-tool-card-name { font-size: 13px; font-weight: 600; color: #1a1a1a; }

/* ── WhatsApp CTA ────────────────────────────────────────── */
.blog-cta-card {
    background: linear-gradient(135deg, #ff6725 0%, #ff8f5c 50%, #ffb88c 100%);
    border-radius: 20px;
    padding: 30px 24px;
    text-align: center;
    color: #fff;
    position: relative;
    overflow: hidden;
}
.blog-cta-card::before {
    content: '';
    position: absolute;
    top: -40px;
    right: -40px;
    width: 140px;
    height: 140px;
    background: rgba(255,255,255,0.08);
    border-radius: 50%;
    pointer-events: none;
}
.blog-cta-card::after {
    content: '';
    position: absolute;
    bottom: -30px;
    left: -20px;
    width: 100px;
    height: 100px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
    pointer-events: none;
}
.blog-cta-card h4 {
    font-family: 'EB Garamond', serif;
    color: #fff;
    font-size: 22px;
    margin-bottom: 8px;
    position: relative;
}
.blog-cta-card p {
    font-size: 13px;
    color: rgba(255,255,255,0.85);
    margin-bottom: 16px;
    position: relative;
}
.blog-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #fff;
    color: #ff6725;
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.25s;
    position: relative;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
.blog-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 14px rgba(0,0,0,0.15);
    color: #ff6725;
}

/* ── TOC (Table of Contents) ─────────────────────────────── */
.blog-toc { }
.blog-toc-title {
    font-family: 'EB Garamond', serif;
    font-size: 17px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 14px;
    padding-bottom: 12px;
    border-bottom: 2px solid #f0ebe7;
}
.blog-toc ul { list-style: none; padding: 0; margin: 0; }
.blog-toc li { margin-bottom: 4px; }
.blog-toc li a {
    display: block;
    font-size: 13px;
    color: #666;
    text-decoration: none;
    padding: 5px 0 5px 12px;
    border-left: 2px solid transparent;
    transition: all 0.2s;
    line-height: 1.4;
}
.blog-toc li a:hover {
    color: #ff6725;
    border-left-color: #ff6725;
    background: #fff8f4;
    border-radius: 0 6px 6px 0;
}
.blog-toc .toc-h3 a { padding-left: 24px; font-size: 12px; }

/* ── FAQ (matches tool page pattern) ─────────────────────── */
.blog-faq-section { margin-top: 36px; }
.blog-faq-section h2 {
    border-left: none !important;
    padding-left: 0 !important;
    text-align: center;
    font-family: 'EB Garamond', serif;
    font-size: 28px;
    margin-bottom: 20px;
}
.blog-faq-section h2::before { display: none !important; }
.blog-faq-item {
    border: 1px solid #e8e8e8;
    border-radius: 10px;
    margin-bottom: 12px;
    overflow: hidden;
    transition: all 0.3s;
}
.blog-faq-item:hover { border-color: #ffd4be; }
.blog-faq-item.open { border-color: #ff6725; }
.blog-faq-question, .blog-faq-item h3 {
    padding: 16px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    font-size: 15px;
    color: #333;
    background: #fafafa;
    margin: 0;
    gap: 10px;
    line-height: 1.4;
    font-family: inherit;
}
.blog-faq-item h3::after {
    content: '\2304';
    font-size: 20px;
    color: #ff6725;
    flex-shrink: 0;
    transition: transform 0.3s;
    line-height: 1;
}
.blog-faq-item.open h3::after { transform: rotate(180deg); }
.blog-faq-question i, .blog-faq-item h3 i {
    transition: transform 0.3s;
    color: #ff6725;
    flex-shrink: 0;
}
.blog-faq-item.open .blog-faq-question i,
.blog-faq-item.open h3 i { transform: rotate(180deg); }
.blog-faq-answer, .blog-faq-item > p {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s;
    color: #555;
    font-size: 14px;
    line-height: 1.75;
    margin: 0;
}
.blog-faq-item.open .blog-faq-answer,
.blog-faq-item.open > p {
    padding: 0 20px 16px;
    max-height: 800px;
}

/* ── Pagination ──────────────────────────────────────────── */
.blog-pagination { display: flex; justify-content: center; gap: 6px; margin-top: 28px; }
.blog-pagination a, .blog-pagination span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.25s;
}
.blog-pagination a {
    background: #fff;
    color: #6c757d;
    border: 1px solid #e8e0da;
}
.blog-pagination a:hover {
    background: #ff6725;
    color: #fff;
    border-color: #ff6725;
    transform: translateY(-1px);
}
.blog-pagination .active { background: #ff6725; color: #fff; border: 1px solid #ff6725; }
.blog-pagination .disabled { color: #ddd; }
.blog-pagination .dots { border: none; background: none; color: #999; font-size: 16px; letter-spacing: 2px; padding: 0 4px; }

/* ── Empty State ─────────────────────────────────────────── */
.blog-empty-state {
    text-align: center;
    padding: 56px 28px;
    background: #fff;
    border-radius: 20px;
    border: 1px solid rgba(0,0,0,0.04);
}
.blog-empty-state i { font-size: 40px; color: #ffb88c; opacity: 0.4; margin-bottom: 16px; }
.blog-empty-state h4 { font-size: 18px; color: #999; font-weight: 600; margin-bottom: 6px; }
.blog-empty-state p { font-size: 14px; color: #bbb; }

/* ── Bottom Section Cards (replaces sidebar on single post) ── */
.blog-bottom-card {
    background: #fff;
    border-radius: 20px;
    padding: 24px 26px;
    box-shadow: 0 1px 8px rgba(0,0,0,0.04);
    border: 1px solid rgba(0,0,0,0.03);
    height: 100%;
}
.blog-bottom-card-header {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'EB Garamond', serif;
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 18px;
    padding-bottom: 14px;
    border-bottom: 2px solid #f0ebe7;
}
.blog-bottom-card-header i { color: #ff6725; font-size: 16px; }
.blog-bottom-cat-list { list-style: none; padding: 0; margin: 0; }
.blog-bottom-cat-list li { margin-bottom: 1px; }
.blog-bottom-cat-list a {
    font-size: 14px;
    color: #555;
    text-decoration: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 7px 0;
    transition: color 0.2s;
}
.blog-bottom-cat-list a:hover { color: #ff6725; }
.blog-bottom-cat-list .cat-count {
    background: #fff3ee;
    color: #ff6725;
    font-size: 11px;
    font-weight: 600;
    padding: 2px 10px;
    border-radius: 50px;
    min-width: 28px;
    text-align: center;
}
.blog-bottom-post {
    display: flex;
    gap: 14px;
    margin-bottom: 14px;
    padding-bottom: 14px;
    border-bottom: 1px solid #f5f0ec;
}
.blog-bottom-post:last-child { border: none; margin: 0; padding: 0; }
.blog-bottom-post-img {
    width: 72px;
    height: 52px;
    border-radius: 10px;
    object-fit: cover;
    flex-shrink: 0;
}
.blog-bottom-post-img-placeholder {
    width: 72px;
    height: 52px;
    border-radius: 10px;
    flex-shrink: 0;
    background: linear-gradient(135deg, #ff6725, #ffb88c);
    display: flex;
    align-items: center;
    justify-content: center;
}
.blog-bottom-post-img-placeholder i { color: rgba(255,255,255,0.4); font-size: 16px; }
.blog-bottom-post-title {
    font-family: 'EB Garamond', serif;
    font-size: 14px;
    font-weight: 500;
    color: #1a1a1a;
    line-height: 1.35;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-decoration: none;
}
.blog-bottom-post-title:hover { color: #ff6725; }
.blog-bottom-post-date { font-size: 11px; color: #bbb; margin-top: 4px; }
.blog-bottom-cta {
    background: linear-gradient(135deg, #ff6725 0%, #ff8f5c 50%, #ffb88c 100%);
    border-radius: 20px;
    padding: 36px 28px;
    text-align: center;
    color: #fff;
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.blog-bottom-cta-decoration {
    position: absolute;
    top: -40px;
    right: -40px;
    width: 150px;
    height: 150px;
    background: rgba(255,255,255,0.06);
    border-radius: 50%;
    pointer-events: none;
}
.blog-bottom-cta-icon {
    width: 56px;
    height: 56px;
    background: rgba(255,255,255,0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}
.blog-bottom-cta-icon i { font-size: 24px; color: #fff; }
.blog-bottom-cta h4 {
    font-family: 'EB Garamond', serif;
    color: #fff;
    font-size: 22px;
    margin-bottom: 8px;
    position: relative;
}
.blog-bottom-cta p {
    font-size: 13px;
    color: rgba(255,255,255,0.85);
    margin-bottom: 18px;
    position: relative;
    max-width: 260px;
}

/* ── Toast Notification ──────────────────────────────────── */
.blog-toast {
    position: fixed;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%) translateY(80px);
    background: #1a1a1a;
    color: #fff;
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    z-index: 9999;
    opacity: 0;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
    box-shadow: 0 8px 32px rgba(0,0,0,0.18);
}
.blog-toast i { color: #4ade80; font-size: 15px; }
.blog-toast.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

/* ══════════════════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════════════════ */
@media (max-width: 991px) {
    .blog-sidebar { position: static; margin-top: 24px; }
    .blog-article-hero-title { font-size: 32px; }
    .blog-article-hero-content { padding: 28px 28px 24px; }
    .blog-featured-body { padding: 26px 22px; }
    .blog-featured-body .blog-card-title { font-size: 24px; }
    .blog-content h2 { font-size: 26px; }
}
@media (max-width: 767px) {
    .blog-search-hero { padding: 28px 20px 22px; }
    .blog-search-hero-title { font-size: 26px; }
    .blog-article-hero-img { height: 280px; }
    .blog-article-hero-title { font-size: 24px; }
    .blog-article-hero-content { padding: 20px 20px 18px; }
    .blog-article-hero-content.no-image { padding: 32px 20px 28px; }
    .blog-article-hero-meta { font-size: 12px; gap: 4px; }
    .blog-article-hero-sep { display: none; }
    .blog-content { font-size: 15px; line-height: 1.8; }
    .blog-content h2 { font-size: 23px; margin-top: 32px; }
    .blog-content h3 { font-size: 19px; }
    .blog-content blockquote { font-size: 17px; padding: 16px 18px; }
    .blog-card-title { font-size: 16px; }
    .blog-featured-img, .blog-featured-img-wrap { min-height: 200px; }
    .blog-featured-body .blog-card-title { font-size: 20px; }
    .blog-category-tab { padding: 6px 14px; font-size: 12px; }
}

/* ══════════════════════════════════════════════════════════
   PRINT
   ══════════════════════════════════════════════════════════ */
@media print {
    .dash-aside-navbar, .dashboard-header, .blog-search-hero,
    .blog-sidebar, .blog-share-bar, .blog-cta-card, .blog-bottom-cta,
    .blog-category-tabs, .blog-tags-wrap, .theme-main-menu,
    .footer-one, .credits-section, .blog-pagination,
    .blog-related-title, .blog-toc, .blog-article-hero-overlay { display: none !important; }
    .blog-article-hero { border-radius: 0; }
    .blog-article-hero-content { position: relative; background: #fff; padding: 20px 0; }
    .blog-article-hero-title { color: #1a1a1a !important; text-shadow: none !important; font-size: 28pt; }
    .blog-article-hero-meta { color: #666 !important; }
    .blog-article-hero-cat { background: #eee; color: #333; }
    .blog-content { max-width: 100%; font-size: 12pt; }
    .blog-article-hero-img { max-height: 250px; }
}
