/* ════════════════════════════════════════
   OMNIA BUSINESS — Blog Post Shared Styles
   ════════════════════════════════════════ */

/* ── Breadcrumb ── */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #9ca3af;
    margin-bottom: 20px;
    letter-spacing: .02em;
}
.breadcrumb a { color: #9ca3af; text-decoration: none; transition: color .2s; }
.breadcrumb a:hover { color: #000; }
.breadcrumb svg { width: 12px; height: 12px; }

/* ── Article hero ── */
.article-hero {
    padding: 100px 0 0;
    background: #fff;
}
.article-category-label {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: #6b7280;
    margin-bottom: 16px;
}
.article-category-label svg { width: 13px; height: 13px; }
.article-hero h1 {
    font-size: clamp(1.75rem, 3.2vw, 2.6rem);
    line-height: 1.2;
    letter-spacing: -.025em;
    max-width: 740px;
    margin-bottom: 20px;
}
.article-meta {
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 13px;
    color: #9ca3af;
    flex-wrap: wrap;
    padding-bottom: 36px;
}
.article-meta span { display: flex; align-items: center; gap: 5px; }
.article-meta svg { width: 13px; height: 13px; }

/* ── Hero image banner ── */
.article-hero-image {
    width: 100%;
    height: 420px;
    overflow: hidden;
}
.article-hero-image img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
}
@media (max-width: 768px) { .article-hero-image { height: 240px; } }

/* ── Article layout ── */
.article-layout {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 60px;
    padding: 56px 0 90px;
    align-items: start;
}
@media (max-width: 1024px) { .article-layout { grid-template-columns: 1fr; gap: 40px; } }

/* ── Article content ── */
.article-content h2 {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(1.3rem, 2.2vw, 1.75rem);
    font-weight: 700;
    letter-spacing: -.02em;
    margin: 44px 0 16px;
    padding-top: 24px;
    border-top: 2px solid #c9a96e;
    line-height: 1.25;
}
.article-content h2:first-child { margin-top: 0; }
.article-content h3 {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(1.05rem, 1.8vw, 1.25rem);
    font-weight: 600;
    letter-spacing: -.01em;
    margin: 28px 0 10px;
    color: #111;
}
.article-content p {
    font-size: 15.5px;
    line-height: 1.8;
    color: #374151;
    margin-bottom: 18px;
}
.article-content ul,
.article-content ol {
    margin: 4px 0 20px 22px;
    line-height: 1.8;
}
.article-content li {
    font-size: 15.5px;
    color: #374151;
    margin-bottom: 7px;
}
.article-content strong { color: #111; font-weight: 600; }
.article-content a { color: #000; font-weight: 600; border-bottom: 1px solid #e5e7eb; text-decoration: none; transition: border-color .2s; }
.article-content a:hover { border-color: #000; }

/* ── Callout ── */
.callout {
    background: #faf8f5;
    border-left: 3px solid #c9a96e;
    padding: 18px 22px;
    margin: 28px 0;
    border-radius: 0 8px 8px 0;
}
.callout p { margin: 0; font-size: 14.5px; color: #374151; }
.callout-label {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: #6b7280;
    margin-bottom: 8px;
}
.callout-label svg { width: 13px; height: 13px; }

/* ── Step cards ── */
.step {
    display: flex;
    gap: 18px;
    margin-bottom: 20px;
    padding: 22px 24px;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    background: #fff;
}
.step-num {
    width: 36px; height: 36px;
    background: #111;
    color: #c9a96e;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 14px;
    flex-shrink: 0;
}
.step-content h3 { margin: 0 0 7px; font-size: 16px; }
.step-content p { margin: 0; font-size: 14.5px; color: #6b7280; line-height: 1.7; }

/* ── Data table ── */
.data-table { width: 100%; border-collapse: collapse; margin: 24px 0; font-size: 14px; }
.data-table thead th {
    background: #111;
    color: #fff;
    padding: 13px 16px;
    text-align: left;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 13px;
    letter-spacing: .02em;
}
.data-table td { padding: 12px 16px; border-bottom: 1px solid #f3f4f6; color: #374151; vertical-align: top; }
.data-table tbody tr:hover td { background: #f9fafb; }
.badge-green { background: #c9a96e; color: #fff; font-size: 11px; font-weight: 700; padding: 2px 8px; border-radius: 3px; }

/* ── VS comparison grid ── */
.vs-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin: 24px 0; }
@media (max-width: 640px) { .vs-grid { grid-template-columns: 1fr; } }
.vs-card { border: 1px solid #e5e7eb; border-radius: 10px; overflow: hidden; }
.vs-card-head {
    padding: 16px 20px;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 9px;
}
.vs-card-head svg { width: 16px; height: 16px; }
.vs-card.dark .vs-card-head { background: #111; color: #fff; }
.vs-card.light .vs-card-head { background: #f9fafb; color: #111; border-bottom: 1px solid #e5e7eb; }
.vs-card-body { padding: 18px 20px; }
.vs-card-body ul { margin: 0 0 0 16px; }
.vs-card-body li { font-size: 14px; color: #4b5563; margin-bottom: 7px; line-height: 1.55; }

/* ── Neighborhood card ── */
.neighborhood-card { border: 1px solid #e5e7eb; border-radius: 12px; overflow: hidden; margin-bottom: 32px; }
.neighborhood-card-head {
    background: #111;
    color: #fff;
    padding: 18px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
}
.neighborhood-card-head h3 { font-family: 'Outfit', sans-serif; font-size: 18px; font-weight: 700; color: #fff; margin: 0; }
.nh-tags { display: flex; gap: 8px; flex-wrap: wrap; }
.nh-tag { background: #c9a96e; color: #fff; font-size: 10px; font-weight: 700; padding: 3px 10px; border-radius: 3px; text-transform: uppercase; letter-spacing: .06em; }
.neighborhood-card-body { padding: 22px 24px; }
.nh-stats { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; margin-bottom: 18px; padding-bottom: 18px; border-bottom: 1px solid #f3f4f6; }
@media (max-width: 580px) { .nh-stats { grid-template-columns: 1fr 1fr; } }
.nh-stat { text-align: center; }
.nh-stat-val { font-family: 'Outfit', sans-serif; font-size: 18px; font-weight: 700; display: block; letter-spacing: -.01em; }
.nh-stat-label { font-size: 11px; color: #9ca3af; text-transform: uppercase; letter-spacing: .06em; }
.neighborhood-card-body p { font-size: 14.5px; line-height: 1.7; color: #4b5563; margin-bottom: 10px; }
.pros-cons { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-top: 14px; }
@media (max-width: 580px) { .pros-cons { grid-template-columns: 1fr; } }
.pros-cons h4 { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .07em; margin-bottom: 9px; display: flex; align-items: center; gap: 5px; }
.pros h4 { color: #16a34a; }
.cons h4 { color: #dc2626; }
.pros h4 svg, .cons h4 svg { width: 13px; height: 13px; }
.pros-cons ul { margin: 0 0 0 14px; }
.pros-cons li { font-size: 13.5px; color: #4b5563; margin-bottom: 5px; }

/* ── FAQ ── */
.faq-item { border-bottom: 1px solid #f3f4f6; padding: 20px 0; }
.faq-q { font-family: 'Outfit', sans-serif; font-size: 16px; font-weight: 600; margin-bottom: 8px; letter-spacing: -.01em; }
.faq-a { font-size: 14.5px; color: #6b7280; line-height: 1.7; }

/* ── Sidebar ── */
.sidebar { position: sticky; top: 96px; }
.sidebar-widget {
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 20px;
}
.sidebar-widget-head {
    background: #111;
    color: #fff;
    padding: 14px 18px;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 13px;
    letter-spacing: .04em;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 8px;
}
.sidebar-widget-head svg { width: 14px; height: 14px; }
.sidebar-widget-body { padding: 16px 18px; }
.toc-list { list-style: none; padding: 0; margin: 0; }
.toc-list li { padding: 6px 0; border-bottom: 1px solid #f9fafb; }
.toc-list li:last-child { border: none; }
.toc-list a { font-size: 13.5px; color: #6b7280; text-decoration: none; transition: color .18s; display: flex; align-items: center; gap: 7px; }
.toc-list a svg { width: 12px; height: 12px; flex-shrink: 0; }
.toc-list a:hover { color: #000; font-weight: 500; }
.related-post { display: flex; gap: 12px; padding: 12px 0; border-bottom: 1px solid #f9fafb; text-decoration: none; color: inherit; transition: opacity .18s; }
.related-post:last-child { border: none; padding-bottom: 0; }
.related-post:hover { opacity: .75; }
.related-post-img { width: 60px; height: 50px; border-radius: 6px; overflow: hidden; flex-shrink: 0; }
.related-post-img img { width: 100%; height: 100%; object-fit: cover; }
.related-post-info { flex: 1; }
.related-post-cat { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .07em; color: #9ca3af; margin-bottom: 4px; }
.related-post-title { font-size: 13px; font-weight: 500; color: #111; line-height: 1.4; }

/* ── Inline article CTA (mid-content conversion) ── */
.article-cta {
    background: #111;
    border-radius: 14px;
    padding: 36px 40px;
    margin: 44px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    flex-wrap: wrap;
}
.article-cta-text h3 {
    font-family: 'Outfit', sans-serif;
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: -.01em;
    margin-bottom: 8px;
}
.article-cta-text p {
    color: #9ca3af !important;
    font-size: 14px !important;
    margin: 0 !important;
    line-height: 1.6 !important;
    max-width: 440px;
}
.article-cta-actions {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
    flex-wrap: wrap;
}
.article-cta-btn-primary {
    background: #c9a96e;
    color: #fff;
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 13.5px;
    text-decoration: none;
    transition: opacity .2s;
    white-space: nowrap;
    border: none;
}
.article-cta-btn-primary:hover { opacity: .88; }
.article-cta-btn-outline {
    background: transparent;
    color: #fff;
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 13.5px;
    text-decoration: none;
    border: 1px solid #374151;
    transition: border-color .2s;
    white-space: nowrap;
}
.article-cta-btn-outline:hover { border-color: #9ca3af; }
@media (max-width: 640px) {
    .article-cta { padding: 26px 22px; flex-direction: column; }
    .article-cta-actions { width: 100%; }
    .article-cta-btn-primary, .article-cta-btn-outline { flex: 1; text-align: center; }
}

/* ── CTA widget ── */
.cta-widget {
    background: #111;
    color: #fff;
    padding: 26px 20px;
    border-radius: 10px;
    text-align: center;
}
.cta-widget h3 { color: #fff; font-family: 'Outfit', sans-serif; font-size: 16px; font-weight: 700; margin-bottom: 8px; }
.cta-widget p { color: #9ca3af; font-size: 13px; margin-bottom: 18px; line-height: 1.6; }
.cta-widget-btn {
    display: inline-block;
    background: #c9a96e;
    color: #fff;
    padding: 11px 22px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 13px;
    text-decoration: none;
    transition: opacity .2s;
}
.cta-widget-btn:hover { opacity: .88; }
