/* =========================================================
   PDF DOWNLOAD BUTTON — ISOLATED
========================================================= */

#learn-download-pdf {
  all: unset;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  margin-top: 8px;
  padding: 2px 35px;

  border-radius: 999px;
  border: 1px solid rgb(29 27 27 / 23%);

  background: rgba(255,255,255,0.08);

  color: #181923;
  font-weight: 600;
  font-size: 15px;

  cursor: pointer;
  opacity: 0.75;

  transition:
    opacity 160ms ease,
    background-color 160ms ease,
    box-shadow 220ms ease,
    border-color 200ms ease;

  position: relative;
  left: 10px;
}

/* Hover */
#learn-download-pdf:hover {
  opacity: 1;
/*   border-color: var(--gb-md-divider);
  box-shadow: 0 6px 18px rgba(0,0,0,0.18); */
}

/* Active (press) */
#learn-download-pdf:active {
  transform: scale(0.97);
}

/* Focus accessibility */
#learn-download-pdf:focus-visible {
  outline: none;
  box-shadow:
    0 0 0 2px var(--gb-md-link-underline),
    0 8px 22px rgba(0,0,0,0.25);
}

/* Icon inside button */
#learn-download-pdf svg {
  position: absolute;
  width: 12px;
  height: 12px;
  left: 7px;
  top: 7px;
}
