.pvc-reviewer-ranking__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.pvc-reviewer-ranking__item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 6px;
  margin: 4px 0;
  border-radius: 10px;
}

.pvc-reviewer-ranking__item--top3 {
  background: rgba(255, 215, 0, 0.12);
}

.pvc-reviewer-ranking__item--rank-1.pvc-reviewer-ranking__item--top3 {
  background: rgba(246, 195, 67, 0.18);
}
.pvc-reviewer-ranking__item--rank-2.pvc-reviewer-ranking__item--top3 {
  background: rgba(200, 200, 200, 0.22);
}
.pvc-reviewer-ranking__item--rank-3.pvc-reviewer-ranking__item--top3 {
  background: rgba(205, 127, 50, 0.16);
}

.pvc-reviewer-ranking__rank-badge {
  flex: 0 0 auto;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  position: relative;
  background: #fff;
  font-weight: 700;
  font-size: 0.95em;
  color: #666;
  border: 2px solid #c9c9c9;
}

.pvc-reviewer-ranking__rank-badge::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: 999px;
  background: var(--pvc-rank-ring, #c9c9c9);
  -webkit-mask: radial-gradient(farthest-side, transparent calc(100% - 2px), #000 calc(100% - 2px));
  mask: radial-gradient(farthest-side, transparent calc(100% - 2px), #000 calc(100% - 2px));
}

.pvc-reviewer-ranking__item--rank-1 .pvc-reviewer-ranking__rank-badge {
  color: #8a5a00;
  border-color: #f6c343;
  --pvc-rank-ring: conic-gradient(from 0deg, #f6c343, #ffe9a6, #f6c343);
}
.pvc-reviewer-ranking__item--rank-2 .pvc-reviewer-ranking__rank-badge {
  color: #555;
  border-color: #bfc7cf;
  --pvc-rank-ring: conic-gradient(from 0deg, #d7dde3, #f5f7fa, #c0c7cf);
}
.pvc-reviewer-ranking__item--rank-3 .pvc-reviewer-ranking__rank-badge {
  color: #6a3d1f;
  border-color: #cd7f32;
  --pvc-rank-ring: conic-gradient(from 0deg, #cd7f32, #f1c08e, #cd7f32);
}

.pvc-reviewer-ranking__avatar img {
  display: block;
  border-radius: 999px;
}

.pvc-reviewer-ranking__text {
  display: flex;
  flex-direction: column;
  line-height: 1.25;
  min-width: 0;
}

.pvc-reviewer-ranking__line1 {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: baseline;
  min-width: 0;
}

.pvc-reviewer-ranking__name {
  font-weight: 600;
}

.pvc-reviewer-ranking__title {
  font-size: 0.9em;
}

.pvc-reviewer-ranking__comments {
  color: #666;
  font-size: 0.9em;
}
