/* v2.5.0: Step Link Analysis PDF interaction. */
body main .feature-document-button {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 7px;
  padding: 7px 10px;
  border: 1px solid #168ba6;
  border-radius: 4px;
  background: #0a2739;
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.055em;
  text-decoration: none;
  text-transform: uppercase;
  transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease;
}

body main .feature-document-button::after {
  content: "PDF ↗";
  color: #79d7d5;
  font-size: 0.6rem;
  letter-spacing: 0.07em;
}

body main .feature-document-button:hover,
body main .feature-document-button:focus-visible {
  border-color: #35bfc1;
  background: #11738a;
  color: #ffffff;
}

body main .feature-document-button:focus-visible {
  outline: 3px solid rgba(53, 191, 193, 0.32);
  outline-offset: 2px;
}

@media (max-width: 600px) {
  body main .feature-document-button {
    padding: 8px 11px;
  }
}
