.product-detail__instructions-content {
  display: grid;
  gap: 12px;
}

.product-detail__instructions-intro > :first-child {
  margin-block-start: 0;
}

.product-detail__instructions-intro > :last-child {
  margin-block-end: 0;
}

.product-detail__instructions-link {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  gap: 4px;
  color: rgba(var(--color-button-text-link, var(--color-text)), 1);
  line-height: 1.2;
  text-decoration: none;
}

.product-detail__instructions-link svg {
  flex: 0 0 auto;
  width: 16px;
  height: 16px;
}

.product-detail__instructions-link span {
  background-image: linear-gradient(currentColor, currentColor);
  background-position: 0 100%;
  background-repeat: no-repeat;
  background-size: 0 1px;
  transition: background-size 0.25s ease;
}

.product-detail__instructions-link:hover span,
.product-detail__instructions-link:focus-visible span {
  background-size: 100% 1px;
}

.product-detail__instructions-link:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 3px;
}
