.qsqr-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  box-sizing: border-box;
  background: #f4f4f4;
  gap: 46px;
  padding: 40px 20px 16px;
}

.qsqr-image {
  display: block;
  width: 164px;
  max-width: 100%;
  height: auto;
}

.qsqr-button {
  --qsqr-gradient-top: rgba(169, 169, 169, 0);
  --qsqr-gradient-bottom: #006cff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 144px;
  min-height: 38px;
  box-sizing: border-box;
  padding: 4px 16px;
  border-radius: 22px;
  background: linear-gradient(180deg, var(--qsqr-gradient-top) 0%, var(--qsqr-gradient-bottom) 100%);
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition: filter 0.2s ease, transform 0.2s ease;
}

a.qsqr-button:hover,
a.qsqr-button:focus-visible {
  color: #fff;
  filter: brightness(1.06);
  transform: translateY(-1px);
}
