.breadcrumbs {
  font-size: 0.75rem;

  ol {
    display: flex;
    justify-content: center;
    overflow: hidden;
    max-width: 1024px;
    backdrop-filter: blur(3px);
  }

  li {
    display: flex;
    align-items: center;
    line-height: 1;
  }

  a {
    display: block;
    text-decoration: underline;
    padding: 0.5rem 1rem 0.5rem 0;
    position: relative;
    color: var(--blue-600);

    &::after {
      content: '>';
      width: 0.75rem;
      position: absolute;
      top: 50%;
      translate: 0 -50%;
      right: 0;
    }
  }
}
