section {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 24px;
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
  width: fit-content;
}

li {
  display: flex;
  gap: 10px;
  margin: 8px 0;
  align-items: center;
  justify-content: flex-start;
  white-space: nowrap;
}

li strong {
  width: 120px;
  display: inline-block;
}

@media (max-width: 560px) {
  ul {
    width: min(100% - 24px, 360px);
  }

  li {
    align-items: flex-start;
    flex-direction: column;
    gap: 3px;
    white-space: normal;
  }

  li strong {
    width: auto;
  }
}
