/* KakaoParser help / info pages (Korean). Tokens, typography and the
   .article layout come from /css/index.css; this only adds page bits. */

.article .help-links {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
    border-top: 1px solid var(--line);
}

.article .help-links li {
    margin: 0;
}

.help-links a {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 0.25rem 1rem;
    align-items: baseline;
    padding: 0.8rem 0.6rem;
    margin: 0 -0.6rem;
    border-bottom: 1px solid var(--line);
    color: var(--fg);
    text-decoration: none;
    transition: background-color 0.15s var(--ease);
}

.help-links a:hover {
    background: var(--bg-hover);
}

.help-links .desc {
    display: block;
    color: var(--fg-muted);
    font-size: 0.92rem;
}

.help-links .path {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--fg-faint);
    white-space: nowrap;
}

.help-links a:hover .path {
    color: var(--accent);
}

.help-links a[target="_blank"] .path::after {
    content: " ↗";
}

.article .steps {
    counter-reset: step;
    list-style: none;
    padding: 0;
}

.steps > li {
    counter-increment: step;
    position: relative;
    padding-left: 2.4rem;
    margin: 0.6rem 0;
}

.steps > li::before {
    content: counter(step);
    position: absolute;
    left: 0;
    top: 0.15rem;
    width: 1.6rem;
    height: 1.6rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--accent);
    border: 1px solid var(--line-strong);
    border-radius: 4px;
}

.article .path-move {
    font-family: var(--font-mono);
    font-size: 0.85rem;
    background: var(--bg-inset);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 0.75rem 1rem;
    overflow-x: auto;
    white-space: nowrap;
}
