/* ================================================================
   AllyUp(tm) · JenEd® · Design System
   Corrected stylesheet v1.1
   Spec: allyup-design-spec-v1.1.html
   ================================================================ */

/* -- GOOGLE FONTS --------------------------------------------------
   In the HTML <head>, place this BEFORE any <style> block:

   <link rel="preconnect" href="https://fonts.googleapis.com">
   <link rel="stylesheet" href="https://fonts.googleapis.com/css2?
     family=EB+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500
     &family=DM+Sans:wght@300;400;500;600;700
     &display=swap">
   ------------------------------------------------------------------ */


/* ================================================================
   DESIGN TOKENS
   ================================================================ */

:root {
  /* Neutrals */
  --cream:         #EEE9DF;
  --cream-dark:    #E3DDD2;
  --cream-deeper:  #D4CEC3;
  --white:         #FFFFFF;
  --charcoal:      #2C2A27;
  --charcoal-mid:  #4A4440;
  --charcoal-lt:   #6B6560;
  --muted:         #9C9690;
  --rule:          #DDD8CE;

  /* Brand */
  --brand-orange:    #C4562A;
  --brand-orange-lt: #F7EDE8;
  --brand-orange-dk: #8C3A1A;

  /* Semantic */
  --green:    #3A6E1A;
  --green-lt: #EEF4E8;
  --green-dk: #2A5010;

  --amber:    #B07820;
  --amber-lt: #FAF0E0;
  --amber-dk: #7A5210;

  --red:    #A02828;
  --red-lt: #F7E8E8;
  --red-dk: #701818;

  --indigo:    #3D4F8A;
  --indigo-lt: #ECEEF6;

  /* Role colors - added in v1.1 */
  --purple:    #6B4D8F;
  --purple-lt: #F2EEF7;
  --purple-dk: #4D3468;

  --teal:      #2C7A7A;
  --teal-lt:   #E8F4F4;
  --teal-dk:   #1E5252;

  /* Typography */
  --serif: 'EB Garamond', Georgia, serif;
  --sans:  'DM Sans', system-ui, sans-serif;
}


/* ================================================================
   BASE (box-sizing only — no margin/padding reset to avoid
   breaking Bootstrap in the Angular project)
   ================================================================ */

*, *::before, *::after { box-sizing: border-box; }

/* Link colors are handled by allyup-brand.css — no override here */


/* ================================================================
   APP SHELL
   ================================================================ */

.shell { display: flex; min-height: 100vh; }


/* ================================================================
   SIDEBAR
   4pt corrections: padding 26->24, sb-brand 22->24, sb-byline 6->8,
   sb-section 18->16, sb-link 9px->8px 18px->16px, margin 1px->0,
   ct padding 1px 7px->2px 8px, sb-user padding 14->16, gap 10->12
   ================================================================ */

.sidebar {
  width: 248px;
  flex-shrink: 0;
  background: var(--white);
  color: var(--charcoal);
  padding: 24px 0 20px;
  display: flex;
  flex-direction: column;
  position: sticky;
  top: 0;
  height: 100vh;
  border-right: 1px solid var(--rule);
}

.sb-brand {
  padding: 0 24px 24px;
  border-bottom: 1px solid var(--rule);
}

.sb-wordmark {
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1;
}
.sb-wordmark .ally { color: var(--charcoal); }
.sb-wordmark .up   { color: var(--brand-orange); }
.sb-wordmark .sup  { font-size: 13px; color: var(--brand-orange); vertical-align: super; }

.sb-byline {
  font-size: 10px;
  color: var(--muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 8px;
}

.sb-section {
  padding: 16px 16px 4px;
  font-size: 9px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
}

.sb-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 16px;
  margin: 0 8px;
  color: var(--charcoal-mid);
  font-size: 12.5px;
  font-weight: 500;
  border-radius: 5px;
  cursor: pointer;
  border-left: 2px solid transparent;
  transition: all 0.15s;
}
.sb-link:hover { background: var(--cream); color: var(--charcoal); }
.sb-link.on {
  background: var(--brand-orange-lt);
  color: var(--brand-orange-dk);
  border-left-color: var(--brand-orange);
  font-weight: 600;
}
.sb-link .dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--cream-deeper);
}
.sb-link.on .dot { background: var(--brand-orange); }
.sb-link .ct {
  margin-left: auto;
  font-size: 10px;
  padding: 2px 8px;
  background: var(--cream);
  border-radius: 9px;
  color: var(--charcoal-lt);
}
.sb-link.alert .ct { background: var(--red); color: var(--white); }

.sb-user {
  margin-top: auto;
  padding: 16px 16px;
  margin-left: 8px;
  margin-right: 8px;
  background: var(--cream);
  border-radius: 6px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.sb-avatar {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--brand-orange);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 12px;
  flex-shrink: 0;
}

/* Role-specific avatar colors */
.sb-avatar--super     { background: var(--indigo); }
.sb-avatar--principal { background: var(--amber); }
.sb-avatar--teacher   { background: var(--green); }
.sb-avatar--specialist { background: var(--purple); }
.sb-avatar--casemgr   { background: var(--teal); }

.sb-user-name { font-size: 12px; font-weight: 600; color: var(--charcoal); }
.sb-user-role { font-size: 10px; color: var(--charcoal-lt); letter-spacing: 0.04em; }


/* -- SIDEBAR ROLE SELECTOR ---------------------------------------- */

.sb-role-select {
  padding: 16px 14px;
  margin: 16px 8px 4px 8px;
  background: var(--cream);
  border: 1px solid var(--cream-deeper);
  border-radius: 6px;
  position: relative;
}

.sb-role-label {
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
  margin-bottom: 8px;
  display: block;
}

.sb-role-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 5px;
  background: var(--white);
  color: var(--charcoal);
  border: 1px solid var(--rule);
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  cursor: pointer;
  text-align: left;
  transition: all 0.15s;
}
.sb-role-trigger:hover { border-color: var(--brand-orange); }
.sb-role-trigger .dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.sb-role-trigger .role-name { flex: 1; font-weight: 600; }
.sb-role-trigger .role-caret { font-size: 10px; color: var(--muted); }
.sb-role-trigger[aria-expanded="true"] {
  border-color: var(--brand-orange);
  background: var(--brand-orange-lt);
}

.sb-role-menu {
  position: absolute;
  top: calc(100% + 4px);
  left: 14px; right: 14px;
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: 6px;
  box-shadow: 0 14px 36px -16px rgba(0,0,0,0.25);
  padding: 6px;
  display: none;
  z-index: 100;
}
.sb-role-menu.is-open { display: block; }

.sb-role-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 4px;
  cursor: pointer;
  text-decoration: none;
  color: var(--charcoal-mid);
  font-size: 11.5px;
  transition: all 0.12s;
}
.sb-role-item:hover { background: var(--cream); color: var(--charcoal); }
.sb-role-item.on {
  background: var(--brand-orange-lt);
  color: var(--brand-orange-dk);
  font-weight: 600;
}
.sb-role-item .dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.sb-role-item .nm { flex: 1; }
.sb-role-item .sub {
  display: block;
  font-size: 10px;
  color: var(--muted);
  font-weight: 400;
  margin-top: 1px;
}


/* ================================================================
   MAIN CONTENT AREA
   4pt corrections: topbar padding 18px->16px, gap 14->16
   ================================================================ */

.main {
  flex: 1;
  min-width: 0;
  overflow-x: clip;
}

.topbar {
  background: var(--white);
  border-bottom: 1px solid var(--rule);
  padding: 16px 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 30;
}

.topbar-left {
  flex: 1;
  min-width: 0;
}

.topbar-left .crumbs {
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 6px;
}
.topbar-left .crumbs .sep  { margin: 0 8px; color: var(--cream-deeper); }
.topbar-left .crumbs .here { color: var(--brand-orange); font-weight: 600; }
.topbar-left h1 {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.1;
}
.topbar-left h1 .stamp {
  font-family: var(--sans);
  font-size: 9px;
  vertical-align: super;
  color: var(--brand-orange);
  margin-left: 4px;
  letter-spacing: 0.1em;
}

.topbar-right {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  flex-shrink: 0;
}

/* Content area */
.content {
  padding: 36px 36px 64px 36px;
}


/* ================================================================
   PILLS (status indicators)
   ================================================================ */

.pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 10px;
  font-weight: 500;
  padding: 4px 12px;
  border-radius: 20px;
  border: 1px solid;
}
.pill .pdot { width: 5px; height: 5px; border-radius: 50%; }
.pill-live  { border-color: rgba(58,110,26,0.3);  color: var(--green); background: var(--green-lt); }
.pill-alert { border-color: rgba(160,40,40,0.3);  color: var(--red);   background: var(--red-lt); }
.pill-drift { border-color: rgba(196,86,42,0.35); color: var(--brand-orange-dk); background: var(--brand-orange-lt); }
.pill-live .pdot  { background: var(--green); animation: pill-blink 2s infinite; }
.pill-alert .pdot { background: var(--red); }
.pill-drift .pdot { background: var(--brand-orange); }

@keyframes pill-blink { 0%, 100% { opacity: 1; } 50% { opacity: 0.35; } }


/* ================================================================
   BUTTONS
   ================================================================ */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border-radius: 4px;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.04em;
  border: none;
  cursor: pointer;
  transition: all 0.16s;
  text-decoration: none;
}
.btn-primary   { background: var(--brand-orange); color: var(--white); }
.btn-primary:hover { background: var(--brand-orange-dk); }
.btn-secondary { background: transparent; color: var(--brand-orange); border: 1px solid var(--brand-orange); }
.btn-secondary:hover { background: var(--brand-orange-lt); }
.btn-ghost     { background: transparent; color: var(--charcoal); border: 1px solid var(--rule); }
.btn-ghost:hover { background: var(--cream); }
.btn-dark      { background: var(--charcoal); color: var(--white); }
.btn-dark:hover { background: var(--charcoal-mid); }

/* Size variants */
.btn-sm { padding: 4px 12px; font-size: 10.5px; }
.btn-lg { padding: 8px 24px; font-size: 13px; }


/* ================================================================
   TABS (sticky sub-nav)
   4pt corrections: margin-bottom 26->24
   ================================================================ */

.tabs {
  position: sticky;
  top: 0;
  z-index: 20;
  background: var(--cream);
  display: flex;
  gap: 0;
  margin-left: -36px;
  margin-right: -36px;
  padding: 0 36px;
  border-bottom: 1px solid var(--rule);
  margin-bottom: 24px;
}

.tab {
  padding: 10px 18px 12px;
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--charcoal-lt);
  cursor: pointer;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
}
.tab:hover { color: var(--charcoal); }
.tab.on    { color: var(--brand-orange); border-bottom-color: var(--brand-orange); }


/* ================================================================
   CARDS
   4pt corrections: card-body 18px->20px
   ================================================================ */

.card {
  background: var(--white);
  border: 0.5px solid var(--rule);
  border-radius: 6px;
}
.card-accent { border-top: 3px solid var(--brand-orange); }
.card-warm   { border-top: 3px solid var(--green); }
.card-watch  { border-top: 3px solid var(--amber); }
.card-alert  { border-top: 3px solid var(--red); }

.card-head {
  padding: 16px 20px 12px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  border-bottom: 1px solid var(--rule);
}
.card-head h3 {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.005em;
}
.card-head .sub {
  font-size: 10.5px;
  color: var(--muted);
  margin-top: 4px;
  letter-spacing: 0.04em;
}

.card-body { padding: 20px 20px; }

/* Card body variants */
.card-body--flush    { padding: 0; }
.card-body--timeline { padding: 16px 8px 16px 24px; }

/* Card head variant */
.card-head--compact h3 { font-size: 15px; }


/* ================================================================
   KICKER
   ================================================================ */

.kicker {
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brand-orange);
  font-weight: 600;
  margin-bottom: 4px;
}


/* ================================================================
   KPI / METRIC ROW
   4pt corrections: gap 14->16, margin-bottom 26->24,
   cols-6 gap 10->8, kpi padding 18px->20px
   ================================================================ */

.kpi-row          { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; margin-bottom: 24px; }
.kpi-row.cols-4   { grid-template-columns: repeat(4, 1fr); }
.kpi-row.cols-3   { grid-template-columns: repeat(3, 1fr); }
.kpi-row.cols-6   { grid-template-columns: repeat(6, 1fr); gap: 8px; }

.kpi {
  background: var(--white);
  border: 0.5px solid var(--rule);
  border-top: 3px solid var(--brand-orange);
  border-radius: 0 0 6px 6px;
  padding: 16px 20px;
  position: relative;
}
.kpi.warm    { border-top-color: var(--green); }
.kpi.watch   { border-top-color: var(--amber); }
.kpi.alert   { border-top-color: var(--red); }
.kpi.neutral { border-top-color: var(--charcoal-lt); }

.kpi-label {
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}
.kpi-value {
  font-family: var(--serif);
  font-size: 34px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.02em;
}

/* KPI unit suffix (%, d, x) — replaces inline font-size spans */
.kpi-unit {
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 400;
  color: var(--charcoal-lt);
}

.kpi-sub   { font-size: 10.5px; color: var(--charcoal-lt); margin-top: 8px; }
.kpi-trend { display: inline-flex; align-items: center; gap: 4px; font-size: 10px; font-weight: 600; }
.kpi-trend.down  { color: var(--green); }
.kpi-trend.up    { color: var(--red); }
.kpi-trend.flat  { color: var(--charcoal-lt); }


/* ================================================================
   BADGES
   4pt correction: padding 3px 9px -> 4px 8px
   ================================================================ */

.badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-family: var(--sans);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 8px;
  border-radius: 3px;
}
.b-crit    { background: var(--red-lt);          color: var(--red-dk); }
.b-watch   { background: var(--amber-lt);        color: var(--amber-dk); }
.b-mon     { background: var(--green-lt);        color: var(--green-dk); }
.b-brand   { background: var(--brand-orange-lt); color: var(--brand-orange-dk); }
.b-neutral { background: var(--cream-dark);      color: var(--charcoal-mid); }
.b-indigo  { background: var(--indigo-lt);       color: var(--indigo); }
.b-red     { background: var(--red-lt);          color: var(--red-dk); }


/* ================================================================
   TABLES
   4pt corrections: th padding 10->8 14->16, td padding 11->12 14->16
   ================================================================ */

table { width: 100%; border-collapse: collapse; font-size: 12px; }

thead th {
  text-align: left;
  padding: 8px 16px;
  font-size: 9.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
  background: var(--cream);
  border-bottom: 1px solid var(--rule);
}

tbody td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--rule);
}
tbody tr:hover { background: var(--cream); }
tbody tr:last-child td { border-bottom: none; }

td .row-title { font-weight: 600; }
td .row-sub   { font-size: 10.5px; color: var(--muted); margin-top: 2px; }


/* ================================================================
   HEATMAP
   4pt corrections: hm-cell padding 10->8, label padding-left 14->16
   ================================================================ */

.heatmap {
  display: grid;
  gap: 2px;
  background: var(--rule);
  border: 1px solid var(--rule);
  border-radius: 4px;
  overflow: hidden;
}
.hm-row  { display: contents; }
.hm-cell {
  background: var(--white);
  padding: 8px 8px;
  font-size: 11px;
  text-align: center;
}
.hm-cell.head  {
  background: var(--cream);
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}
.hm-cell.label {
  text-align: left;
  font-weight: 500;
  padding-left: 16px;
}

/* Heatmap data states */
.hm-low  { background: #F4F6EF; color: var(--green-dk); }
.hm-mild { background: #FAF0E0; color: var(--amber-dk); }
.hm-elev { background: #F2D5C0; color: var(--brand-orange-dk); font-weight: 600; }
.hm-crit { background: #E8B49A; color: var(--red-dk); font-weight: 700; }


/* ================================================================
   INSIGHT BLOCK
   4pt corrections: padding 22px->24px, margin-bottom 18->24,
   .body margin-top 6->8
   ================================================================ */

.insight {
  background: var(--white);
  border-left: 3px solid var(--brand-orange);
  padding: 16px 24px;
  border-radius: 0 4px 4px 0;
  margin: 0 0 24px;
  overflow-wrap: break-word;
  word-break: break-word;
}
.insight .lead   {
  font-family: var(--serif);
  font-style: italic;
  font-size: 17px;
  line-height: 1.4;
  color: var(--charcoal);
}
.insight .body   { font-size: 12px; color: var(--charcoal-mid); margin-top: 8px; }
.insight .source { font-size: 10px; color: var(--muted); margin-top: 8px; letter-spacing: 0.06em; }

/* Hero variant */
.insight--hero {
  padding: 24px 28px;
  margin-bottom: 24px;
}
.insight--hero .lead { font-size: 18px; }


/* ================================================================
   CALLOUT
   4pt corrections: padding 18->20 22->24, label margin-bottom 6->8
   ================================================================ */

.callout {
  background: var(--cream);
  border: 1px dashed var(--cream-deeper);
  border-radius: 6px;
  padding: 20px 24px;
  font-size: 12.5px;
  color: var(--charcoal-mid);
}
.callout .label {
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brand-orange);
  font-weight: 600;
  margin-bottom: 8px;
}

/* Callout variants */
.callout--brand {
  background: var(--brand-orange-lt);
  border-color: var(--brand-orange);
  border-style: solid;
}
.callout--centered {
  text-align: center;
  padding: 28px 24px;
  margin-top: 24px;
}
.callout-quote {
  font-family: var(--serif);
  font-style: italic;
  font-size: 17px;
  color: var(--charcoal);
  line-height: 1.45;
}


/* ================================================================
   TIMELINE
   4pt corrections: .tl 6->8, tl-event 14->16, tl-event::before -22->-24,
   title/desc margin-top 2->4
   ================================================================ */

.tl {
  position: relative;
  padding: 8px 0 8px 24px;
}
.tl::before {
  content: '';
  position: absolute;
  left: 8px; top: 8px; bottom: 8px;
  width: 2px;
  background: var(--rule);
}

.tl-event {
  position: relative;
  padding: 0 0 16px;
}
.tl-event::before {
  content: '';
  position: absolute;
  left: -24px; top: 5px;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--charcoal-lt);
}
.tl-event.crit::before { border-color: var(--red);   background: var(--red); }
.tl-event.warn::before { border-color: var(--amber); background: var(--amber); }
.tl-event.good::before { border-color: var(--green); background: var(--green); }

.tl-event .date  { font-size: 10px; color: var(--muted); letter-spacing: 0.08em; text-transform: uppercase; }
.tl-event .title { font-size: 12.5px; font-weight: 600; margin-top: 4px; }
.tl-event .desc  { font-size: 11.5px; color: var(--charcoal-lt); margin-top: 4px; }


/* ================================================================
   ROLE CARDS (Team Synchrony)
   4pt corrections: padding 18px->20px, role-q margin-top 10->8,
   role-action padding 7->8
   ================================================================ */

.role-card {
  background: var(--white);
  border: 0.5px solid var(--rule);
  border-radius: 6px;
  padding: 16px 20px;
  display: flex;
  flex-direction: column;
  position: relative;
}
.role-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--brand-orange);
  border-radius: 6px 6px 0 0;
}
.role-card.gen::before    { background: var(--green); }
.role-card.spec::before   { background: var(--indigo); }
.role-card.ot::before     { background: var(--amber); }
.role-card.slp::before    { background: var(--purple); }
.role-card.admin::before  { background: var(--charcoal); }
.role-card.parent::before { background: var(--brand-orange); }

.role-label {
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
  margin-bottom: 4px;
  margin-top: 2px;
}
.role-name { font-size: 14px; font-weight: 600; }
.role-q {
  font-family: var(--serif);
  font-style: italic;
  font-size: 14px;
  color: var(--charcoal-mid);
  margin-top: 8px;
  line-height: 1.35;
  padding: 8px 0;
  border-top: 1px solid var(--rule);
}
.role-actions { margin-top: 8px; }
.role-action {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  padding: 8px 0;
  border-top: 1px dashed var(--rule);
  font-size: 11.5px;
}
.role-action:first-child { border-top: none; }
.role-action .a-bullet {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--brand-orange);
  margin-top: 6px;
  flex-shrink: 0;
}
.role-action.warm .a-bullet  { background: var(--green); }
.role-action.alert .a-bullet { background: var(--red); }


/* ================================================================
   GRID HELPERS
   4pt correction: gap 18->20
   ================================================================ */

.grid { display: grid; gap: 20px; }
.g-2   { grid-template-columns: 1fr 1fr; }
.g-3   { grid-template-columns: 1fr 1fr 1fr; }
.g-4   { grid-template-columns: repeat(4, 1fr); }
.g-2-1 { grid-template-columns: 2fr 1fr; }
.g-3-2 { grid-template-columns: 3fr 2fr; }
.g-1-2 { grid-template-columns: 1fr 2fr; }


/* ================================================================
   SECTION HEAD
   4pt corrections: padding-bottom 14->16, margin 28 0 18->28 0 16
   ================================================================ */

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding-bottom: 16px;
  margin: 28px 0 16px;
  border-bottom: 1px solid var(--rule);
}
.section-head h2 {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.01em;
}
.section-head .kicker { margin-bottom: 4px; }
.section-head .meta   { font-size: 11px; color: var(--muted); }


/* ================================================================
   PRACTICE CARDS
   4pt corrections: pc-body 14->16, pc-foot 10->12
   ================================================================ */

.practice-card {
  background: var(--white);
  border: 0.5px solid var(--rule);
  border-radius: 6px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.pc-thumb {
  background: linear-gradient(135deg, var(--cream-dark), var(--cream));
  height: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-orange);
  font-family: var(--serif);
  font-size: 38px;
  font-style: italic;
  position: relative;
}
.pc-thumb .play {
  position: absolute;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: var(--brand-orange);
}
.pc-body  { padding: 16px 16px; flex: 1; }
.pc-kind  { font-size: 9px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--brand-orange); font-weight: 600; }
.pc-title { font-family: var(--serif); font-size: 16px; font-weight: 600; margin: 4px 0 6px; line-height: 1.2; }
.pc-meta  { font-size: 10.5px; color: var(--muted); }
.pc-foot  {
  padding: 12px 16px;
  border-top: 1px solid var(--rule);
  font-size: 11px;
  color: var(--charcoal-lt);
  display: flex;
  justify-content: space-between;
}


/* ================================================================
   DASHBOARD TILES
   4pt corrections: padding 22->24 22->24 18->20, dt-desc 10->8 14->16,
   dt-stats gap 18->20
   ================================================================ */

.dash-tile {
  background: var(--white);
  border: 0.5px solid var(--rule);
  border-radius: 6px;
  padding: 24px 24px 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 200px;
  text-decoration: none;
  color: inherit;
  transition: all 0.18s;
}
.dash-tile:hover {
  transform: translateY(-2px);
  border-color: var(--brand-orange);
  box-shadow: 0 12px 30px -18px rgba(196,86,42,0.4);
}
.dash-tile::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--brand-orange);
  border-radius: 6px 6px 0 0;
}
.dash-tile.warm::before   { background: var(--green); }
.dash-tile.indigo::before { background: var(--indigo); }
.dash-tile.amber::before  { background: var(--amber); }

.dt-kicker { font-size: 9px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted); font-weight: 600; margin-bottom: 8px; }
.dt-title  { font-family: var(--serif); font-size: 21px; font-weight: 600; letter-spacing: -0.01em; line-height: 1.15; }
.dt-stamp  { font-size: 8px; vertical-align: super; color: var(--brand-orange); margin-left: 2px; letter-spacing: 0.1em; }
.dt-desc   { font-size: 11.5px; color: var(--charcoal-lt); margin: 8px 0 16px; line-height: 1.5; }
.dt-stats  { margin-top: auto; display: flex; gap: 20px; padding-top: 12px; border-top: 1px solid var(--rule); }
.dt-stat .v { font-family: var(--serif); font-size: 20px; font-weight: 600; line-height: 1; }
.dt-stat .l { font-size: 9px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); margin-top: 4px; }

/* Alert stat variant */
.v--alert { color: var(--red); }

/* AI prompt tile box */
.tile-ai-prompt {
  margin-top: auto;
  padding: 12px 16px;
  background: var(--white);
  border-radius: 4px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 14px;
  border: 1px solid var(--brand-orange);
}


/* ================================================================
   BAR CHART
   4pt corrections: gap 9->8, b-track height 14->12
   ================================================================ */

.bar-chart { display: flex; flex-direction: column; gap: 8px; }
.bar-row   {
  display: grid;
  grid-template-columns: 160px 1fr 60px;
  align-items: center;
  gap: 12px;
  font-size: 11.5px;
}
.bar-row .b-label { font-weight: 500; color: var(--charcoal-mid); }
.bar-row .b-track {
  background: var(--cream);
  border-radius: 3px;
  height: 12px;
  position: relative;
  overflow: hidden;
}
.bar-row .b-fill {
  position: absolute;
  left: 0; top: 0; bottom: 0;
  background: var(--brand-orange);
  border-radius: 3px;
}
.bar-row .b-fill.warm  { background: var(--green); }
.bar-row .b-fill.amber { background: var(--amber); }
.bar-row .b-fill.alert { background: var(--red); }
.bar-row .b-val { font-family: var(--serif); font-weight: 600; text-align: right; }


/* ================================================================
   MISC COMPONENTS
   4pt corrections: hr.rule 22->24, foot 22->24
   ================================================================ */

hr.rule { border: none; border-top: 1px solid var(--rule); margin: 24px 0; }

.foot {
  padding: 24px 36px 32px;
  font-size: 10.5px;
  color: var(--muted);
  border-top: 1px solid var(--rule);
  background: var(--cream);
  line-height: 1.7;
}
.foot strong { color: var(--charcoal-mid); font-weight: 600; }

.stamp {
  font-family: var(--sans);
  font-size: 9px;
  vertical-align: super;
  color: var(--brand-orange);
  margin-left: 2px;
  letter-spacing: 0.1em;
}


/* ================================================================
   TYPE / COLOR UTILITIES
   ================================================================ */

.muted  { color: var(--muted); }
.italic { font-style: italic; }
.serif  { font-family: var(--serif); }
.tnum   { font-variant-numeric: tabular-nums; }
.text-xs { font-size: 10.5px; }
.text-sm { font-size: 11.5px; }
.text-lg { font-size: 14px; }


/* ================================================================
   SPACING UTILITIES — 4pt scale
   ================================================================ */

.mt-4  { margin-top:    4px; }
.mt-8  { margin-top:    8px; }
.mt-16 { margin-top:   16px; }
.mt-24 { margin-top:   24px; }
.mt-32 { margin-top:   32px; }

.mb-4  { margin-bottom:  4px; }
.mb-8  { margin-bottom:  8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }


/* ================================================================
   LEDGER
   4pt corrections: gap 14->16, padding 10->12
   ================================================================ */

.ledger { display: flex; flex-direction: column; }
.ledger-row {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px solid var(--rule);
  font-size: 12px;
  align-items: center;
}
.ledger-row:last-child { border-bottom: none; }
.ledger-row .lr-title  { font-weight: 500; }
.ledger-row .lr-meta   { font-size: 10.5px; color: var(--muted); }

/* Icon layout variant — replaces inline grid-template-columns */
.ledger-row--icon { grid-template-columns: auto 1fr auto; }


/* ================================================================
   PROGRESS DOTS
   ================================================================ */

.dots   { display: inline-flex; gap: 3px; }
.dots .d {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--cream-deeper);
}
.dots .d.on {
  background: var(--green);
  background-image: linear-gradient(45deg, transparent 25%, rgba(255,255,255,0.3) 25%, rgba(255,255,255,0.3) 50%, transparent 50%);
  background-size: 4px 4px;
}
.dots .d.warn {
  background: var(--amber);
  background-image: radial-gradient(circle, rgba(255,255,255,0.5) 30%, transparent 30%);
  background-size: 3px 3px;
}
.dots .d.crit {
  background: var(--red);
  background-image: linear-gradient(135deg, transparent 40%, rgba(255,255,255,0.4) 40%, rgba(255,255,255,0.4) 60%, transparent 60%);
  background-size: 5px 5px;
}


/* ================================================================
   DASHBOARD HERO BLOCK
   ================================================================ */

.dashboard-hero {
  background: var(--white);
  border: 0.5px solid var(--rule);
  border-left: 3px solid var(--brand-orange);
  border-radius: 0 4px 4px 0;
  padding: 24px 28px;
  margin-bottom: 28px;
}
.dashboard-hero .kicker { margin-bottom: 6px; }
.dashboard-hero .lead {
  font-family: var(--serif);
  font-style: italic;
  font-size: 18px;
  line-height: 1.4;
  color: var(--charcoal);
  margin-bottom: 8px;
}
.dashboard-hero .body {
  font-size: 12.5px;
  color: var(--charcoal-mid);
  line-height: 1.6;
}
.dashboard-hero .source {
  font-size: 10.5px;
  color: var(--muted);
  margin-top: 8px;
  letter-spacing: 0.06em;
}


/* ================================================================
   FILTER BAR
   4pt corrections: gap 10->8, padding 14->16 18->20, margin-bottom 18->16,
   filter-input padding 9->8, filter-chip padding 5->4 11->12
   ================================================================ */

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  padding: 16px 20px;
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: 6px;
  margin-bottom: 16px;
}

.filter-input {
  flex: 1;
  min-width: 200px;
  padding: 8px 12px 8px 32px;
  border: 1px solid var(--rule);
  border-radius: 4px;
  font-family: var(--sans);
  font-size: 12.5px;
  outline: none;
  background: var(--cream);
}
.filter-input:focus { border-color: var(--brand-orange); background-color: var(--white); }

.filter-chips { display: flex; gap: 6px; flex-wrap: wrap; }
.filter-chip {
  padding: 4px 12px;
  border-radius: 20px;
  background: var(--cream);
  border: 1px solid var(--rule);
  font-size: 11px;
  font-weight: 500;
  color: var(--charcoal-mid);
  cursor: pointer;
  transition: all 0.15s;
}
.filter-chip:hover { border-color: var(--brand-orange); color: var(--brand-orange); }
.filter-chip.on    { background: var(--brand-orange); color: var(--white); border-color: var(--brand-orange); }
.filter-count { font-size: 10.5px; color: var(--muted); margin-left: auto; }


/* ================================================================
   PROGRESSIVE DISCLOSURE
   ================================================================ */

details.reveal {
  border-top: 1px dashed var(--rule);
  margin-top: 16px;
  padding-top: 8px;
}
details.reveal summary {
  cursor: pointer;
  list-style: none;
  padding: 8px 4px;
  font-size: 11.5px;
  color: var(--brand-orange);
  font-weight: 600;
  letter-spacing: 0.04em;
  user-select: none;
  display: flex;
  align-items: center;
  gap: 8px;
}
details.reveal summary::-webkit-details-marker { display: none; }
details.reveal summary::before {
  content: '+';
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px; height: 18px;
  background: var(--brand-orange-lt);
  border-radius: 50%;
  font-weight: 700;
  font-size: 14px;
  color: var(--brand-orange);
  transition: transform 0.2s;
}
details.reveal[open] summary::before { content: '-'; }
details.reveal[open] summary { color: var(--charcoal-mid); }
.reveal-count {
  font-size: 10px;
  background: var(--cream);
  color: var(--charcoal-lt);
  padding: 2px 8px;
  border-radius: 9px;
  font-weight: 500;
  margin-left: auto;
}


/* ================================================================
   MINI TIMELINE
   4pt corrections: padding 14->16, margin-bottom 18->16,
   mt-event padding 8 10 8 22 -> 8 12 8 24
   ================================================================ */

.mini-timeline {
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: 6px;
  padding: 16px 16px;
  margin-bottom: 16px;
}
.mt-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}
.mt-title { font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); font-weight: 600; }
.mt-link  { font-size: 11px; color: var(--brand-orange); }
.mt-link:hover { text-decoration: underline; }

.mt-events {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
}
.mt-event {
  position: relative;
  padding: 8px 12px 8px 24px;
  background: var(--cream);
  border-radius: 4px;
  font-size: 10.5px;
  line-height: 1.4;
  border-left: 3px solid var(--cream-deeper);
}
.mt-event.good { border-left-color: var(--green); }
.mt-event.warn { border-left-color: var(--amber); }
.mt-event.crit { border-left-color: var(--red); }
.mt-event::before {
  content: '';
  position: absolute;
  left: 9px; top: 11px;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--charcoal-lt);
}
.mt-event.good::before { background: var(--green); }
.mt-event.warn::before { background: var(--amber); }
.mt-event.crit::before { background: var(--red); }
.mt-event .when { font-size: 9.5px; color: var(--muted); margin-bottom: 2px; }
.mt-event .what { font-weight: 500; color: var(--charcoal); }

@media (max-width: 1100px) { .mt-events { grid-template-columns: repeat(3, 1fr); } }


/* ================================================================
   COLLAPSIBLE SECTION HEAD
   ================================================================ */

h2.collapsible { cursor: pointer; }
h2.collapsible::after {
  content: '▲';
  display: inline-block;
  margin-left: 10px;
  font-size: 12px;
  color: var(--muted);
  transition: transform 0.2s;
}
h2.collapsible.is-closed::after { transform: rotate(180deg); }


/* ================================================================
   GLOSSARY
   ================================================================ */

.gloss-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.gloss-card {
  background: var(--white);
  border: 1px solid var(--rule);
  border-left: 3px solid var(--brand-orange);
  border-radius: 6px;
  padding: 16px 20px;
}
.gloss-term  { font-family: var(--serif); font-size: 18px; font-weight: 600; margin-bottom: 4px; }
.gloss-cat   { font-size: 9px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--brand-orange); font-weight: 600; margin-bottom: 8px; }
.gloss-def   { font-size: 12.5px; color: var(--charcoal-mid); line-height: 1.6; }
.gloss-where {
  font-size: 10.5px; color: var(--muted);
  margin-top: 8px; padding-top: 8px;
  border-top: 1px dashed var(--rule);
}
.gloss-where strong { color: var(--charcoal-mid); }

@media (max-width: 900px) { .gloss-grid { grid-template-columns: 1fr; } }


/* ================================================================
   VIDEO CALL
   ================================================================ */

.video-stage {
  background: var(--cream);
  border-radius: 8px;
  border: 1px solid var(--rule);
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 8px;
  padding: 8px;
  min-height: 480px;
}
.video-main {
  background: linear-gradient(135deg, #F7EDE8, #EEE9DF);
  border-radius: 6px;
  border: 1px solid var(--rule);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  color: var(--brand-orange);
  font-family: var(--serif);
  font-size: 60px;
  font-weight: 600;
}
.video-main .label {
  position: absolute; bottom: 16px; left: 16px;
  background: var(--white); color: var(--charcoal);
  border: 1px solid var(--rule);
  padding: 4px 12px; border-radius: 4px;
  font-family: var(--sans); font-size: 11px; font-weight: 500; letter-spacing: 0.04em;
}
.video-main .speaking {
  position: absolute; top: 16px; left: 16px;
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--sans); font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; font-weight: 600;
  background: var(--green-lt); color: var(--green-dk);
  border: 1px solid rgba(58,110,26,0.3);
  padding: 4px 12px; border-radius: 14px;
}
.video-main .speaking::before {
  content: ''; width: 6px; height: 6px;
  border-radius: 50%; background: var(--green);
  animation: pill-blink 1.4s infinite;
}

.video-thumbs { display: grid; grid-template-rows: repeat(4, 1fr); gap: 8px; }
.video-thumb {
  background: linear-gradient(135deg, #FAF0E0, #F2EAE0);
  border-radius: 6px; border: 1px solid var(--rule);
  display: flex; align-items: center; justify-content: center;
  color: var(--charcoal-mid);
  font-family: var(--serif); font-size: 28px; font-weight: 600;
  position: relative;
}
.video-thumb .lab {
  position: absolute; bottom: 6px; left: 8px;
  font-family: var(--sans); font-size: 9px; font-weight: 500;
  background: var(--white); color: var(--charcoal);
  border: 1px solid var(--rule); padding: 2px 6px; border-radius: 3px;
}

.controls-bar {
  display: flex; gap: 8px;
  align-items: center; justify-content: center;
  background: var(--white); border: 0.5px solid var(--rule); border-radius: 30px;
  padding: 8px 16px;
  width: fit-content;
  margin: 16px auto 0;
}
.cbtn {
  width: 40px; height: 40px; border-radius: 50%;
  border: 1px solid var(--rule); background: var(--white);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; font-size: 16px;
}
.cbtn:hover { background: var(--cream); }
.cbtn.on  { background: var(--brand-orange); color: var(--white); border-color: var(--brand-orange); }
.cbtn.end { background: var(--red); color: var(--white); border-color: var(--red); }
.clabel { font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); font-weight: 600; }


/* ================================================================
   VERTICAL RHYTHM
   Added v1.1
   ================================================================ */

.kpi-row + .section-head,
.card    + .section-head,
.grid    + .section-head { margin-top: 32px; }

.card + .card,
.card + .grid,
.grid + .card { margin-top: 20px; }

.section-head + .kpi-row,
.section-head + .card,
.section-head + .grid,
.section-head + .insight { margin-top: 0; }

.callout--centered { margin-top: 24px; }


/* ================================================================
   SCREEN READER ONLY
   ================================================================ */

.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}


/* ================================================================
   ANGULAR APP INTEGRATION
   ================================================================ */



/* Module name in the app header (sidebar layout) */
.tb-module-name {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 600;
  color: var(--charcoal);
  letter-spacing: -0.01em;
}

.tb-module-name i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 6px;
  background: var(--brand-orange-lt);
  color: var(--brand-orange);
  font-size: 12px;
  flex-shrink: 0;
}

/* Hide page-level topbar + breadcrumbs in sidebar mode — module name is now in the app header */
.body-wrapper .topbar {
  display: none;
}

.body-wrapper .crumbs,
.body-wrapper .breadcrumb,
.body-wrapper .breadcrumb-item {
  display: none !important;
}

/* Keep page-level topbar visible in topbar layout (it works differently there) */
.topbar-layout .body-wrapper .topbar {
  display: flex;
}

/* Page-level topbar (inside router-outlet content) — kept for topbar layout */
.body-wrapper .topbar {
  position: sticky;
  top: 59px;          /* sits below the app-header (min-height 55px + 2px padding = 59px) */
  z-index: 20;
  background: var(--white);
  border-bottom: 1px solid var(--rule);
  padding: 14px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.body-wrapper .topbar-left {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.body-wrapper .topbar-left h1 {
  font-family: var(--serif) !important;
  font-size: 22px !important;
  font-weight: 600 !important;
  color: var(--charcoal) !important;
  letter-spacing: -0.01em;
  line-height: 1.2;
  margin: 0;
}

.body-wrapper .topbar-left h1 i,
.body-wrapper .topbar-left h1 .fa-solid,
.body-wrapper .topbar-left h1 [class*="fa-"] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 6px;
  background: var(--brand-orange-lt);
  color: var(--brand-orange);
  font-size: 12px;
  margin-right: 8px;
  flex-shrink: 0;
}

.body-wrapper .topbar-left .crumbs {
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 4px;
}

.body-wrapper .topbar-left .crumbs a {
  color: var(--muted);
  text-decoration: none;
  transition: color 0.15s;
}
.body-wrapper .topbar-left .crumbs a:hover { color: var(--brand-orange); }

.body-wrapper .topbar-left .crumbs .sep {
  color: var(--cream-deeper);
  font-size: 11px;
}

.body-wrapper .topbar-left .crumbs .here {
  color: var(--brand-orange);
  font-weight: 600;
}

.body-wrapper .topbar-right {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  flex-wrap: wrap;
}

/* Content area — top padding increased slightly since topbar is now hidden */
.body-wrapper .content {
  padding: 28px 28px 48px;
  min-height: calc(100vh - 120px);
}

/* ================================================================
   SIDEBAR — design system override for the Angular left-sidebar
   Overrides allyup-brand.css charcoal background when .sidebar
   class is added to the .left-sidebar element.
   ================================================================ */
.left-sidebar.sidebar {
  background: var(--white) !important;
  color: var(--charcoal) !important;
  border-right: 1px solid var(--rule) !important;
  box-shadow: none !important;
  display: flex !important;
  flex-direction: column !important;
  padding: 0 !important;
  overflow: hidden !important;
  width: 270px !important;        /* match the theme body-wrapper margin-left */
  position: fixed !important;     /* override .sidebar { position: sticky } */
  top: 0 !important;
  left: 0 !important;
  height: 100vh !important;
}

/* Remove the dark tint from the inner scroll container */
.left-sidebar.sidebar .sidebar-nav,
.left-sidebar.sidebar nav {
  background: transparent !important;
}

/* Sidebar nav — single thin native scrollbar */
.left-sidebar.sidebar .sb-nav-scroll {
  scrollbar-width: thin;
  scrollbar-color: var(--cream-deeper) transparent;
}
.left-sidebar.sidebar .sb-nav-scroll::-webkit-scrollbar {
  width: 4px;
}
.left-sidebar.sidebar .sb-nav-scroll::-webkit-scrollbar-thumb {
  background: var(--cream-deeper);
  border-radius: 4px;
}
.left-sidebar.sidebar .sb-nav-scroll::-webkit-scrollbar-track {
  background: transparent;
}

/* sb-brand height must match .app-header (min-height:55px + 2px padding = 59px)
   so the border-bottom lines up across sidebar + header creating one seamless rule */
.left-sidebar.sidebar .sb-brand {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 59px;
  padding: 0 20px;
  border-bottom: 1px solid var(--rule);
  flex-shrink: 0;
}

/* Wordmark on white bg — Ally is charcoal, Up stays orange */
.left-sidebar.sidebar .sb-wordmark .ally { color: var(--charcoal) !important; }
.left-sidebar.sidebar .sb-wordmark .up   { color: var(--brand-orange) !important; }
.left-sidebar.sidebar .sb-wordmark .sup  { color: var(--brand-orange) !important; }

