:root {
    --gh-header: #24292f;
    --gh-header-text: rgba(255, 255, 255, 0.72);
    --gh-bg: #ffffff;
    --gh-canvas: #ffffff;
    --gh-canvas-subtle: #f6f8fa;
    --gh-canvas-inset: #f6f8fa;
    --gh-border: #d0d7de;
    --gh-border-muted: #d8dee4;
    --gh-text: #24292f;
    --gh-text-muted: #57606a;
    --gh-text-subtle: #6e7781;
    --gh-link: #0969da;
    --gh-link-hover: #0550ae;
    --gh-accent: #fd8c73;
    --gh-success: #1a7f37;
    --gh-code-bg: rgba(175, 184, 193, 0.2);
    --gh-button-hover: #f3f4f6;
    --gh-counter-bg: rgba(175, 184, 193, 0.2);
    --gh-topic-bg: #ddf4ff;
    --gh-radius: 6px;
    --gh-shell-width: 1280px;
    --gh-sidebar-width: 296px;
    --monospace: ui-monospace, SFMono-Regular, SF Mono, Menlo, Consolas, Liberation Mono, monospace;
}

@media (prefers-color-scheme: dark) {
    :root {
        --gh-header: #161b22;
        --gh-header-text: rgba(255, 255, 255, 0.72);
        --gh-bg: #0d1117;
        --gh-canvas: #0d1117;
        --gh-canvas-subtle: #161b22;
        --gh-canvas-inset: #161b22;
        --gh-border: #30363d;
        --gh-border-muted: #21262d;
        --gh-text: #e6edf3;
        --gh-text-muted: #8b949e;
        --gh-text-subtle: #7d8590;
        --gh-link: #2f81f7;
        --gh-link-hover: #58a6ff;
        --gh-accent: #f78166;
        --gh-success: #3fb950;
        --gh-code-bg: rgba(110, 118, 129, 0.4);
        --gh-button-hover: #30363d;
        --gh-counter-bg: rgba(110, 118, 129, 0.4);
        --gh-topic-bg: rgba(56, 139, 253, 0.15);
    }
}

* {
    box-sizing: border-box;
}

html {
    margin: 0;
    padding: 0;
    background: var(--gh-bg);
    color: var(--gh-text);
}

body {
    margin: 0;
    min-height: 100vh;
    background: var(--gh-bg);
    color: var(--gh-text);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
    font-size: 14px;
    line-height: 1.5;
}

a:link,
a:visited,
a:active {
    color: var(--gh-link);
    text-decoration: none;
    overflow-wrap: anywhere;
}

a:hover {
    color: var(--gh-link-hover);
    text-decoration: underline;
}

img {
    max-width: 100%;
}

code,
pre,
samp,
tt {
    font-family: var(--monospace);
}

code {
    padding: 0.2em 0.4em;
    border-radius: var(--gh-radius);
    background: var(--gh-code-bg);
    font-size: 85%;
    white-space: pre-wrap;
    word-break: break-word;
}

pre {
    overflow-x: auto;
    padding: 16px;
    border-radius: var(--gh-radius);
    background: var(--gh-canvas-subtle);
    font-size: 85%;
    line-height: 1.45;
}

pre code {
    padding: 0;
    border: 0;
    background: transparent;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin-top: 24px;
    margin-bottom: 16px;
    color: var(--gh-text);
    font-weight: 600;
    line-height: 1.25;
}

h1 {
    margin-top: 0;
    padding-bottom: 0.3em;
    border-bottom: 1px solid var(--gh-border-muted);
    font-size: 2em;
}

h2 {
    padding-bottom: 0.3em;
    border-bottom: 1px solid var(--gh-border-muted);
    font-size: 1.5em;
}

h3 {
    font-size: 1.25em;
}

p,
ul,
ol,
blockquote,
figure,
pre,
table,
hr {
    margin-top: 0;
    margin-bottom: 16px;
}

ul,
ol {
    padding-inline-start: 2em;
}

hr {
    height: 0.25em;
    border: 0;
    background: var(--gh-border-muted);
}

blockquote {
    margin-left: 0;
    padding: 0 1em;
    color: var(--gh-text-muted);
    border-left: 0.25em solid var(--gh-border);
}

kbd {
    display: inline-block;
    min-width: 1.75em;
    padding: 3px 5px;
    border: 1px solid var(--gh-border);
    border-radius: var(--gh-radius);
    background: linear-gradient(180deg, var(--gh-canvas) 0%, var(--gh-canvas-inset) 100%);
    box-shadow: inset 0 -1px 0 var(--gh-border);
    color: var(--gh-text);
    font-size: 85%;
    line-height: 1;
    text-align: center;
}

.github-site-header {
    position: sticky;
    top: 0;
    z-index: 30;
    background: var(--gh-header);
    color: var(--gh-header-text);
}

.github-site-header-inner {
    display: flex;
    align-items: center;
    gap: 16px;
    min-height: 56px;
    max-width: var(--gh-shell-width);
    margin: 0 auto;
    padding: 12px 24px;
}

.github-mark {
    display: inline-flex;
    flex: 0 0 auto;
    color: #fff;
}

.github-mark img {
    display: block;
    filter: brightness(0) invert(1);
}

.github-search {
    position: relative;
    width: min(272px, 32vw);
    margin: 0;
}

.github-search-input {
    width: 100%;
    min-height: 30px;
    padding: 5px 12px;
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: var(--gh-radius);
    background: rgba(255, 255, 255, 0.06);
    color: var(--gh-header-text);
    outline: none;
    font-size: 14px;
}

.github-search-input::placeholder {
    color: rgba(255, 255, 255, 0.72);
}

.github-search-input:focus {
    border-color: rgba(255, 255, 255, 0.42);
    background: var(--gh-canvas);
    color: var(--gh-text);
}

.github-search-results {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    z-index: 40;
    width: min(520px, calc(100vw - 32px));
    overflow: hidden;
    border: 1px solid var(--gh-border);
    border-radius: var(--gh-radius);
    background: var(--gh-canvas);
    box-shadow: var(--gh-shadow);
    color: var(--gh-text);
}

.github-search-result {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 10px 12px;
    border-bottom: 1px solid var(--gh-border-muted);
    color: var(--gh-text);
}

.github-search-result:last-child {
    border-bottom: 0;
}

.github-search-result:hover {
    background: var(--gh-canvas-subtle);
    color: var(--gh-text);
    text-decoration: none;
}

.github-search-result-title {
    color: var(--gh-link);
    font-size: 14px;
    font-weight: 600;
}

.github-search-result-snippet,
.github-search-empty {
    color: var(--gh-text-muted);
    font-size: 12px;
    line-height: 1.4;
}

.github-search-empty {
    padding: 12px;
}

.github-header-links {
    display: flex;
    align-items: center;
    gap: 16px;
    min-width: 0;
    margin-left: auto;
    font-weight: 600;
}

.github-header-links a,
.github-header-links a:visited {
    color: #fff;
    white-space: nowrap;
}

.github-header-links a:hover {
    color: rgba(255, 255, 255, 0.72);
    text-decoration: none;
}

.github-shell {
    display: grid;
    grid-template-columns: minmax(220px, var(--gh-sidebar-width)) minmax(0, 1fr);
    gap: 32px;
    max-width: var(--gh-shell-width);
    margin: 0 auto;
    padding: 24px;
}

.github-sidebar {
    align-self: start;
}

.profile-card {
    color: var(--gh-text);
}

.profile-card-header {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.profile-avatar-link {
    display: block;
}

.profile-avatar {
    display: block;
    width: 100%;
    max-width: 296px;
    aspect-ratio: 1 / 1;
    border: 1px solid var(--gh-border);
    border-radius: 50%;
    background: var(--gh-canvas);
    object-fit: cover;
}

.profile-title-group {
    display: flex;
    flex-direction: column;
    gap: 2px;
    margin-bottom: 16px;
}

.profile-name,
.profile-name:visited {
    color: var(--gh-text);
    font-size: 26px;
    font-weight: 600;
    line-height: 1.25;
    text-decoration: none;
}

.profile-name:hover {
    color: var(--gh-text);
    text-decoration: none;
}

.profile-handle {
    color: var(--gh-text-muted);
    font-size: 20px;
    font-weight: 300;
    line-height: 24px;
}

.profile-bio {
    margin-bottom: 16px;
    color: var(--gh-text);
    font-size: 16px;
}

.profile-bio p:last-child {
    margin-bottom: 0;
}

.profile-follow-button,
.profile-follow-button:visited {
    display: block;
    width: 100%;
    margin-bottom: 16px;
    padding: 5px 16px;
    border: 1px solid var(--gh-border);
    border-radius: var(--gh-radius);
    background: var(--gh-canvas-subtle);
    color: var(--gh-text);
    font-weight: 600;
    line-height: 20px;
    text-align: center;
}

.profile-follow-button:hover {
    border-color: #8c959f;
    background: var(--gh-button-hover);
    color: var(--gh-text);
    text-decoration: none;
}

.profile-detail-icon {
    fill: var(--gh-text-muted);
}

.profile-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 16px;
}

.profile-link,
.profile-link:visited {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: fit-content;
    color: var(--gh-text);
}

.profile-link:hover {
    color: var(--gh-link);
    text-decoration: none;
}

.profile-link-icon {
    flex: 0 0 auto;
    opacity: 0.75;
}

.profile-section-title {
    margin: 24px 0 8px;
    padding-top: 16px;
    border-top: 1px solid var(--gh-border-muted);
    font-size: 16px;
    font-weight: 600;
}

.profile-orgs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 16px;
}

.profile-orgs a {
    display: inline-flex;
    width: 32px;
    height: 32px;
    border-radius: var(--gh-radius);
}

.profile-orgs img {
    width: 32px;
    height: 32px;
    border-radius: var(--gh-radius);
}

.profile-meta {
    color: var(--gh-text-subtle);
    font-size: 12px;
}

.github-main-column,
.github-main {
    min-width: 0;
}

.repo-nav-shell {
    margin: 0 -24px 24px;
    border-bottom: 1px solid var(--gh-border);
}

.repo-nav {
    display: flex;
    gap: 4px;
    overflow-x: auto;
    padding: 0 24px;
}

.repo-tab,
.repo-tab:visited {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 48px;
    padding: 0 12px;
    color: var(--gh-text);
    font-size: 14px;
    white-space: nowrap;
    text-decoration: none;
}

.repo-tab::before {
    content: "";
    flex: 0 0 auto;
    width: 16px;
    height: 16px;
    background: currentColor;
    opacity: 0.72;
    -webkit-mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 16 16' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' d='M0 1.75A.75.75 0 0 1 .75 1h4.253c1.227 0 2.317.59 3 1.501A3.744 3.744 0 0 1 11.006 1h4.245a.75.75 0 0 1 .75.75v10.5a.75.75 0 0 1-.75.75h-4.507a2.25 2.25 0 0 0-1.591.659l-.622.621a.75.75 0 0 1-1.06 0l-.622-.621A2.25 2.25 0 0 0 5.258 13H.75A.75.75 0 0 1 0 12.25V1.75Zm8.755 3a2.25 2.25 0 0 1 2.25-2.25H14.5v9h-3.757c-.71 0-1.4.201-1.992.572l.004-7.322Zm-1.504 7.324.004-5.073-.002-2.253A2.25 2.25 0 0 0 5.003 2.5H1.5v9h3.757a3.75 3.75 0 0 1 1.994.574Z'/%3E%3C/svg%3E") center / contain no-repeat;
    mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 16 16' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' d='M0 1.75A.75.75 0 0 1 .75 1h4.253c1.227 0 2.317.59 3 1.501A3.744 3.744 0 0 1 11.006 1h4.245a.75.75 0 0 1 .75.75v10.5a.75.75 0 0 1-.75.75h-4.507a2.25 2.25 0 0 0-1.591.659l-.622.621a.75.75 0 0 1-1.06 0l-.622-.621A2.25 2.25 0 0 0 5.258 13H.75A.75.75 0 0 1 0 12.25V1.75Zm8.755 3a2.25 2.25 0 0 1 2.25-2.25H14.5v9h-3.757c-.71 0-1.4.201-1.992.572l.004-7.322Zm-1.504 7.324.004-5.073-.002-2.253A2.25 2.25 0 0 0 5.003 2.5H1.5v9h3.757a3.75 3.75 0 0 1 1.994.574Z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.repo-tab:nth-child(2)::before {
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 16 16' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' d='M2 2.5A2.5 2.5 0 0 1 4.5 0h8.75a.75.75 0 0 1 .75.75v12.5a.75.75 0 0 1-.75.75h-2.5a.75.75 0 0 1 0-1.5h1.75v-2h-8a1 1 0 0 0-.714 1.7.75.75 0 0 1-1.072 1.05A2.495 2.495 0 0 1 2 11.5v-9Zm10.5-1V9h-8c-.356 0-.694.074-1 .208V2.5a1 1 0 0 1 1-1h8ZM5 12.25v3.25a.25.25 0 0 0 .4.2l1.45-1.087a.25.25 0 0 1 .3 0L8.6 15.7a.25.25 0 0 0 .4-.2v-3.25a.25.25 0 0 0-.25-.25h-3.5a.25.25 0 0 0-.25.25Z'/%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 16 16' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' d='M2 2.5A2.5 2.5 0 0 1 4.5 0h8.75a.75.75 0 0 1 .75.75v12.5a.75.75 0 0 1-.75.75h-2.5a.75.75 0 0 1 0-1.5h1.75v-2h-8a1 1 0 0 0-.714 1.7.75.75 0 0 1-1.072 1.05A2.495 2.495 0 0 1 2 11.5v-9Zm10.5-1V9h-8c-.356 0-.694.074-1 .208V2.5a1 1 0 0 1 1-1h8ZM5 12.25v3.25a.25.25 0 0 0 .4.2l1.45-1.087a.25.25 0 0 1 .3 0L8.6 15.7a.25.25 0 0 0 .4-.2v-3.25a.25.25 0 0 0-.25-.25h-3.5a.25.25 0 0 0-.25.25Z'/%3E%3C/svg%3E");
}

.repo-tab:hover {
    color: var(--gh-text);
    text-decoration: none;
}

.repo-tab::after {
    content: "";
    position: absolute;
    right: 12px;
    bottom: -1px;
    left: 12px;
    height: 2px;
    border-radius: 999px 999px 0 0;
    background: transparent;
}

.repo-tab:hover::after {
    background: var(--gh-border);
}

.repo-tab.is-active {
    font-weight: 600;
}

.repo-tab.is-active::after {
    background: var(--gh-accent);
}

.repo-tab-counter {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 20px;
    height: 20px;
    padding: 0 6px;
    border-radius: 999px;
    background: var(--gh-counter-bg);
    color: var(--gh-text-muted);
    font-size: 12px;
    font-weight: 600;
}

.homepage-stream {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.main,
.content,
.markdown-body,
.items,
.pages-container,
.tag-container,
.archive-container,
footer {
    color: var(--gh-text);
}

.content,
.markdown-body {
    font-size: 16px;
    line-height: 1.5;
    word-wrap: break-word;
}

.content > :last-child,
.markdown-body > :last-child {
    margin-bottom: 0;
}

.content img,
.markdown-body img,
figure > img:first-child {
    display: block;
    margin: 24px auto;
    border-radius: var(--gh-radius);
}

.content table,
.markdown-body table {
    display: block;
    width: max-content;
    max-width: 100%;
    overflow: auto;
    border-collapse: collapse;
    border-spacing: 0;
}

.content table th,
.markdown-body table th,
.content table td,
.markdown-body table td {
    padding: 6px 13px;
    border: 1px solid var(--gh-border);
}

.content table tr,
.markdown-body table tr {
    background: var(--gh-canvas);
    border-top: 1px solid var(--gh-border-muted);
}

.content table tr:nth-child(2n),
.markdown-body table tr:nth-child(2n) {
    background: var(--gh-canvas-subtle);
}

.content table th,
.markdown-body table th {
    font-weight: 600;
}

.markdown-panel,
.post-stream {
    border: 1px solid var(--gh-border);
    border-radius: var(--gh-radius);
    background: var(--gh-canvas);
    overflow: hidden;
}

.readme-panel {
    border-color: var(--gh-border-muted);
    background: transparent;
}

.readme-panel .panel-header {
    background: transparent;
}

.readme-panel .panel-body {
    background: var(--gh-canvas);
}

.panel-header {
    display: flex;
    align-items: center;
    min-height: 40px;
    padding: 8px 16px;
    border-bottom: 1px solid var(--gh-border);
    background: var(--gh-canvas-subtle);
}

.panel-title-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    width: 100%;
}

.panel-title {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 14px;
    font-weight: 600;
}

.panel-chip {
    display: none;
}

.panel-body,
.post-list {
    padding: 24px;
}

.article-panel {
    overflow: hidden;
}

.article-header {
    display: flex;
    flex-direction: column;
    gap: 8px;
    border-bottom: 1px solid var(--gh-border);
    background: var(--gh-canvas);
}

.article-header h1 {
    margin: 0;
    padding: 0;
    border: 0;
}

.article-meta {
    color: var(--gh-text-muted);
    font-size: 14px;
}

.article-content {
    border-top: 0;
}

.article-footer {
    border-top: 1px solid var(--gh-border);
    background: var(--gh-canvas-subtle);
}

.article-tags,
.post-row-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.readme-empty,
.post-stream-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 40px 24px;
    border: 1px dashed var(--gh-border);
    border-radius: var(--gh-radius);
    background: var(--gh-canvas-subtle);
    text-align: center;
}

.readme-empty h3,
.readme-empty p,
.post-stream-empty p {
    margin: 0;
}

.readme-empty p,
.post-stream-empty p {
    color: var(--gh-text-muted);
}

.readme-empty-icon {
    display: grid;
    place-items: center;
    width: 40px;
    height: 40px;
    border: 1px solid var(--gh-border);
    border-radius: 50%;
    background: var(--gh-canvas);
    color: var(--gh-text-subtle);
    font-family: var(--monospace);
    font-weight: 700;
}

.overview-section {
    min-width: 0;
}

.posts-page {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.posts-page-toolbar {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--gh-border-muted);
}

.posts-page-toolbar h1 {
    margin: 0;
    font-size: 24px;
    font-weight: 600;
}

.posts-page-count {
    margin: 4px 0 0;
    color: var(--gh-text-muted);
    font-size: 14px;
}

.posts-tags-panel {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.posts-tags-panel-title {
    color: var(--gh-text);
    font-size: 14px;
    font-weight: 600;
}

.posts-tags-empty {
    margin: 0;
    color: var(--gh-text-muted);
    font-size: 14px;
}

.posts-tag-filter {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.posts-tag-filter-button {
    font: inherit;
    cursor: pointer;
}

.posts-tag-filter-button:hover {
    color: var(--gh-link);
}

.posts-tag-filter-button.is-active {
    color: var(--gh-link);
    font-weight: 600;
}

.posts-tag-filter-count {
    color: var(--gh-text-muted);
    font-weight: inherit;
}

.posts-page-list {
    display: flex;
    flex-direction: column;
}

.posts-page-item {
    padding: 20px 0;
    border-bottom: 1px solid var(--gh-border-muted);
}

.posts-page-item:first-child {
    padding-top: 0;
}

.posts-page-item-title {
    margin: 0 0 8px;
    padding: 0;
    border: 0;
    font-size: 20px;
    font-weight: 600;
    line-height: 1.25;
}

.posts-page-summary {
    display: -webkit-box;
    margin: 0 0 10px;
    overflow: hidden;
    color: var(--gh-text);
    font-size: 14px;
    line-height: 1.5;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

.posts-page-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    color: var(--gh-text-muted);
    font-size: 13px;
}

.posts-page-tags {
    display: inline-flex;
    flex-wrap: wrap;
    gap: 6px;
}

.posts-page-created {
    white-space: nowrap;
}

.overview-section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 8px;
}

.overview-section-header h2 {
    margin: 0;
    padding: 0;
    border: 0;
    color: var(--gh-text);
    font-size: 16px;
    font-weight: 600;
}

.pinned-post-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.pinned-post-card {
    display: flex;
    flex-direction: column;
    gap: 10px;
    min-width: 0;
    min-height: 116px;
    padding: 16px;
    border: 1px solid var(--gh-border);
    border-radius: var(--gh-radius);
    background: var(--gh-canvas);
}

.pinned-post-card-top {
    display: grid;
    grid-template-columns: 16px minmax(0, 1fr);
    gap: 8px;
    align-items: start;
}

.pinned-post-icon {
    display: inline-block;
    width: 16px;
    height: 16px;
    margin-top: 2px;
    background: var(--gh-text-muted);
    -webkit-mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 16 16' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' d='M2 2.5A2.5 2.5 0 0 1 4.5 0h8.75a.75.75 0 0 1 .75.75v12.5a.75.75 0 0 1-.75.75h-2.5a.75.75 0 0 1 0-1.5h1.75v-2h-8a1 1 0 0 0-.714 1.7.75.75 0 0 1-1.072 1.05A2.495 2.495 0 0 1 2 11.5v-9Zm10.5-1V9h-8c-.356 0-.694.074-1 .208V2.5a1 1 0 0 1 1-1h8ZM5 12.25v3.25a.25.25 0 0 0 .4.2l1.45-1.087a.25.25 0 0 1 .3 0L8.6 15.7a.25.25 0 0 0 .4-.2v-3.25a.25.25 0 0 0-.25-.25h-3.5a.25.25 0 0 0-.25.25Z'/%3E%3C/svg%3E") center / contain no-repeat;
    mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 16 16' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' d='M2 2.5A2.5 2.5 0 0 1 4.5 0h8.75a.75.75 0 0 1 .75.75v12.5a.75.75 0 0 1-.75.75h-2.5a.75.75 0 0 1 0-1.5h1.75v-2h-8a1 1 0 0 0-.714 1.7.75.75 0 0 1-1.072 1.05A2.495 2.495 0 0 1 2 11.5v-9Zm10.5-1V9h-8c-.356 0-.694.074-1 .208V2.5a1 1 0 0 1 1-1h8ZM5 12.25v3.25a.25.25 0 0 0 .4.2l1.45-1.087a.25.25 0 0 1 .3 0L8.6 15.7a.25.25 0 0 0 .4-.2v-3.25a.25.25 0 0 0-.25-.25h-3.5a.25.25 0 0 0-.25.25Z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.pinned-post-title,
.pinned-post-title:visited {
    color: var(--gh-link);
    font-size: 14px;
    font-weight: 600;
    line-height: 1.35;
}

.pinned-post-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    color: var(--gh-text-muted);
    font-size: 12px;
}

.pinned-empty,
.overview-empty {
    margin: 0;
    padding: 16px;
    border: 1px dashed var(--gh-border);
    border-radius: var(--gh-radius);
    color: var(--gh-text-muted);
    background: var(--gh-canvas);
}

.contributions-section {
    margin-top: 24px;
}

.contributions-section .f4,
.activity-section .f4 {
    margin: 0 0 8px;
    padding: 0;
    border: 0;
    color: var(--gh-text);
    font-size: 16px;
    font-weight: 400;
}

.graph-before-activity-overview {
    --calendar-cell-size: 11px;
    --calendar-gap: 3px;
    --calendar-label-width: 28px;
    --calendar-width: calc((var(--calendar-cell-size) * 53) + (var(--calendar-gap) * 52));
    border: 1px solid var(--gh-border);
    border-radius: var(--gh-radius);
    background: var(--gh-canvas);
    padding: 12px 14px 8px;
}

.calendar-graph {
    display: block;
    overflow: hidden;
    width: calc(var(--calendar-label-width) + var(--calendar-width));
    max-width: none;
    margin: 0 auto;
    padding: 0;
    text-align: left;
}

.js-calendar-graph {
    overflow-x: auto;
}

.calendar-months {
    display: grid;
    grid-template-columns: repeat(53, var(--calendar-cell-size));
    column-gap: var(--calendar-gap);
    width: var(--calendar-width);
    max-width: 100%;
    margin: 0 0 4px var(--calendar-label-width);
    color: var(--gh-text-muted);
    font-size: 10px;
    line-height: 18px;
    text-align: left;
}

.calendar-months span:nth-child(1) {
    grid-column: 1 / span 4;
}

.calendar-months span:nth-child(2) {
    grid-column: 5 / span 4;
}

.calendar-months span:nth-child(3) {
    grid-column: 9 / span 5;
}

.calendar-months span:nth-child(4) {
    grid-column: 14 / span 4;
}

.calendar-months span:nth-child(5) {
    grid-column: 18 / span 5;
}

.calendar-months span:nth-child(6) {
    grid-column: 23 / span 4;
}

.calendar-months span:nth-child(7) {
    grid-column: 27 / span 5;
}

.calendar-months span:nth-child(8) {
    grid-column: 32 / span 5;
}

.calendar-months span:nth-child(9) {
    grid-column: 37 / span 4;
}

.calendar-months span:nth-child(10) {
    grid-column: 41 / span 5;
}

.calendar-months span:nth-child(11) {
    grid-column: 46 / span 4;
}

.calendar-months span:nth-child(12) {
    grid-column: 50 / span 4;
}

.calendar-body {
    display: grid;
    grid-template-columns: var(--calendar-label-width) var(--calendar-width);
    align-items: start;
    width: calc(var(--calendar-label-width) + var(--calendar-width));
}

.calendar-weekdays {
    display: grid;
    grid-template-rows: repeat(7, var(--calendar-cell-size));
    gap: var(--calendar-gap);
    color: var(--gh-text-muted);
    font-size: 10px;
    line-height: var(--calendar-cell-size);
    text-align: left;
}

.calendar-weekdays span:nth-child(1) {
    grid-row: 2;
}

.calendar-weekdays span:nth-child(2) {
    grid-row: 4;
}

.calendar-weekdays span:nth-child(3) {
    grid-row: 6;
}

.calendar-grid {
    display: grid;
    grid-auto-flow: column;
    grid-template-rows: repeat(7, var(--calendar-cell-size));
    gap: var(--calendar-gap);
    width: var(--calendar-width);
    max-width: none;
    min-height: calc((var(--calendar-cell-size) * 7) + (var(--calendar-gap) * 6));
    overflow: hidden;
}

.calendar-cell,
.legend li {
    display: block;
    width: var(--calendar-cell-size);
    height: var(--calendar-cell-size);
    border-radius: 2px;
    background: #ebedf0;
    outline: 1px solid rgba(27, 31, 36, 0.06);
    outline-offset: -1px;
}

.calendar-cell.level-1,
.legend li.level-1 {
    background: #9be9a8;
}

.calendar-cell.level-2,
.legend li.level-2 {
    background: #40c463;
}

.calendar-cell.level-3,
.legend li.level-3 {
    background: #30a14e;
}

.calendar-cell.level-4,
.legend li.level-4 {
    background: #216e39;
}

.contrib-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: calc(var(--calendar-label-width) + var(--calendar-width));
    margin: 8px auto 0;
    padding: 0 0 2px;
}

.contrib-legend {
    display: flex;
    align-items: center;
    gap: 4px;
    color: var(--gh-text-muted);
    font-size: 12px;
}

.legend {
    display: flex;
    gap: 3px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.activity-section {
    margin-top: 24px;
}

.activity-listing {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 112px;
    gap: 24px;
    align-items: start;
    position: relative;
}

.activity-year-sidebar {
    position: sticky;
    top: 88px;
}

.activity-year-list {
    display: flex;
    flex-direction: column;
    gap: 2px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.activity-year-button {
    display: block;
    width: 100%;
    padding: 8px 12px;
    border: 0;
    border-radius: var(--gh-radius);
    background: transparent;
    color: var(--gh-text);
    font: inherit;
    font-size: 12px;
    line-height: 20px;
    text-align: left;
    cursor: pointer;
}

.activity-year-button:hover {
    background: var(--gh-canvas-subtle);
}

.activity-year-button.selected {
    background: var(--gh-link);
    color: #fff;
    font-weight: 600;
}

.posts-activity {
    position: relative;
    padding-left: 0;
}

.contribution-activity-listing {
    width: 100%;
}

.activity-month-block {
    padding-bottom: 24px;
}

.activity-month-heading {
    height: 14px;
    margin: 0 0 16px;
    padding: 0;
    border: 0;
    border-bottom: 1px solid var(--gh-border-muted);
    font-size: 12px;
    font-weight: 600;
    line-height: 14px;
}

.activity-month-heading > span {
    position: relative;
    top: -1px;
    display: inline-flex;
    gap: 4px;
    padding-right: 12px;
    background: var(--gh-bg);
    color: var(--gh-text);
}

.activity-month-heading span span {
    color: var(--gh-text-muted);
    font-weight: 400;
}

.TimelineItem {
    position: relative;
    display: flex;
    margin-left: 16px;
    padding-bottom: 8px;
}

.TimelineItem::before {
    content: "";
    position: absolute;
    top: 32px;
    bottom: -8px;
    left: 15px;
    width: 2px;
    background: var(--gh-border-muted);
}

.activity-month-block:last-child .TimelineItem::before {
    display: none;
}

.TimelineItem-badge {
    position: relative;
    z-index: 1;
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    width: 32px;
    height: 32px;
    margin-right: 8px;
    border: 2px solid var(--gh-bg);
    border-radius: 50%;
    background: var(--gh-canvas-subtle);
    color: var(--gh-text-muted);
    box-shadow: 0 0 0 1px var(--gh-border);
}

.TimelineItem-badge svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

.TimelineItem-body {
    flex: 1;
    min-width: 0;
    padding: 3px 0 16px 8px;
    color: var(--gh-text);
}

.activity-details summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 24px;
    color: var(--gh-text);
    cursor: pointer;
    font-size: 16px;
    line-height: 1.25;
    list-style: none;
}

.activity-details summary::-webkit-details-marker {
    display: none;
}

.activity-post-list {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin: 8px 0 0;
    padding: 0;
    list-style: none;
}

.activity-post-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 72px;
    gap: 16px;
    align-items: start;
    padding: 4px 0;
}

.activity-post-title {
    min-width: 0;
}

.activity-post-title > a {
    font-size: 14px;
    font-weight: 600;
}

.activity-post-date {
    color: var(--gh-text-subtle);
    font-size: 12px;
    line-height: 20px;
    text-align: right;
}

.activity-post-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 4px;
}

.post-row {
    display: flex;
    min-width: 0;
    gap: 16px;
}

.post-row + .post-row {
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid var(--gh-border-muted);
}

.post-row::before {
    content: "";
    flex: 0 0 12px;
    width: 12px;
    height: 12px;
    margin-top: 6px;
    border-radius: 50%;
    background: #e34c26;
}

.post-row-main {
    min-width: 0;
}

.post-row-title {
    margin: 0 0 8px;
    font-size: 16px;
    line-height: 1.35;
}

.post-row-title a,
.post-row-title a:visited {
    color: var(--gh-link);
    font-weight: 600;
}

.post-row-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
    color: var(--gh-text-muted);
    font-size: 12px;
}

.post-tag,
.post-tag:visited {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    min-height: 18px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: var(--gh-text-muted);
    font-size: 12px;
    font-weight: 400;
    line-height: 18px;
}

.post-tag:hover {
    color: var(--gh-link);
    text-decoration: none;
}

.post-tag-icon {
    flex: 0 0 auto;
    width: 14px;
    height: 14px;
    fill: currentColor;
}

.date,
.item-date,
.pages-info,
.tag-count,
.archive-count,
figcaption {
    color: var(--gh-text-muted);
    font-size: 14px;
}

.item-video-icon,
.item-audio-icon,
.social-icon,
.profile-link-icon {
    width: 16px;
    height: 16px;
    flex: 0 0 auto;
    vertical-align: text-bottom;
    opacity: 0.65;
    filter: grayscale(1);
    object-fit: contain;
}

.breadcrumb {
    margin-bottom: 16px;
    padding: 8px 0;
    border-bottom: 1px solid var(--gh-border-muted);
    background: var(--gh-bg);
}

.breadcrumb-inner {
    display: flex;
    align-items: center;
    gap: 8px;
    min-width: 0;
    color: var(--gh-text-muted);
    font-size: 14px;
}

.breadcrumb-inner > a,
.breadcrumb-inner > span {
    min-width: 0;
}

.breadcrumb-avatar {
    display: flex;
    margin-right: 4px;
}

.breadcrumb-avatar-image {
    width: 16px;
    height: 16px;
    border-radius: 50%;
}

.chevron {
    color: var(--gh-text-subtle);
    font-size: 14px;
}

.items {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.item {
    display: flex;
    gap: 16px;
    padding: 24px 0;
    border-top: 1px solid var(--gh-border-muted);
}

.item:first-child {
    border-top: 0;
    padding-top: 0;
}

.item-main {
    display: flex;
    flex: 1;
    flex-direction: column;
    gap: 10px;
    min-width: 0;
}

.item-hero-image img {
    width: 120px;
    height: 80px;
    border: 1px solid var(--gh-border);
    border-radius: var(--gh-radius);
    object-fit: cover;
}

.item-title {
    font-size: 18px;
    font-weight: 600;
    line-height: 1.3;
}

.item-info {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
}

.video-container {
    position: relative;
    width: 100%;
    height: 0;
    margin-bottom: 24px;
    padding-top: 56.25%;
    overflow: hidden;
    border-radius: var(--gh-radius);
    background: #000;
}

.video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.audio-container {
    margin-bottom: 24px;
}

.audio {
    width: 100%;
}

.top,
.nav-container {
    display: none;
}

.pages-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: 24px;
    padding: 16px 24px;
    border-top: 1px solid var(--gh-border-muted);
}

.pages-info {
    flex: 1;
    text-align: center;
}

.tag-container,
.archive-container {
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--gh-border-muted);
}

.tag-caption {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--gh-text-muted);
    font-size: 14px;
}

.tag-title,
.archive-title {
    margin-top: 8px;
    font-size: 2em;
    font-weight: 600;
}

.tags-container {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
    color: var(--gh-text-muted);
}

.tags {
    display: flex;
    flex: 1;
    flex-wrap: wrap;
    gap: 8px;
}

.tag-item {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border: 1px solid var(--gh-border);
    border-radius: 999px;
    background: var(--gh-canvas);
}

.tag-item:hover {
    border-color: var(--gh-link);
    text-decoration: none;
}

.tag-cloud,
.archive-list {
    column-count: 3;
    column-gap: 24px;
}

.tag-cloud-item,
.archive-list-item {
    break-inside: avoid;
    display: block;
    margin-bottom: 12px;
}

.tag-cloud-item-count {
    display: inline-block;
    margin-left: 6px;
    padding: 0.15rem 0.5rem;
    border-radius: 999px;
    background: var(--gh-canvas-inset);
    color: var(--gh-text-muted);
    font-size: 12px;
}

.archive-list-header {
    display: block;
    margin: 20px 0 12px;
    color: var(--gh-text-muted);
    font-size: 16px;
    font-weight: 600;
}

.archive-list-header:first-child {
    margin-top: 0;
}

.archive-list-item {
    display: flex;
    gap: 8px;
    align-items: center;
}

figure {
    margin-inline: 0;
}

figcaption {
    text-align: center;
}

ul:has(input[type="checkbox"]) {
    padding-inline-start: 0;
}

li input[type="checkbox"] {
    display: none;
}

li:has(input[type="checkbox"]) {
    position: relative;
    padding-left: 1.8em;
    list-style: none;
}

li:has(input[type="checkbox"])::before {
    content: "";
    position: absolute;
    top: 0.35em;
    left: 0;
    width: 1em;
    height: 1em;
    border: 1px solid var(--gh-border);
    border-radius: 4px;
    background: var(--gh-canvas);
}

li:has(input[type="checkbox"]:checked:disabled)::after {
    content: "x";
    position: absolute;
    top: 0.04em;
    left: 0.27em;
    color: var(--gh-success);
    font-size: 0.9em;
    font-weight: 700;
}

footer {
    margin-top: 40px;
    padding-top: 24px;
    border-top: 1px solid var(--gh-border-muted);
    color: var(--gh-text-muted);
    font-size: 14px;
}

.article-footer {
    margin-top: 0;
    padding-top: 24px;
}

.footer-inner {
    min-height: 1px;
}

@media screen and (max-width: 1012px) {
    .github-shell {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 24px 16px 48px;
    }

    .profile-card-header {
        display: grid;
        grid-template-columns: 96px minmax(0, 1fr);
        align-items: center;
        gap: 16px;
    }

    .profile-avatar {
        max-width: 96px;
    }

    .profile-title-group {
        margin-bottom: 0;
    }

    .repo-nav-shell {
        margin-right: -16px;
        margin-left: -16px;
    }

    .repo-nav {
        padding: 0 16px;
    }
}

@media screen and (max-width: 768px) {
    .github-site-header-inner {
        flex-wrap: wrap;
        gap: 10px;
        padding: 10px 16px;
    }

    .github-search {
        order: 3;
        width: 100%;
    }

    .github-search-results {
        width: 100%;
    }

    .github-header-links {
        gap: 12px;
        margin-left: auto;
        font-size: 13px;
    }

    h1 {
        font-size: 1.75em;
    }

    h2 {
        font-size: 1.35em;
    }

    .panel-body,
    .post-list {
        padding: 16px;
    }

    .calendar-graph {
        align-items: flex-start;
    }

    .calendar-months,
    .calendar-grid {
        max-width: none;
    }

    .activity-listing {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .activity-year-sidebar {
        position: static;
        order: -1;
        overflow-x: auto;
    }

    .activity-year-list {
        flex-direction: row;
        width: max-content;
    }

    .activity-year-button {
        min-width: 72px;
        text-align: center;
    }

    .tag-cloud,
    .archive-list {
        column-count: 2;
    }
}

@media screen and (max-width: 544px) {
    .github-shell {
        padding: 16px;
    }

    .profile-card-header {
        grid-template-columns: 72px minmax(0, 1fr);
    }

    .profile-avatar {
        max-width: 72px;
    }

    .profile-name {
        font-size: 22px;
    }

    .profile-handle {
        font-size: 17px;
    }

    .repo-nav-shell {
        margin-right: -16px;
        margin-left: -16px;
    }

    .item {
        flex-direction: column;
    }

    .tag-cloud,
    .archive-list {
        column-count: 1;
    }

    .pages-container {
        flex-wrap: wrap;
    }

    .pages-info {
        order: 3;
        width: 100%;
    }
}

@media (prefers-color-scheme: dark) {
    .profile-link-icon,
    .profile-orgs img,
    .item-video-icon,
    .item-audio-icon,
    .social-icon {
        filter: invert(1) brightness(0.85);
    }

    .calendar-cell,
    .legend li {
        background: #161b22;
        outline-color: rgba(240, 246, 252, 0.06);
    }

    .calendar-cell.level-1,
    .legend li.level-1 {
        background: #0e4429;
    }

    .calendar-cell.level-2,
    .legend li.level-2 {
        background: #26a641;
    }

    .calendar-cell.level-3,
    .legend li.level-3 {
        background: #39d353;
    }

    .calendar-cell.level-4,
    .legend li.level-4 {
        background: #39d353;
    }
}
