/* contributors.web.css — Desktop (≥900px) contributors page.
   Uses the shared web header/footer (home.web.css). */
@media (min-width: 900px){
  /* This page has no .app-shell wrapper; a global `body{display:flex}` makes the
     .web-only block shrink-to-content and left-align. Use block flow so the
     shared header/footer/content span full width and center normally. */
  body { display: block; background: #FFFBFA; }
  .web-only { width: 100%; }

  .web-contrib {
    max-width: 860px;
    margin: 0 auto;
    padding: 0 24px 96px;
    min-height: 70vh;
  }

  .web-contrib__back {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin: 22px 0 0;
    padding: 8px 14px 8px 10px;
    border: 1px solid #ECECEC;
    border-radius: 999px;
    background: #fff;
    color: #101010;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: border-color .15s, box-shadow .15s;
  }
  .web-contrib__back:hover { border-color: #d6d6d6; box-shadow: 0 6px 18px -12px rgba(0,0,0,.3); }

  .web-contrib__crumb {
    margin: 12px 0 0;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #6b6b6b;
  }
  .web-contrib__crumb a { color: #6b6b6b; text-decoration: none; }
  .web-contrib__crumb a:hover { color: #101010; }
  .web-contrib__crumb-sep { color: #bcbcbc; }
  .web-contrib__crumb-cur { color: #101010; font-weight: 600; }

  .web-contrib__title {
    margin: 26px 0 4px;
    font-size: clamp(28px, 3vw, 40px);
    font-weight: 800;
    color: #101010;
  }
  .web-contrib__sub { color: #8a8a8a; font-size: 15px; margin-bottom: 24px; }

  .web-contrib__list { display: flex; flex-direction: column; gap: 14px; }

  .web-contrib__card {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 16px 18px;
    background: #fff;
    border: 1px solid #ECECEC;
    border-radius: 16px;
    text-decoration: none;
    color: inherit;
    transition: box-shadow .15s, border-color .15s, transform .1s;
  }
  .web-contrib__card:hover {
    border-color: #d6d6d6;
    box-shadow: 0 8px 26px -14px rgba(0,0,0,.3);
  }
  .web-contrib__avatar {
    width: 88px;
    height: 88px;
    border-radius: 50%;
    object-fit: cover;
    background: #eee;
    flex: none;
  }
  .web-contrib__meta { flex: 1 1 auto; min-width: 0; }
  .web-contrib__name {
    font-size: 19px;
    font-weight: 700;
    color: #101010;
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .web-contrib__badge {
    font-size: 11px;
    font-weight: 700;
    color: #1F8A5B;
    background: #EDF5EF;
    border-radius: 999px;
    padding: 3px 9px;
  }
  .web-contrib__role { margin-top: 4px; font-size: 14px; color: #1F8A5B; font-weight: 600; }
  .web-contrib__bio {
    margin: 8px 0 0;
    font-size: 14px;
    line-height: 1.5;
    color: #5a5a5a;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .web-contrib__chev { color: #b0b0b0; flex: none; }
  .web-contrib__card:hover .web-contrib__chev { color: #1F8A5B; }

  .web-contrib__empty {
    margin: 60px 0;
    text-align: center;
    color: #8a8a8a;
    font-size: 16px;
  }
}
