/*!
 * The one button of a website page, design language 2.1, rule 6, rendered by
 * the partial _WebsiteButton.cshtml: ink ground, text in the button ink, an
 * arrow of 22 by 10 pixels after the word. Also the hint beside it.
 */

.website .website-button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0;
  padding: 14px 20px 14px 22px;
  border: 0;
  border-radius: var(--website-radius);
  background: var(--website-color-button);
  color: var(--website-color-button-ink);
  font-family: inherit;
  font-size: var(--website-font-size-button);
  font-weight: var(--website-font-weight-bold);
  line-height: 1;
  letter-spacing: 0.01em;
  text-decoration: none;
  cursor: pointer;
}

.website .website-button:hover {
  opacity: 0.88;
}

/* The text colour of the button is almost the room: an outline in it would be
   invisible (1.15:1 light, 1.00:1 dark). The outline takes the button ground. */
.website .website-button:focus-visible {
  outline-color: var(--website-color-button);
}

.website-button__arrow {
  flex: none;
  width: 22px;
  height: 10px;
}

/* A row of the button and the short hint beside it. */
.website-action {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 20px;
  margin-top: 36px;
}

.website-action__hint {
  color: var(--website-color-ink-2);
  font-size: var(--website-font-size-small);
}

@media (max-width: 759px) {
  .website-action {
    margin-top: 28px;
  }
}
