/* ==========================================================================
   PREMIUM BLOG POST TEMPLATE — SEO With Ibrar
   Isolated styles for editorial blog post layout.
   Does NOT modify global styles.css — only additive.
   ========================================================================== */

/* ==========================================================================
   1. READING PROGRESS BAR
   ========================================================================== */
.bp-reading-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background: var(--color-primary);
  z-index: 1100;
  transition: width 80ms linear;
}

/* ==========================================================================
   2. BREADCRUMBS
   ========================================================================== */
.bp-breadcrumbs {
  padding: 16px 0;
  background: var(--color-bg);
  border-bottom: 1px solid var(--color-gray-100);
}

.bp-breadcrumbs-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.bp-breadcrumbs a {
  font-size: 0.8125rem;
  color: var(--color-gray-500);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}

.bp-breadcrumbs a:hover {
  color: var(--color-primary);
}

.bp-breadcrumbs-sep {
  font-size: 0.75rem;
  color: var(--color-gray-400);
  user-select: none;
}

.bp-breadcrumbs-current {
  font-size: 0.8125rem;
  color: var(--color-gray-800);
  font-weight: 600;
}

/* ==========================================================================
   3. ARTICLE HERO SECTION
   ========================================================================== */
.bp-hero {
  background: #111827;
  padding: 80px 0 60px;
  position: relative;
  overflow: hidden;
}

.bp-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(140, 198, 63, 0.06) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 50%, rgba(37, 99, 235, 0.04) 0%, transparent 50%);
  pointer-events: none;
}

.bp-hero-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 40px;
  position: relative;
  z-index: 2;
}

.bp-hero-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--color-primary);
  margin-bottom: 24px;
}

.bp-hero-label-dot {
  width: 4px;
  height: 4px;
  background: var(--color-primary);
  border-radius: 50%;
}

.bp-hero h1 {
  font-size: clamp(2.125rem, 5vw, 3.5rem);
  font-weight: 900;
  color: #ffffff;
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
  max-width: 100%;
}

.bp-hero-intro {
  font-size: 1.125rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.65);
  max-width: 760px;
  margin-bottom: 32px;
}

/* Author metadata bar */
.bp-hero-meta {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.bp-author-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.bp-author-photo {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(140, 198, 63, 0.4);
}

.bp-author-name {
  font-size: 0.9375rem;
  font-weight: 700;
  color: #ffffff;
}

.bp-author-role {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.5);
}

.bp-meta-divider {
  width: 1px;
  height: 24px;
  background: rgba(255, 255, 255, 0.15);
}

.bp-meta-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.5);
}

.bp-meta-item svg {
  width: 14px;
  height: 14px;
  stroke: rgba(255, 255, 255, 0.4);
}

.bp-trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  background: rgba(140, 198, 63, 0.12);
  border: 1px solid rgba(140, 198, 63, 0.25);
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--color-primary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.bp-trust-badge svg {
  width: 12px;
  height: 12px;
  stroke: var(--color-primary);
}

/* ==========================================================================
   4. HERO IMAGE
   ========================================================================== */
.bp-hero-image {
  max-width: 900px;
  margin: -40px auto 0;
  padding: 0 40px;
  position: relative;
  z-index: 10;
}

.bp-hero-image img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  border: 4px solid #ffffff;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  display: block;
}

/* ==========================================================================
   5. MAIN ARTICLE LAYOUT
   ========================================================================== */
.bp-article-wrapper {
  max-width: 1280px;
  margin: 0 auto;
  padding: 48px 40px 0;
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 48px;
  align-items: start;
}

.bp-article-main {
  min-width: 0;
}

/* ==========================================================================
   6. QUICK ANSWER CARD
   ========================================================================== */
.bp-quick-answer {
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  border-left: 4px solid var(--color-primary);
  border-radius: 0 12px 12px 0;
  padding: 28px 32px;
  margin-bottom: 48px;
}

.bp-quick-answer-heading {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  font-weight: 800;
  color: #166534;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}

.bp-quick-answer-heading svg {
  width: 16px;
  height: 16px;
}

.bp-quick-answer p {
  font-size: 1rem;
  line-height: 1.7;
  color: #14532d;
  margin: 0;
  max-width: none;
}

/* ==========================================================================
   7. TABLE OF CONTENTS — SIDEBAR (DESKTOP)
   ========================================================================== */
.bp-sidebar {
  position: sticky;
  top: 80px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.bp-toc {
  background: #ffffff;
  border: 1px solid var(--color-gray-200);
  border-radius: 12px;
  padding: 24px;
}

.bp-toc-heading {
  font-size: 0.9375rem;
  font-weight: 800;
  color: var(--color-gray-900);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--color-gray-100);
  display: flex;
  align-items: center;
  gap: 8px;
}

.bp-toc-heading svg {
  width: 16px;
  height: 16px;
  stroke: var(--color-gray-500);
}

.bp-toc-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.bp-toc-list li {
  margin-bottom: 2px;
}

.bp-toc-list a {
  display: block;
  padding: 6px 12px;
  font-size: 0.875rem;
  color: var(--color-gray-600);
  text-decoration: none;
  border-radius: 6px;
  transition: all 0.15s;
  font-weight: 500;
  line-height: 1.4;
}

.bp-toc-list a:hover {
  background: var(--color-gray-50);
  color: var(--color-gray-900);
}

.bp-toc-list a.active {
  background: rgba(140, 198, 63, 0.1);
  color: var(--color-primary-hover);
  font-weight: 600;
}

/* Mobile TOC */
.bp-toc-mobile {
  display: none;
  margin-bottom: 40px;
}

.bp-toc-mobile-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  background: var(--color-gray-50);
  border: 1px solid var(--color-gray-200);
  border-radius: 10px;
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--color-gray-900);
  cursor: pointer;
}

.bp-toc-mobile-toggle svg {
  width: 16px;
  height: 16px;
  stroke: var(--color-gray-500);
  transition: transform 0.2s;
}

.bp-toc-mobile-toggle[aria-expanded="true"] svg {
  transform: rotate(180deg);
}

.bp-toc-mobile-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.bp-toc-mobile-content.open {
  max-height: 600px;
}

.bp-toc-mobile-content .bp-toc-list {
  padding: 16px 20px;
  background: var(--color-gray-50);
  border: 1px solid var(--color-gray-200);
  border-top: none;
  border-radius: 0 0 10px 10px;
}

/* Sidebar CTA */
.bp-sidebar-cta {
  background: #111827;
  border-radius: 12px;
  padding: 28px 24px;
  text-align: center;
}

.bp-sidebar-cta-label {
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--color-primary);
  margin-bottom: 8px;
  display: block;
}

.bp-sidebar-cta h3 {
  font-size: 1.25rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 12px;
  line-height: 1.3;
  letter-spacing: -0.01em;
}

.bp-sidebar-cta p {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
  margin-bottom: 20px;
}

.bp-sidebar-cta-btn {
  display: block;
  width: 100%;
  padding: 12px 20px;
  background: var(--color-primary);
  color: #111827;
  font-size: 0.875rem;
  font-weight: 700;
  border-radius: 8px;
  text-decoration: none;
  text-align: center;
  transition: all 0.2s;
}

.bp-sidebar-cta-btn:hover {
  background: var(--color-primary-hover);
  transform: translateY(-1px);
}

/* ==========================================================================
   8. SECTION HEADINGS (reusable)
   ========================================================================== */
.bp-section {
  margin-bottom: 64px;
}

.bp-section-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--color-primary);
  margin-bottom: 8px;
  display: block;
}

.bp-section h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  color: var(--color-gray-900);
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

.bp-section-desc {
  font-size: 1rem;
  color: var(--color-gray-500);
  line-height: 1.7;
  max-width: 700px;
  margin-bottom: 32px;
}

/* ==========================================================================
   9. FEATURED TOP 3 EXPERTS
   ========================================================================== */
.bp-top3-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 32px;
}

.bp-top3-card {
  background: #ffffff;
  border: 1px solid var(--color-gray-200);
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
  position: relative;
}

.bp-top3-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
  border-color: var(--color-gray-300);
}

.bp-top3-rank {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--color-primary);
  opacity: 0.2;
  line-height: 1;
  margin-bottom: 16px;
  letter-spacing: -0.03em;
}

.bp-top3-card:first-child .bp-top3-rank {
  opacity: 0.35;
}

.bp-top3-photo {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 16px;
  border: 3px solid var(--color-gray-100);
}

.bp-top3-name {
  font-size: 1.125rem;
  font-weight: 800;
  color: var(--color-gray-900);
  margin-bottom: 4px;
}

.bp-top3-role {
  font-size: 0.8125rem;
  color: var(--color-gray-500);
  margin-bottom: 12px;
}

.bp-top3-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: center;
  margin-bottom: 16px;
}

.bp-top3-tag {
  font-size: 0.6875rem;
  font-weight: 600;
  padding: 3px 10px;
  background: var(--color-gray-50);
  border: 1px solid var(--color-gray-200);
  border-radius: 100px;
  color: var(--color-gray-600);
}

.bp-top3-meta {
  font-size: 0.8125rem;
  color: var(--color-gray-500);
  display: flex;
  align-items: center;
  gap: 6px;
  justify-content: center;
  margin-bottom: 16px;
}

.bp-top3-meta svg {
  width: 14px;
  height: 14px;
  stroke: var(--color-gray-400);
}

.bp-top3-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--color-primary);
  text-decoration: none;
  transition: gap 0.2s;
}

.bp-top3-cta:hover {
  gap: 10px;
}

.bp-top3-cta svg {
  width: 14px;
  height: 14px;
  stroke: var(--color-primary);
}

/* ==========================================================================
   10. COMPARISON TABLE
   ========================================================================== */
.bp-table-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}

.bp-filter-btn {
  padding: 6px 16px;
  border: 1px solid var(--color-gray-200);
  border-radius: 100px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--color-gray-600);
  background: #ffffff;
  cursor: pointer;
  transition: all 0.15s;
}

.bp-filter-btn:hover {
  border-color: var(--color-gray-400);
  color: var(--color-gray-900);
}

.bp-filter-btn.active {
  background: var(--color-gray-900);
  color: #ffffff;
  border-color: var(--color-gray-900);
}

.bp-table-wrapper {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border: 1px solid var(--color-gray-200);
  border-radius: 12px;
}

.bp-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9375rem;
}

.bp-table thead {
  background: var(--color-gray-50);
}

.bp-table th {
  padding: 14px 16px;
  text-align: left;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--color-gray-500);
  border-bottom: 1px solid var(--color-gray-200);
  white-space: nowrap;
}

.bp-table td {
  padding: 14px 16px;
  color: var(--color-gray-700);
  border-bottom: 1px solid var(--color-gray-100);
  vertical-align: middle;
}

.bp-table tr:last-child td {
  border-bottom: none;
}

.bp-table tr:hover td {
  background: rgba(140, 198, 63, 0.04);
}

.bp-table .bp-table-rank {
  font-weight: 800;
  color: var(--color-gray-900);
  width: 50px;
}

.bp-table .bp-table-name {
  font-weight: 700;
  color: var(--color-gray-900);
}

.bp-table .bp-table-link {
  color: var(--color-primary);
  font-weight: 600;
  text-decoration: none;
  font-size: 0.8125rem;
}

.bp-table .bp-table-link:hover {
  text-decoration: underline;
}

/* ==========================================================================
   11. DETAILED EXPERT PROFILES
   ========================================================================== */
.bp-expert-card {
  background: #ffffff;
  border: 1px solid var(--color-gray-200);
  border-radius: 16px;
  padding: 36px;
  margin-bottom: 32px;
  transition: box-shadow 0.2s;
}

.bp-expert-card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.bp-expert-header {
  display: flex;
  gap: 24px;
  margin-bottom: 24px;
}

.bp-expert-photo-col {
  flex-shrink: 0;
}

.bp-expert-photo {
  width: 100px;
  height: 100px;
  border-radius: 14px;
  object-fit: cover;
  border: 3px solid var(--color-gray-100);
}

.bp-expert-info {
  flex: 1;
  min-width: 0;
}

.bp-expert-rank-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: var(--color-primary);
  color: #111827;
  font-size: 0.875rem;
  font-weight: 900;
  border-radius: 8px;
  margin-bottom: 8px;
}

.bp-expert-info h3 {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--color-gray-900);
  margin-bottom: 4px;
  line-height: 1.3;
  letter-spacing: -0.01em;
}

.bp-expert-title {
  font-size: 0.875rem;
  color: var(--color-gray-500);
  margin-bottom: 8px;
}

.bp-expert-location {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.8125rem;
  color: var(--color-gray-500);
}

.bp-expert-location svg {
  width: 13px;
  height: 13px;
  stroke: var(--color-gray-400);
}

.bp-expert-bio {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--color-gray-600);
  margin-bottom: 24px;
}

.bp-expert-bio p {
  margin-bottom: 16px;
  max-width: none;
  color: var(--color-gray-600);
}

.bp-expert-bio p:last-child {
  margin-bottom: 0;
}

/* Expertise tags */
.bp-expert-section-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--color-gray-500);
  margin-bottom: 10px;
  display: block;
}

.bp-expert-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.bp-expert-tag {
  font-size: 0.8125rem;
  font-weight: 600;
  padding: 5px 14px;
  background: var(--color-gray-50);
  border: 1px solid var(--color-gray-200);
  border-radius: 100px;
  color: var(--color-gray-700);
}

/* Best For */
.bp-expert-bestfor {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background: rgba(140, 198, 63, 0.06);
  border: 1px solid rgba(140, 198, 63, 0.15);
  border-radius: 8px;
  margin-bottom: 20px;
}

.bp-expert-bestfor-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--color-gray-500);
  white-space: nowrap;
}

.bp-expert-bestfor-value {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-primary-hover);
}

/* Editorial note */
.bp-editor-note {
  padding: 16px 20px;
  background: var(--color-gray-50);
  border-radius: 8px;
  border-left: 3px solid var(--color-gray-300);
  margin-bottom: 20px;
}

.bp-editor-note-label {
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--color-gray-500);
  margin-bottom: 4px;
  display: block;
}

.bp-editor-note p {
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--color-gray-600);
  margin: 0;
  max-width: none;
  font-style: italic;
}

/* Expert links */
.bp-expert-links {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  padding-top: 20px;
  border-top: 1px solid var(--color-gray-100);
}

.bp-expert-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border: 1px solid var(--color-gray-200);
  border-radius: 8px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--color-gray-700);
  text-decoration: none;
  transition: all 0.15s;
}

.bp-expert-link:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
  background: rgba(140, 198, 63, 0.05);
}

.bp-expert-link svg {
  width: 14px;
  height: 14px;
}

/* ==========================================================================
   12. RANKING METHODOLOGY
   ========================================================================== */
.bp-methodology-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.bp-methodology-card {
  background: #ffffff;
  border: 1px solid var(--color-gray-200);
  border-radius: 12px;
  padding: 24px;
  transition: transform 0.2s;
}

.bp-methodology-card:hover {
  transform: translateY(-2px);
}

.bp-methodology-icon {
  width: 40px;
  height: 40px;
  background: rgba(140, 198, 63, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}

.bp-methodology-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--color-primary);
}

.bp-methodology-num {
  font-size: 0.6875rem;
  font-weight: 700;
  color: var(--color-gray-400);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 4px;
}

.bp-methodology-card h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-gray-900);
  margin-bottom: 6px;
}

.bp-methodology-card p {
  font-size: 0.8125rem;
  color: var(--color-gray-500);
  line-height: 1.5;
  margin: 0;
  max-width: none;
}

/* Methodology weight table */
.bp-weight-table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid var(--color-gray-200);
  border-radius: 10px;
  overflow: hidden;
}

.bp-weight-table th {
  padding: 12px 20px;
  text-align: left;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--color-gray-500);
  background: var(--color-gray-50);
  border-bottom: 1px solid var(--color-gray-200);
}

.bp-weight-table td {
  padding: 12px 20px;
  font-size: 0.9375rem;
  color: var(--color-gray-700);
  border-bottom: 1px solid var(--color-gray-100);
}

.bp-weight-table tr:last-child td {
  border-bottom: none;
}

.bp-weight-bar {
  display: flex;
  align-items: center;
  gap: 10px;
}

.bp-weight-fill {
  height: 6px;
  background: var(--color-primary);
  border-radius: 3px;
  min-width: 20px;
}

.bp-weight-pct {
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--color-gray-900);
  white-space: nowrap;
}

/* ==========================================================================
   13. DECISION GUIDE
   ========================================================================== */
.bp-decision-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
}

.bp-decision-card {
  background: #ffffff;
  border: 1px solid var(--color-gray-200);
  border-radius: 12px;
  padding: 24px 20px;
  text-align: center;
  transition: all 0.2s;
  cursor: default;
}

.bp-decision-card:hover {
  border-color: var(--color-primary);
  box-shadow: 0 4px 16px rgba(140, 198, 63, 0.1);
}

.bp-decision-icon {
  width: 44px;
  height: 44px;
  background: var(--color-gray-50);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
}

.bp-decision-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--color-gray-700);
}

.bp-decision-type {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--color-gray-900);
  margin-bottom: 8px;
}

.bp-decision-rec {
  font-size: 0.8125rem;
  color: var(--color-primary-hover);
  font-weight: 600;
}

/* ==========================================================================
   14. HOW TO CHOOSE — CHECKLIST
   ========================================================================== */
.bp-checklist {
  list-style: none;
  padding: 0;
  margin: 0 0 40px 0;
}

.bp-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--color-gray-100);
  font-size: 1rem;
  color: var(--color-gray-700);
  line-height: 1.5;
}

.bp-checklist li:last-child {
  border-bottom: none;
}

.bp-check-icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  background: rgba(140, 198, 63, 0.15);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}

.bp-check-icon svg {
  width: 13px;
  height: 13px;
  stroke: var(--color-primary-hover);
  stroke-width: 3;
}

/* Questions to ask */
.bp-questions-list {
  counter-reset: question-counter;
  list-style: none;
  padding: 0;
  margin: 0;
}

.bp-questions-list li {
  counter-increment: question-counter;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--color-gray-100);
  font-size: 1rem;
  color: var(--color-gray-700);
  line-height: 1.5;
}

.bp-questions-list li:last-child {
  border-bottom: none;
}

.bp-questions-list li::before {
  content: counter(question-counter);
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  background: var(--color-gray-100);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--color-gray-600);
  margin-top: 1px;
}

/* ==========================================================================
   15. SEO EXPERT VS AGENCY COMPARISON
   ========================================================================== */
.bp-vs-table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid var(--color-gray-200);
  border-radius: 12px;
  overflow: hidden;
}

.bp-vs-table th {
  padding: 16px 20px;
  font-size: 0.875rem;
  font-weight: 800;
  text-align: center;
  background: var(--color-gray-50);
  border-bottom: 1px solid var(--color-gray-200);
  color: var(--color-gray-900);
}

.bp-vs-table th:first-child {
  text-align: left;
  color: var(--color-gray-500);
  font-weight: 700;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.bp-vs-table td {
  padding: 14px 20px;
  font-size: 0.9375rem;
  color: var(--color-gray-700);
  border-bottom: 1px solid var(--color-gray-100);
  text-align: center;
}

.bp-vs-table td:first-child {
  text-align: left;
  font-weight: 600;
  color: var(--color-gray-900);
}

.bp-vs-table tr:last-child td {
  border-bottom: none;
}

/* ==========================================================================
   16. PERSONAL BRAND AUTHORITY SECTION
   ========================================================================== */
.bp-authority {
  background: #111827;
  border-radius: 20px;
  padding: 56px 48px;
  display: flex;
  gap: 48px;
  align-items: center;
  margin-bottom: 64px;
}

.bp-authority-photo {
  width: 160px;
  height: 160px;
  border-radius: 20px;
  object-fit: cover;
  flex-shrink: 0;
  border: 3px solid rgba(140, 198, 63, 0.3);
}

.bp-authority-content {
  flex: 1;
  min-width: 0;
}

.bp-authority-label {
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--color-primary);
  margin-bottom: 12px;
  display: block;
}

.bp-authority h2 {
  font-size: 1.75rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 16px;
  line-height: 1.25;
}

.bp-authority-bio {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
  margin-bottom: 24px;
  max-width: none;
}

.bp-authority-focus {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}

.bp-authority-focus-tag {
  padding: 5px 14px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 100px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
}

.bp-authority-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.bp-authority-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: var(--color-primary);
  color: #111827;
  font-size: 0.9375rem;
  font-weight: 700;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.2s;
}

.bp-authority-btn-primary:hover {
  background: var(--color-primary-hover);
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(140, 198, 63, 0.25);
}

.bp-authority-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: transparent;
  color: #ffffff;
  font-size: 0.9375rem;
  font-weight: 700;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.2s;
}

.bp-authority-btn-secondary:hover {
  border-color: rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.05);
}

/* ==========================================================================
   17. FAQ ACCORDION
   ========================================================================== */
.bp-faq-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.bp-faq-item {
  border: 1px solid var(--color-gray-200);
  border-radius: 10px;
  overflow: hidden;
  transition: border-color 0.2s;
}

.bp-faq-item.open {
  border-color: var(--color-gray-300);
}

.bp-faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-gray-900);
  background: #ffffff;
  border: none;
  cursor: pointer;
  text-align: left;
  line-height: 1.4;
  font-family: var(--font-sans);
}

.bp-faq-question:hover {
  background: var(--color-gray-50);
}

.bp-faq-question svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  stroke: var(--color-gray-400);
  transition: transform 0.2s;
}

.bp-faq-item.open .bp-faq-question svg {
  transform: rotate(180deg);
}

.bp-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.bp-faq-answer-inner {
  padding: 0 20px 20px;
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--color-gray-600);
}

.bp-faq-answer-inner p {
  margin: 0;
  max-width: none;
  color: var(--color-gray-600);
}

/* ==========================================================================
   18. FINAL CTA
   ========================================================================== */
.bp-final-cta {
  background: var(--color-gray-50);
  border: 1px solid var(--color-gray-200);
  border-radius: 20px;
  padding: 56px 48px;
  text-align: center;
  margin-bottom: 64px;
}

.bp-final-cta h2 {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--color-gray-900);
  margin-bottom: 16px;
}

.bp-final-cta p {
  font-size: 1rem;
  color: var(--color-gray-500);
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto 32px;
}

.bp-final-cta-buttons {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.bp-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: var(--color-gray-900);
  color: #ffffff;
  font-size: 0.9375rem;
  font-weight: 700;
  border-radius: 100px;
  text-decoration: none;
  transition: all 0.2s;
}

.bp-btn-primary:hover {
  background: var(--color-primary);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(140, 198, 63, 0.25);
}

.bp-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: #ffffff;
  color: var(--color-gray-900);
  font-size: 0.9375rem;
  font-weight: 700;
  border: 1px solid var(--color-gray-200);
  border-radius: 100px;
  text-decoration: none;
  transition: all 0.2s;
}

.bp-btn-secondary:hover {
  border-color: var(--color-gray-400);
  background: var(--color-gray-50);
}

/* ==========================================================================
   19. RELATED ARTICLES
   ========================================================================== */
.bp-related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.bp-related-card {
  background: #ffffff;
  border: 1px solid var(--color-gray-200);
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
}

.bp-related-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.bp-related-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}

.bp-related-content {
  padding: 20px;
}

.bp-related-category {
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--color-primary);
  margin-bottom: 8px;
  display: block;
}

.bp-related-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-gray-900);
  line-height: 1.4;
  margin-bottom: 8px;
}

.bp-related-desc {
  font-size: 0.8125rem;
  color: var(--color-gray-500);
  line-height: 1.5;
  margin-bottom: 12px;
}

.bp-related-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--color-primary);
  text-decoration: none;
}

.bp-related-link:hover {
  text-decoration: underline;
}

.bp-related-link svg {
  width: 14px;
  height: 14px;
  stroke: var(--color-primary);
}

/* ==========================================================================
   20. AUTHOR BOX
   ========================================================================== */
.bp-author-box {
  display: flex;
  gap: 24px;
  padding: 36px;
  background: #ffffff;
  border: 1px solid var(--color-gray-200);
  border-radius: 16px;
  margin-bottom: 64px;
}

.bp-author-box-photo {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 3px solid var(--color-gray-100);
}

.bp-author-box-content {
  flex: 1;
  min-width: 0;
}

.bp-author-box-label {
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--color-gray-500);
  margin-bottom: 4px;
  display: block;
}

.bp-author-box-name {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--color-gray-900);
  margin-bottom: 4px;
}

.bp-author-box-title {
  font-size: 0.875rem;
  color: var(--color-primary-hover);
  font-weight: 600;
  margin-bottom: 12px;
}

.bp-author-box-bio {
  font-size: 0.9375rem;
  color: var(--color-gray-600);
  line-height: 1.7;
  margin-bottom: 16px;
}

.bp-author-box-links {
  display: flex;
  gap: 12px;
}

.bp-author-box-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border: 1px solid var(--color-gray-200);
  border-radius: 6px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--color-gray-700);
  text-decoration: none;
  transition: all 0.15s;
}

.bp-author-box-link:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
}

.bp-author-box-link svg {
  width: 14px;
  height: 14px;
}

/* ==========================================================================
   21. PROSE STYLES (article body text)
   ========================================================================== */
.bp-prose h2 {
  font-size: clamp(1.375rem, 2.5vw, 1.75rem);
  font-weight: 800;
  color: var(--color-gray-900);
  margin-top: 48px;
  margin-bottom: 20px;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

.bp-prose h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-gray-900);
  margin-top: 32px;
  margin-bottom: 16px;
}

.bp-prose p {
  font-size: 1.0625rem;
  line-height: 1.8;
  color: var(--color-gray-600);
  margin-bottom: 20px;
  max-width: none;
}

.bp-prose ul,
.bp-prose ol {
  margin-bottom: 20px;
  padding-left: 24px;
}

.bp-prose li {
  margin-bottom: 10px;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--color-gray-600);
  list-style-type: disc;
}

.bp-prose ol li {
  list-style-type: decimal;
}

.bp-prose strong {
  color: var(--color-gray-900);
  font-weight: 700;
}

/* ==========================================================================
   22. ANIMATIONS
   ========================================================================== */
.bp-fade-in {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.bp-fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .bp-fade-in {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .bp-reading-progress {
    transition: none;
  }

  .bp-faq-answer,
  .bp-toc-mobile-content {
    transition: none;
  }

  .bp-top3-card:hover,
  .bp-expert-card:hover,
  .bp-related-card:hover,
  .bp-methodology-card:hover {
    transform: none;
  }
}

/* ==========================================================================
   23. RESPONSIVE — TABLET (max-width: 1024px)
   ========================================================================== */
@media (max-width: 1024px) {
  .bp-article-wrapper {
    grid-template-columns: 1fr;
    padding: 40px 32px 0;
    gap: 0;
  }

  .bp-sidebar {
    display: none;
  }

  .bp-toc-mobile {
    display: block;
  }

  .bp-hero-inner {
    padding: 0 32px;
  }

  .bp-hero-image {
    padding: 0 32px;
  }

  .bp-breadcrumbs-inner {
    padding: 0 32px;
  }

  .bp-top3-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .bp-methodology-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .bp-authority {
    flex-direction: column;
    text-align: center;
    padding: 40px 32px;
  }

  .bp-authority-focus {
    justify-content: center;
  }

  .bp-authority-buttons {
    justify-content: center;
  }

  .bp-related-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ==========================================================================
   24. RESPONSIVE — MOBILE (max-width: 767px)
   ========================================================================== */
@media (max-width: 767px) {
  .bp-article-wrapper {
    padding: 32px 20px 0;
  }

  .bp-hero {
    padding: 60px 0 48px;
  }

  .bp-hero-inner {
    padding: 0 20px;
  }

  .bp-hero h1 {
    font-size: clamp(1.75rem, 7vw, 2.25rem);
  }

  .bp-hero-intro {
    font-size: 1rem;
  }

  .bp-hero-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .bp-meta-divider {
    display: none;
  }

  .bp-hero-image {
    padding: 0 20px;
    margin-top: -24px;
  }

  .bp-breadcrumbs-inner {
    padding: 0 20px;
  }

  .bp-quick-answer {
    padding: 20px 24px;
  }

  .bp-section h2 {
    font-size: 1.375rem;
  }

  .bp-top3-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .bp-expert-header {
    flex-direction: column;
    gap: 16px;
  }

  .bp-expert-photo {
    width: 80px;
    height: 80px;
  }

  .bp-expert-card {
    padding: 24px 20px;
  }

  .bp-methodology-grid {
    grid-template-columns: 1fr;
  }

  .bp-decision-grid {
    grid-template-columns: 1fr 1fr;
  }

  .bp-authority {
    padding: 32px 24px;
    gap: 32px;
  }

  .bp-authority-photo {
    width: 120px;
    height: 120px;
  }

  .bp-authority h2 {
    font-size: 1.375rem;
  }

  .bp-final-cta {
    padding: 40px 24px;
  }

  .bp-related-grid {
    grid-template-columns: 1fr;
  }

  .bp-author-box {
    flex-direction: column;
    text-align: center;
    padding: 28px 24px;
  }

  .bp-author-box-links {
    justify-content: center;
  }

  .bp-vs-table,
  .bp-weight-table {
    font-size: 0.875rem;
  }

  .bp-vs-table th,
  .bp-vs-table td,
  .bp-weight-table th,
  .bp-weight-table td {
    padding: 10px 14px;
  }

  .bp-table-wrapper {
    margin: 0 -20px;
    border-radius: 0;
    border-left: none;
    border-right: none;
  }

  .bp-prose h2 {
    font-size: 1.25rem;
    margin-top: 36px;
  }
}

/* ==========================================================================
   25. RESPONSIVE — SMALL MOBILE (max-width: 480px)
   ========================================================================== */
@media (max-width: 480px) {
  .bp-decision-grid {
    grid-template-columns: 1fr;
  }

  .bp-authority-buttons {
    flex-direction: column;
    width: 100%;
  }

  .bp-authority-btn-primary,
  .bp-authority-btn-secondary {
    width: 100%;
    justify-content: center;
  }

  .bp-final-cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .bp-btn-primary,
  .bp-btn-secondary {
    width: 100%;
    justify-content: center;
  }
}

/* ==========================================
   BLOG ARCHIVE PAGE
   ========================================== */
.bp-archive-main {
  background: var(--color-bg-light);
  min-height: 100vh;
}

.bp-archive-hero {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  padding: 6rem 0 8rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.bp-archive-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40px;
  background: var(--color-bg-light);
  border-top-left-radius: 40px;
  border-top-right-radius: 40px;
}

.bp-archive-hero-content {
  position: relative;
  z-index: 2;
}

.bp-hero-title {
  color: #ffffff !important;
  font-size: 2.75rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.bp-archive-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: -2rem;
  margin-bottom: 3rem;
  background: white;
  padding: 1.5rem;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  position: relative;
  z-index: 10;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.bp-search-container {
  display: flex;
  align-items: center;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  padding: 0.5rem 1rem;
  width: 300px;
}

.bp-search-container svg {
  color: #94a3b8;
  margin-right: 0.5rem;
}

.bp-search-input {
  border: none;
  background: transparent;
  width: 100%;
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--color-dark);
  outline: none;
}

.bp-search-input::placeholder {
  color: #94a3b8;
}

@media (max-width: 768px) {
  .bp-archive-controls {
    flex-direction: column;
    align-items: stretch;
  }
  .bp-search-container {
    width: 100%;
  }
}


/* ==========================================================================
   POST CONTAINER WIDTH & 1200x628 EXPERT IMAGE & DATA TABLE EXTENSIONS
   ========================================================================== */

.bp-breadcrumbs-inner {
  max-width: 1300px !important;
}

.bp-hero-inner {
  max-width: 1300px !important;
}

.bp-hero-image {
  max-width: 1300px !important;
}

.bp-article-wrapper {
  max-width: 1300px !important;
}

/* 1200x628 Expert Image Banner Layout */
.bp-expert-header {
  flex-direction: column !important;
  gap: 16px !important;
}

.bp-expert-photo-col {
  width: 100% !important;
}

.bp-expert-photo {
  width: 100% !important;
  max-width: 1200px !important;
  height: auto !important;
  aspect-ratio: 1200 / 628 !important;
  object-fit: cover !important;
  border-radius: 12px !important;
  border: 1px solid var(--color-gray-200) !important;
  display: block !important;
}

/* Key-Value Data Tables inside Expert Cards */
.bp-data-table-wrapper {
  margin: 20px 0 24px;
  overflow-x: auto;
  border-radius: 10px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.bp-data-table {
  width: 100%;
  border-collapse: collapse;
  background: #ffffff;
  font-size: 0.9375rem;
}

.bp-data-table tr {
  border-bottom: 1px solid #e2e8f0;
}

.bp-data-table tr:last-child {
  border-bottom: none;
}

.bp-data-table td {
  padding: 14px 18px;
  line-height: 1.65;
  vertical-align: top;
}

.bp-data-table td.bp-kv-key {
  width: 28%;
  min-width: 180px;
  font-weight: 700;
  color: #0f172a;
  background: #f8fafc;
  border-right: 1px solid #e2e8f0;
}

.bp-data-table td.bp-kv-val {
  width: 72%;
  color: #334155;
}

.bp-data-table td.bp-kv-val strong {
  color: #0f172a;
}
