:root {
  --ink: #101010;
  --paper: #fbfaf6;
  --muted: #6f6a60;
  --line: #ddd6c8;
  --gold: #d7a84a;
  --gold-strong: #b98118;
  --sage: #687761;
  --danger: #8d2f28;
  --panel: #ffffff;
  --shadow: 0 18px 40px rgba(16, 16, 16, 0.08);
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--paper);
  color: var(--ink);
  font-family: "Satoshi", Arial, sans-serif;
}

body[data-theme="dark"] {
  --ink: #f7f1e7;
  --paper: #11100e;
  --muted: #b8ad9f;
  --line: #3a342d;
  --gold: #d7a84a;
  --gold-strong: #f0c36a;
  --sage: #93a58b;
  --danger: #ff9a91;
  --panel: #171512;
  --shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
  color-scheme: dark;
}

button,
input,
textarea,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

.app-shell {
  min-height: 100vh;
}

.app-layout {
  display: grid;
  grid-template-columns: 248px minmax(0, 1fr);
  min-height: 100vh;
}

.topbar {
  position: fixed;
  inset: 0 auto 0 0;
  z-index: 5;
  display: flex;
  width: 248px;
  height: 100vh;
  align-items: center;
  flex-direction: column;
  justify-content: flex-start;
  gap: 22px;
  padding: 22px 16px;
  border-right: 1px solid rgba(16, 16, 16, 0.08);
  background: rgba(251, 250, 246, 0.94);
  backdrop-filter: blur(16px);
}

body[data-theme="dark"] .topbar {
  border-right-color: var(--line);
  background: rgba(17, 16, 14, 0.94);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  min-width: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: var(--gold);
  font-family: "Cabinet Grotesk", Arial, sans-serif;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-title {
  margin: 0;
  font-family: "Cabinet Grotesk", Arial, sans-serif;
  font-size: 1.12rem;
  line-height: 1;
}

.brand-subtitle {
  margin: 3px 0 0;
  color: var(--muted);
  font-size: 0.82rem;
}

.tabs {
  display: flex;
  width: 100%;
  flex-direction: column;
  gap: 6px;
  padding: 4px;
  border: 1px solid var(--line);
  background: #f4efe4;
}

body[data-theme="dark"] .tabs {
  background: #1f1b17;
}

.tab-button {
  width: 100%;
  min-height: 40px;
  padding: 0 13px;
  border: 0;
  background: transparent;
  color: var(--muted);
  font-weight: 700;
  text-align: left;
}

.tab-button.active {
  background: var(--ink);
  color: var(--paper);
}

.user-chip {
  display: flex;
  align-items: center;
  gap: 9px;
  min-width: 0;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 700;
}

.account-actions {
  display: flex;
  width: 100%;
  margin-top: auto;
  align-items: stretch;
  flex-direction: column;
  gap: 10px;
  min-width: 0;
}

.signout-button {
  min-height: 36px;
  padding: 0 12px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 800;
}

.status-dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--sage);
}

.main {
  width: min(1240px, calc(100% - 32px));
  margin: 0 auto;
  padding: 28px 0 44px;
  grid-column: 2;
}

.auth-view {
  display: grid;
  min-height: 100vh;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 460px);
}

.auth-left {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(24px, 6vw, 64px);
  background: var(--ink);
  color: var(--paper);
}

.auth-wordmark {
  margin: 0;
  font-family: "Cabinet Grotesk", Arial, sans-serif;
  font-size: clamp(3.8rem, 11vw, 9rem);
  line-height: 0.85;
  letter-spacing: 0;
}

.auth-line {
  max-width: 620px;
  margin: 32px 0 0;
  color: #f4efe4;
  font-family: "Cabinet Grotesk", Arial, sans-serif;
  font-size: clamp(2rem, 5vw, 4.8rem);
  font-weight: 800;
  line-height: 0.98;
}

.auth-note {
  max-width: 520px;
  margin: 24px 0 0;
  color: #d6d0c3;
  font-size: 1.06rem;
  line-height: 1.55;
}

.auth-card {
  align-self: center;
  width: min(100%, 430px);
  margin: 28px;
  padding: 28px;
  border: 1px solid var(--line);
  background: var(--panel);
  box-shadow: var(--shadow);
}

#clerk-auth {
  margin-top: 22px;
}

.eyebrow {
  margin: 0 0 9px;
  color: var(--gold-strong);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section-title {
  margin: 0;
  font-family: "Cabinet Grotesk", Arial, sans-serif;
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 0.98;
}

.section-copy {
  margin: 13px 0 0;
  color: var(--muted);
  line-height: 1.55;
}

.form {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

.field {
  display: grid;
  gap: 7px;
}

.field span {
  font-weight: 800;
  font-size: 0.9rem;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  border: 1px solid var(--line);
  background: #fffdfa;
  color: var(--ink);
  min-height: 46px;
  padding: 12px 13px;
  outline: none;
}

.field textarea {
  min-height: 108px;
  resize: vertical;
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(215, 168, 74, 0.18);
}

.primary-button,
.secondary-button,
.ghost-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  border: 1px solid var(--ink);
  padding: 0 16px;
  font-weight: 800;
  text-decoration: none;
}

.primary-button {
  background: var(--ink);
  color: var(--paper);
}

.secondary-button {
  background: var(--gold);
  color: var(--ink);
  border-color: var(--gold);
}

.ghost-button {
  background: transparent;
  color: var(--ink);
}

.danger-button {
  border-color: rgba(160, 35, 35, 0.4);
  color: #8f2525;
}

.grid {
  display: grid;
  gap: 18px;
}

.dashboard-grid {
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  align-items: start;
}

.founder-panel {
  grid-column: 1 / -1;
}

.admin-form {
  margin-top: 18px;
}

.plan-card {
  margin-top: 18px;
  padding: 16px;
  border: 1px solid var(--line);
  background: #fffdfa;
}

.plan-label {
  display: block;
  margin-bottom: 7px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.plan-card strong {
  display: block;
  font-family: "Cabinet Grotesk", Arial, sans-serif;
  font-size: 1.18rem;
}

.plan-card p {
  margin: 8px 0 0;
  color: var(--muted);
  line-height: 1.45;
}

.progress-card {
  margin-top: 14px;
  padding: 16px;
  border: 1px solid var(--line);
  background: #fffdfa;
}

.action-plan-card {
  margin-top: 14px;
  padding: 16px;
  border: 1px solid var(--line);
  background: #fffdfa;
}

.action-next {
  padding: 13px;
  border: 1px solid rgba(16, 16, 16, 0.08);
  background: #fbfaf6;
}

.action-next span,
.action-report span {
  display: block;
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 800;
  text-transform: uppercase;
}

.action-next strong {
  display: block;
  margin-top: 6px;
  font-size: 1rem;
  line-height: 1.25;
}

.action-next p {
  margin: 7px 0 0;
  color: var(--muted);
  line-height: 1.4;
}

.action-list {
  display: grid;
  gap: 8px;
  margin-top: 10px;
}

.action-task-group {
  display: grid;
  gap: 9px;
  margin-top: 12px;
}

.action-group-label {
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
}

.checklist-list,
.completed-list {
  display: grid;
  gap: 9px;
}

.completed-list {
  margin-top: 14px;
}

.checklist-task {
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr) auto;
  gap: 10px;
  align-items: start;
  padding: 12px;
  border: 1px solid rgba(16, 16, 16, 0.08);
  background: #fbfaf6;
}

.checklist-task.completed {
  opacity: 0.72;
}

.check.done {
  background: var(--sage);
  color: var(--paper);
}

.checklist-task h3 {
  margin: 0 0 4px;
  font-size: 0.94rem;
  line-height: 1.25;
}

.checklist-task p {
  margin: 0;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.35;
}

.checklist-task .task-result {
  margin-top: 6px;
  color: var(--ink);
}

.checklist-task button {
  min-height: 34px;
  border: 1px solid var(--ink);
  padding: 0 10px;
  background: transparent;
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 800;
}

.action-report {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  align-items: start;
  padding: 11px;
  border: 1px solid rgba(16, 16, 16, 0.08);
  background: var(--panel);
}

.action-report strong {
  display: block;
  font-size: 0.92rem;
  line-height: 1.25;
}

.action-report p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.35;
}

.button-row.compact {
  margin-top: 12px;
}

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

.progress-item {
  min-height: 78px;
  padding: 12px;
  border: 1px solid rgba(16, 16, 16, 0.08);
  background: #fbfaf6;
}

.progress-item span {
  display: block;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}

.progress-item strong {
  display: block;
  margin-top: 7px;
  font-size: 0.96rem;
  line-height: 1.25;
}

.progress-next {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.45;
}

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

.profile-item {
  min-height: 82px;
  padding: 13px;
  border: 1px solid var(--line);
  background: #fffdfa;
}

.profile-item span {
  display: block;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
}

.profile-item strong {
  display: block;
  margin-top: 8px;
  font-size: 0.98rem;
  line-height: 1.35;
}

.appearance-options {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin-top: 18px;
}

.theme-option {
  min-height: 42px;
  border: 1px solid var(--line);
  background: #fffdfa;
  color: var(--ink);
  font-weight: 800;
}

.theme-option.active {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--paper);
}

.panel {
  border: 1px solid var(--line);
  background: var(--panel);
  box-shadow: var(--shadow);
}

.panel-pad {
  padding: clamp(20px, 4vw, 30px);
}

.stat-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 22px;
}

.stat {
  border: 1px solid var(--line);
  padding: 16px;
  background: #fffdfa;
}

.stat strong {
  display: block;
  font-family: "Cabinet Grotesk", Arial, sans-serif;
  font-size: 1.7rem;
}

.stat span {
  color: var(--muted);
  font-size: 0.88rem;
}

.task-list {
  display: grid;
  gap: 10px;
  margin-top: 20px;
}

.task {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 10px;
  align-items: start;
  padding: 13px;
  border: 1px solid var(--line);
  background: #fffdfa;
}

.check {
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border: 1px solid var(--sage);
  color: var(--sage);
  font-size: 0.85rem;
  font-weight: 800;
}

.task h3 {
  margin: 0 0 4px;
  font-size: 0.98rem;
}

.task p {
  margin: 0;
  color: var(--muted);
  line-height: 1.45;
}

.intake-wrap {
  max-width: 780px;
  margin: 0 auto;
}

.progress-line {
  height: 8px;
  margin: 18px 0 22px;
  background: #e9dfcf;
}

.progress-fill {
  height: 100%;
  background: var(--gold);
  transition: width 180ms ease;
}

.choice-grid {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.choice {
  width: 100%;
  min-height: 54px;
  border: 1px solid var(--line);
  background: #fffdfa;
  padding: 13px;
  text-align: left;
  font-weight: 700;
}

.choice.selected {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--paper);
}

.intake-summary-list {
  display: grid;
  gap: 9px;
  margin: 18px 0;
}

.intake-summary-row {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 12px;
  align-items: start;
  padding: 12px;
  border: 1px solid var(--line);
  background: #fffdfa;
}

.intake-summary-row span {
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.35;
}

.intake-summary-row strong {
  font-size: 0.92rem;
  line-height: 1.35;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.chat-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 18px;
  align-items: start;
}

.chat-panel {
  display: grid;
  grid-template-rows: auto minmax(520px, calc(100vh - 180px)) auto;
  overflow: hidden;
}

.chat-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border-bottom: 1px solid var(--line);
}

.chat-header .section-copy {
  max-width: 560px;
  margin-top: 0;
  font-size: 0.92rem;
}

.chat-title,
.sidebar-title {
  margin: 0;
  font-family: "Cabinet Grotesk", Arial, sans-serif;
  font-size: 1.45rem;
  line-height: 1;
}

.sidebar-title {
  font-size: 1.55rem;
  line-height: 1.08;
}

.messages {
  display: grid;
  align-content: start;
  gap: 13px;
  overflow: auto;
  padding: 18px;
  background: #f7f1e7;
}

.message-wrap {
  display: grid;
  gap: 8px;
}

.message-wrap.user {
  justify-items: end;
}

.message-wrap.agent {
  justify-items: start;
}

.message {
  max-width: 82%;
  padding: 13px 14px;
  line-height: 1.48;
  white-space: pre-wrap;
}

.message.agent {
  justify-self: start;
  background: var(--panel);
  border: 1px solid var(--line);
}

.message.user {
  justify-self: end;
  background: var(--ink);
  color: var(--paper);
}

.message a {
  color: var(--gold-strong);
  font-weight: 800;
}

.message.user a {
  color: var(--gold);
}

.resource-list {
  display: grid;
  gap: 8px;
  max-width: min(680px, 92%);
}

.resource-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  padding: 12px;
  border: 1px solid var(--line);
  background: #fffdfa;
  cursor: pointer;
}

.resource-title-link {
  display: block;
  font-size: 0.95rem;
  font-weight: 900;
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.resource-status {
  display: inline-flex;
  align-items: center;
  min-height: 22px;
  margin-top: 6px;
  padding: 0 8px;
  border: 1px solid var(--line);
  background: var(--panel);
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 900;
}

.resource-status.needs_recheck {
  border-color: #9f6b00;
  background: #fff6dc;
  color: #6d4a00;
}

.resource-card p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.35;
}

.resource-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  justify-content: flex-end;
}

.resource-actions a,
.resource-actions button {
  min-height: 34px;
  border: 1px solid var(--ink);
  padding: 0 10px;
  background: var(--ink);
  color: var(--paper);
  font-size: 0.78rem;
  font-weight: 800;
  text-decoration: none;
}

.resource-actions button {
  background: transparent;
  color: var(--ink);
}

.chat-form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  padding: 14px;
  border-top: 1px solid var(--line);
  background: var(--panel);
}

.chat-tool-row,
.file-preview {
  grid-column: 1 / -1;
}

.chat-tool-row {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
}

.tool-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-height: 34px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--ink);
  padding: 0 11px;
  font-size: 0.8rem;
  font-weight: 900;
}

.tool-button.active {
  border-color: var(--gold);
  background: var(--gold);
  color: var(--ink);
}

.tool-button.icon-button {
  width: 38px;
  padding: 0;
}

.tool-button svg {
  width: 17px;
  height: 17px;
  stroke: currentColor;
}

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

.chat-tool-status {
  min-width: 0;
  color: var(--muted);
  font-size: 0.8rem;
  line-height: 1.3;
}

.file-preview {
  display: none;
  gap: 9px;
  flex-direction: column;
}

.file-preview:not(:empty) {
  display: flex;
}

.file-pill-row {
  display: flex;
  gap: 7px;
  flex-wrap: wrap;
}

.file-pill {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  border: 1px solid var(--line);
  background: #fffdfa;
  color: var(--ink);
  padding: 0 8px;
  font-size: 0.78rem;
  font-weight: 800;
}

.file-purpose {
  display: grid;
  gap: 6px;
  max-width: 280px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
}

.file-purpose select {
  min-height: 36px;
  border: 1px solid var(--line);
  background: #fffdfa;
  color: var(--ink);
  padding: 0 9px;
}

.upload-confirm {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 8px;
  align-items: start;
  color: var(--ink);
  font-size: 0.82rem;
  line-height: 1.35;
}

.upload-warning {
  margin: 0;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.35;
}

.chat-form textarea {
  min-height: 46px;
  max-height: 130px;
  resize: vertical;
}

.guide-list {
  display: grid;
  gap: 10px;
  margin-top: 16px;
}

.guide-item {
  display: block;
  border: 1px solid var(--line);
  padding: 13px;
  background: #fffdfa;
  color: var(--ink);
  text-decoration: none;
}

.guide-item strong {
  display: block;
}

.guide-item span {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.9rem;
}

.notice {
  margin-top: 14px;
  border-left: 4px solid var(--gold);
  padding: 12px 13px;
  background: #fff8e6;
  color: #4c3a17;
  line-height: 1.45;
}

.locked {
  border-color: #ead7a6;
  background: #fff8e6;
}

.error {
  border-left-color: var(--danger);
  background: #fff0ee;
  color: var(--danger);
}

.small {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.45;
}

body[data-theme="dark"] .auth-left {
  background: #050504;
}

body[data-theme="dark"] .field input,
body[data-theme="dark"] .field textarea,
body[data-theme="dark"] .field select,
body[data-theme="dark"] .file-purpose select,
body[data-theme="dark"] .chat-form textarea {
  border-color: var(--line);
  background: #11100e;
  color: var(--ink);
}

body[data-theme="dark"] .plan-card,
body[data-theme="dark"] .progress-card,
body[data-theme="dark"] .action-plan-card,
body[data-theme="dark"] .progress-item,
body[data-theme="dark"] .profile-item,
body[data-theme="dark"] .stat,
body[data-theme="dark"] .task,
body[data-theme="dark"] .choice,
body[data-theme="dark"] .intake-summary-row,
body[data-theme="dark"] .resource-card,
body[data-theme="dark"] .guide-item,
body[data-theme="dark"] .theme-option,
body[data-theme="dark"] .file-pill {
  background: #1f1b17;
}

body[data-theme="dark"] .action-next,
body[data-theme="dark"] .action-report,
body[data-theme="dark"] .checklist-task {
  border-color: rgba(255, 255, 255, 0.08);
  background: #191612;
}

body[data-theme="dark"] .messages {
  background: #0d0c0a;
}

body[data-theme="dark"] .message.agent {
  background: #1f1b17;
}

body[data-theme="dark"] .resource-status,
body[data-theme="dark"] .notice,
body[data-theme="dark"] .locked {
  background: #211c13;
  color: var(--ink);
}

body[data-theme="dark"] .resource-status.needs_recheck {
  border-color: #856b36;
  background: #241d10;
  color: #f0c36a;
}

body[data-theme="dark"] .error {
  background: #2a1614;
  color: var(--danger);
}

body[data-theme="dark"] .progress-line {
  background: #2a251f;
}

@media (max-width: 860px) {
  .app-layout {
    display: block;
  }

  .auth-view,
  .dashboard-grid,
  .chat-layout {
    grid-template-columns: 1fr;
  }

  .auth-left {
    min-height: 48vh;
  }

  .topbar {
    position: sticky;
    inset: auto;
    width: 100%;
    height: auto;
    align-items: flex-start;
    flex-direction: column;
    border-right: 0;
    border-bottom: 1px solid rgba(16, 16, 16, 0.08);
  }

  body[data-theme="dark"] .topbar {
    border-bottom-color: var(--line);
  }

  .main {
    width: min(100% - 32px, 100%);
    grid-column: auto;
  }

  .tabs {
    width: 100%;
    flex-direction: row;
    overflow-x: auto;
  }

  .tab-button {
    width: auto;
    text-align: center;
  }

  .account-actions {
    width: 100%;
    justify-content: space-between;
    flex-direction: row;
  }

  .tab-button {
    white-space: nowrap;
  }

  .stat-row {
    grid-template-columns: 1fr;
  }

  .progress-grid {
    grid-template-columns: 1fr;
  }

  .action-report {
    grid-template-columns: 1fr;
  }

  .checklist-task {
    grid-template-columns: 24px minmax(0, 1fr);
  }

  .checklist-task button {
    grid-column: 2;
    width: fit-content;
  }

  .profile-grid {
    grid-template-columns: 1fr;
  }

  .chat-panel {
    grid-template-rows: auto minmax(360px, 60vh) auto;
  }

  .chat-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .chat-form {
    grid-template-columns: 1fr;
  }

  .message {
    max-width: 94%;
  }

  .resource-card {
    grid-template-columns: 1fr;
  }

  .resource-actions {
    justify-content: flex-start;
  }

  .intake-summary-row {
    grid-template-columns: 1fr;
  }
}
