/* src/components/breadcrumb/index.css */
.breadcrumb-nav {
  margin-top: 1em;
  & .list {
    list-style-type: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: nowrap;
  }
  & .item {
    white-space: nowrap;
    max-width: 100%;
    overflow: hidden;
    flex-shrink: 0;
    text-overflow: ellipsis;
  }
  & .item + .item::before {
    content: "/";
    margin: 0 8px;
    color: var(--accent-midground);
  }
  & .item.active {
    font-weight: bold;
    flex-shrink: 1;
  }
}

/* src/layouts/article.layout.css */
.article-layout {
  & .article-title {
    margin-bottom: 0.1em;
  }
  & .article-header {
    margin-bottom: 1.25em;
  }
  & .metadata {
    display: flex;
    gap: 0.5em;
    align-items: center;
    font-size: 0.8em;
  }
  & .metadata a {
    color: var(--accent-foreground);
  }
  & .author-info {
    display: flex;
    gap: 0.5em;
    align-items: center;
  }
  & .author-info img {
    border: 1px solid var(--accent-background);
    border-radius: 50%;
    padding: 4px;
  }
  & .published-date,
  & .updated-date {
    font-family: var(--font-code);
  }
  & iframe[src*="youtube.com"],
  & iframe[src*="youtube-nocookie.com"] {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
  }
}
/*# sourceMappingURL=article.layout-RAG5BSUR.css.map */
