/* highlight.js (github-dark) inside blog articles — tuned for terminal shell */
.blog-post pre:has(code.hljs) {
    margin: 1em 0;
    padding: 0;
    border: 1px solid #2d3250;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.35);
}

.blog-post pre code.hljs {
    display: block;
    padding: 14px 16px;
    margin: 0;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    font-size: 12px;
    line-height: 1.55;
    tab-size: 4;
    white-space: pre;
    word-break: normal;
}

@media (max-width: 700px) {
    .blog-post pre code.hljs {
        font-size: 11px;
        padding: 12px 12px;
    }
}
