/* ─── Single Insight Author Bio ─── */
.single-article__author-bio {
    display: flex;
    align-items: center;
    background: rgba(0,0,0,0.3);
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    box-sizing: border-box;
  }
  
  .single-article__author-bio .author-avatar {
    margin-right: 1.5rem;
    flex-shrink: 0;
  }
  .single-article__author-bio .author-avatar img {
    border-radius: 50%;
  }
  
  .single-article__author-bio .author-info .author-label {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.7);
    text-transform: uppercase;
  }
  .single-article__author-bio .author-info .author-name {
    margin: 0.25rem 0;
    font-size: 1.5rem;
    color: #00d4ff;
  }
  .single-article__author-bio .author-info .author-posts-link {
    display: inline-block;
    margin-top: 0.5rem;
    background: transparent;
    border: 2px solid #00d4ff;
    color: #00d4ff;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s ease, color 0.3s ease;
  }
  .single-article__author-bio .author-info .author-posts-link:hover {
    background: #00d4ff;
    color: #002b5b;
  }
  
  @media (max-width: 600px) {
    .single-article__author-bio {
      flex-direction: column;
      text-align: center;
    }
    .single-article__author-bio .author-avatar {
      margin-bottom: 1rem;
    }
  }
  