/* Professional Blog Typography & Design */

/* Use readable sans-serif font for blog content */
.blog-post-content {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif !important;
  font-size: 1.0625rem !important;
  line-height: 1.75 !important;
  color: #e8e8e8 !important;
  letter-spacing: 0.01em;
}

.blog-post-content p {
  margin-bottom: 1.5em !important;
  text-align: left;
}

.blog-post-content strong {
  font-weight: 600 !important;
  color: var(--primary) !important;
}

.blog-post-content em {
  font-style: italic !important;
  color: #c0c0c0 !important;
}

/* Clean sans-serif for UI elements */
.blog-meta,
.blog-date,
.blog-author,
.blog-read-time,
.blog-tag {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif !important;
}

/* Headings - Orbitron for brand consistency */
.blog-post-title,
.blog-title,
.section-title,
.blog-hero-title {
  font-family: 'Orbitron', sans-serif !important;
}

/* Remove excessive emojis from meta */
.blog-meta span::before {
  content: '' !important;
}

/* Cleaner author display */
.blog-author {
  font-weight: 500;
  color: var(--text-gray);
}

/* Clickable author link in blog cards */
.blog-author.blog-author-clickable {
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s ease;
}

.blog-author.blog-author-clickable:hover {
  color: var(--primary);
  text-decoration: underline;
}

/* Remove emoji, add "by" text */
.blog-author::before {
  content: 'By ';
  font-weight: 400;
  opacity: 0.7;
}

/* Clean date styling */
.blog-date {
  color: var(--text-gray);
  font-size: 0.9rem;
}

/* Read time without emoji */
.blog-read-time {
  color: var(--text-gray);
  font-size: 0.9rem;
}

.blog-read-time::before {
  content: '• ';
  opacity: 0.5;
}

/* Professional excerpt font */
.blog-excerpt {
  font-family: 'Inter', sans-serif !important;
  font-size: 1rem !important;
  line-height: 1.6 !important;
  color: var(--text-gray) !important;
}

/* Cleaner tags */
.blog-tag {
  font-size: 0.75rem !important;
  font-weight: 600 !important;
  letter-spacing: 0.05em !important;
  text-transform: uppercase !important;
}

/* Post content improvements */
.blog-post-content {
  /* Full width - removed max-width constraint */
  padding: 40px 50px !important;
}

/* Mid-article image styling */
.blog-mid-image {
  width: 100%;
  max-width: 1000px;
  margin: 3.5em auto;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(0, 255, 136, 0.2);
}

.blog-mid-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
}

.blog-mid-image:hover img {
  transform: scale(1.02);
}

.blog-mid-image-caption {
  text-align: center;
  font-size: 0.9rem;
  color: var(--text-gray);
  font-style: italic;
  margin-top: 1em;
  font-family: 'Inter', sans-serif;
}

/* Quote styling */
.blog-post-content blockquote {
  border-left: 4px solid var(--primary);
  padding-left: 1.5em;
  margin: 2em 0;
  font-style: italic;
  color: #b0b0b0;
}

/* Clean button text */
.blog-read-more {
  font-family: 'Inter', sans-serif !important;
  font-weight: 600 !important;
}

/* Professional share buttons */
.share-btn {
  font-family: 'Inter', sans-serif !important;
  font-weight: 500 !important;
}

/* Remove emojis from buttons in favor of icons or clean text */
.btn-primary,
.btn-secondary {
  font-family: 'Inter', sans-serif !important;
  font-weight: 600 !important;
}

/* Hero subtitle */
.blog-hero-subtitle {
  font-family: 'Inter', sans-serif !important;
  font-weight: 500 !important;
}

.blog-hero-description {
  font-family: 'Inter', sans-serif !important;
  font-weight: 400 !important;
  line-height: 1.7 !important;
}

/* Pagination */
.pagination-info {
  font-family: 'Inter', sans-serif !important;
}

/* Back button */
.blog-back-btn {
  font-family: 'Inter', sans-serif !important;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .blog-post-content {
    font-size: 1rem !important;
    padding: 30px 25px !important;
  }

  .blog-excerpt {
    font-size: 0.95rem !important;
  }
}

@media (max-width: 480px) {
  .blog-post-content {
    font-size: 1rem !important;
    padding: 25px 20px !important;
  }
}

/* Loading and error states - clean text */
.blog-loading p,
.blog-error p,
.no-posts p {
  font-family: 'Inter', sans-serif !important;
}

/* Source link styling */
.blog-post-source {
  font-family: 'Inter', sans-serif !important;
  font-size: 0.9rem !important;
}

.blog-post-source strong {
  font-weight: 600 !important;
  color: var(--text-gray) !important;
}
