/* ══════════════════════════════════════════════════════════════
   ClearPath Suite — MY WORKLOAD DASHBOARD STYLES
══════════════════════════════════════════════════════════════ */

/* ── HERO ────────────────────────────────────────────────────── */
.wl-hero {
  background: linear-gradient(135deg, #8B0010 0%, #E8192C 55%, #B0001C 100%);
  border-radius: var(--radius);
  padding: 24px 28px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  color: #fff;
  box-shadow: 0 4px 20px rgba(232,25,44,.25);
}
.wl-hero-left { display: flex; align-items: center; gap: 16px; }
.wl-avatar {
  width: 58px; height: 58px;
  border-radius: 50%;
  background: rgba(255,255,255,.25);
  border: 2.5px solid rgba(255,255,255,.5);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; font-weight: 800; color: #fff;
  flex-shrink: 0;
}
.wl-greeting { font-size: .82rem; opacity: .8; }
.wl-name { font-size: 1.35rem; font-weight: 800; line-height: 1.2; }
.wl-meta { display: flex; align-items: center; gap: 10px; margin-top: 5px; flex-wrap: wrap; }
.wl-role-badge {
  background: rgba(255,255,255,.2);
  border: 1px solid rgba(255,255,255,.35);
  border-radius: 20px;
  padding: 2px 10px;
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
}
.wl-date { font-size: .8rem; opacity: .75; }

/* Hero stats strip */
.wl-hero-stats {
  display: flex;
  gap: 1px;
  background: rgba(255,255,255,.15);
  border-radius: var(--radius);
  overflow: hidden;
  flex-shrink: 0;
}
.wl-hstat {
  padding: 12px 18px;
  text-align: center;
  background: rgba(255,255,255,.08);
  min-width: 90px;
  transition: background .2s;
}
.wl-hstat:hover { background: rgba(255,255,255,.18); }
.wl-hstat.danger { background: rgba(0,0,0,.25); }
.wl-hstat.warn   { background: rgba(249,168,37,.2); }
.wl-hstat.ok     { background: rgba(46,125,50,.2); }
.wl-hstat-val { font-size: 1.25rem; font-weight: 800; }
.wl-hstat-label { font-size: .68rem; opacity: .8; margin-top: 2px; text-transform: uppercase; letter-spacing: .04em; white-space: nowrap; }
.wl-hstat.loading-pulse .wl-hstat-val { background: rgba(255,255,255,.2); border-radius: 4px; height: 20px; width: 40px; display: inline-block; animation: pulse 1.5s infinite; }

/* ── OVERVIEW GRID ───────────────────────────────────────────── */
.wl-overview-grid {
  display: grid;
  grid-template-columns: 1fr 320px 1fr 320px;
  gap: 16px;
  align-items: start;
}

/* Alert banner */
.wl-alert-banner {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: #FFEBEE;
  border: 1.5px solid #EF9A9A;
  border-radius: var(--radius);
  padding: 12px 16px;
  font-size: .85rem;
  color: #B71C1C;
  font-weight: 600;
}
.wl-alert-banner i { font-size: 1rem; flex-shrink: 0; margin-top: 1px; }
.wl-overdue-chip {
  display: inline-block;
  background: #FFCDD2;
  border-radius: 4px;
  padding: 1px 7px;
  font-size: .78rem;
  cursor: pointer;
  margin: 2px 2px;
}
.wl-overdue-chip:hover { background: #EF9A9A; }

/* ── WL CARDS ────────────────────────────────────────────────── */
.wl-card {
  background: #fff;
  border: 1.5px solid var(--grey-150);
  border-radius: var(--radius);
  overflow: hidden;
}
.wl-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  border-bottom: 1px solid var(--grey-100);
  background: var(--grey-50);
}
.wl-card-title {
  font-size: .85rem;
  font-weight: 700;
  color: var(--grey-800);
  display: flex;
  align-items: center;
  gap: 7px;
}
.wl-card-body { padding: 14px 16px; }

.wl-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 22px;
  height: 22px;
  border-radius: 20px;
  font-size: .72rem;
  font-weight: 700;
  background: var(--grey-150);
  color: var(--grey-600);
  padding: 0 6px;
}
.wl-badge.danger { background: #FFCDD2; color: #C62828; }
.wl-badge.warn   { background: #FFF8E1; color: #F57F17; }

/* ── TASK STATUS BAND ────────────────────────────────────────── */
.wl-task-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--grey-100);
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 8px;
}
.wl-task-band-item { background: #fff; padding: 8px 10px; text-align: center; }
.wl-task-band-val { font-size: 1.15rem; font-weight: 800; }
.wl-task-band-val.open       { color: var(--grey-700); }
.wl-task-band-val.inprogress { color: #1565C0; }
.wl-task-band-val.blocked    { color: #C62828; }
.wl-task-band-val.done       { color: #2E7D32; }
.wl-task-band-label { font-size: .68rem; color: var(--grey-400); margin-top: 2px; text-transform: uppercase; letter-spacing: .04em; }

/* Progress bar */
.wl-progress-bar {
  height: 6px;
  background: var(--grey-100);
  border-radius: 6px;
  overflow: hidden;
  margin-bottom: 3px;
}
.wl-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--wfs-600), var(--wfs-400));
  border-radius: 6px;
  transition: width .5s ease;
}

/* ── TASK ROWS ───────────────────────────────────────────────── */
.wl-task-list { display: flex; flex-direction: column; gap: 6px; }
.wl-task-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  border-radius: 6px;
  background: var(--grey-50);
  border: 1px solid var(--grey-100);
  cursor: pointer;
  transition: var(--transition);
}
.wl-task-row:hover { background: var(--wfs-50); border-color: var(--wfs-200); }
.wl-task-row.overdue { background: #FFEBEE; border-color: #FFCDD2; }
.wl-task-priority-dot {
  width: 9px; height: 9px;
  border-radius: 50%;
  flex-shrink: 0;
}
.wl-task-info { flex: 1; min-width: 0; }
.wl-task-title { font-size: .84rem; font-weight: 600; color: var(--grey-800); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.wl-task-sub   { font-size: .72rem; color: var(--grey-400); margin-top: 1px; }

/* Due chips */
.wl-due-chip {
  display: inline-block;
  padding: 2px 7px;
  border-radius: 20px;
  font-size: .7rem;
  font-weight: 700;
  white-space: nowrap;
}
.wl-due-chip.overdue { background: #FFCDD2; color: #C62828; }
.wl-due-chip.soon    { background: #FFF8E1; color: #F57F17; }
.wl-due-chip.neutral { background: var(--grey-100); color: var(--grey-500); }

/* Status chips */
.wl-status-chip {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 20px;
  font-size: .7rem;
  font-weight: 700;
  text-transform: capitalize;
  white-space: nowrap;
}
.status-open        { background: #E3F2FD; color: #1565C0; }
.status-in_progress { background: #E8F5E9; color: #2E7D32; }
.status-blocked     { background: #FFEBEE; color: #C62828; }
.status-done        { background: var(--grey-100); color: var(--grey-500); }

/* ── DUE ROWS ────────────────────────────────────────────────── */
.wl-due-row {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 0;
  border-bottom: 1px solid var(--grey-100);
  font-size: .82rem;
}
.wl-due-row:last-child { border-bottom: none; }
.wl-due-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.wl-due-title { flex: 1; min-width: 0; color: var(--grey-800); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.wl-due-date { color: var(--grey-400); font-size: .75rem; white-space: nowrap; flex-shrink: 0; }
.wl-due-date.overdue { color: #C62828; font-weight: 700; }

/* ── CAPACITY GAUGE ──────────────────────────────────────────── */
.wl-capacity-wrap {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.wl-capacity-ring {
  width: 90px; height: 90px;
  border-radius: 50%;
  border: 8px solid var(--grey-150);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.wl-capacity-ring.low  { border-color: var(--green-400); }
.wl-capacity-ring.med  { border-color: var(--amber-400); }
.wl-capacity-ring.high { border-color: var(--wfs-500); }
.wl-capacity-ring.over { border-color: #C62828; }
.wl-capacity-pct   { font-size: 1.25rem; font-weight: 800; color: var(--grey-900); line-height: 1; }
.wl-capacity-label { font-size: .62rem; color: var(--grey-500); text-align: center; margin-top: 3px; text-transform: uppercase; letter-spacing: .04em; }
.wl-capacity-breakdown { flex: 1; display: flex; flex-direction: column; gap: 5px; }
.wl-cap-row {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .78rem;
  padding: 4px 0;
  border-bottom: 1px solid var(--grey-100);
}
.wl-cap-row:last-child { border-bottom: none; }
.wl-cap-row.total { border-top: 1px solid var(--grey-200); margin-top: 2px; padding-top: 6px; }
.wl-cap-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.wl-cap-item { flex: 1; color: var(--grey-700); }
.wl-cap-val  { color: var(--grey-900); font-weight: 600; white-space: nowrap; }

/* ── ALERTS ROWS ─────────────────────────────────────────────── */
.wl-alert-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 7px 0;
  border-bottom: 1px solid var(--grey-100);
  font-size: .83rem;
}
.wl-alert-row:last-child { border-bottom: none; }
.wl-sev-dot { width: 9px; height: 9px; border-radius: 50%; flex-shrink: 0; }
.wl-alert-row.sev-critical .wl-sev-dot { background: #C62828; }
.wl-alert-row.sev-high     .wl-sev-dot { background: #E65100; }
.wl-alert-row.sev-medium   .wl-sev-dot { background: #F9A825; }
.wl-alert-row.sev-low      .wl-sev-dot { background: #2E7D32; }
.wl-alert-title { flex: 1; min-width: 0; color: var(--grey-800); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.wl-sev-label { font-size: .7rem; font-weight: 700; text-transform: capitalize; color: var(--grey-500); flex-shrink: 0; }

/* Mini stats */
.wl-mini-stat {
  background: var(--grey-50);
  border: 1px solid var(--grey-150);
  border-radius: 8px;
  padding: 10px 12px;
  text-align: center;
}
.wl-mini-stat.ok   { border-color: var(--green-300); background: #F1F8E9; }
.wl-mini-stat.warn { border-color: var(--amber-300); background: #FFF8E1; }
.wl-mini-stat-val   { font-size: 1.1rem; font-weight: 800; color: var(--grey-900); }
.wl-mini-stat-label { font-size: .7rem; color: var(--grey-400); margin-top: 2px; text-transform: uppercase; letter-spacing: .04em; }

/* ── EMPTY STATES ────────────────────────────────────────────── */
.wl-empty {
  text-align: center;
  padding: 14px 10px;
  color: var(--grey-400);
  font-size: .82rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.wl-empty.warn { color: #F57F17; background: #FFF8E1; border-radius: 6px; }
.wl-empty.large { flex-direction: column; padding: 32px; font-size: .9rem; gap: 12px; }
.wl-empty i { opacity: .5; }

.wl-show-more {
  text-align: center;
  padding: 8px;
  color: var(--wfs-600);
  font-size: .8rem;
  font-weight: 600;
  cursor: pointer;
  border-top: 1px solid var(--grey-100);
  margin-top: 6px;
}
.wl-show-more:hover { background: var(--wfs-50); }

/* ── KANBAN (My Tasks tab) ───────────────────────────────────── */
.wl-kanban {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  align-items: start;
}
.wl-kanban-col {
  background: var(--grey-50);
  border-radius: var(--radius);
  border: 1.5px solid var(--grey-150);
  overflow: hidden;
}
.wl-kanban-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  font-size: .8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
  gap: 8px;
}
.wl-kanban-header.open       { background: #E3F2FD; color: #1565C0; }
.wl-kanban-header.inprogress { background: #E8F5E9; color: #2E7D32; }
.wl-kanban-header.blocked    { background: #FFEBEE; color: #C62828; }
.wl-kanban-header.done       { background: var(--grey-100); color: var(--grey-500); }
.wl-kanban-count {
  background: rgba(0,0,0,.1);
  border-radius: 20px;
  padding: 1px 7px;
  font-size: .72rem;
  margin-left: auto;
}
.wl-kanban-body { padding: 10px; display: flex; flex-direction: column; gap: 8px; min-height: 60px; }

/* Task cards */
.wl-task-card {
  background: #fff;
  border: 1.5px solid var(--grey-150);
  border-radius: 8px;
  padding: 12px;
  cursor: pointer;
  transition: var(--transition);
}
.wl-task-card:hover { border-color: var(--wfs-300); box-shadow: 0 2px 8px rgba(232,25,44,.08); transform: translateY(-1px); }
.wl-task-card.overdue { border-color: #FFCDD2; background: #FFFAFA; }
.wl-task-card.done { opacity: .65; }
.wl-task-card-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 6px; }
.wl-task-card-title { font-size: .84rem; font-weight: 600; color: var(--grey-900); line-height: 1.4; margin-bottom: 4px; }
.wl-task-card-desc { font-size: .75rem; color: var(--grey-500); line-height: 1.4; margin-bottom: 6px; }
.wl-task-card-footer { display: flex; align-items: center; justify-content: space-between; gap: 6px; flex-wrap: wrap; margin-top: 4px; }
.wl-task-site { font-size: .72rem; color: var(--grey-400); display: flex; align-items: center; gap: 3px; }
.wl-task-due { font-size: .72rem; display: flex; align-items: center; gap: 3px; color: var(--grey-400); }
.wl-task-due.overdue { color: #C62828; font-weight: 700; }
.wl-task-due.soon { color: #F57F17; font-weight: 600; }
.wl-priority-pill {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 2px 8px;
  border-radius: 20px;
  font-size: .7rem;
  font-weight: 700;
}
.wl-from-alert { color: #1565C0; font-size: .78rem; }
.done-col .wl-task-card-title { text-decoration: line-through; opacity: .7; }

/* ── PROJECT CARDS ───────────────────────────────────────────── */
.wl-project-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 0;
  border-bottom: 1px solid var(--grey-100);
}
.wl-project-row:last-child { border-bottom: none; }
.wl-project-rag { width: 5px; min-height: 40px; border-radius: 4px; flex-shrink: 0; }
.wl-project-info { flex: 1; min-width: 0; }
.wl-project-title { font-size: .84rem; font-weight: 600; color: var(--grey-900); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.wl-project-meta  { font-size: .72rem; color: var(--grey-400); margin-top: 2px; }
.wl-project-progress { display: flex; align-items: center; gap: 6px; margin-top: 4px; }
.wl-proj-bar { flex: 1; height: 5px; background: var(--grey-100); border-radius: 4px; overflow: hidden; }
.wl-proj-fill { height: 100%; border-radius: 4px; transition: width .4s ease; }
.wl-proj-pct { font-size: .7rem; color: var(--grey-500); white-space: nowrap; }
.wl-project-due { font-size: .72rem; font-weight: 700; white-space: nowrap; flex-shrink: 0; color: var(--grey-400); }
.wl-project-due.overdue { color: #C62828; }
.wl-project-due.soon    { color: #F57F17; }

/* RAG Summary Band */
.wl-rag-band {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 1px;
  background: var(--grey-150);
  border-radius: var(--radius);
  overflow: hidden;
}
.wl-rag-item { background: #fff; padding: 14px; text-align: center; }
.wl-rag-val  { font-size: 1.4rem; font-weight: 800; color: var(--grey-900); }
.wl-rag-label { font-size: .72rem; margin-top: 3px; font-weight: 600; display: flex; align-items: center; justify-content: center; gap: 5px; }
.wl-rag-item.red .wl-rag-label    { color: #C62828; }
.wl-rag-item.amber .wl-rag-label  { color: #F9A825; }
.wl-rag-item.green .wl-rag-label  { color: #2E7D32; }
.wl-rag-item.neutral .wl-rag-label { color: var(--grey-400); }

/* Project grid cards */
.wl-project-cards { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px,1fr)); gap: 14px; }
.wl-project-card {
  background: #fff;
  border: 1.5px solid var(--grey-150);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
}
.wl-project-card:hover { box-shadow: 0 4px 16px rgba(0,0,0,.08); transform: translateY(-2px); }
.wl-project-card.muted { opacity: .7; }
.wl-project-card-top { padding: 14px 16px 10px; }
.wl-project-card-name { font-size: .9rem; font-weight: 700; color: var(--grey-900); line-height: 1.3; flex: 1; }
.wl-project-card-meta { display: flex; align-items: center; gap: 8px; margin-top: 6px; flex-wrap: wrap; }
.wl-project-card-body { padding: 0 16px 10px; }
.wl-project-card-desc { font-size: .78rem; color: var(--grey-500); line-height: 1.5; margin-bottom: 10px; }
.wl-project-card-footer { display: flex; align-items: center; justify-content: space-between; padding: 8px 16px; background: var(--grey-50); border-top: 1px solid var(--grey-100); }
.wl-proj-progress-wrap { margin-top: 4px; }
.rag-badge {
  display: inline-block; padding: 2px 8px; border-radius: 20px;
  font-size: .68rem; font-weight: 800; text-transform: uppercase; letter-spacing: .05em;
}
.rag-badge.rag-red    { background: #FFCDD2; color: #C62828; }
.rag-badge.rag-amber  { background: #FFF8E1; color: #F57F17; }
.rag-badge.rag-green  { background: #E8F5E9; color: #2E7D32; }
.method-badge {
  display: inline-block; padding: 2px 7px; border-radius: 4px;
  font-size: .68rem; font-weight: 600; background: var(--wfs-50); color: var(--wfs-700);
}
.section-label {
  font-size: .75rem; font-weight: 700; color: var(--grey-500);
  text-transform: uppercase; letter-spacing: .06em;
  margin-bottom: 10px; padding-bottom: 6px;
  border-bottom: 1px solid var(--grey-150);
}

/* ── KPI CARDS ───────────────────────────────────────────────── */
.wl-kpi-card {
  background: #fff;
  border: 1.5px solid var(--grey-150);
  border-radius: var(--radius);
  padding: 16px;
  transition: var(--transition);
}
.wl-kpi-card:hover { box-shadow: 0 4px 16px rgba(0,0,0,.08); }
.wl-kpi-name { font-size: .88rem; font-weight: 700; color: var(--grey-900); flex: 1; min-width: 0; line-height: 1.3; }
.wl-kpi-val  { font-size: 1.6rem; font-weight: 800; color: var(--grey-900); line-height: 1; }
.wl-kpi-unit { font-size: .85rem; color: var(--grey-500); }
.wl-kpi-targets { display: flex; gap: 14px; font-size: .75rem; color: var(--grey-500); margin-top: 4px; flex-wrap: wrap; }
.wl-kpi-status {
  display: inline-block; padding: 3px 8px; border-radius: 20px;
  font-size: .7rem; font-weight: 700; flex-shrink: 0; white-space: nowrap;
}

/* ── BENEFITS ROW ────────────────────────────────────────────── */
.wl-benefit-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  background: #fff;
  border: 1.5px solid var(--grey-150);
  border-radius: 8px;
  cursor: pointer;
  transition: var(--transition);
}
.wl-benefit-row:hover { border-color: var(--wfs-300); background: var(--wfs-50); }
.text-amber { color: #F57F17; }
.text-danger { color: #C62828; }

/* ── WEEK PLANNER ────────────────────────────────────────────── */
.wl-week-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  margin-bottom: 16px;
}
.wl-day-col {
  background: #fff;
  border: 1.5px solid var(--grey-150);
  border-radius: var(--radius);
  overflow: hidden;
}
.wl-day-col.today {
  border-color: var(--wfs-400);
  box-shadow: 0 0 0 2px rgba(232,25,44,.12);
}
.wl-day-header {
  padding: 10px 12px;
  text-align: center;
  background: var(--grey-50);
  border-bottom: 1px solid var(--grey-100);
}
.wl-day-name { font-size: .68rem; font-weight: 700; color: var(--grey-500); text-transform: uppercase; letter-spacing: .07em; }
.wl-day-date {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--grey-700);
  line-height: 1.2;
  margin-top: 2px;
}
.wl-day-date.today {
  width: 34px; height: 34px;
  background: var(--wfs-600);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 4px auto 0;
  font-size: 1rem;
}
.wl-day-body { padding: 8px; display: flex; flex-direction: column; gap: 5px; min-height: 80px; }
.wl-day-empty { font-size: .72rem; color: var(--grey-300); text-align: center; padding: 12px 0; }
.wl-day-section-label { font-size: .65rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; padding: 2px 0; }
.wl-day-section-label.overdue { color: #C62828; }

.wl-planner-task {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 5px 7px;
  border-radius: 5px;
  background: var(--grey-50);
  border: 1px solid var(--grey-100);
  cursor: pointer;
  transition: var(--transition);
  font-size: .75rem;
}
.wl-planner-task:hover { background: var(--wfs-50); border-color: var(--wfs-200); }
.wl-planner-task.overdue { background: #FFEBEE; border-color: #FFCDD2; }
.wl-planner-dot { width: 7px; height: 7px; border-radius: 50%; flex-shrink: 0; }
.wl-planner-title { flex: 1; min-width: 0; color: var(--grey-800); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; font-weight: 500; }

/* ── RESPONSIVE ──────────────────────────────────────────────── */
@media (max-width: 1200px) {
  .wl-overview-grid { grid-template-columns: 1fr 300px; }
  .wl-kanban { grid-template-columns: repeat(2, 1fr); }
  .wl-week-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 900px) {
  .wl-hero { flex-direction: column; align-items: flex-start; }
  .wl-hero-stats { width: 100%; }
  .wl-hstat { min-width: 0; flex: 1; }
  .wl-overview-grid { grid-template-columns: 1fr; }
  .wl-kanban { grid-template-columns: 1fr 1fr; }
  .wl-week-grid { grid-template-columns: repeat(2, 1fr); }
  .wl-rag-band { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .wl-kanban { grid-template-columns: 1fr; }
  .wl-week-grid { grid-template-columns: 1fr; }
  .wl-task-band { grid-template-columns: repeat(2,1fr); }
}
