﻿:root {
  color-scheme: light;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #f6f4ef;
  color: #232721;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at 10% 12%, rgba(255, 255, 255, 0.75) 0 2px, transparent 3px 100%),
    linear-gradient(120deg, rgba(233, 239, 227, 0.9), rgba(247, 244, 238, 0.95)),
    url("https://images.unsplash.com/photo-1490730141103-6cac27aaab94?auto=format&fit=crop&w=1800&q=80");
  background-size: cover;
  background-attachment: fixed;
}

button,
select,
textarea {
  font: inherit;
}

.app-shell {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 32px 0;
}

.topbar {
  margin-bottom: 24px;
}

.brand-block {
  min-width: 0;
}

.brand-meta {
  margin-bottom: 6px;
}

.title-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) max-content;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.top-actions {
  position: relative;
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: end;
}

.eyebrow {
  margin: 0;
  color: #5f6f55;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  position: relative;
  display: block;
  margin-bottom: 0;
  min-width: 0;
  padding-left: clamp(42px, 7vw, 70px);
  font-size: clamp(1.85rem, 5.8vw, 4.35rem);
  line-height: 1;
  white-space: nowrap;
}

.cross-mark {
  position: absolute;
  left: 0;
  top: 50%;
  display: grid;
  place-items: center;
  width: clamp(32px, 6vw, 58px);
  aspect-ratio: 1;
  transform: translateY(-50%);
  border: 2px solid rgba(49, 95, 77, 0.28);
  border-radius: 50%;
  background: rgba(255, 254, 250, 0.72);
  color: #315f4d;
  font-size: 0.68em;
}

.menu-toggle {
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 4px;
  width: 48px;
  min-height: 44px;
  border: 1px solid #a0ad97;
  border-radius: 8px;
  background: rgba(255, 254, 250, 0.86);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: #315f4d;
}

.menu-toggle:hover {
  background: #edf2e8;
}

.app-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  z-index: 20;
  display: grid;
  gap: 6px;
  width: min(260px, calc(100vw - 32px));
  padding: 10px;
  border: 1px solid rgba(49, 95, 77, 0.2);
  border-radius: 8px;
  background: rgba(255, 254, 250, 0.98);
  box-shadow: 0 18px 42px rgba(36, 42, 31, 0.18);
}

.menu-item,
.menu-status {
  align-items: center;
  width: 100%;
  min-height: 42px;
  border: 1px solid #a0ad97;
  border-radius: 8px;
  padding: 0 12px;
  background: #fffefa;
  color: #315f4d;
  font-weight: 900;
}

.menu-item {
  display: flex;
  cursor: pointer;
  text-align: left;
}

.menu-item:hover {
  background: #edf2e8;
}

.menu-item-disabled {
  cursor: default;
  opacity: 0.62;
}

.menu-status {
  display: grid;
  grid-template-columns: minmax(0, 1fr) max-content;
  gap: 10px;
  background: #edf2e8;
}

.menu-status span {
  color: #5f6f55;
  font-size: 0.82rem;
  font-weight: 800;
}

.menu-status strong {
  color: #315f4d;
}

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

.workspace.results-view {
  display: block;
}

.workspace.journal-view {
  display: block;
}

.workspace.favorites-view {
  display: block;
}

.workspace.privacy-view {
  display: block;
}

.workspace.supporter-view {
  display: block;
}

.workspace.results-view .input-panel {
  display: none;
}

.workspace.journal-view .input-panel,
.workspace.journal-view .results-panel,
.workspace.journal-view .favorites-panel,
.workspace.privacy-view .input-panel,
.workspace.privacy-view .results-panel,
.workspace.privacy-view .journal-panel,
.workspace.privacy-view .favorites-panel,
.workspace.privacy-view .supporter-panel,
.workspace.supporter-view .input-panel,
.workspace.supporter-view .results-panel,
.workspace.supporter-view .journal-panel,
.workspace.supporter-view .favorites-panel,
.workspace.favorites-view .input-panel,
.workspace.favorites-view .results-panel,
.workspace.favorites-view .journal-panel,
.workspace.favorites-view .privacy-panel,
.workspace.favorites-view .supporter-panel,
.workspace.supporter-view .privacy-panel {
  display: none;
}

.input-panel,
.results-panel,
.journal-panel,
.favorites-panel,
.privacy-panel,
.supporter-panel {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(77, 84, 70, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 18px 48px rgba(36, 42, 31, 0.12);
}

.input-panel::before,
.results-panel::before,
.journal-panel::before,
.favorites-panel::before,
.privacy-panel::before,
.supporter-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, transparent 24%, rgba(139, 63, 51, 0.08) 24% 25%, transparent 25% 49%, rgba(49, 95, 77, 0.08) 49% 50%, transparent 50% 74%, rgba(139, 112, 55, 0.08) 74% 75%, transparent 75%),
    linear-gradient(0deg, transparent 24%, rgba(49, 95, 77, 0.06) 24% 25%, transparent 25% 49%, rgba(139, 63, 51, 0.06) 49% 50%, transparent 50% 74%, rgba(139, 112, 55, 0.06) 74% 75%, transparent 75%);
  background-size: 120px 120px;
  opacity: 0.55;
}

.input-panel > *,
.results-panel > *,
.journal-panel > *,
.favorites-panel > *,
.privacy-panel > *,
.supporter-panel > * {
  position: relative;
}

.input-panel {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 20px;
}

.results-panel {
  min-height: 560px;
  padding: 20px;
}

.journal-panel {
  min-height: 560px;
  padding: 20px;
}

.favorites-panel {
  min-height: 560px;
  padding: 20px;
}

.privacy-panel {
  min-height: 560px;
  padding: 20px;
}

.supporter-panel {
  min-height: 560px;
  padding: 20px;
}

.workspace.results-view .results-panel,
.workspace.journal-view .journal-panel,
.workspace.favorites-view .favorites-panel,
.workspace.privacy-view .privacy-panel,
.workspace.supporter-view .supporter-panel {
  display: block;
  max-width: 760px;
  margin: 0 auto;
}

.back-action {
  min-height: 40px;
  margin-bottom: 16px;
  border: 1px solid #b8c0b2;
  border-radius: 999px;
  padding: 0 14px;
  background: #fffefa;
  color: #315f4d;
  cursor: pointer;
  font-weight: 900;
}

.back-action:hover {
  background: #edf2e8;
}

.field-group {
  display: grid;
  gap: 8px;
}

.field-note {
  margin: 0;
  color: #687260;
  font-size: 0.84rem;
  line-height: 1.4;
}

.intensity-group {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin: 0;
  padding: 0;
  border: 0;
}

.intensity-group legend {
  grid-column: 1 / -1;
  margin-bottom: 2px;
  font-weight: 800;
}

.intensity-group label {
  position: relative;
  min-height: 42px;
  cursor: pointer;
}

.intensity-group input {
  position: absolute;
  opacity: 0;
}

.intensity-group span {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  min-height: 42px;
  border: 1px solid #b8c0b2;
  border-radius: 8px;
  background: #fffefa;
  color: #35402f;
  font-weight: 800;
}

.intensity-group input:checked + span {
  border-color: #315f4d;
  background: #315f4d;
  color: #fff;
}

label {
  font-weight: 800;
}

select,
textarea {
  width: 100%;
  border: 1px solid #b8c0b2;
  border-radius: 8px;
  background: #fffefa;
  color: #20251d;
}

select {
  min-height: 44px;
  padding: 0 12px;
}

textarea {
  resize: vertical;
  min-height: 190px;
  padding: 12px;
  line-height: 1.45;
}

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

.quick-tags button,
.primary-action {
  min-height: 42px;
  border: 0;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 800;
}

.quick-tags button {
  background: #e8ede1;
  color: #2c3729;
}

.quick-tags button:hover {
  background: #dfe8d6;
}

.primary-action {
  background: #315f4d;
  color: #fff;
}

.primary-action:hover {
  background: #244d3e;
}

.disclaimer {
  margin-bottom: 0;
  color: #5a6255;
  font-size: 0.88rem;
  line-height: 1.45;
}

.empty-state,
.crisis-state {
  display: grid;
  align-content: center;
  min-height: 500px;
  max-width: 580px;
}

.empty-state h2,
.crisis-state h2 {
  font-size: 2rem;
  margin-bottom: 10px;
}

.empty-state p,
.crisis-state p {
  color: #555f50;
  line-height: 1.6;
}

.crisis-state {
  max-width: 700px;
  border: 2px solid #9b2f25;
  border-radius: 8px;
  padding: 28px;
  background: #fff3ee;
  color: #3c241c;
}

.crisis-state p {
  color: #55332a;
}

.crisis-state strong {
  color: #9b2f25;
}

.crisis-label {
  width: max-content;
  border-radius: 999px;
  padding: 7px 10px;
  background: #9b2f25;
  color: #fff !important;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hidden {
  display: none;
}

.analysis-card {
  padding: 20px;
  border-radius: 8px;
  background: #edf2e8;
}

.analysis-card h2 {
  margin-bottom: 14px;
}

.result-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
}

.save-action {
  min-height: 40px;
  border: 0;
  border-radius: 999px;
  padding: 0 14px;
  background: #315f4d;
  color: #fff;
  cursor: pointer;
  font-weight: 900;
}

.save-action:hover {
  background: #244d3e;
}

.save-status {
  color: #36513f;
  font-size: 0.9rem;
  font-weight: 800;
}

.theme-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.theme-chips span {
  border-radius: 999px;
  padding: 7px 10px;
  background: #ffffff;
  color: #36513f;
  font-size: 0.9rem;
  font-weight: 800;
}

.content-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 14px;
}

.guided-flow {
  align-items: start;
}

.content-card {
  min-height: 205px;
  padding: 18px;
  border: 1px solid rgba(49, 95, 77, 0.18);
  border-radius: 8px;
  background: #fffefa;
}

.scripture-card {
  grid-column: 1 / -1;
}

.prayer-card {
  background: linear-gradient(135deg, #fffefa, #f7f4ec);
}

.commitment-card {
  min-height: 150px;
  background: linear-gradient(135deg, #fffefa, #edf2e8);
}

.supporter-preview-card {
  min-height: 170px;
  border-color: rgba(139, 112, 55, 0.3);
  background: #fffaf0;
}

.locked-card-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}

.locked-card-heading .card-type {
  margin-bottom: 0;
}

.lock-pill {
  flex: 0 0 auto;
  border: 1px solid rgba(139, 112, 55, 0.34);
  border-radius: 999px;
  padding: 6px 9px;
  background: #fffefa;
  color: #6d5525;
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
}

.content-card h3 {
  margin-bottom: 10px;
  font-size: 1.15rem;
}

.content-card p {
  color: #3f463b;
  line-height: 1.55;
}

.content-card small {
  display: block;
  color: #6a735f;
  font-weight: 700;
}

.source-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-top: 14px;
}

.source-row span,
.source-row a {
  border-radius: 999px;
  padding: 7px 10px;
  font-size: 0.82rem;
  font-weight: 800;
}

.source-row span {
  background: #edf2e8;
  color: #36513f;
}

.source-row a {
  background: #315f4d;
  color: #fff;
  text-decoration: none;
}

.scripture-list {
  display: grid;
  gap: 14px;
}

.hymn-list {
  display: grid;
  gap: 14px;
}

.hymn-item {
  border-left: 3px solid #315f4d;
  padding-left: 12px;
}

.hymn-item h3 {
  margin-bottom: 6px;
}

.hymn-item p {
  margin-bottom: 8px;
}

.hymn-refs {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.hymn-refs span {
  border-radius: 999px;
  padding: 6px 9px;
  background: #edf2e8;
  color: #36513f;
  font-size: 0.78rem;
  font-weight: 800;
}

.hymn-item .youtube-link,
.hymn-item .youtube-link:visited {
  display: inline-flex;
  align-items: center;
  margin-top: 10px;
  border-radius: 999px;
  padding: 7px 10px;
  background: #315f4d;
  color: #fff;
  font-size: 0.82rem;
  font-weight: 800;
  text-decoration: none;
}

.hymn-item .youtube-link:hover {
  background: #244d3e;
  color: #fff;
}

.hymn-number-note {
  margin: 14px 0 0;
  color: #6a735f;
  font-size: 0.84rem;
  font-weight: 700;
}

.scripture-item {
  border-left: 3px solid #8b7037;
  padding-left: 12px;
}

.scripture-item h3 {
  margin-bottom: 6px;
}

.scripture-item p {
  margin-bottom: 8px;
}

.bible-context {
  margin: 10px 0;
  padding: 12px;
  border: 1px solid rgba(49, 95, 77, 0.16);
  border-radius: 8px;
  background: #f8faf4;
}

.bible-context span {
  display: block;
  margin-bottom: 5px;
  color: #315f4d;
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
}

.bible-context p {
  margin-bottom: 0;
  color: #465140;
  font-size: 0.94rem;
}

.selection-rationale {
  margin-top: 16px;
  padding: 14px;
  border-radius: 8px;
  background: #f4f0e4;
}

.selection-rationale span {
  display: block;
  margin-bottom: 6px;
  color: #6e5a28;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.selection-rationale p {
  margin-bottom: 0;
}

.card-type {
  display: block;
  margin-bottom: 10px;
  color: #6e7d62;
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.journal-header {
  display: grid;
  gap: 8px;
  margin-bottom: 18px;
  padding: 20px;
  border-radius: 8px;
  background: #edf2e8;
}

.journal-header h2 {
  margin-bottom: 0;
}

.journal-header p {
  margin-bottom: 0;
  color: #495444;
  line-height: 1.5;
}

.favorites-header {
  display: grid;
  gap: 8px;
  margin-bottom: 18px;
  padding: 20px;
  border-radius: 8px;
  background: #edf2e8;
}

.favorites-header h2 {
  margin-bottom: 0;
}

.favorites-header p {
  margin-bottom: 0;
  color: #495444;
  line-height: 1.5;
}

.favorites-list {
  display: grid;
  gap: 12px;
}

.favorites-empty,
.favorites-limit-note,
.favorite-entry {
  border: 1px solid rgba(49, 95, 77, 0.18);
  border-radius: 8px;
  background: #fffefa;
}

.favorites-empty {
  padding: 20px;
  color: #4d5748;
  line-height: 1.55;
}

.favorites-limit-note {
  padding: 12px 14px;
  color: #4d5748;
  font-size: 0.9rem;
  line-height: 1.45;
}

.favorite-entry {
  padding: 16px;
}

.favorite-entry header {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 10px;
}

.favorite-type,
.favorite-source {
  color: #6a735f;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.favorite-entry h3 {
  margin: 4px 0 0;
  font-size: 1.08rem;
}

.favorite-entry p {
  color: #3f463b;
  line-height: 1.5;
}

.favorite-link,
.favorite-action {
  display: inline-flex;
  align-items: center;
  margin-top: 10px;
  border: 1px solid rgba(49, 95, 77, 0.32);
  border-radius: 999px;
  padding: 7px 10px;
  background: #edf2e8;
  color: #315f4d;
  cursor: pointer;
  font-size: 0.84rem;
  font-weight: 900;
  text-decoration: none;
}

.favorite-action:disabled {
  cursor: default;
  opacity: 0.68;
}

.plan-card {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
  padding: 16px;
  border: 1px solid rgba(49, 95, 77, 0.18);
  border-radius: 8px;
  background: #fffefa;
}

.plan-card h3 {
  margin-bottom: 6px;
  font-size: 1.05rem;
}

.plan-card p {
  margin-bottom: 0;
  color: #4d5748;
  line-height: 1.5;
}

.plan-badge {
  flex: 0 0 auto;
  border: 1px solid #a0ad97;
  border-radius: 999px;
  padding: 8px 12px;
  background: #edf2e8;
  color: #315f4d;
  font-size: 0.8rem;
  font-weight: 900;
}

.journal-list {
  display: grid;
  gap: 12px;
}

.journal-empty,
.journal-limit-note,
.journal-entry {
  border: 1px solid rgba(49, 95, 77, 0.18);
  border-radius: 8px;
  background: #fffefa;
}

.journal-empty {
  padding: 20px;
  color: #4d5748;
  line-height: 1.55;
}

.journal-limit-note {
  padding: 12px 14px;
  color: #4d5748;
  font-size: 0.9rem;
  line-height: 1.45;
}

.journal-entry {
  padding: 16px;
}

.journal-entry header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 10px;
}

.journal-entry h3 {
  margin-bottom: 4px;
  font-size: 1.08rem;
}

.journal-date {
  color: #6a735f;
  font-size: 0.82rem;
  font-weight: 800;
}

.journal-reflection {
  margin-bottom: 12px;
  color: #3f463b;
  line-height: 1.5;
}

.journal-details {
  display: grid;
  gap: 8px;
  color: #3f463b;
  font-size: 0.92rem;
  line-height: 1.45;
}

.journal-details strong {
  color: #315f4d;
}

.delete-entry {
  flex: 0 0 auto;
  min-height: 34px;
  border: 1px solid #c7b8ae;
  border-radius: 999px;
  padding: 0 10px;
  background: #fff8f2;
  color: #7b382d;
  cursor: pointer;
  font-weight: 900;
}

.delete-entry:hover {
  background: #fff0e8;
}

.privacy-header {
  display: grid;
  gap: 8px;
  margin-bottom: 18px;
  padding: 20px;
  border-radius: 8px;
  background: #edf2e8;
}

.supporter-header {
  display: grid;
  gap: 8px;
  margin-bottom: 18px;
  padding: 20px;
  border-radius: 8px;
  background: #edf2e8;
}

.supporter-header h2,
.supporter-header p {
  margin-bottom: 0;
}

.supporter-header p {
  color: #495444;
  line-height: 1.55;
}

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

.supporter-card,
.supporter-sync,
.supporter-note {
  padding: 18px;
  border: 1px solid rgba(49, 95, 77, 0.18);
  border-radius: 8px;
  background: #fffefa;
}

.supporter-featured {
  border-color: rgba(139, 112, 55, 0.34);
  background: #fffaf0;
}

.supporter-card h3 {
  margin-bottom: 10px;
  font-size: 1.1rem;
}

.supporter-card ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 18px;
  color: #3f463b;
  line-height: 1.45;
}

.supporter-sync,
.supporter-note {
  margin-top: 12px;
}

.supporter-sync {
  background: #f8faf4;
}

.supporter-sync h3 {
  margin-bottom: 8px;
  font-size: 1.1rem;
}

.supporter-sync p,
.supporter-note p {
  margin-bottom: 0;
  color: #3f463b;
  line-height: 1.55;
}

.privacy-header h2,
.privacy-header p {
  margin-bottom: 0;
}

.privacy-header p {
  color: #495444;
  line-height: 1.55;
}

.policy-grid {
  display: grid;
  gap: 12px;
}

.policy-card {
  padding: 18px;
  border: 1px solid rgba(49, 95, 77, 0.18);
  border-radius: 8px;
  background: #fffefa;
}

.policy-card h3 {
  margin-bottom: 8px;
  font-size: 1.1rem;
}

.policy-card p {
  margin-bottom: 0;
  color: #3f463b;
  line-height: 1.55;
}

.urgent-policy {
  border-color: rgba(155, 47, 37, 0.35);
  background: #fff7f2;
}

.urgent-policy .card-type,
.urgent-policy h3 {
  color: #8a3027;
}

.legal-page {
  min-height: 100vh;
  padding: 28px 16px;
  background:
    linear-gradient(rgba(246, 244, 239, 0.92), rgba(246, 244, 239, 0.92)),
    radial-gradient(circle at 18% 12%, rgba(49, 95, 77, 0.12), transparent 28%),
    radial-gradient(circle at 82% 0%, rgba(139, 112, 55, 0.14), transparent 30%);
}

.legal-shell {
  max-width: 780px;
  margin: 0 auto;
}

.legal-shell h1 {
  margin: 8px 0 6px;
  font-size: clamp(2.1rem, 6vw, 3.4rem);
}

.legal-updated {
  margin-bottom: 18px;
  color: #596252;
  font-weight: 800;
}

.legal-card {
  margin-bottom: 12px;
  padding: 18px;
  border: 1px solid rgba(49, 95, 77, 0.18);
  border-radius: 8px;
  background: rgba(255, 254, 250, 0.94);
}

.legal-card h2 {
  margin-bottom: 8px;
  font-size: 1.12rem;
}

.legal-card p {
  color: #3f463b;
  line-height: 1.6;
}

.legal-card p:last-child {
  margin-bottom: 0;
}

@media (max-width: 860px) {
  .app-shell {
    width: min(100% - 20px, 680px);
    padding: 18px 0;
  }

  .topbar {
    margin-bottom: 16px;
  }

  .title-row {
    min-width: 0;
  }

  .brand-meta {
    gap: 8px;
  }

  .workspace,
  .content-grid {
    grid-template-columns: 1fr;
  }

  h1 {
    font-size: clamp(1.48rem, 6.7vw, 1.95rem);
    padding-left: clamp(38px, 10vw, 48px);
  }

  .menu-toggle {
    width: 42px;
    min-height: 38px;
  }

  .app-menu {
    top: calc(100% + 6px);
  }

  .input-panel,
  .results-panel,
  .journal-panel,
  .favorites-panel,
  .privacy-panel,
  .supporter-panel {
    border-radius: 0;
    box-shadow: none;
  }

  .workspace.results-view .results-panel,
  .workspace.journal-view .journal-panel,
  .workspace.favorites-view .favorites-panel,
  .workspace.privacy-view .privacy-panel,
  .workspace.supporter-view .supporter-panel {
    max-width: none;
  }

  .results-panel,
  .journal-panel,
  .favorites-panel,
  .privacy-panel,
  .supporter-panel {
    min-height: auto;
  }

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

  .journal-entry header {
    display: grid;
  }

  .favorite-entry header {
    display: grid;
  }

  .plan-card {
    display: grid;
  }

  .plan-badge {
    justify-self: start;
  }

  .empty-state,
  .crisis-state {
    min-height: 280px;
  }
}
