/* ============================================
   TAXCLUE BLOG ARTICLE STYLES
   Add to your blog single.php template
   or include as a separate CSS file
   ============================================ */

/* === NOTE BOXES === */
.bp-note {
    border-radius: 8px;
    padding: 16px 20px;
    margin: 20px 0;
    border-left: 4px solid;
    font-size: 15px;
    line-height: 1.7;
}
.bp-note-title {
    font-weight: 700;
    font-size: 15px;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.bp-note-info {
    background: #EFF6FF;
    border-color: #3B82F6;
    color: #1E3A5F;
}
.bp-note-info .bp-note-title { color: #2563EB; }

.bp-note-warning {
    background: #FFF7ED;
    border-color: #F59E0B;
    color: #78350F;
}
.bp-note-warning .bp-note-title { color: #D97706; }

.bp-note-important {
    background: #FEF2F2;
    border-color: #EF4444;
    color: #7F1D1D;
}
.bp-note-important .bp-note-title { color: #DC2626; }

.bp-note-tip {
    background: #F0FDF4;
    border-color: #22C55E;
    color: #14532D;
}
.bp-note-tip .bp-note-title { color: #16A34A; }

/* === STEP-BY-STEP BOXES === */
.bp-steps {
    margin: 20px 0;
    counter-reset: step-counter;
}
.bp-step {
    display: flex;
    align-items: flex-start;
    margin-bottom: 16px;
    padding: 16px;
    background: #F9FAFB;
    border: 1px solid #E5E7EB;
    border-radius: 8px;
    counter-increment: step-counter;
    position: relative;
    padding-left: 60px;
}
.bp-step::before {
    content: counter(step-counter);
    position: absolute;
    left: 16px;
    top: 16px;
    width: 32px;
    height: 32px;
    background: #1E3A8A;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    flex-shrink: 0;
}
.bp-step-content {
    flex: 1;
}
.bp-step-title {
    font-weight: 700;
    font-size: 16px;
    color: #111827;
    margin-bottom: 4px;
}
.bp-step-desc {
    font-size: 14px;
    color: #4B5563;
    line-height: 1.6;
}

/* === TABLES === */
.blog-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    font-size: 14px;
    border: 1px solid #E5E7EB;
    border-radius: 8px;
    overflow: hidden;
}
.blog-content thead {
    background: #1E3A8A;
    color: #fff;
}
.blog-content thead th {
    padding: 12px 16px;
    text-align: left;
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.blog-content tbody td {
    padding: 10px 16px;
    border-bottom: 1px solid #F3F4F6;
    color: #374151;
}
.blog-content tbody tr:nth-child(even) {
    background: #F9FAFB;
}
.blog-content tbody tr:hover {
    background: #EFF6FF;
}

/* === ARTICLE CONTENT === */
.blog-content h2 {
    font-size: 24px;
    font-weight: 700;
    color: #111827;
    margin: 32px 0 16px;
    padding-bottom: 8px;
    border-bottom: 2px solid #E5E7EB;
}
.blog-content h3 {
    font-size: 20px;
    font-weight: 600;
    color: #1F2937;
    margin: 24px 0 12px;
}
.blog-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #374151;
    margin: 12px 0;
}
.blog-content ul, .blog-content ol {
    margin: 12px 0;
    padding-left: 24px;
}
.blog-content li {
    font-size: 15px;
    line-height: 1.7;
    color: #374151;
    margin-bottom: 6px;
}
.blog-content strong {
    color: #111827;
}
.blog-content a {
    color: #2563EB;
    text-decoration: underline;
}
.blog-content a:hover {
    color: #1D4ED8;
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
    .bp-note { padding: 12px 14px; font-size: 14px; }
    .bp-step { padding-left: 50px; }
    .bp-step::before { width: 28px; height: 28px; font-size: 12px; }
    .blog-content table { font-size: 12px; display: block; overflow-x: auto; }
    .blog-content thead th { padding: 8px 10px; }
    .blog-content tbody td { padding: 8px 10px; }
    .blog-content h2 { font-size: 20px; }
    .blog-content h3 { font-size: 18px; }
}
