/* ===== project list styles ===== */
    .project-head {
      justify-content: space-between;
      align-items: center;
    }
    .proj-list { display: flex; flex-direction: column; gap: 24px; }
    .proj-card {
      display: grid;
      grid-template-columns: minmax(380px, 42%) 1fr;
      gap: 0;
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: var(--r-2xl);
      overflow: hidden;
      transition: all 0.25s ease;
    }
    .proj-card:hover {
      border-color: rgba(0,113,227,0.25);
      box-shadow: var(--shadow-md);
    }
    .proj-cover {
      position: relative;
      height: 100%;
      min-height: 260px;
      background: var(--surface-3);
      overflow: hidden;
    }
    .proj-cover img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.4s ease;
    }
    .proj-card:hover .proj-cover img { transform: scale(1.04); }
    .proj-cover::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.40) 100%);
      pointer-events: none;
    }
    .proj-state-pill {
      position: absolute;
      top: 14px;
      left: 14px;
      z-index: 2;
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 6px 12px;
      background: rgba(255,255,255,0.92);
      backdrop-filter: blur(10px);
      border-radius: var(--r-pill);
      font-size: 12px;
      font-weight: 600;
      color: var(--ok);
    }
    .proj-share-pill {
      position: absolute;
      bottom: 14px;
      left: 14px;
      z-index: 2;
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 6px 12px;
      background: rgba(0,0,0,0.55);
      backdrop-filter: blur(10px);
      border-radius: var(--r-pill);
      font-size: 12px;
      font-weight: 500;
      color: #fff;
    }

    .proj-body {
      padding: 28px 32px;
      display: flex;
      flex-direction: column;
      min-width: 0;
    }
    .proj-title {
      font-family: var(--font-display);
      font-size: 22px;
      font-weight: 600;
      color: var(--fg);
      letter-spacing: -0.012em;
      margin-bottom: 10px;
    }
    .proj-addr {
      display: flex;
      align-items: flex-start;
      gap: 6px;
      font-size: 13.5px;
      color: var(--muted);
      margin-bottom: 8px;
      line-height: 1.5;
    }
    .proj-addr svg { flex-shrink: 0; margin-top: 2px; color: var(--muted-2); }
    .proj-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 6px;
      margin-bottom: 22px;
    }
    .proj-tags .tag {
      padding: 3px 10px;
      background: var(--surface-2);
      border: 1px solid var(--border);
      border-radius: var(--r-pill);
      font-size: 11.5px;
      color: var(--muted);
      letter-spacing: 0;
    }

    .proj-stats {
      display: grid;
      grid-template-columns: 1fr 1fr 1fr 1fr;
      gap: 18px 22px;
      padding: 18px 0;
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
      margin-bottom: 22px;
    }
    .proj-stats .stat-label {
      font-size: 11px;
      color: var(--muted);
      letter-spacing: 0.06em;
      text-transform: uppercase;
      margin-bottom: 4px;
      font-weight: 500;
    }
    .proj-stats .stat-value {
      font-family: var(--font-display);
      font-size: 16px;
      font-weight: 600;
      color: var(--fg);
      letter-spacing: -0.005em;
      line-height: 1.2;
    }
    .proj-stats .stat-value.total { color: var(--accent); font-variant-numeric: tabular-nums; }
    .proj-stats .stat-value .unit {
      font-size: 12px;
      color: var(--muted-2);
      font-weight: 500;
      margin-left: 2px;
    }
    .proj-stats .stat-value.left {
      color: var(--cat-startup);
    }
    .proj-progress {
      grid-column: 1 / -1;
      margin-top: 4px;
    }
    .proj-progress-bar {
      height: 4px;
      background: var(--surface-3);
      border-radius: 2px;
      overflow: hidden;
    }
    .proj-progress-bar > span {
      display: block;
      height: 100%;
      background: var(--accent);
      border-radius: 2px;
    }
    .proj-progress-meta {
      display: flex;
      justify-content: space-between;
      font-size: 11.5px;
      color: var(--muted);
      margin-top: 6px;
      letter-spacing: 0.02em;
    }

    .proj-actions {
      display: flex;
      gap: 8px;
      align-items: center;
      margin-top: auto;
    }
    .proj-actions .btn-primary { flex: 1; max-width: 160px; }

    @media (max-width: 1080px) {
      .proj-card { grid-template-columns: 1fr; }
      .proj-cover { height: auto; aspect-ratio: 16/9; min-height: auto; }
      .proj-stats { grid-template-columns: 1fr 1fr; }
    }
    @media (max-width: 560px) {
      .proj-body { padding: 20px 18px; }
      .proj-title { font-size: 20px; }
      .project-head {
        align-items: flex-start;
      }
      .proj-progress-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
      }
      .proj-actions { flex-wrap: wrap; }
      .proj-actions .btn-primary { max-width: none; flex-basis: 100%; order: -1; }
    }
