/* ============================================
   Reevio Blog Post Page Styles
   ============================================ */

.bp-article {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 24px 64px;
}

/* Back link */
.bp-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #7266AB;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 32px;
  transition: color 0.2s;
}
.bp-back:hover {
  color: #5a4f8c;
}

/* Article Header */
.bp-header {
  text-align: center;
  margin-bottom: 40px;
}
.bp-category-badge {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 20px;
}
.bp-title {
  font-family: 'Sora', 'DM Sans', sans-serif;
  font-size: 36px;
  font-weight: 700;
  color: #111827;
  line-height: 1.3;
  margin-bottom: 20px;
}
.bp-meta {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  color: #9ca3af;
  font-size: 14px;
}
.bp-meta-sep {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #d1d5db;
}

/* Hero Banner */
.bp-hero {
  height: 320px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 48px;
}
.bp-hero svg {
  width: 80px;
  height: 80px;
  color: rgba(255,255,255,0.3);
}

/* Article Content */
.bp-intro {
  font-size: 18px;
  line-height: 1.8;
  color: #374151;
  margin-bottom: 40px;
  border-left: 3px solid #7266AB;
  padding-left: 20px;
}
.bp-content h2 {
  font-family: 'Sora', 'DM Sans', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #111827;
  margin-top: 48px;
  margin-bottom: 20px;
}
.bp-content p {
  font-size: 16px;
  line-height: 1.8;
  color: #374151;
  margin-bottom: 16px;
}
.bp-content ul, .bp-content ol {
  margin: 16px 0 16px 24px;
  font-size: 16px;
  line-height: 1.8;
  color: #374151;
}
.bp-content li {
  margin-bottom: 8px;
}
.bp-content strong {
  color: #111827;
  font-weight: 600;
}
.bp-content blockquote {
  background: #f3f0fa;
  border-left: 4px solid #7266AB;
  padding: 16px 24px;
  margin: 24px 0;
  border-radius: 0 12px 12px 0;
  font-style: italic;
  color: #5a4f8c;
}
.bp-tip {
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  border-radius: 12px;
  padding: 16px 20px;
  margin: 24px 0;
  font-size: 14px;
  color: #166534;
  line-height: 1.6;
}
.bp-tip strong {
  color: #166534;
}
.bp-example {
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 20px 24px;
  margin: 24px 0;
  font-size: 14px;
  line-height: 1.7;
  color: #374151;
}
.bp-example strong {
  color: #111827;
  display: block;
  margin-bottom: 8px;
}

/* CTA Box */
.bp-cta-box {
  background: linear-gradient(135deg, #7266AB 0%, #9b8ed3 100%);
  border-radius: 20px;
  padding: 48px;
  text-align: center;
  color: white;
  margin: 56px 0;
}
.bp-cta-title {
  font-family: 'Sora', 'DM Sans', sans-serif;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 12px;
}
.bp-cta-desc {
  font-size: 15px;
  opacity: 0.85;
  margin-bottom: 24px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}
.bp-cta-btn {
  display: inline-block;
  background: white;
  color: #7266AB;
  padding: 14px 28px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  transition: background 0.2s;
}
.bp-cta-btn:hover {
  background: #f3f0fa;
}

/* Related articles */
.bp-related {
  margin-top: 56px;
}
.bp-related-title {
  font-family: 'Sora', 'DM Sans', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 24px;
}
.bp-related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* Responsive */
@media (max-width: 768px) {
  .bp-title {
    font-size: 28px;
  }
  .bp-hero {
    height: 200px;
  }
  .bp-content h2 {
    font-size: 20px;
  }
  .bp-cta-box {
    padding: 32px 24px;
  }
  .bp-related-grid {
    grid-template-columns: 1fr;
  }
}
