.achievement-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 22px;
}

.achievement {
  min-width: 0;
  padding: 12px;
  border: 1px solid #e7e2ef;
  border-radius: 15px;
  background: #fbfaff;
}

.achievement.locked {
  opacity: .62;
  filter: grayscale(.35);
}

.achievement.unlocked {
  border-color: #c9e9d8;
  background: #f4fcf7;
}

.achievement > span {
  flex: 0 0 auto;
}

.achievement-copy {
  min-width: 0;
}

.achievement-copy small {
  line-height: 1.45;
}

.achievement-status {
  display: block;
  margin-top: 4px;
  color: #4c9a71;
  font-size: 10px;
  font-style: normal;
  font-weight: 800;
}

.achievement.locked .achievement-status {
  color: #817a91;
}

.achievement-empty {
  margin-top: 18px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.result-achievements {
  margin-top: 16px;
}

.result-achievements .achievement {
  text-align: left;
}

@media (max-width: 760px) {
  .achievement-list {
    grid-template-columns: 1fr;
  }
}
