/*
 * BLIS Blog Content Styles
 * Applied to admin editor (.note-editable) and the public blog page (.blog-content)
 * so blog articles render with a consistent, professional design.
 */
.blog-content,
.note-editable.blog-content {
    color: #2b2f38;
    font-size: 1.05rem;
    line-height: 1.8;
    word-break: break-word;
}

/* Headings */
.blog-content h1,
.note-editable.blog-content h1 {
    font-size: 2rem;
    font-weight: 800;
    color: #12233b;
    margin: 1.6rem 0 1rem;
}
.blog-content h2,
.note-editable.blog-content h2 {
    font-size: 1.55rem;
    font-weight: 700;
    color: #12233b;
    margin: 2rem 0 1rem;
    padding-bottom: .5rem;
    border-bottom: 3px solid #e2e8f0;
}
.blog-content h2::before,
.note-editable.blog-content h2::before {
    content: "";
    display: inline-block;
    width: 6px;
    height: 1.15rem;
    margin-right: .6rem;
    vertical-align: -2px;
    background: #1a75d1;
    border-radius: 3px;
}
.blog-content h3,
.note-editable.blog-content h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1f2d40;
    margin: 1.5rem 0 .75rem;
}

.blog-content p { margin: 0 0 1rem; }
.blog-content a { color: #1a75d1; text-decoration: underline; }
.blog-content ul,
.blog-content ol { margin: 0 0 1.15rem 1.25rem; }
.blog-content li { margin-bottom: .4rem; }
.blog-content img { max-width: 100%; height: auto; border-radius: 8px; margin: 1rem 0; }

/* Tables (pricing / comparison) */
.blog-content table,
.note-editable.blog-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
    font-size: .98rem;
    box-shadow: 0 1px 3px rgba(16, 35, 59, .08);
    border-radius: 8px;
    overflow: hidden;
}
.blog-content th,
.note-editable.blog-content th {
    background: #12233b;
    color: #fff;
    text-align: left;
    padding: .85rem 1rem;
    font-weight: 600;
    border: 1px solid #12233b;
}
.blog-content td,
.note-editable.blog-content td {
    padding: .8rem 1rem;
    border: 1px solid #e2e8f0;
    vertical-align: top;
}
.blog-content tbody tr:nth-child(even) td { background: #f6f9fc; }

/* Callout / note box */
.blog-note {
    position: relative;
    background: #eef6ff;
    border-left: 4px solid #1a75d1;
    border-radius: 6px;
    padding: 1rem 1.15rem;
    margin: 1.5rem 0;
    color: #1f3a57;
}
.blog-note.warning { background: #fff8e6; border-left-color: #e0a800; color: #6b5200; }
.blog-note.success { background: #eafaf1; border-left-color: #28a745; color: #1c6b39; }
.blog-note strong { display: block; margin-bottom: .25rem; }

/* Numbered steps */
.blog-steps { counter-reset: blis-step; list-style: none; margin: 1.5rem 0; padding: 0; }
.blog-steps > li {
    counter-increment: blis-step;
    position: relative;
    padding: 0 0 1rem 3rem;
    margin: 0;
    min-height: 2.4rem;
}
.blog-steps > li::before {
    content: counter(blis-step);
    position: absolute;
    left: 0; top: 0;
    width: 2rem; height: 2rem;
    display: flex; align-items: center; justify-content: center;
    background: #1a75d1; color: #fff;
    border-radius: 50%;
    font-weight: 700; font-size: .95rem;
}

/* FAQ item */
.blog-faq { border: 1px solid #e2e8f0; border-radius: 8px; padding: 1rem 1.15rem; margin: 1rem 0; background: #fff; }
.blog-faq .blog-faq-q { font-weight: 700; color: #12233b; margin-bottom: .4rem; }
.blog-faq .blog-faq-a { margin: 0; color: #45505f; }

/* Call to action box */
.blog-cta {
    background: linear-gradient(135deg, #12233b 0%, #1a75d1 100%);
    color: #fff;
    border-radius: 10px;
    padding: 1.6rem 1.8rem;
    margin: 2rem 0;
    text-align: center;
}
.blog-cta h3 { color: #fff; margin-top: 0; }
.blog-cta p { margin-bottom: 1rem; opacity: .92; }
.blog-cta .btn {
    display: inline-block;
    background: #fff; color: #12233b;
    padding: .7rem 1.6rem; border-radius: 6px;
    font-weight: 700; text-decoration: none;
}
