/* Blog Styles — Q-Pest Vitrine */

.blog-content {
  max-width: 720px;
  margin: 0 auto;
  font-size: 18px;
  line-height: 1.7;
  color: #cbd5e1; /* slate-300 */
}

.blog-content h2 {
  color: #2563eb; /* ocean */
  font-size: 1.75rem;
  font-weight: 700;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.blog-content h3 {
  color: #22d3ee; /* cyan */
  font-size: 1.35rem;
  font-weight: 600;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}

.blog-content p {
  margin-bottom: 1.25rem;
  color: #94a3b8; /* slate-400 */
}

.blog-content a {
  color: #34d399; /* mint */
  text-decoration: underline;
  text-underline-offset: 3px;
}

.blog-content a:hover {
  color: #22d3ee;
}

.blog-content ul, .blog-content ol {
  padding-left: 1.5rem;
  margin-bottom: 1.25rem;
}

.blog-content li {
  margin-bottom: 0.5rem;
  color: #94a3b8;
}

.blog-content strong {
  color: #e2e8f0; /* slate-200 */
}

.blog-content blockquote {
  border-left: 4px solid #34d399;
  padding-left: 1.25rem;
  margin: 1.5rem 0;
  color: #94a3b8;
  font-style: italic;
}

.blog-content img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  margin: 1.5rem 0;
}

/* CTA Box */
.blog-cta {
  background: linear-gradient(90deg, #34d399 0%, #22d3ee 100%);
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  margin: 3rem 0;
}

.blog-cta h3 {
  color: #fff;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.blog-cta p {
  color: rgba(255,255,255,0.9);
  margin-bottom: 1.25rem;
}

.blog-cta a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  background: #fff;
  color: #0f172a;
  font-weight: 700;
  border-radius: 50px;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
}

.blog-cta a:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}

/* Article card on listing page */
.blog-card {
  background: rgba(15, 23, 42, 0.5);
  border: 1px solid rgba(51, 65, 85, 0.5);
  border-radius: 16px;
  padding: 1.5rem;
  transition: border-color 0.2s, transform 0.2s;
}

.blog-card:hover {
  border-color: #34d399;
  transform: translateY(-2px);
}

/* Share buttons */
.share-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 16px;
  min-height: 44px;
  border-radius: 8px;
  border: 1px solid rgba(51, 65, 85, 0.5);
  color: #94a3b8;
  font-size: 13px;
  text-decoration: none;
  transition: all 0.2s;
}

.share-btn:hover {
  border-color: #34d399;
  color: #34d399;
}

/* Breadcrumb */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #64748b;
  margin-bottom: 2rem;
}

.breadcrumb a {
  color: #64748b;
  text-decoration: none;
}

.breadcrumb a:hover {
  color: #34d399;
}

.breadcrumb .current {
  color: #22d3ee;
}
