.loq-account-welcome {
  width: 100%;
  padding: 4px 0 10px;
  display: grid;
  grid-template-columns: 64px 1fr 34px;
  align-items: center;
  gap: 12px;
}

.loq-account-welcome__avatar-wrap {
  position: relative;
  width: 64px;
  height: 64px;
}

.loq-account-welcome__avatar {
  width: 64px;
  height: 64px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: var(--loq-account-primary);
  background: rgb(var(--loq-account-primary-rgb) / 0.13);
  font-size: 25px;
  font-weight: var(--loq-account-title-weight);
  text-transform: uppercase;
}

.loq-account-welcome__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.loq-account-welcome__camera {
  position: absolute;
  right: -2px;
  bottom: -2px;
  width: 26px;
  height: 26px;
  border: 2px solid #fff;
  border-radius: 999px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--loq-account-primary);
  box-shadow: 0 8px 18px rgb(17 19 28 / 0.16);
  font-size: 11px;
  cursor: pointer;
}

.loq-account-welcome__camera input {
  position: absolute;
  inset: 0;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.loq-account-welcome__copy {
  min-width: 0;
  padding: 0;
  border: 0;
  display: grid;
  justify-items: start;
  color: inherit;
  background: transparent;
  font: inherit;
  text-align: left;
}

.loq-account-welcome h3 {
  margin: 0;
  color: var(--loq-account-title-color);
  font-size: 16px;
  font-weight: var(--loq-account-title-weight);
  line-height: 1.08;
}

.loq-account-welcome p {
  margin: 7px 0 0;
  color: var(--loq-account-muted-color);
  font-size: var(--loq-account-subtitle-size);
  font-weight: var(--loq-account-body-weight);
  line-height: 1.22;
}

.loq-account-welcome__chevron {
  width: 34px;
  height: 34px;
  border: 0;
  display: grid;
  place-items: center;
  color: var(--loq-account-muted-color);
  background: transparent;
  font-size: 17px;
}

.loq-account-welcome.is-uploading .loq-account-welcome__camera {
  opacity: 0.7;
  pointer-events: none;
}

@media (max-width: 380px) {
  .loq-account-welcome {
    grid-template-columns: 58px 1fr 30px;
    gap: 10px;
  }

  .loq-account-welcome__avatar-wrap,
  .loq-account-welcome__avatar {
    width: 58px;
    height: 58px;
  }

  .loq-account-welcome h3 {
    font-size: 20px;
  }

  .loq-account-welcome p {
    font-size: 13px;
  }
}
