/* Стили статей блога */
.post-shell { max-width: 760px; margin: 0 auto; padding: 32px 24px 100px; position: relative; z-index: 1; }
.post-back { display: inline-block; color: var(--text-dim); margin-bottom: 24px; font-size: 14px; }
.post-back:hover { color: var(--accent-hi); }
.post-tag {
    display: inline-block;
    padding: 4px 10px;
    background: rgba(140,110,255,0.15);
    color: var(--accent-hi);
    border-radius: 999px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    margin-bottom: 16px;
}
.post-shell h1 {
    font-size: 36px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 14px;
}
.post-meta {
    color: var(--text-dim);
    font-size: 14px;
    margin-bottom: 32px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border);
}
.post-shell h2 {
    font-size: 24px;
    font-weight: 700;
    margin: 38px 0 14px;
    color: var(--text);
}
.post-shell h3 {
    font-size: 19px;
    font-weight: 700;
    margin: 28px 0 10px;
    color: var(--text);
}
.post-shell p { color: var(--text); font-size: 16px; line-height: 1.7; margin-bottom: 16px; }
.post-shell ul, .post-shell ol { margin: 0 0 18px 22px; color: var(--text); }
.post-shell li { line-height: 1.7; margin-bottom: 6px; }
.post-shell strong { color: var(--accent-hi); }
.post-shell code {
    background: var(--panel-2);
    color: var(--accent-hi);
    padding: 2px 6px;
    border-radius: 4px;
    font-family: 'Consolas', 'Courier New', monospace;
    font-size: 0.9em;
}
.post-shell pre {
    background: var(--panel);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 18px;
    overflow-x: auto;
    margin: 18px 0;
    font-family: 'Consolas', 'Courier New', monospace;
    font-size: 13px;
    color: var(--text);
}
.post-shell pre code { background: none; padding: 0; color: inherit; }

.callout {
    background: var(--panel);
    border-left: 3px solid var(--accent);
    border-radius: 8px;
    padding: 14px 18px;
    margin: 22px 0;
    font-size: 14px;
}
.callout-warn { border-left-color: var(--orange); }
.callout-good { border-left-color: var(--green); }

.cta-block {
    background: linear-gradient(120deg, var(--accent-deep), var(--accent));
    border-radius: 16px;
    padding: 28px;
    margin: 40px 0 0;
    text-align: center;
}
.cta-block h3 { color: #fff; font-size: 20px; margin-bottom: 8px; }
.cta-block p { color: rgba(255,255,255,0.85); margin-bottom: 14px; font-size: 14px; }
.cta-block .btn-primary { background: #fff; color: var(--accent-deep); font-weight: 700; }

.fps-bars { margin: 18px 0; }
.fps-bar { display: flex; align-items: center; gap: 12px; margin-bottom: 10px; }
.fps-bar .lbl { width: 110px; font-weight: 600; font-size: 13px; }
.fps-bar .track { flex: 1; height: 22px; background: var(--panel-2); border-radius: 6px; overflow: hidden; }
.fps-bar .fill { height: 100%; border-radius: 6px; }
.fps-bar .fill.low  { background: linear-gradient(90deg, var(--red), #ff6f6f); }
.fps-bar .fill.high { background: linear-gradient(90deg, var(--green), #6affb0); }
.fps-bar .val { width: 70px; text-align: right; font-weight: 700; font-size: 14px; }
