/**
 * PDF link buttons.
 */

a.hs-pdf-button.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  box-sizing: border-box;

  min-height: 44px;
  padding: 10px 18px !important;

  border: 1px solid #d4af37;
  border-radius: 4px;

  background: #7a0c0c;
  color: #d4af37;

  font-size: inherit;
  font-weight: 500;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;

  vertical-align: middle;

  transition:
    background-color 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease;
}

a.hs-pdf-button.button:hover,
a.hs-pdf-button.button:focus {
  background: #5e0909;
  border-color: #d4af37;
  color: #f5d76e;

  text-decoration: none;

  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

a.hs-pdf-button.button:focus-visible {
  outline: 2px solid #d4af37;
  outline-offset: 2px;
}

a.hs-pdf-button.button:active {
  transform: translateY(1px);
}
