.actions-list {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  width: 100%;
  background-color: rgb(var(--color-bg-contrast-muted-rgb) / 0.08);
  padding: 2.8rem;
}
.actions-list .action {
  background-color: var(--color-bg);
  color: var(--color-text);
  display: flex;
  align-items: center;
  height: 6rem;
  padding: 0 2.8rem;
  border-radius: 20rem;
  width: 100%;
  justify-content: space-between;
}
.actions-list .action .action__text {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.actions-list .action .action__label {
  display: block;
  line-height: 1.2;
  font-size: var(--font-size-s);
}
.actions-list .action .action__description {
  display: block;
  line-height: 1.2;
  font-size: var(--font-size-xs);
}
.actions-list .action .action__icon {
  display: flex;
  flex-shrink: 0;
}
.actions-list .action .action__icon .icon {
  width: 2rem;
  height: 2rem;
}
