:root {
  --ink: #1f2933;
  --muted: #667085;
  --paper: #f6f8fb;
  --panel: #ffffff;
  --line: #d9e1e7;
  --line-dark: #9fb2c1;
  --green: #2f9e62;
  --green-soft: #d9ead3;
  --blue: #3c78b5;
  --blue-soft: #daeef2;
  --amber: #d99a2b;
  --amber-soft: #fff6db;
  --red: #d94f45;
  --red-soft: #fce2d2;
  --pink-soft: #f4e0e9;
  --header: #ebeff2;
  --charcoal: #1f4e78;
  --shadow: 0 14px 34px rgba(31, 78, 121, 0.12);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    linear-gradient(135deg, rgba(60, 120, 181, 0.08), transparent 34%),
    repeating-linear-gradient(90deg, rgba(60, 120, 181, 0.05) 0, rgba(60, 120, 181, 0.05) 1px, transparent 1px, transparent 54px),
    var(--paper);
  color: var(--ink);
  font-family: "Aptos", "Segoe UI", sans-serif;
  letter-spacing: 0;
}

.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;
}

button {
  font: inherit;
}

.app-shell {
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
  max-width: 100vw;
  min-height: 100vh;
  overflow-x: hidden;
}

.sidebar {
  display: flex;
  flex-direction: column;
  gap: 28px;
  min-width: 0;
  padding: 28px 22px;
  border-right: 1px solid var(--line);
  background: #ffffff;
  color: var(--ink);
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand-mark {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: var(--blue-soft);
  color: var(--charcoal);
  font-weight: 900;
}

.brand h1,
.topbar h2,
.section-heading h3 {
  margin: 0;
}

.brand h1 {
  font-size: 20px;
  line-height: 1.1;
}

.back-link {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  width: fit-content;
  padding: 0 12px;
  border: 1px solid var(--blue);
  border-radius: 6px;
  color: var(--blue);
  font-weight: 850;
  text-decoration: none;
  background: var(--blue-soft);
}

.back-link:hover {
  background: #ffffff;
}

.access-panel {
  display: grid;
  gap: 8px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--blue-soft);
}

.public-draft-panel {
  display: grid;
  gap: 8px;
  padding: 14px;
  border: 1px solid var(--line);
  border-left: 6px solid var(--green);
  border-radius: 8px;
  background: linear-gradient(180deg, var(--amber-soft), var(--blue-soft));
}

.public-draft-panel strong {
  color: var(--charcoal);
  font-weight: 900;
}

.public-draft-panel span {
  color: var(--ink);
  font-size: 13px;
  line-height: 1.4;
}

.access-panel label,
.coverage-tools label {
  color: var(--charcoal);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.access-panel select,
.coverage-tools select {
  min-height: 38px;
  width: 100%;
  border: 1px solid var(--line-dark);
  border-radius: 6px;
  background: white;
  color: var(--ink);
  font: inherit;
}

.access-panel strong {
  color: var(--charcoal);
}

.access-panel span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.4;
}

.eyebrow,
.panel-label {
  margin: 0 0 6px;
  color: #758276;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.sidebar .eyebrow,
.sidebar .panel-label {
  color: var(--blue);
}

.workspace-list {
  display: grid;
  gap: 10px;
  min-width: 0;
}

.workspace {
  display: grid;
  gap: 5px;
  width: 100%;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--header);
  color: inherit;
  text-align: left;
  cursor: pointer;
}

.workspace.active,
.workspace:hover {
  background: var(--blue-soft);
  color: var(--ink);
}

.workspace.locked {
  border-style: dashed;
  background: #f5f7f9;
  color: var(--muted);
}

.workspace.locked:hover {
  background: var(--red-soft);
}

.workspace span {
  font-weight: 800;
}

.workspace small {
  color: currentColor;
  opacity: 0.72;
}

.sidebar-panel {
  display: grid;
  gap: 8px;
  margin-top: auto;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--amber-soft);
}

.sidebar-panel span {
  color: var(--muted);
  line-height: 1.45;
}

.main {
  display: grid;
  gap: 22px;
  align-content: start;
  min-width: 0;
  overflow: hidden;
  padding: 28px;
}

.detail-page {
  display: grid;
  gap: 22px;
  width: min(1180px, calc(100vw - 40px));
  margin: 0 auto;
  padding: 28px 0;
}

.detail-header {
  display: grid;
  gap: 12px;
  padding: 22px;
  border: 1px solid var(--line);
  border-top: 5px solid var(--blue);
  border-radius: 8px;
  background: white;
  box-shadow: var(--shadow);
}

.detail-header h1 {
  margin: 0;
  color: var(--charcoal);
  font-size: clamp(30px, 5vw, 48px);
}

.detail-header p:last-child {
  max-width: 780px;
  margin: 0;
  color: var(--muted);
  line-height: 1.45;
}

.detail-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(190px, 1fr));
  gap: 12px;
}

.topbar {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 16px;
}

.topbar h2 {
  font-size: clamp(28px, 4vw, 46px);
  letter-spacing: 0;
}

.topbar-actions {
  display: grid;
  grid-template-columns: repeat(4, minmax(136px, 160px));
  justify-content: flex-start;
  gap: 8px;
  width: 100%;
}

.topbar-actions button,
.handoff-button,
.utility-button,
.icon-button,
.delete-button {
  min-height: 38px;
  padding: 0 13px;
  border: 1px solid var(--charcoal);
  border-radius: 6px;
  background: var(--charcoal);
  color: white;
  cursor: pointer;
  white-space: nowrap;
}

.topbar-actions button:hover,
.handoff-button:hover,
.utility-button:hover,
.icon-button:hover {
  background: var(--green);
  border-color: var(--green);
}

.icon-button {
  width: 38px;
  padding: 0;
  font-size: 22px;
  line-height: 1;
}

.delete-button {
  min-height: 34px;
  border-color: var(--red-soft);
  background: var(--red-soft);
  color: var(--red);
}

.delete-button:hover {
  border-color: var(--red);
  background: var(--red);
  color: white;
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.metrics-grid article,
.workflow-panel,
.rules-panel,
.module-panel,
.coverage-panel,
.module-workspace,
.board-section,
.timeline-panel,
.blockers-panel,
.budget-panel,
.updates-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow);
}

.metrics-grid article {
  display: grid;
  gap: 8px;
  padding: 18px;
}

.metrics-grid span {
  color: var(--muted);
  font-weight: 700;
}

.metrics-grid strong {
  font-size: 30px;
}

.board-section {
  padding: 20px;
}

.module-panel {
  padding: 20px;
}

.workflow-panel,
.rules-panel,
.coverage-panel,
.module-workspace {
  padding: 20px;
}

.route-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(150px, 1fr));
  gap: 10px;
}

.route-card,
.rule-card {
  display: grid;
  gap: 8px;
  min-width: 0;
  padding: 13px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfcf8;
}

.route-card {
  border-top: 5px solid var(--blue);
}

.route-card:nth-child(2) {
  border-top-color: var(--green);
}

.route-card:nth-child(3) {
  border-top-color: var(--amber);
}

.route-card:nth-child(4) {
  border-top-color: var(--charcoal);
}

.route-card:nth-child(5) {
  border-top-color: var(--red);
}

.route-card strong,
.rule-card strong {
  color: var(--charcoal);
  line-height: 1.25;
}

.route-card span,
.rule-card li {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.route-card small,
.rule-card small {
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.rules-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(160px, 1fr));
  gap: 10px;
}

.rule-card {
  align-content: start;
}

.rule-card ul {
  display: grid;
  gap: 7px;
  margin: 0;
  padding-left: 18px;
}

.module-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(180px, 1fr));
  gap: 12px;
}

.module-card {
  display: grid;
  gap: 7px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--header);
  color: inherit;
  text-align: left;
  cursor: pointer;
}

.module-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 4px;
}

.mini-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  padding: 0 10px;
  border: 1px solid var(--blue);
  border-radius: 6px;
  background: var(--blue-soft);
  color: var(--charcoal);
  font-weight: 850;
  text-decoration: none;
  cursor: pointer;
}

.mini-button:hover {
  background: white;
}

.module-card:hover,
.module-card.active {
  border-color: var(--charcoal);
  box-shadow: inset 0 3px 0 var(--green);
}

.module-card:nth-child(3n + 1) {
  background: var(--blue-soft);
}

.module-card:nth-child(3n + 2) {
  background: var(--green-soft);
}

.module-card:nth-child(3n) {
  background: var(--red-soft);
}

.module-card:nth-child(4n) {
  background: var(--pink-soft);
}

.module-card strong {
  color: var(--charcoal);
}

.module-card span,
.module-card small {
  color: var(--muted);
  font-size: 13px;
}

.count-badge {
  padding: 8px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--amber-soft);
  color: var(--charcoal);
  white-space: nowrap;
}

.coverage-grid {
  display: grid;
  gap: 14px;
}

.coverage-tools {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
}

.coverage-tools select {
  width: min(290px, 100%);
}

.coverage-group {
  display: grid;
  gap: 10px;
}

.coverage-group h4 {
  margin: 0;
  color: var(--charcoal);
  font-size: 16px;
}

.coverage-group > div {
  display: grid;
  grid-template-columns: repeat(4, minmax(170px, 1fr));
  gap: 10px;
}

.coverage-card {
  display: grid;
  gap: 7px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfcf8;
}

.coverage-link {
  color: inherit;
  text-decoration: none;
}

.coverage-card em {
  color: var(--charcoal);
  font-size: 12px;
  font-style: normal;
  font-weight: 900;
}

.coverage-card:nth-child(4n + 1) {
  background: var(--blue-soft);
}

.coverage-card:nth-child(4n + 2) {
  background: var(--green-soft);
}

.coverage-card:nth-child(4n + 3) {
  background: var(--amber-soft);
}

.coverage-card:nth-child(4n) {
  background: var(--pink-soft);
}

.coverage-card strong {
  color: var(--charcoal);
  line-height: 1.25;
}

.coverage-card small,
.unit-type {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.35;
}

.unit-type {
  font-weight: 900;
  text-transform: uppercase;
}

.module-table-wrap {
  overflow-x: auto;
}

.module-table {
  width: 100%;
  min-width: 780px;
  border-collapse: separate;
  border-spacing: 0;
  background: white;
}

.module-table th,
.module-table td {
  padding: 11px 12px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.module-table th {
  color: var(--charcoal);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  background: var(--header);
}

.module-table td:first-child {
  color: var(--charcoal);
}

.section-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
}

.section-heading h3 {
  font-size: 24px;
}

.section-heading.compact h3 {
  font-size: 19px;
}

.board-tools {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
}

.legend {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin-right: 6px;
  border-radius: 50%;
}

.planned { background: var(--blue); }
.review { background: var(--amber); }
.blocked { background: var(--red); }
.ready { background: var(--green); }

.board {
  display: grid;
  grid-template-columns: repeat(4, minmax(220px, 1fr));
  gap: 14px;
  max-width: 100%;
  overflow-x: auto;
  padding-bottom: 6px;
}

.lane {
  min-width: 220px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f9faf5;
}

.lane-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px;
  border-bottom: 1px solid var(--line);
  font-weight: 900;
}

.lane-count {
  display: grid;
  min-width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 50%;
  background: var(--green-soft);
  color: var(--green);
}

.lane-empty {
  display: grid;
  gap: 6px;
  padding: 12px;
  border: 1px dashed var(--line-dark);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
}

.lane-empty strong {
  color: var(--charcoal);
}

.lane-empty span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.35;
}

.cards {
  display: grid;
  gap: 10px;
  padding: 12px;
}

.task-card {
  display: grid;
  gap: 10px;
  padding: 13px;
  border: 1px solid var(--line);
  border-left: 5px solid var(--blue);
  border-radius: 8px;
  background: white;
}

.task-card[data-status="Review"] { border-left-color: var(--amber); }
.task-card[data-status="Blocked"] { border-left-color: var(--red); }
.task-card[data-status="Ready"] { border-left-color: var(--green); }

.task-card h4 {
  margin: 0;
  font-size: 15px;
}

.editable,
.task-card input,
.task-card select,
.task-card textarea,
.budget-card input,
.budget-card select,
.budget-card textarea,
.timeline input,
.timeline textarea,
.update input,
.update textarea,
.blocker textarea {
  width: 100%;
  min-width: 0;
  border: 1px solid transparent;
  border-radius: 6px;
  background: transparent;
  color: var(--ink);
  font: inherit;
}

.editable:hover,
.editable:focus,
.task-card input:hover,
.task-card input:focus,
.task-card select:hover,
.task-card select:focus,
.task-card textarea:hover,
.task-card textarea:focus,
.budget-card input:hover,
.budget-card input:focus,
.budget-card select:hover,
.budget-card select:focus,
.budget-card textarea:hover,
.budget-card textarea:focus,
.timeline input:hover,
.timeline input:focus,
.timeline textarea:hover,
.timeline textarea:focus,
.update input:hover,
.update input:focus,
.update textarea:hover,
.update textarea:focus,
.blocker textarea:hover,
.blocker textarea:focus {
  border-color: var(--line);
  background: white;
  outline: none;
}

.task-title {
  font-weight: 900;
  line-height: 1.35;
  resize: vertical;
}

.edit-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
}

.card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.task-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.pill {
  padding: 4px 8px;
  border-radius: 999px;
  background: #eef1e7;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.pill.blocked {
  background: var(--red-soft);
  color: var(--red);
}

.pill.ready {
  background: var(--green-soft);
  color: var(--green);
}

.lower-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.timeline-panel,
.blockers-panel,
.budget-panel,
.updates-panel {
  min-height: 260px;
  padding: 18px;
}

.timeline {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.timeline li {
  display: grid;
  grid-template-columns: 86px minmax(220px, 1fr) 112px 150px auto;
  gap: 12px;
  align-items: start;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}

.timeline-template {
  padding: 12px;
  border: 1px dashed var(--line-dark);
  border-radius: 8px;
  background: var(--blue-soft);
}

.timeline-status {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  padding: 4px 8px;
  border-radius: 999px;
  background: var(--green-soft);
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
  text-align: center;
}

.timeline-status.past,
.timeline-status.due {
  background: var(--red-soft);
  color: var(--red);
}

.timeline-status.met {
  background: var(--green-soft);
  color: var(--green);
}

.timeline-status.pending {
  background: var(--amber-soft);
  color: var(--charcoal);
}

.timeline time,
.timeline input {
  color: var(--green);
  font-weight: 900;
}

.blockers,
.updates,
.budget-list {
  display: grid;
  gap: 10px;
}

.blocker,
.update,
.budget-card,
.empty-state {
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfcf8;
}

.empty-state {
  display: grid;
  gap: 6px;
  color: var(--muted);
}

.empty-state strong {
  color: var(--charcoal);
}

.blocker strong,
.update strong,
.budget-card strong {
  display: block;
  margin-bottom: 5px;
}

.blocker span,
.update span,
.budget-card span {
  color: var(--muted);
  line-height: 1.42;
}

.budget-card {
  display: grid;
  gap: 9px;
}

.budget-template,
.update-template {
  background: var(--blue-soft);
}

.update-actions,
.reply-box {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.reply-box input {
  flex: 1 1 180px;
  min-height: 34px;
  padding: 0 10px;
  border: 1px solid var(--line);
  border-radius: 6px;
}

.permission-note {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 10px;
  border-radius: 6px;
  background: var(--amber-soft);
  color: var(--charcoal);
  font-size: 12px;
  font-weight: 900;
}

.replies {
  display: grid;
  gap: 8px;
  padding-left: 12px;
  border-left: 3px solid var(--blue);
}

.replies article {
  display: grid;
  gap: 4px;
  padding: 8px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.72);
}

.request-header {
  display: grid;
  grid-template-columns: minmax(150px, 1fr) minmax(150px, 180px);
  gap: 10px;
}

.request-header input {
  color: var(--charcoal);
  font-weight: 900;
}

.request-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(120px, 1fr));
  gap: 8px;
}

.request-grid.compact {
  grid-template-columns: repeat(2, minmax(160px, 1fr));
}

.budget-card textarea,
.timeline textarea,
.update textarea,
.blocker textarea {
  min-height: 58px;
  resize: vertical;
}

.budget-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.budget-row b {
  color: var(--green);
  font-size: 20px;
}

.budget-row input:last-child {
  max-width: 110px;
  color: var(--green);
  font-size: 20px;
  font-weight: 900;
  text-align: right;
}

.row-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.assistant-dialog {
  width: min(760px, calc(100vw - 32px));
  border: 1px solid var(--line-dark);
  border-radius: 8px;
  background: white;
  color: var(--ink);
  box-shadow: 0 24px 80px rgba(31, 78, 121, 0.28);
}

.assistant-dialog::backdrop {
  background: rgba(31, 41, 51, 0.42);
}

.assistant-dialog form,
.assistant-body {
  display: grid;
  gap: 16px;
}

.assistant-head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 16px;
}

.assistant-head h3 {
  margin: 0;
  color: var(--charcoal);
  font-size: 24px;
}

.icon-button.light {
  border-color: var(--line);
  background: var(--header);
  color: var(--charcoal);
}

.assistant-summary,
.assistant-next,
.assistant-checks article {
  display: grid;
  gap: 7px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.assistant-summary {
  background: var(--blue-soft);
}

.assistant-summary b {
  color: var(--charcoal);
}

.assistant-checks {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.assistant-checks article.pass {
  background: var(--green-soft);
}

.assistant-checks article.fail {
  background: var(--red-soft);
}

.assistant-checks span,
.assistant-summary span,
.assistant-next span {
  color: var(--muted);
  line-height: 1.4;
}

.toast {
  position: fixed;
  right: 22px;
  bottom: 22px;
  max-width: 360px;
  padding: 13px 15px;
  border-radius: 8px;
  background: var(--charcoal);
  color: white;
  box-shadow: var(--shadow);
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 180ms ease, transform 180ms ease;
  pointer-events: none;
}

.toast.show {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1200px) {
  .app-shell {
    grid-template-columns: 1fr;
  }

  .sidebar {
    position: static;
    max-width: 100vw;
    overflow: hidden;
  }

  .workspace-list {
    grid-template-columns: repeat(4, minmax(160px, 1fr));
    overflow-x: auto;
  }

  .sidebar-panel {
    margin-top: 0;
  }
}

@media (max-width: 820px) {
  body {
    overflow-x: hidden;
  }

  .main,
  .sidebar {
    width: 100%;
    max-width: 100vw;
    min-width: 0;
    padding: 18px;
  }

  .topbar {
    align-items: stretch;
    flex-direction: column;
  }

  .topbar-actions {
    grid-template-columns: 1fr;
    justify-content: flex-start;
    width: 100%;
  }

  .metrics-grid,
  .module-grid,
  .route-grid,
  .rules-grid,
  .detail-grid,
  .coverage-group > div,
  .lower-grid {
    grid-template-columns: 1fr;
  }

  .section-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .board-tools {
    justify-content: flex-start;
  }

  .board-section {
    min-width: 0;
    overflow: hidden;
  }

  .board {
    grid-auto-flow: column;
    grid-auto-columns: minmax(240px, 82vw);
    grid-template-columns: none;
  }

  .workspace-list {
    grid-template-columns: none;
    grid-auto-flow: column;
    grid-auto-columns: minmax(160px, 78vw);
  }

  .edit-grid,
  .request-header,
  .request-grid,
  .request-grid.compact,
  .timeline li {
    grid-template-columns: 1fr;
  }
}
