/* ── Member project path card on /user/* and /user/*/main ── */
.profile-project-path {
  background: #fff;
  border: 1px solid #e2e6ea;
  border-radius: 12px;
  padding: 1.5rem 1.75rem;
  margin: 1.5rem 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}
.profile-project-path > h2 {
  font-size: 1.35rem;
  font-weight: 800;
  color: #1e1f24;
  margin: 0 0 1rem;
  border-bottom: 2px solid #1a5f7a;
  padding-bottom: 0.4rem;
}
.profile-project-path .project-path__section {
  margin-top: 1.25rem;
}
.profile-project-path .project-path__section:first-of-type {
  margin-top: 0;
}
.profile-project-path .project-path__section h3 {
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #444;
  margin: 0 0 0.6rem;
}
.profile-project-path .project-path__count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 1.5em;
  padding: 0 0.5em;
  margin-left: 0.4em;
  border-radius: 999px;
  background: #1a5f7a;
  color: #fff;
  font-size: 0.78em;
  font-weight: 700;
}
.profile-project-path .project-path__made h3 .project-path__count {
  background: #2f8f5f;
}
.profile-project-path .project-path__list {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.profile-project-path .project-path__item {
  background: #f7f8fa;
  border: 1px solid #e2e6ea;
  border-radius: 8px;
  padding: 0.65rem 0.9rem;
}
.profile-project-path .project-path__title {
  font-weight: 600;
  color: #1e1f24;
  text-decoration: none;
}
.profile-project-path .project-path__title:hover {
  color: #8b1919;
  text-decoration: underline;
}
.profile-project-path .project-path__badges {
  margin-top: 0.4rem;
  font-size: 0.85rem;
  color: #555;
}
.profile-project-path .project-path__badges-label {
  font-weight: 600;
  margin-right: 0.3rem;
}
.profile-project-path .project-path__badge-list {
  display: inline;
  margin: 0;
  padding: 0;
}
.profile-project-path .project-path__badge-list li {
  display: inline-block;
  list-style: none;
  margin: 0 0.25rem 0.25rem 0;
}
.profile-project-path .project-path__badge {
  display: inline-block;
  background: #fff5f5;
  color: #8b1919;
  border: 1px solid #f5c0c0;
  border-radius: 999px;
  padding: 0.15rem 0.65rem;
  font-size: 0.78rem;
  font-weight: 600;
  text-decoration: none;
}
.profile-project-path .project-path__badge:hover {
  background: #8b1919;
  color: #fff;
  text-decoration: none;
}