/* Webhivez Blog Agent — Front-end post styles */

/* Table of Contents */
.wba-toc {
    background: #f0f4ff;
    border-left: 4px solid #3b77ff;
    border-radius: 8px;
    padding: 20px 24px;
    margin: 28px 0;
}
.wba-toc h4 {
    margin: 0 0 12px;
    font-size: 15px;
    font-weight: 700;
    color: #1e1e2e;
    text-transform: uppercase;
    letter-spacing: .04em;
}
.wba-toc ol {
    margin: 0;
    padding-left: 20px;
}
.wba-toc ol li {
    margin-bottom: 6px;
    font-size: 14px;
    color: #3b77ff;
}
.wba-toc ol li a {
    color: #3b77ff;
    text-decoration: none;
}
.wba-toc ol li a:hover {
    text-decoration: underline;
}

/* FAQ Section */
.wba-faq {
    margin: 40px 0;
}
.wba-faq > h2 {
    font-size: 22px;
    margin-bottom: 20px;
    color: #1e1e2e;
}
.wba-faq-item {
    border: 1px solid #e2e6ea;
    border-radius: 8px;
    padding: 16px 20px;
    margin-bottom: 12px;
    background: #fafbff;
}
.wba-faq-item h3 {
    font-size: 16px;
    font-weight: 600;
    color: #1e1e2e;
    margin: 0 0 8px;
}
.wba-faq-item p {
    font-size: 14px;
    color: #4b5563;
    line-height: 1.7;
    margin: 0;
}

/* CTA Block */
.wba-cta {
    background: linear-gradient(135deg, #0a0e1c 0%, #1a2540 100%);
    border-radius: 12px;
    padding: 32px 36px;
    margin: 40px 0;
    text-align: center;
}
.wba-cta p {
    color: #d0dcf0 !important;
    font-size: 16px !important;
    line-height: 1.7 !important;
    margin: 0 !important;
}
.wba-cta a {
    color: #60a5fa;
    font-weight: 600;
    text-decoration: underline;
}

/* Comparison / Data Tables */
.entry-content table,
.post-content table,
article table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0;
    font-size: 14px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 1px 4px rgba(0,0,0,.08);
}
.entry-content table thead tr,
.post-content table thead tr,
article table thead tr {
    background: #3b77ff;
    color: #fff;
}
.entry-content table th,
.post-content table th,
article table th {
    padding: 12px 16px;
    text-align: left;
    font-weight: 600;
    font-size: 13px;
    letter-spacing: .03em;
}
.entry-content table td,
.post-content table td,
article table td {
    padding: 11px 16px;
    border-bottom: 1px solid #e2e6ea;
    color: #374151;
    vertical-align: top;
}
.entry-content table tbody tr:nth-child(even),
.post-content table tbody tr:nth-child(even),
article table tbody tr:nth-child(even) {
    background: #f8fafc;
}
.entry-content table tbody tr:last-child td,
.post-content table tbody tr:last-child td,
article table tbody tr:last-child td {
    border-bottom: none;
}
