/* ==========================================================================
   CoachHub – styles. Mobile-first, works in bright gyms (light) and at night (dark).
   ========================================================================== */
:root {
  color-scheme: light;
  --bg: #f4f5f2; --surface: #ffffff; --surface-2: #f0f1ec; --line: #e1e0d9; --line-strong: #c3c2b7;
  --ink: #0b0b0b; --ink-2: #52514e; --muted: #898781;
  --accent: #e8743c; --accent-ink: #ffffff; --accent-soft: #fdeee5;
  --court: #1f7a3d; --court-soft: #e6f4ea;
  --good: #0ca30c; --warn: #fab219; --bad: #d03b3b; --good-text: #006300;
  --series-1: #2a78d6; --series-2: #eb6834; --series-3: #1baf7a; --series-4: #eda100;
  --series-5: #e87ba4; --series-6: #008300; --series-7: #4a3aa7; --series-8: #e34948;
  --radius: 14px; --shadow: 0 1px 2px rgba(0,0,0,.05), 0 4px 14px rgba(0,0,0,.05);
  --nav-h: 62px;
}
[data-theme="dark"] {
  color-scheme: dark;
  --bg: #0f1412; --surface: #1a201d; --surface-2: #232a26; --line: #2c332f; --line-strong: #3d4641;
  --ink: #f4f6f1; --ink-2: #c3c2b7; --muted: #8f958f;
  --accent: #f08a56; --accent-ink: #1a0f08; --accent-soft: #3a2418;
  --court: #2f9e54; --court-soft: #16301f;
  --series-1: #3987e5; --series-2: #d95926; --series-3: #199e70; --series-4: #c98500;
  --series-5: #d55181; --series-6: #008300; --series-7: #9085e9; --series-8: #e66767;
  --shadow: 0 1px 2px rgba(0,0,0,.4), 0 4px 14px rgba(0,0,0,.35);
}
* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body { margin: 0; font-family: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif; background: var(--bg); color: var(--ink); line-height: 1.45; font-size: 15px; }
button, input, select, textarea { font: inherit; color: inherit; }
a { color: var(--series-1); }
h1, h2, h3, h4 { margin: 0 0 8px; line-height: 1.2; }
h1 { font-size: 24px; font-weight: 800; letter-spacing: -.01em; }
h2 { font-size: 18px; font-weight: 750; }
h3 { font-size: 15px; font-weight: 700; }
p { margin: 0 0 10px; }
.muted { color: var(--muted); }
.small { font-size: 13px; }
.hidden { display: none !important; }
.row { display: flex; gap: 10px; align-items: center; flex-wrap: wrap; }
.row.between { justify-content: space-between; }
.grow { flex: 1 1 auto; min-width: 0; }
.stack { display: flex; flex-direction: column; gap: 10px; }
.grid2 { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 12px; }
.grid3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 12px; }

/* ---------- layout ---------- */
.app { display: flex; min-height: 100vh; }
.sidebar { display: none; }
.main { flex: 1; min-width: 0; padding: 16px 16px calc(var(--nav-h) + 24px); max-width: 1100px; margin: 0 auto; width: 100%; }
.topbar { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.topbar .brand { font-weight: 900; letter-spacing: -.02em; font-size: 20px; }
.topbar .brand span { color: var(--accent); }
.bottomnav { position: fixed; left: 0; right: 0; bottom: 0; height: var(--nav-h); background: var(--surface); border-top: 1px solid var(--line);
  display: flex; justify-content: space-around; align-items: stretch; z-index: 20; padding-bottom: env(safe-area-inset-bottom); }
.bottomnav button { flex: 1; border: 0; background: none; color: var(--muted); font-size: 11px; font-weight: 700; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 2px; cursor: pointer; }
.bottomnav button .ic { font-size: 20px; line-height: 1; }
.bottomnav button.active { color: var(--accent); }
@media (min-width: 900px) {
  .sidebar { display: flex; flex-direction: column; width: 220px; background: var(--surface); border-right: 1px solid var(--line); padding: 18px 12px; position: sticky; top: 0; height: 100vh; gap: 4px; }
  .sidebar .brand { font-weight: 900; font-size: 22px; letter-spacing: -.02em; padding: 4px 10px 16px; }
  .sidebar .brand span { color: var(--accent); }
  .sidebar button { border: 0; background: none; text-align: left; padding: 10px 12px; border-radius: 10px; font-weight: 650; color: var(--ink-2); cursor: pointer; display: flex; gap: 10px; align-items: center; }
  .sidebar button:hover { background: var(--surface-2); }
  .sidebar button.active { background: var(--accent-soft); color: var(--ink); }
  .sidebar .foot { margin-top: auto; font-size: 12px; color: var(--muted); padding: 10px 12px; }
  .bottomnav { display: none; }
  .main { padding-bottom: 40px; }
}

/* ---------- team switcher ---------- */
.teamswitch { display: flex; align-items: center; gap: 8px; background: var(--surface); border: 1px solid var(--line); border-radius: 999px; padding: 6px 12px 6px 8px; cursor: pointer; max-width: 100%; }
.teamswitch .dot { width: 14px; height: 14px; border-radius: 50%; flex: none; }
.teamswitch b { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 200px; }

/* ---------- cards ---------- */
.card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 14px 16px; box-shadow: var(--shadow); }
.card + .card { margin-top: 12px; }
.card.flat { box-shadow: none; }
.card h2 { margin-bottom: 10px; }
.card .head { display: flex; align-items: center; justify-content: space-between; gap: 8px; margin-bottom: 8px; }
.tile { display: block; width: 100%; text-align: left; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 14px 16px; cursor: pointer; box-shadow: var(--shadow); transition: transform .1s; }
.tile:active { transform: scale(.99); }
.tile .t { font-weight: 750; font-size: 16px; }
.tile .s { color: var(--muted); font-size: 13px; margin-top: 2px; }
.tile.accent { background: var(--accent); color: var(--accent-ink); border-color: var(--accent); }
.tile.accent .s { color: var(--accent-ink); opacity: .85; }
.stat { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 12px 14px; }
.stat .v { font-size: 26px; font-weight: 800; line-height: 1.1; }
.stat .l { font-size: 12px; color: var(--muted); text-transform: uppercase; letter-spacing: .05em; margin-top: 2px; }
.stat .d { font-size: 12px; margin-top: 4px; }
.stat .d.up { color: var(--good-text); } .stat .d.down { color: var(--bad); }
.hero { font-size: 48px; font-weight: 800; line-height: 1; }

/* ---------- buttons ---------- */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 6px; border: 1px solid var(--line-strong); background: var(--surface); color: var(--ink); padding: 9px 14px; border-radius: 10px; font-weight: 650; cursor: pointer; white-space: nowrap; text-decoration: none; }
.btn:hover { background: var(--surface-2); }
.btn.primary { background: var(--accent); border-color: var(--accent); color: var(--accent-ink); }
.btn.primary:hover { filter: brightness(1.05); }
.btn.court { background: var(--court); border-color: var(--court); color: #fff; }
.btn.danger { color: var(--bad); border-color: var(--bad); background: transparent; }
.btn.ghost { border-color: transparent; background: transparent; }
.btn.sm { padding: 5px 10px; font-size: 13px; border-radius: 8px; }
.btn.xs { padding: 3px 8px; font-size: 12px; border-radius: 7px; }
.btn.block { width: 100%; }
.btn:disabled { opacity: .5; cursor: not-allowed; }
.iconbtn { border: 0; background: none; cursor: pointer; padding: 6px; border-radius: 8px; color: var(--ink-2); font-size: 16px; line-height: 1; }
.iconbtn:hover { background: var(--surface-2); }

/* ---------- forms ---------- */
label.f { display: block; font-size: 13px; font-weight: 650; color: var(--ink-2); margin-bottom: 4px; }
.field { margin-bottom: 12px; }
.field .hint { font-size: 12px; color: var(--muted); margin-top: 3px; }
input[type=text], input[type=number], input[type=date], input[type=password], input[type=url], input[type=search], input[type=time], select, textarea {
  width: 100%; padding: 9px 11px; border: 1px solid var(--line-strong); border-radius: 10px; background: var(--surface); color: var(--ink); }
input:focus, select:focus, textarea:focus { outline: 2px solid var(--accent); outline-offset: 1px; border-color: transparent; }
textarea { min-height: 70px; resize: vertical; }
input.initial { width: 64px; text-align: center; text-transform: uppercase; font-weight: 800; }
.inline-fields { display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); gap: 10px; }
.chips { display: flex; flex-wrap: wrap; gap: 6px; }
.chip { border: 1px solid var(--line-strong); background: var(--surface); border-radius: 999px; padding: 4px 11px; font-size: 13px; cursor: pointer; font-weight: 600; }
.chip.on { background: var(--ink); color: var(--surface); border-color: var(--ink); }
.chip.tag { cursor: default; background: var(--surface-2); border-color: transparent; font-weight: 600; font-size: 12px; }
.chip.cat { cursor: default; border-color: transparent; font-size: 12px; font-weight: 700; }
.toggle { display: inline-flex; border: 1px solid var(--line-strong); border-radius: 10px; overflow: hidden; }
.toggle button { border: 0; background: var(--surface); padding: 7px 12px; cursor: pointer; font-weight: 650; color: var(--ink-2); }
.toggle button.on { background: var(--ink); color: var(--surface); }

/* rating dots 1-5 */
.rate { display: inline-flex; gap: 4px; }
.rate button { width: 34px; height: 34px; border-radius: 50%; border: 1px solid var(--line-strong); background: var(--surface); font-weight: 800; cursor: pointer; color: var(--muted); }
.rate button.on { background: var(--accent); border-color: var(--accent); color: var(--accent-ink); }
.rate.sm button { width: 28px; height: 28px; font-size: 12px; }
@media (max-width: 420px) { .rate button { width: 30px; height: 30px; } }

/* ---------- lists ---------- */
.list { display: flex; flex-direction: column; gap: 8px; }
.item { display: flex; gap: 12px; align-items: center; background: var(--surface); border: 1px solid var(--line); border-radius: 12px; padding: 10px 12px; cursor: pointer; }
.item:hover { border-color: var(--line-strong); }
.item .body { flex: 1; min-width: 0; }
.item .t { font-weight: 700; }
.item .s { color: var(--muted); font-size: 13px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.item .r { text-align: right; font-size: 13px; color: var(--ink-2); flex: none; }
.avatar { width: 38px; height: 38px; border-radius: 50%; background: var(--accent-soft); color: var(--accent); display: flex; align-items: center; justify-content: center; font-weight: 800; flex: none; }
.badge { display: inline-block; font-size: 11px; font-weight: 800; letter-spacing: .04em; text-transform: uppercase; padding: 2px 8px; border-radius: 999px; background: var(--surface-2); color: var(--ink-2); }
.badge.done { background: var(--court-soft); color: var(--good-text); }
.badge.planned { background: #e8f0fb; color: #1c5cab; }
[data-theme="dark"] .badge.planned { background: #1b2c44; color: #86b6ef; }
.badge.today { background: var(--accent); color: var(--accent-ink); }
.pill-cat { display: inline-block; font-size: 11px; font-weight: 700; padding: 2px 8px; border-radius: 6px; color: #fff; white-space: nowrap; }

/* ---------- session builder ---------- */
.blocks { display: flex; flex-direction: column; gap: 8px; }
.block { display: grid; grid-template-columns: 56px 1fr auto; gap: 8px; align-items: start; background: var(--surface); border: 1px solid var(--line); border-radius: 12px; padding: 10px; }
.block.break { background: var(--surface-2); }
.block .mins { width: 56px; text-align: center; font-weight: 800; padding: 8px 4px; }
.block .name { font-weight: 700; margin-bottom: 4px; }
.block .emph { font-size: 13px; color: var(--ink-2); white-space: pre-wrap; }
.block .tools { display: flex; flex-direction: column; gap: 2px; }
.block textarea.emph-edit { min-height: 44px; font-size: 13px; }
.timebar { height: 10px; background: var(--surface-2); border-radius: 999px; overflow: hidden; display: flex; margin: 8px 0 4px; }
.timebar i { display: block; height: 100%; }
.timebar i + i { margin-left: 2px; }
.total { font-weight: 800; }
.total.over { color: var(--bad); }
.total.under { color: var(--warn); }
.total.ok { color: var(--good-text); }
.dragging { opacity: .4; }
.dropzone { border-top: 3px solid var(--accent); }

/* ---------- run mode ---------- */
.run { position: fixed; inset: 0; background: var(--ink); color: var(--surface); z-index: 60; display: flex; flex-direction: column; padding: 18px; }
[data-theme="dark"] .run { background: #0a0d0b; color: #f4f6f1; }
.run .clock { font-size: clamp(64px, 20vw, 140px); font-weight: 900; line-height: 1; text-align: center; font-variant-numeric: tabular-nums; }
.run .clock.warn { color: var(--warn); } .run .clock.over { color: #ff7b7b; }
.run .now { text-align: center; font-size: clamp(22px, 5vw, 34px); font-weight: 800; margin-top: 10px; }
.run .emph { text-align: center; opacity: .8; max-width: 640px; margin: 10px auto; white-space: pre-wrap; }
.run .next { text-align: center; opacity: .6; margin-top: auto; }
.run .ctrls { display: flex; gap: 10px; justify-content: center; margin-top: 16px; flex-wrap: wrap; }
.run .ctrls .btn { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.25); color: inherit; padding: 14px 22px; font-size: 16px; }
.run .ctrls .btn.primary { background: var(--accent); border-color: var(--accent); color: var(--accent-ink); }
.run .prog { display: flex; gap: 3px; margin-bottom: 12px; }
.run .prog i { flex: 1; height: 6px; border-radius: 3px; background: rgba(255,255,255,.2); }
.run .prog i.done { background: var(--court); } .run .prog i.cur { background: var(--accent); }

/* ---------- modal / sheet ---------- */
.modal-bg { position: fixed; inset: 0; background: rgba(0,0,0,.45); z-index: 50; display: flex; align-items: flex-end; justify-content: center; }
.modal { background: var(--surface); width: 100%; max-width: 640px; max-height: 92vh; overflow: auto; border-radius: 18px 18px 0 0; padding: 18px 18px 26px; }
@media (min-width: 700px) { .modal-bg { align-items: center; } .modal { border-radius: 18px; max-height: 88vh; } }
.modal .head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 12px; }
.modal .actions { display: flex; gap: 8px; justify-content: flex-end; margin-top: 14px; flex-wrap: wrap; }
.toast { position: fixed; left: 50%; bottom: calc(var(--nav-h) + 14px); transform: translateX(-50%); background: var(--ink); color: var(--surface); padding: 10px 16px; border-radius: 999px; font-weight: 650; z-index: 70; box-shadow: var(--shadow); max-width: 92vw; }
@media (min-width: 900px) { .toast { bottom: 24px; } }

/* ---------- charts ---------- */
.chart { position: relative; width: 100%; }
.chart svg { display: block; overflow: visible; }
.chart .grid { stroke: var(--line); stroke-width: 1; }
.chart .tick { font-size: 11px; fill: var(--muted); font-family: inherit; font-variant-numeric: tabular-nums; }
.chart .value { font-size: 12px; fill: var(--ink-2); font-weight: 650; font-family: inherit; }
.chart .endlabel { font-size: 12px; fill: var(--ink-2); font-weight: 700; font-family: inherit; }
.chart .ring { fill: var(--surface); }
.chart-tip { position: absolute; background: var(--ink); color: var(--surface); font-size: 12px; padding: 6px 9px; border-radius: 8px; pointer-events: none; z-index: 5; white-space: nowrap; }
.chart-legend { display: flex; flex-wrap: wrap; gap: 6px 14px; font-size: 12px; color: var(--ink-2); margin-top: 6px; }
.chart-legend i { display: inline-block; width: 10px; height: 10px; border-radius: 3px; margin-right: 5px; vertical-align: -1px; }
.chart-empty { color: var(--muted); padding: 24px; text-align: center; border: 1px dashed var(--line-strong); border-radius: 12px; }
table.tbl { width: 100%; border-collapse: collapse; font-size: 13px; }
table.tbl th, table.tbl td { text-align: left; padding: 7px 8px; border-bottom: 1px solid var(--line); vertical-align: top; }
table.tbl th { color: var(--muted); font-weight: 700; font-size: 11px; text-transform: uppercase; letter-spacing: .05em; }
table.tbl td.num { text-align: right; font-variant-numeric: tabular-nums; }
.tblwrap { overflow-x: auto; }

/* ---------- week grid ---------- */
.weeks { display: flex; flex-direction: column; gap: 10px; }
.week { border: 1px solid var(--line); border-radius: 12px; background: var(--surface); }
.week .wh { display: flex; justify-content: space-between; align-items: center; padding: 8px 12px; border-bottom: 1px solid var(--line); font-weight: 750; }
.week .wh .muted { font-weight: 500; }
.week .wb { padding: 8px 12px; display: flex; flex-direction: column; gap: 6px; }
.week.current { border-color: var(--accent); }

/* ---------- help ---------- */
.help h3 { margin-top: 16px; }
.help ol, .help ul { padding-left: 20px; }
.help li { margin-bottom: 4px; }
.notice { background: var(--court-soft); border-left: 4px solid var(--court); padding: 10px 12px; border-radius: 8px; font-size: 14px; }
.notice.warn { background: var(--accent-soft); border-color: var(--accent); }

/* ---------- lock screen ---------- */
.lock { position: fixed; inset: 0; background: var(--bg); z-index: 90; display: flex; align-items: center; justify-content: center; padding: 20px; }
.lock .card { width: 100%; max-width: 360px; text-align: center; }

/* ---------- print ---------- */
@media print {
  .sidebar, .bottomnav, .topbar, .noprint, .btn, .iconbtn { display: none !important; }
  body { background: #fff; color: #000; font-size: 12px; }
  .main { padding: 0; max-width: none; }
  .card { box-shadow: none; border-color: #999; break-inside: avoid; }
  .block { break-inside: avoid; border-color: #bbb; }
  .print-only { display: block !important; }
}
.print-only { display: none; }
.badge.loss { background: #fbe4e4; color: #9c1f1f; }
[data-theme="dark"] .badge.loss { background: #3d1d1d; color: #f0a0a0; }

/* ---------- diagrams ---------- */
.dg-wrap { max-width: 420px; margin: 0 auto; }
.dg-wrap.edit { touch-action: none; }
svg.diagram { width: 100%; height: auto; display: block; border-radius: 10px; overflow: visible; }
svg.diagram .floor { fill: #f3e2c8; }
[data-theme="dark"] svg.diagram .floor { fill: #3a2f22; }
svg.diagram .ln { fill: none; stroke: #8a6a3f; stroke-width: 0.8; }
svg.diagram .ln.thick { stroke-width: 1.6; }
svg.diagram .o { fill: var(--accent); stroke: #fff; stroke-width: 0.8; }
svg.diagram .x { stroke: var(--series-1); stroke-width: 2; fill: none; stroke-linecap: round; }
svg.diagram .c { fill: var(--ink); }
svg.diagram .cone { fill: var(--series-4); }
svg.diagram .lbl { font-size: 5.5px; font-weight: 800; text-anchor: middle; fill: #fff; font-family: inherit; pointer-events: none; }
svg.diagram .lbl.x-lbl { fill: var(--series-1); text-anchor: start; font-size: 4.5px; }
svg.diagram .hit { fill: transparent; }
svg.diagram.edit .piece { cursor: grab; }
svg.diagram .selring { fill: none; stroke: var(--ink); stroke-width: 0.8; stroke-dasharray: 2 1.5; }
svg.diagram .mv { fill: none; stroke: var(--ink); stroke-width: 1.1; stroke-linecap: round; stroke-linejoin: round; }
svg.diagram .mv.thick { stroke-width: 1.8; }
svg.diagram .mv.pass { stroke-dasharray: 3 2; }
svg.diagram .arrow.head { fill: var(--ink); }
svg.diagram .ballc { fill: #e8743c; stroke: #5a2d0c; stroke-width: 0.5; }
svg.diagram .balll { stroke: #5a2d0c; stroke-width: 0.5; fill: none; }
.dg-bar { display: flex; gap: 8px; align-items: center; justify-content: center; margin-top: 8px; flex-wrap: wrap; }
.dg-tools { display: flex; gap: 6px; flex-wrap: wrap; align-items: center; margin-bottom: 8px; }
.dg-frames { display: flex; gap: 6px; flex-wrap: wrap; margin-top: 8px; }

/* ---------- team playbook ---------- */
.pb .card { margin-top: 12px; }
.pb-header { display: flex; align-items: center; gap: 14px; padding: 18px 16px; border-radius: var(--radius); background: var(--surface); border: 1px solid var(--line); border-left: 8px solid var(--team, var(--accent)); }
.pb-header h1 { margin: 0; }
.pb-badge { width: 52px; height: 52px; border-radius: 14px; background: var(--team, var(--accent)); color: #fff; font-weight: 900; font-size: 24px; display: flex; align-items: center; justify-content: center; flex: none; }
.pb-two { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 12px; }
.pb-two .card { margin-top: 12px; }
.pb ul { padding-left: 20px; margin: 4px 0 0; }
.pb li { margin-bottom: 4px; }
.pb-play { border-top: 1px solid var(--line); padding: 14px 0 6px; }
.pb-play:first-of-type { border-top: 0; }
.pb-play h3 { margin: 0; font-size: 17px; }
.pb-play h4 { margin: 10px 0 4px; font-size: 13px; text-transform: uppercase; letter-spacing: .05em; color: var(--muted); }
.pb-play-head { display: flex; gap: 10px; align-items: center; margin-bottom: 6px; }
.pb-num { width: 28px; height: 28px; border-radius: 50%; background: var(--accent); color: var(--accent-ink); font-weight: 800; display: flex; align-items: center; justify-content: center; flex: none; }
.pb-dg { margin: 8px 0; }
.pb-video { aspect-ratio: 16/9; max-width: 100%; border-radius: 10px; overflow: hidden; margin: 8px 0; }
.pb-video iframe { width: 100%; height: 100%; }
.pb-foot { text-align: center; margin-top: 20px; }
.pb-item { display: grid; grid-template-columns: 28px 1fr auto; gap: 8px; align-items: start; background: var(--surface); border: 1px solid var(--line); border-radius: 12px; padding: 10px; }
.pb-item .n { width: 28px; height: 28px; border-radius: 50%; background: var(--surface-2); font-weight: 800; display: flex; align-items: center; justify-content: center; font-size: 13px; }
@media print { .pb-header { border: 0; padding: 0 0 10px; } .pb .card { border: 0; box-shadow: none; padding: 0; margin-top: 16px; } .dg-bar { display: none !important; } .pb-play { break-inside: avoid; } }
.pb-motto { font-weight: 900; letter-spacing: .04em; text-transform: uppercase; color: var(--team, var(--accent)); margin-top: 6px; }
.pb-motto-end { text-align: center; font-size: 22px; margin-top: 24px; }
.pb-nn { border-left: 6px solid var(--team, var(--accent)); }
.pb-nn ol { padding-left: 0; margin: 6px 0 0; list-style: none; counter-reset: nn; }
.pb-nn li { counter-increment: nn; display: flex; gap: 12px; align-items: flex-start; padding: 8px 0; border-top: 1px solid var(--line); font-weight: 600; font-size: 15px; }
.pb-nn li::before { content: counter(nn); width: 26px; height: 26px; border-radius: 50%; background: var(--team, var(--accent)); color: #fff; font-weight: 800; font-size: 13px; display: flex; align-items: center; justify-content: center; flex: none; }
.dg-note { text-align: center; font-weight: 600; margin-top: 8px; padding: 6px 10px; background: var(--surface-2); border-radius: 8px; }
.dg-notes-print { padding-left: 20px; margin: 8px 0 0; font-size: 12px; }

.brand .byline { display: block; font-size: 10px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); line-height: 1; margin-top: 1px; }
.sidebar .brand .byline { font-size: 11px; }
