.consultant-qr {
  display: grid;
  flex: 0 0 auto;
  gap: 7px;
  justify-items: center;
  align-content: start;
}

.consultant-qr img {
  width: 96px;
  height: 96px;
  padding: 3px;
  object-fit: contain;
  border: 1px solid #dfe5ec;
  border-radius: 6px;
  background: #fff;
}

.consultant-qr span {
  color: #526077;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.4;
  white-space: nowrap;
}

@media (max-width: 640px) {
  .consultant-qr {
    grid-template-columns: 68px minmax(0, auto);
    align-items: center;
    justify-content: start;
    justify-items: start;
    gap: 10px;
  }

  .consultant-qr img {
    width: 68px;
    height: 68px;
  }

  .consultant-qr span {
    white-space: normal;
  }
}
