.loq-account-help {
  padding: 14px;
  display: grid;
  grid-template-columns: 48px 1fr auto;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, rgb(122 78 255 / 0.12), rgb(255 255 255 / 0.92));
}

.loq-account-help__avatar {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  color: #fff;
  background: #20c464;
  font-size: 22px;
}

.loq-account-help__copy {
  min-width: 0;
  display: grid;
  gap: 4px;
}

.loq-account-help strong {
  color: var(--loq-account-title-color);
  font-size: 13px;
  font-weight: var(--loq-account-label-weight);
  line-height: 1.18;
}

.loq-account-help small {
  color: var(--loq-account-muted-color);
  font-size: 12px;
  font-weight: var(--loq-account-body-weight);
  line-height: 1.3;
}

.loq-account-help button {
  padding: 10px 12px;
  border: 1px solid rgb(var(--loq-account-primary-rgb) / 0.38);
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--loq-account-primary);
  background: #fff;
  font: inherit;
  font-size: 13px;
  font-weight: var(--loq-account-label-weight);
}

@media (max-width: 380px) {
  .loq-account-help {
    grid-template-columns: 44px 1fr;
  }

  .loq-account-help button {
    grid-column: 1 / -1;
    justify-content: center;
  }
}
