.step-list {
    list-style: none;
    counter-reset: step;
}

.step-list li {
    counter-increment: step;
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 14px;
    font-size: 14px;
    color: #5a6a7e;
    line-height: 1.8;
}

.step-list li:last-child { margin-bottom: 0; }

.step-list li::before {
    content: counter(step);
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, #2a7ef6, #1058d9);
    color: #fff;
    border-radius: 50%;
    font-size: 12px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
}

.api-block {
    background: #f4f7fc;
    border-radius: 8px;
    padding: 16px 20px;
    margin: 14px 0;
    font-size: 13px;
    color: #28334b;
    line-height: 1.8;
}

.api-block code {
    font-family: "SFMono-Regular", Consolas, monospace;
    background: #e0e8f5;
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 13px;
    color: #1a6ef5;
}

.api-block pre {
    font-family: "SFMono-Regular", Consolas, monospace;
    font-size: 13px;
    color: #28334b;
    white-space: pre-wrap;
    word-break: break-all;
    margin-top: 8px;
}

.tag-warn {
    display: inline-block;
    background: #fff3e0;
    color: #e65100;
    font-size: 12px;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 4px;
    margin-left: 8px;
    vertical-align: middle;
}
