 /* Page container */
    .author-page {
      max-width: 980px;
      margin: 36px auto;
      padding: 28px;
      font-family: Lato, sans-serif;
    }

    /* Top area: avatar + meta */
    .author-hero {
      display: grid;
      grid-template-columns: 120px 1fr;
      gap: 20px;
      align-items: center;
      margin-bottom: 28px;
    }

    .avatar {
      width: 120px;
      height: 120px;
      border-radius: 999px;
      background: #ddd;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      color: #444;
      font-size: 28px;
      font-weight: 700;
      overflow: hidden;
    }

    .avatar img { width: 100%; height: 100%; object-fit: cover; display: block; }

    .meta {
      min-width: 0;
    }

    .author-name {
      font-size: 1.5rem;
      margin: 0 0 6px 0;
      font-weight: 700;
    }

    .author-title {
      margin: 0 0 12px 0;
      color: #555;
      font-size: 0.95rem;
    }

    .author-bio {
      margin: 0 0 14px 0;
      line-height: 1.5;
      color: #333;
      font-size: 0.98rem;
    }

    .meta-row {
      display: flex;
      gap: 12px;
      align-items: center;
      flex-wrap: wrap;
    }

    .follow-btn {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 8px 12px;
      background: #111;
      color: #fff;
      text-decoration: none;
      border-radius: 6px;
      font-weight: 700;
      cursor: pointer;
      border: none;
    }

    .follow-btn.small { padding: 6px 10px; font-size: 0.9rem; }

    .social-links {
      display: flex;
      gap: 8px;
    }
    .social-links a {
      display: inline-block;
      padding: 6px 8px;
      border-radius: 6px;
      background: #f2f2f2;
      color: inherit;
      text-decoration: none;
      font-size: 0.9rem;
    }

    .stats {
      display: flex;
      gap: 18px;
      align-items: center;
      color: #444;
      font-size: 0.95rem;
    }
    .stat {
      text-align: left;
    }
    .stat .n { display: block; font-weight: 700; font-size: 1.05rem; }
    .stat .label { color: #666; font-size: 0.85rem; }

    /* Divider */
    .divider {
      height: 1px;
      background: #e6e6e6;
      margin: 24px 0;
      border-radius: 1px;
    }

    /* Articles list */
    .articles {
      display: grid;
      grid-template-columns: 1fr;
      gap: 16px;
    }

    .article {
      display: flex;
      gap: 16px;
      padding: 14px;
      border: 1px solid #eee;
      border-radius: 8px;
      align-items: flex-start;
      background: #fff;
    }
    .article-thumb {
      width: 120px;
      height: 78px;
      border-radius: 6px;
      background: #ddd;
      flex-shrink: 0;
      overflow: hidden;
    }
    .article-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }

    .article-body {
      min-width: 0;
    }
    .article-title {
      margin: 0 0 8px 0;
      font-size: 1.05rem;
      font-weight: 700;
      line-height: 1.25;
      color: #111;
      text-decoration: none;
    }
    .article-excerpt {
      margin: 0 0 8px 0;
      color: #444;
      font-size: 0.95rem;
      line-height: 1.4;
      overflow: hidden;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
    }
    .article-meta {
      font-size: 0.85rem;
      color: #666;
      display: flex;
      gap: 12px;
      align-items: center;
    }

    /* Empty state (if author has no articles) */
    .empty {
      padding: 28px;
      text-align: center;
      color: #666;
      border: 1px dashed #e6e6e6;
      border-radius: 8px;
    }

    /* Responsive */
    @media (max-width:700px) {
      .author-hero { grid-template-columns: 84px 1fr; gap: 12px; }
      .avatar { width: 84px; height: 84px; font-size: 20px; }
      .articles { gap: 12px; }
      .article { flex-direction: row; }
      .article-thumb { width: 96px; height: 64px; }
    }

    @media (max-width:420px) {
      .author-page { padding: 18px; }
      .author-hero { grid-template-columns: 72px 1fr; gap: 10px; }
      .avatar { width: 72px; height: 72px; }
      .meta-row { gap: 8px; }
      .stats { gap: 12px; font-size: 0.9rem; }
    }