.breadcrumbs {
  margin: 0.3rem 0;
  display: flex;
  flex-direction: row;
  gap: 0.2rem;
  align-items: center;
  font-size: 1em;
  height: 1em;

  & a {
    text-decoration: none;
    color: var(--fg-color);

    &:last-child {
      color: var(--accent);
    }

    &:hover {
      text-decoration: underline;
    }
  }
}

svg {
  width: 1em;
  height: 1em;
}

@media print {
  .breadcrumbs {
    display: none;
  }
}
