.whatsapp-help {
  color: rgb(var(--color-text));
  background: rgb(var(--color-background));
}

.whatsapp-help__card {
  display: flex;
  flex-direction: column;
  gap: 22px;
  align-items: flex-start;
  padding: 26px 24px;
  color: rgb(var(--whatsapp-help-text));
  background: rgb(var(--whatsapp-help-background));
  border-radius: var(--whatsapp-help-radius);
}

.whatsapp-help__heading,
.whatsapp-help__description {
  margin: 0;
}

.whatsapp-help__heading {
  max-width: 620px;
  font-size: var(--whatsapp-help-heading-size-mobile);
  font-weight: var(--sort-title-font-weight, 700);
  line-height: 1.12;
  white-space: pre-line;
}

.whatsapp-help__description {
  max-width: 620px;
  margin-top: 12px;
  font-family: var(--sort-body-font);
  font-size: var(--whatsapp-help-description-size-mobile);
  line-height: 1.55;
  opacity: 0.9;
  white-space: pre-line;
}

.whatsapp-help__button {
  display: inline-flex;
  gap: 12px;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 12px 22px;
  color: rgb(var(--whatsapp-help-button-text));
  font-family: var(--sort-body-font);
  font-size: var(--whatsapp-help-button-size-mobile);
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
  background: rgb(var(--whatsapp-help-button-background));
  border: 1px solid rgb(var(--whatsapp-help-button-border));
  border-radius: 8px;
}

.whatsapp-help__icon {
  flex: 0 0 auto;
  width: 24px;
  height: 24px;
}

.whatsapp-help__button:hover {
  opacity: 0.92;
}

.whatsapp-help__button:focus-visible {
  outline: 2px solid rgb(var(--whatsapp-help-text));
  outline-offset: 3px;
}

@media (min-width: 960px) {
  .whatsapp-help__heading { font-size: var(--whatsapp-help-heading-size-desktop); }
  .whatsapp-help__description { font-size: var(--whatsapp-help-description-size-desktop); }
  .whatsapp-help__button { font-size: var(--whatsapp-help-button-size-desktop); }
  .whatsapp-help__card {
    flex-direction: row;
    gap: 36px;
    align-items: center;
    justify-content: space-between;
    padding: 38px 42px;
  }

  .whatsapp-help__button {
    flex: 0 0 auto;
    min-height: 56px;
    padding-inline: 28px;
  }
}
