/* ClubFellow web dashboard stylesheet.
   Served hashed + compressed by WhiteNoise (CompressedManifestStaticFilesStorage),
   so it is cacheable across pages — previously this lived as an inline <style>
   block re-sent with every response. Fonts are self-hosted in fonts.css. */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --bg:       #09090E;
  --surface:  #101017;
  --raised:   #17171F;
  --line:     #1F1F2B;
  --t1:       #F4F4F6;
  --t2:       #6B6B7A;
  --t3:       #3A3A4A;
  --accent:   #C8F96B;
  --green:    #34C759;
  --red:      #FF453A;
}
body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--bg);
  color: var(--t1);
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3 { font-family: 'Manrope', system-ui, sans-serif; font-weight: 700; letter-spacing: -0.02em; }

/* Nav */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  height: 56px;
  border-bottom: 1px solid var(--line);
  background: var(--surface);
  position: sticky;
  top: 0;
  z-index: 10;
}
.nav-brand {
  font-family: 'Manrope', sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--t1);
  text-decoration: none;
}
.nav-brand span { color: var(--accent); }
.nav-right { display: flex; align-items: center; gap: 16px; }
.nav-user { font-size: 13px; color: var(--t2); }
.nav-logout {
  font-size: 13px;
  color: var(--t2);
  text-decoration: none;
  padding: 6px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  transition: color 0.15s, border-color 0.15s;
}
.nav-logout:hover { color: var(--t1); border-color: var(--t3); }

/* Layout */
.page { max-width: 760px; margin: 0 auto; padding: 40px 24px 80px; }

/* Cards */
.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 28px;
}
.card + .card { margin-top: 16px; }

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition: opacity 0.15s;
}
.btn:hover { opacity: 0.85; }
.btn-primary { background: var(--accent); color: #09090E; }
.btn-outline {
  background: transparent;
  color: var(--t1);
  border: 1px solid var(--line);
}
.btn-outline:hover { border-color: var(--t2); }
.btn-sm { padding: 8px 16px; font-size: 13px; }

/* Badges */
.badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
}
.badge-pro { background: rgba(200,249,107,0.15); color: var(--accent); }
.badge-free { background: var(--raised); color: var(--t2); }
.badge-ok { background: rgba(52,199,89,0.15); color: var(--green); }
.badge-warn { background: rgba(255,69,58,0.12); color: var(--red); }

/* Table */
table { width: 100%; border-collapse: collapse; font-size: 14px; }
th { text-align: left; padding: 10px 0; color: var(--t2); font-weight: 500; font-size: 12px; text-transform: uppercase; letter-spacing: 0.05em; border-bottom: 1px solid var(--line); }
td { padding: 12px 0; border-bottom: 1px solid var(--line); color: var(--t1); }
tr:last-child td { border-bottom: none; }

/* Form */
label { display: block; font-size: 13px; font-weight: 500; color: var(--t2); margin-bottom: 6px; }
input[type="email"], input[type="password"], input[type="text"], input[type="number"], select {
  width: 100%;
  background: var(--raised);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 12px 14px;
  font-size: 14px;
  color: var(--t1);
  outline: none;
  transition: border-color 0.15s;
}
input:focus, select:focus { border-color: var(--accent); }
input:focus-visible, select:focus-visible, textarea:focus-visible {
  border-color: var(--accent);
  box-shadow: 0 0 0 2px rgba(200,249,107,0.25);
}
.field { margin-bottom: 18px; }

.error-msg {
  background: rgba(255,69,58,0.1);
  border: 1px solid rgba(255,69,58,0.25);
  color: var(--red);
  padding: 12px 16px;
  border-radius: 10px;
  font-size: 14px;
  margin-bottom: 20px;
}
.notice-msg {
  background: rgba(52,199,89,0.1);
  border: 1px solid rgba(52,199,89,0.25);
  color: var(--green);
  padding: 12px 16px;
  border-radius: 10px;
  font-size: 14px;
  margin-bottom: 20px;
}

/* Buttons — sizes, full width, loading spinner */
.btn-lg { width: 100%; padding: 15px 24px; font-size: 15px; }
.btn[disabled], .btn.is-loading { opacity: 0.7; pointer-events: none; }
.btn .spinner {
  display: none; width: 14px; height: 14px; vertical-align: -2px; margin-right: 8px;
  border: 2px solid rgba(9,9,14,0.25); border-top-color: #09090E; border-radius: 50%;
  animation: spin 0.6s linear infinite;
}
.btn.is-loading .spinner { display: inline-block; }
@keyframes spin { to { transform: rotate(360deg); } }

/* Page head */
.page-head { margin-bottom: 28px; }
.page-head h1 { font-size: 24px; margin-bottom: 6px; }
.muted { color: var(--t2); }
.card-title { font-size: 14px; font-weight: 600; margin-bottom: 16px; }
.back-link { font-size: 13px; color: var(--t2); text-decoration: none; }
.back-link:hover { color: var(--t1); }

/* Plan selector */
.plan-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.plan-card {
  position: relative; display: block; cursor: pointer;
  background: var(--raised); border: 1.5px solid var(--line);
  border-radius: 14px; padding: 20px 18px;
  transition: border-color 0.15s, background 0.15s;
}
.plan-card:hover { border-color: var(--t3); }
.plan-card.selected { border-color: var(--accent); background: rgba(200,249,107,0.06); }
.plan-card input { position: absolute; opacity: 0; pointer-events: none; }
/* The radio is visually hidden, so mirror its keyboard focus onto the card. */
.plan-card:has(input:focus-visible) {
  border-color: var(--accent);
  box-shadow: 0 0 0 2px rgba(200,249,107,0.25);
}
.plan-name { font-size: 12px; color: var(--t2); font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; }
.plan-price { font-family: 'Manrope', sans-serif; font-size: 28px; font-weight: 700; margin-top: 10px; line-height: 1; }
.plan-price small { font-size: 13px; color: var(--t2); font-weight: 500; }
.plan-sub { font-size: 13px; color: var(--t2); margin-top: 8px; }
.plan-sub .save { color: var(--accent); font-weight: 600; }
.plan-check {
  position: absolute; top: 16px; right: 16px; width: 20px; height: 20px;
  border-radius: 50%; border: 1.5px solid var(--t3);
  display: flex; align-items: center; justify-content: center;
}
.plan-card.selected .plan-check { border-color: var(--accent); background: var(--accent); }
.plan-check svg { opacity: 0; }
.plan-card.selected .plan-check svg { opacity: 1; }

/* Feature grid */
.feature-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px 20px; }
.feature-item { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: var(--t2); line-height: 1.4; }
.feature-item svg { flex-shrink: 0; margin-top: 2px; }

/* Trust row */
.trust-row { display: flex; flex-wrap: wrap; gap: 8px 18px; justify-content: center; font-size: 12px; color: var(--t3); margin-top: 18px; }
.trust-row span { display: inline-flex; align-items: center; gap: 6px; }

/* OAuth buttons + divider */
.btn-oauth {
  width: 100%; display: flex; align-items: center; justify-content: center; gap: 10px;
  padding: 12px 16px; margin-bottom: 10px; border-radius: 10px;
  background: var(--raised); color: var(--t1); border: 1px solid var(--line);
  font-size: 14px; font-weight: 600; font-family: inherit; cursor: pointer;
  transition: border-color 0.15s, background 0.15s;
}
.btn-oauth:hover { border-color: var(--t3); background: var(--surface); }
.btn-oauth svg { width: 18px; height: 18px; }
.oauth-divider { display: flex; align-items: center; gap: 12px; margin: 22px 0; color: var(--t3); font-size: 12px; text-transform: uppercase; letter-spacing: 0.05em; }
.oauth-divider::before, .oauth-divider::after { content: ""; flex: 1; height: 1px; background: var(--line); }
.auth-links { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px; margin-top: 18px; font-size: 13px; }
.auth-links a { color: var(--t2); text-decoration: none; }
.auth-links a:hover { color: var(--accent); }

/* Centered status pages (success / cancel / error) */
.center-card { max-width: 440px; margin: 56px auto; text-align: center; }
.status-icon { width: 64px; height: 64px; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 24px; }
.status-icon.ok { background: rgba(200,249,107,0.12); }
.status-icon.err { background: rgba(255,69,58,0.12); }

/* Footer */
.footer { max-width: 760px; margin: 0 auto; padding: 28px 24px; text-align: center; color: var(--t3); font-size: 12px; }
.footer a { color: var(--t2); text-decoration: none; }
.footer a:hover { color: var(--t1); }

/* Mobile: stack the billing-history table into labelled rows */
@media (max-width: 520px) {
  .plan-grid, .feature-grid { grid-template-columns: 1fr; }
  .page { padding: 28px 18px 64px; }
  table thead { display: none; }
  table, tbody, tr, td { display: block; width: 100%; }
  tr { border-bottom: 1px solid var(--line); padding: 10px 0; }
  tr:last-child td { border-bottom: none; }
  td { border: none; padding: 3px 0; display: flex; justify-content: space-between; gap: 16px; text-align: right; }
  td::before { content: attr(data-label); color: var(--t2); font-size: 12px; text-transform: uppercase; letter-spacing: 0.04em; }
}

/* ── Club list page ──────────────────────────────────────────────────────── */
.club-row:hover { background: var(--raised); }

/* ── Settings page ───────────────────────────────────────────────────────── */
.settings-section-label {
  font-size: 11px;
  font-weight: 600;
  color: var(--t2);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 14px;
}
textarea {
  width: 100%;
  background: var(--raised);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 12px 14px;
  font-size: 14px;
  color: var(--t1);
  font-family: inherit;
  resize: vertical;
  outline: none;
  transition: border-color 0.15s;
}
textarea:focus { border-color: var(--accent); }

/* Image upload widget */
.img-row {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.img-thumb {
  width: 84px;
  height: 84px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: var(--raised);
  background-size: cover;
  background-position: center;
  flex-shrink: 0;
}
.img-thumb--cover {
  width: 160px;
  height: 84px;
  border-radius: 10px;
}
.img-thumb--empty {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--t3);
  font-size: 12px;
}
.img-actions {
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
  min-width: 200px;
}
.img-hint {
  font-size: 12px;
  color: var(--t2);
}
.file-input {
  font-size: 13px;
  color: var(--t2);
}
.file-input::file-selector-button {
  padding: 6px 14px;
  margin-right: 10px;
  background: var(--raised);
  color: var(--t1);
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: 13px;
  cursor: pointer;
}
.file-input::file-selector-button:hover { border-color: var(--t2); }

.btn[disabled], .btn:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

/* Visibility radio cards */
.vis-card {
  flex: 1;
  min-width: 220px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 10px;
  cursor: pointer;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  transition: border-color 0.12s, background 0.12s;
}
.vis-card:hover { border-color: var(--t2); }
.vis-card:has(input:focus-visible) {
  border-color: var(--accent);
  box-shadow: 0 0 0 2px rgba(200,249,107,0.25);
}
.vis-card input[type="radio"] { width: auto; margin-top: 3px; }
.vis-card input[type="radio"]:checked + span .vis-title { color: var(--accent); }

/* Two-up grid for short paired fields (founded year + accent colour) */
.settings-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
@media (max-width: 520px) { .settings-grid { grid-template-columns: 1fr; } }

/* Accent-colour picker + hex text input side by side */
.color-row { display: flex; align-items: center; gap: 10px; }
.color-row input[type="text"] { flex: 1; }
.color-row input[type="color"] {
  width: 40px; height: 40px; padding: 0; flex-shrink: 0;
  background: var(--raised); border: 1px solid var(--line);
  border-radius: 10px; cursor: pointer;
}

/* ── Page patterns & utilities ───────────────────────────────────────────────
   Replacements for the former style="" attributes, so the CSP can drop
   'unsafe-inline' from style-src on every page except the login page (which
   hosts the third-party OAuth button SDKs). */

.page-title { font-size: 26px; margin-bottom: 8px; }
.page-title-sm { font-size: 24px; margin-bottom: 8px; }
.page-lead { font-size: 14px; color: var(--t2); margin-bottom: 32px; }
.page-lead--tight { margin-bottom: 28px; }
.page-head--row { display: flex; align-items: flex-start; justify-content: space-between; gap: 16px; flex-wrap: wrap; }

.auth-card { max-width: 400px; margin: 56px auto; }
.auth-card--tall { margin-top: 80px; margin-bottom: 80px; }
.center-card--tall { margin-top: 80px; margin-bottom: 80px; }

.status-title { font-size: 22px; margin-bottom: 12px; }
.status-text { font-size: 14px; color: var(--t2); margin-bottom: 28px; }
.status-note { font-size: 12px; margin-top: 18px; }
.status-icon.ok-green { background: rgba(52,199,89,0.15); }

.oauth-center { display: flex; justify-content: center; margin-bottom: 10px; }
.oauth-hint { font-size: 12px; text-align: center; margin-top: 12px; }
.btn-full { width: 100%; }
.back-link--block { display: inline-block; margin-bottom: 18px; }
.back-row { display: flex; align-items: center; gap: 12px; margin-bottom: 28px; }

/* Club detail */
.plan-current { display: flex; align-items: center; gap: 10px; margin-top: 8px; }
.plan-current-name { font-size: 22px; font-weight: 700; font-family: 'Manrope', sans-serif; }
.plan-expiry { font-size: 13px; margin-top: 10px; }
.plan-renew-note { font-size: 13px; margin-top: 14px; padding-top: 14px; border-top: 1px solid var(--line); }
.receipt-link { color: var(--accent); text-decoration: none; }

/* Club list */
.card--flush { padding: 0; overflow: hidden; }
.card--empty { text-align: center; padding: 48px; }
.empty-title { font-size: 16px; font-weight: 600; color: var(--t1); margin-bottom: 8px; }
.empty-sub { font-size: 14px; line-height: 1.5; max-width: 420px; margin: 0 auto; }
.empty-actions { margin-top: 20px; }
.club-row {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 18px 24px; text-decoration: none; color: var(--t1);
  transition: background 0.12s;
}
.club-row + .club-row { border-top: 1px solid var(--line); }
.club-row-name { font-weight: 600; font-size: 15px; }
.club-row-meta { font-size: 13px; margin-top: 2px; }

/* Settings */
.vis-row { display: flex; gap: 12px; flex-wrap: wrap; }
.vis-title { display: block; font-size: 14px; color: var(--t1); font-weight: 500; }
.vis-desc { display: block; font-size: 12px; color: var(--t2); margin-top: 2px; }
.check-row { display: flex; align-items: center; gap: 10px; cursor: pointer; }
.check-row input { width: auto; }
.check-row-label { font-size: 14px; color: var(--t1); }
.join-code-row { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.join-code { font-family: 'Manrope', monospace; font-size: 22px; font-weight: 700; letter-spacing: 2px; color: var(--accent); }
.join-code-hint { font-size: 12px; color: var(--t2); margin-top: 8px; max-width: 420px; }
.btn-row { display: flex; gap: 10px; flex-wrap: wrap; }
img.img-thumb { object-fit: cover; display: block; }

/* ── Per-club shell (sidebar + content) ──────────────────────────────────────
   The shell pages need more width than the 760px billing column, so a page
   that contains `.club-shell` opts into a wider track via `.page:has()`. */
.page:has(.club-shell) { max-width: 1040px; }

.club-shell { display: grid; grid-template-columns: 220px 1fr; gap: 32px; align-items: start; }

.club-nav { position: sticky; top: 72px; }

/* Club switcher */
.club-switcher { position: relative; margin-bottom: 20px; }
.club-switcher-btn {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  gap: 8px; background: var(--surface); color: var(--t1);
  border: 1px solid var(--line); border-radius: 10px;
  padding: 10px 12px; font-size: 14px; font-weight: 600; font-family: inherit;
  cursor: pointer; transition: border-color 0.15s;
}
.club-switcher-btn:hover { border-color: var(--t3); }
.club-switcher-name { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.club-switcher-caret { flex-shrink: 0; color: var(--t2); transition: transform 0.15s; }
.club-switcher.is-open .club-switcher-caret { transform: rotate(180deg); }
.club-switcher-menu {
  position: absolute; top: calc(100% + 6px); left: 0; right: 0; z-index: 20;
  background: var(--raised); border: 1px solid var(--line); border-radius: 10px;
  padding: 6px; box-shadow: 0 12px 32px rgba(0,0,0,0.45); max-height: 320px; overflow-y: auto;
}
.club-switcher-item {
  display: flex; align-items: center; justify-content: space-between; gap: 10px;
  padding: 9px 10px; border-radius: 7px; font-size: 14px;
  color: var(--t1); text-decoration: none;
}
.club-switcher-item:hover { background: var(--surface); }
.club-switcher-item.is-current { color: var(--accent); }

/* Section nav (sidebar on desktop, scrolling tab bar on mobile) */
.club-sections { display: flex; flex-direction: column; gap: 2px; }
.club-section {
  padding: 9px 12px; border-radius: 8px; font-size: 14px; font-weight: 500;
  color: var(--t2); text-decoration: none; transition: background 0.12s, color 0.12s;
}
.club-section:hover { background: var(--surface); color: var(--t1); }
.club-section.is-active { background: rgba(200,249,107,0.10); color: var(--accent); font-weight: 600; }

.club-main { min-width: 0; }

@media (max-width: 760px) {
  .club-shell { grid-template-columns: 1fr; gap: 20px; }
  .club-nav { position: static; }
  .club-sections {
    flex-direction: row; gap: 4px; overflow-x: auto;
    margin: 0 -18px; padding: 0 18px 4px;
    -webkit-overflow-scrolling: touch;
  }
  .club-section { white-space: nowrap; }
}

/* Stat cards */
.stat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-bottom: 16px; }
@media (max-width: 600px) { .stat-grid { grid-template-columns: 1fr; } }
.stat-card { background: var(--surface); border: 1px solid var(--line); border-radius: 14px; padding: 20px; }
.stat-label { font-size: 12px; font-weight: 600; color: var(--t2); text-transform: uppercase; letter-spacing: 0.05em; }
.stat-value { font-family: 'Manrope', sans-serif; font-size: 30px; font-weight: 700; line-height: 1; margin-top: 12px; }
.stat-sub { font-size: 13px; margin-top: 8px; }

/* Quick links (Overview → manage) */
.quick-links { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
@media (max-width: 520px) { .quick-links { grid-template-columns: 1fr; } }
.quick-link {
  display: block; padding: 16px; border: 1px solid var(--line); border-radius: 12px;
  background: var(--raised); text-decoration: none; transition: border-color 0.12s;
}
.quick-link:hover { border-color: var(--t3); }
.quick-link-title { display: block; font-size: 14px; font-weight: 600; color: var(--t1); }
.quick-link-sub { display: block; font-size: 13px; margin-top: 4px; }

/* Payments: Stripe Connect card + table detail */
.connect-row { display: flex; align-items: flex-start; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.connect-status { flex: 1; min-width: 220px; }
.connect-hint { font-size: 13px; line-height: 1.5; margin-top: 10px; max-width: 440px; }
.pay-member-name { font-weight: 500; }
.pay-member-email { font-size: 12px; margin-top: 2px; }
.pay-refunded { font-size: 12px; margin-top: 2px; }

/* Analytics Pro teaser: blurred sample numbers behind an upgrade card */
.teaser { position: relative; border-radius: 16px; overflow: hidden; }
.teaser-blur { filter: blur(7px); opacity: 0.5; pointer-events: none; user-select: none; }
.teaser-overlay {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  background: rgba(9,9,14,0.45); padding: 24px;
}
.teaser-card {
  text-align: center; max-width: 420px;
  background: var(--surface); border: 1px solid var(--line);
  border-radius: 16px; padding: 32px 28px;
}
.teaser-card .status-icon { margin-bottom: 16px; }
.teaser-card .btn { margin-top: 8px; }

/* Members: claims, search, roster */
.claim-row {
  display: flex; align-items: flex-start; justify-content: space-between; gap: 16px;
  padding: 16px 0; border-bottom: 1px solid var(--line); flex-wrap: wrap;
}
.claim-row:last-child { border-bottom: none; padding-bottom: 0; }
.claim-info { flex: 1; min-width: 200px; }
.claim-name { font-weight: 600; font-size: 15px; }
.claim-meta { font-size: 13px; margin-top: 3px; }
.claim-note { font-size: 13px; margin-top: 6px; font-style: italic; }
.claim-actions { display: flex; gap: 8px; flex-shrink: 0; }

.member-search { display: flex; align-items: center; gap: 10px; margin-bottom: 20px; flex-wrap: wrap; }
.member-search input { flex: 1; min-width: 200px; }
.member-search-clear { white-space: nowrap; }
.member-inactive td { opacity: 0.55; }

/* Announcements composer + recent posts */
.composer-meta { display: flex; align-items: baseline; justify-content: space-between; gap: 16px; margin-top: 8px; flex-wrap: wrap; }
.char-count { font-size: 12px; font-variant-numeric: tabular-nums; }
.char-count.char-over { color: var(--red); font-weight: 600; }
.composer-hint { font-size: 12px; }
.composer-hint a { color: var(--accent); text-decoration: none; }
.post-row { padding: 16px 0; border-bottom: 1px solid var(--line); }
.post-row:last-child { border-bottom: none; padding-bottom: 0; }
.post-head { display: flex; align-items: center; gap: 8px; }
.post-title { font-weight: 600; font-size: 15px; }
.post-meta { font-size: 12px; margin-top: 4px; }
.post-body { font-size: 13px; margin-top: 8px; line-height: 1.5; }

/* Account page */
.nav-account { text-decoration: none; }
.nav-account:hover { color: var(--t1); }
.account-danger { border-color: rgba(255,69,58,0.3); }
.danger-confirm { max-width: 240px; }
.btn-danger { background: rgba(255,69,58,0.12); color: var(--red); border: 1px solid rgba(255,69,58,0.3); }
.btn-danger:hover { background: rgba(255,69,58,0.18); opacity: 1; }

/* Generic utilities */
.u-hidden { display: none; }
.u-inline { display: inline; }
.u-right { text-align: right; }
.u-fs-14 { font-size: 14px; }
.u-t1 { color: var(--t1); }
.u-red { color: var(--red); }
.u-mt-4 { margin-top: 4px; }
.u-mt-18 { margin-top: 18px; }
.u-mb-0 { margin-bottom: 0; }
.u-mb-16 { margin-bottom: 16px; }
.u-mb-24 { margin-bottom: 24px; }
