diff --git a/app/index.html b/app/index.html
index 02baae5..e988df0 100644
--- a/app/index.html
+++ b/app/index.html
@@ -145,19 +145,20 @@
/* ── Document header ────────────────────────────────────────────────────── */
.kb-header {
- display: flex; justify-content: space-between; align-items: flex-start;
- gap: 24px; padding-bottom: 20px; margin-bottom: 22px;
+ display: flex; justify-content: space-between; align-items: center;
+ gap: 16px; padding-bottom: 14px; margin-bottom: 20px;
border-bottom: 1px solid var(--border);
}
- .kb-brand { display: flex; align-items: center; gap: 12px; min-width: 0; }
+ .kb-brand { display: flex; align-items: center; gap: 9px; min-width: 0; }
.kb-brand .logo {
- height: 42px; width: 42px; flex: 0 0 42px; border-radius: 10px;
- display: grid; place-items: center;
- background: var(--accent-soft); color: var(--accent); overflow: hidden;
+ height: 28px; width: 28px; flex: 0 0 28px; border-radius: 7px;
+ display: grid; place-items: center; overflow: hidden; opacity: .82;
+ }
+ .kb-brand .logo svg { width: 28px; height: 28px; display: block; }
+ .kb-brand .org {
+ font-size: 12px; font-weight: 500; color: var(--text-muted);
+ letter-spacing: -0.01em; opacity: .7;
}
- .kb-brand .logo svg { width: 20px; height: 20px; }
- .kb-brand .org { font-size: 16px; font-weight: 700; color: var(--text); letter-spacing: -0.01em; }
- .kb-brand .org small { display: block; font-size: var(--fs-small); font-weight: 400; color: var(--text-muted); letter-spacing: 0; }
.kb-doctitle { text-align: right; }
.kb-doctitle h1 { margin: 0; font-size: var(--fs-h1); font-weight: 700; letter-spacing: -0.01em; color: var(--text); }
@@ -335,7 +336,6 @@
/* ── Responsive ─────────────────────────────────────────────────────────── */
@media (max-width: 680px) {
.kb-grid.cols-2, .kb-grid.cols-3 { grid-template-columns: 1fr; }
- .kb-header { flex-direction: column; gap: 14px; }
.kb-doctitle { text-align: left; }
.inv-lines-head { display: none; }
.inv-line { grid-template-columns: 1fr 1fr; gap: 6px 8px; }
@@ -370,15 +370,16 @@