:root {
  --bg: #fbfcfe;
  --panel: #ffffff;
  --soft: #f6f8fb;
  --line: #e7ebf1;
  --ink: #111827;
  --muted: #697386;
  --blue: #2f7df6;
  --blue-soft: #eff6ff;
  --green: #19b96f;
  --green-soft: #ecfbf3;
  --amber: #f59f00;
  --amber-soft: #fff8e7;
  --pink: #ef3d7a;
  --pink-soft: #fff0f6;
  --purple: #7c4dff;
  --shadow: 0 10px 26px rgba(15, 23, 42, 0.06);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  background: var(--bg);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.sidebar {
  min-height: 100vh;
  padding: 24px 20px;
  border-right: 1px solid var(--line);
  background: #fff;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.brand-lockup {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 48px;
}

.brand-lockup img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.brand-lockup strong {
  font-size: 18px;
}

.nav-section {
  display: grid;
  gap: 6px;
}

.nav-section span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  margin: 8px 0 4px;
}

.nav-item,
.nav-section a,
button {
  font: inherit;
}

.nav-item,
.nav-section a {
  min-height: 38px;
  border: 0;
  border-radius: 10px;
  background: transparent;
  color: var(--ink);
  display: flex;
  align-items: center;
  padding: 0 11px;
  font-size: 14px;
  font-weight: 720;
  text-align: left;
  text-decoration: none;
  cursor: pointer;
}

.nav-item svg {
  width: 18px;
  height: 18px;
  margin-right: 10px;
  fill: #7b8495;
  flex: 0 0 auto;
}

.nav-item:hover,
.nav-section a:hover,
.nav-item.active {
  background: #f3f6fb;
  color: var(--blue);
}

.nav-item:hover svg,
.nav-item.active svg {
  fill: var(--blue);
}

.nav-item.active::before {
  content: none;
}

.sidebar-card {
  margin-top: auto;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 16px;
  background: linear-gradient(180deg, #fff, #f8fafc);
}

.sidebar-card span {
  color: var(--blue);
  font-size: 12px;
  font-weight: 850;
}

.sidebar-card strong {
  display: block;
  margin-top: 7px;
}

.sidebar-card p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
  margin: 6px 0 0;
}

.app-shell {
  min-width: 0;
  padding: 24px 34px 34px;
}

.topbar {
  min-height: 104px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 20px;
}

.breadcrumb {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 0 10px;
  border-radius: 999px;
  background: var(--blue-soft);
  color: var(--blue);
  font-size: 12px;
  font-weight: 850;
}

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

h1 {
  font-size: 28px;
  line-height: 1.15;
  margin: 12px 0 5px;
}

.topbar p,
.panel-head p,
.hero-panel p {
  color: var(--muted);
  margin-bottom: 0;
}

.top-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-top: 20px;
}

.backend-status {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0 12px;
  background: #fff;
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.05);
  white-space: nowrap;
}

.backend-status::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--amber);
  box-shadow: 0 0 0 4px rgba(245, 159, 0, 0.13);
}

.backend-status.live {
  border-color: #c9efdc;
  color: #117548;
  background: #fbfffd;
}

.backend-status.live::before {
  background: var(--green);
  box-shadow: 0 0 0 4px rgba(25, 185, 111, 0.14);
}

.backend-status.offline::before {
  background: var(--pink);
  box-shadow: 0 0 0 4px rgba(239, 61, 122, 0.13);
}

.global-search {
  min-width: 300px;
  height: 40px;
  display: flex;
  align-items: center;
  gap: 9px;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0 13px;
  background: #fff;
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.05);
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.global-search:focus-within {
  border-color: #b9cef2;
  box-shadow: 0 14px 32px rgba(47, 125, 246, 0.12);
}

.global-search svg {
  width: 18px;
  height: 18px;
  fill: #7a8496;
  flex: 0 0 auto;
}

.global-search input {
  width: 100%;
  min-width: 0;
  border: 0;
  outline: 0;
  background: transparent;
  font: inherit;
  font-size: 14px;
  font-weight: 720;
  color: var(--ink);
}

.global-search input::placeholder {
  color: #8a94a6;
}

button {
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  height: 38px;
  border-radius: 9px;
  padding: 0 14px;
  font-weight: 750;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.04);
}

button.primary {
  background: var(--blue);
  border-color: var(--blue);
  color: #fff;
}

.review-button {
  min-width: 132px;
  white-space: nowrap;
}

.tab-panel {
  display: none;
}

.tab-panel.active {
  display: block;
}

.summary-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 18px;
}

.metric-card,
.panel,
.hero-panel {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 15px;
  box-shadow: var(--shadow);
}

.metric-card {
  min-height: 136px;
  padding: 18px 20px;
  position: relative;
  overflow: hidden;
  background-image:
    linear-gradient(90deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.92)),
    linear-gradient(#edf2f7 1px, transparent 1px),
    linear-gradient(90deg, #edf2f7 1px, transparent 1px);
  background-size: auto, 28px 28px, 28px 28px;
}

.metric-card::after {
  content: "";
  position: absolute;
  width: 110px;
  height: 110px;
  right: -48px;
  top: -42px;
  border-radius: 50%;
  opacity: 0.18;
}

.metric-card.blue::after { background: var(--blue); }
.metric-card.green::after { background: var(--green); }
.metric-card.amber::after { background: var(--amber); }
.metric-card.pink::after { background: var(--pink); }

.metric-icon {
  position: absolute;
  right: 18px;
  top: 18px;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 12px 26px rgba(15, 23, 42, 0.08);
  font-size: 12px;
  font-style: normal;
  font-weight: 950;
}

.metric-card.blue .metric-icon { color: var(--blue); }
.metric-card.green .metric-icon { color: var(--green); }
.metric-card.amber .metric-icon { color: var(--amber); }
.metric-card.pink .metric-icon { color: var(--pink); }

.metric-card span {
  display: inline-grid;
  place-items: center;
  min-height: 30px;
  padding: 0 10px;
  border-radius: 9px;
  font-size: 12px;
  font-weight: 850;
}

.metric-card.blue span {
  color: var(--blue);
  background: var(--blue-soft);
}

.metric-card.green span {
  color: var(--green);
  background: var(--green-soft);
}

.metric-card.amber span {
  color: var(--amber);
  background: var(--amber-soft);
}

.metric-card.pink span {
  color: var(--pink);
  background: var(--pink-soft);
}

.metric-card strong {
  display: block;
  font-size: 32px;
  margin: 20px 0 4px;
}

.metric-card p {
  color: var(--muted);
  margin-bottom: 0;
}

.hero-panel {
  min-height: 240px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  align-items: center;
  gap: 20px;
  padding: 30px 34px;
  margin-bottom: 28px;
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 12%, rgba(47, 125, 246, 0.08), transparent 34%),
    linear-gradient(#fff, #fff);
}

.eyebrow {
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-panel h2 {
  max-width: 650px;
  font-size: 26px;
  line-height: 1.22;
  margin: 10px 0;
}

.hero-actions {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.hero-art {
  position: relative;
  height: 190px;
  border-radius: 14px;
  background:
    linear-gradient(135deg, rgba(47, 125, 246, 0.05), rgba(239, 61, 122, 0.04)),
    linear-gradient(120deg, transparent 0 48%, rgba(47, 125, 246, 0.12) 48% 49%, transparent 49%),
    linear-gradient(60deg, transparent 0 56%, rgba(245, 159, 0, 0.12) 56% 57%, transparent 57%);
}

.orbit {
  position: absolute;
  border-radius: 18px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.orbit.one {
  width: 130px;
  height: 70px;
  right: 116px;
  top: 38px;
}

.orbit.two {
  width: 150px;
  height: 92px;
  right: 28px;
  bottom: 28px;
}

.orbit.three {
  width: 66px;
  height: 66px;
  left: 34px;
  bottom: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--pink));
}

.dashboard-sections {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(320px, 0.75fr);
  gap: 18px;
}

.panel {
  padding: 18px;
  overflow: hidden;
}

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

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

.panel-head h2 {
  font-size: 18px;
  margin-bottom: 4px;
}

.segmented {
  display: inline-flex;
  border: 1px solid var(--line);
  border-radius: 10px;
  overflow: hidden;
}

.segmented button {
  box-shadow: none;
  border: 0;
  border-radius: 0;
  height: 34px;
}

.segmented button.active {
  background: #f3f6fb;
  color: var(--blue);
}

.scheduler-grid[data-view="month"] .schedule-day {
  min-height: 260px;
}

.scheduler-grid[data-view="month"] .post-preview-grid {
  grid-template-rows: repeat(3, minmax(0, 1fr));
}

.scheduler-grid[data-view="month"] .post-preview:first-child {
  grid-column: auto;
}

.scheduler-grid[data-view="list"] {
  grid-template-columns: 1fr;
}

.scheduler-grid[data-view="list"] .schedule-day {
  min-height: auto;
}

.scheduler-grid[data-view="list"] .post-preview-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-template-rows: minmax(150px, 1fr);
  min-height: 150px;
}

.scheduler-grid[data-view="list"] .post-preview:first-child {
  grid-column: auto;
}

.scheduler-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 14px;
  perspective: 1200px;
}

.schedule-day {
  min-width: 0;
  min-height: 342px;
  padding: 12px;
  border: 1px solid #dfe6f1;
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 250, 252, 0.98)),
    radial-gradient(circle at 50% -12%, rgba(47, 125, 246, 0.18), transparent 52%);
  box-shadow:
    0 18px 36px rgba(15, 23, 42, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease;
  position: relative;
  overflow: hidden;
  animation: schedulerRise 460ms ease both;
}

.schedule-day::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(#eef2f7 1px, transparent 1px),
    linear-gradient(90deg, #eef2f7 1px, transparent 1px);
  background-size: 28px 28px;
  opacity: 0.28;
}

.schedule-day::after {
  content: "";
  position: absolute;
  width: 160px;
  height: 160px;
  right: -86px;
  top: -94px;
  pointer-events: none;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(47, 125, 246, 0.16), transparent 62%);
}

.schedule-day:hover {
  transform: translateY(-5px) rotateX(1.5deg);
  border-color: #c5d7f3;
  box-shadow:
    0 24px 54px rgba(15, 23, 42, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.92);
}

.schedule-day:nth-child(2) { animation-delay: 40ms; }
.schedule-day:nth-child(3) { animation-delay: 80ms; }
.schedule-day:nth-child(4) { animation-delay: 120ms; }
.schedule-day:nth-child(5) { animation-delay: 160ms; }
.schedule-day:nth-child(6) { animation-delay: 200ms; }
.schedule-day:nth-child(7) { animation-delay: 240ms; }

.post-preview-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: minmax(150px, 1.45fr) minmax(94px, 0.9fr);
  gap: 8px;
  min-height: 252px;
  position: relative;
  z-index: 1;
}

.post-preview-grid .post-preview:first-child {
  grid-column: 1 / -1;
}

.post-preview {
  min-width: 0;
  height: auto;
  min-height: 92px;
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 12px;
  padding: 0;
  background-size: cover;
  background-position: center;
  box-shadow:
    0 12px 24px rgba(15, 23, 42, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  overflow: hidden;
  position: relative;
  transition: transform 170ms ease, box-shadow 170ms ease, filter 170ms ease;
  isolation: isolate;
}

.post-preview::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.72)),
    radial-gradient(circle at 12% 12%, rgba(255, 255, 255, 0.2), transparent 30%);
}

.post-preview::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.36), transparent);
  transform: translateX(-130%);
  transition: transform 520ms ease;
  z-index: 1;
}

.post-preview:hover,
.post-preview:focus-visible {
  transform: scale(1.028) translateY(-1px);
  box-shadow: 0 18px 36px rgba(15, 23, 42, 0.27);
  filter: saturate(1.08);
}

.post-preview:hover::before,
.post-preview:focus-visible::before {
  transform: translateX(130%);
}

.post-preview span {
  position: absolute;
  left: 8px;
  right: 8px;
  bottom: 7px;
  z-index: 1;
  color: #fff;
  text-align: left;
  font-size: 10px;
  font-weight: 850;
  line-height: 1.15;
}

.post-preview em {
  position: absolute;
  left: 8px;
  top: 7px;
  z-index: 1;
  max-width: calc(100% - 16px);
  border-radius: 999px;
  padding: 3px 6px;
  background: rgba(255, 255, 255, 0.86);
  color: #152033;
  font-size: 9px;
  font-style: normal;
  font-weight: 900;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.post-preview i {
  position: absolute;
  right: 8px;
  top: 7px;
  z-index: 1;
  border-radius: 999px;
  padding: 3px 6px;
  background: rgba(25, 185, 111, 0.92);
  color: #fff;
  font-size: 9px;
  font-style: normal;
  font-weight: 900;
  box-shadow: 0 6px 14px rgba(15, 23, 42, 0.18);
}

.post-preview i.approved {
  background: rgba(25, 185, 111, 0.95);
}

.post-preview i.needs-edits {
  background: rgba(239, 61, 122, 0.95);
}

.schedule-label {
  display: flex;
  justify-content: space-between;
  align-items: start;
  color: var(--muted);
  font-size: 11px;
  font-weight: 850;
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}

.schedule-label span,
.schedule-label b {
  display: block;
}

.schedule-label b {
  color: var(--ink);
  font-size: 14px;
  margin-top: 2px;
}

.day-toggle {
  position: relative;
  z-index: 1;
  width: 28px;
  height: 28px;
  padding: 0;
  display: grid;
  place-items: center;
  border-radius: 9px;
  color: var(--blue);
  background: #fff;
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.08);
  font-size: 16px;
  line-height: 1;
}

.schedule-day.collapsed {
  min-height: 196px;
}

.schedule-day.collapsed .post-preview-grid {
  grid-template-rows: 1fr;
  min-height: 104px;
}

.schedule-day.collapsed .post-preview:not(:first-child) {
  display: none;
}

.schedule-footer {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  gap: 8px;
  align-items: center;
  margin-top: 11px;
  padding: 8px 9px;
  border: 1px solid rgba(226, 232, 240, 0.92);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--muted);
  font-size: 10.5px;
  font-weight: 850;
  backdrop-filter: blur(10px);
}

.schedule-footer strong {
  color: var(--blue);
  font-size: 10px;
  white-space: nowrap;
}

@keyframes schedulerRise {
  from {
    opacity: 0;
    transform: translateY(12px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.schedule-thumb {
  min-height: 96px;
  border-radius: 12px;
  padding: 12px;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: end;
  position: relative;
  overflow: hidden;
  margin-bottom: 10px;
}

.schedule-thumb::before,
.schedule-thumb::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.26);
}

.schedule-thumb::before {
  width: 76px;
  height: 76px;
  right: -20px;
  top: -18px;
}

.schedule-thumb::after {
  width: 42px;
  height: 42px;
  left: 12px;
  top: 18px;
}

.schedule-thumb span,
.schedule-thumb strong {
  position: relative;
  z-index: 1;
  display: block;
}

.schedule-thumb span {
  font-size: 11px;
  font-weight: 900;
  opacity: 0.88;
}

.schedule-thumb strong {
  font-size: 12px;
  line-height: 1.2;
  margin-top: 4px;
}

.thumb-1 { background: linear-gradient(135deg, #2563eb, #0ea5e9); }
.thumb-2 { background: linear-gradient(135deg, #0f766e, #22c55e); }
.thumb-3 { background: linear-gradient(135deg, #7c3aed, #ec4899); }
.thumb-4 { background: linear-gradient(135deg, #f97316, #e11d48); }
.thumb-5 { background: linear-gradient(135deg, #111827, #64748b); }
.thumb-6 { background: linear-gradient(135deg, #0891b2, #6366f1); }
.thumb-7 { background: linear-gradient(135deg, #f59e0b, #ef4444); }

.post-stack {
  display: grid;
  gap: 7px;
}

.post-line {
  display: grid;
  grid-template-columns: 8px minmax(0, 1fr);
  align-items: center;
  gap: 7px;
  color: #283244;
  font-size: 10.5px;
  font-weight: 780;
  line-height: 1.25;
}

.post-line span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.post-line i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.tone-1 {
  background: var(--blue);
}

.tone-2 {
  background: var(--pink);
}

.tone-3 {
  background: var(--amber);
}

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

.task-list li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 11px;
  border-radius: 11px;
  background: var(--soft);
  border: 1px solid var(--line);
}

.task-list span:first-child {
  font-weight: 760;
}

.badge {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 24px;
  border-radius: 7px;
  padding: 0 8px;
  font-size: 12px;
  font-weight: 850;
}

.badge.ok {
  color: var(--green);
  background: var(--green-soft);
}

.badge.warn {
  color: var(--amber);
  background: var(--amber-soft);
}

.badge.risk {
  color: var(--pink);
  background: var(--pink-soft);
}

.link-list {
  display: grid;
  gap: 8px;
  max-height: 300px;
  overflow: auto;
}

.link-list a {
  min-height: 36px;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: #fff;
  color: var(--blue);
  display: flex;
  align-items: center;
  padding: 0 10px;
  text-decoration: none;
  font-size: 13px;
  font-weight: 760;
}

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

.work-card,
.approval-card,
.campaign-day {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.04);
}

.work-card {
  min-height: 118px;
  padding: 16px;
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
}

.work-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: var(--blue-soft);
  color: var(--blue);
  font-weight: 950;
}

.work-card h3 {
  font-size: 16px;
  margin: 0 0 5px;
}

.work-card p {
  color: var(--muted);
  font-size: 13px;
  margin-bottom: 0;
}

.work-status {
  display: grid;
  justify-items: end;
  gap: 10px;
}

.work-status strong {
  border: 1px dashed var(--line);
  border-radius: 10px;
  padding: 8px 10px;
  font-size: 13px;
}

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

.signalforge-hero {
  min-height: 250px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  align-items: center;
  gap: 24px;
  border: 1px solid #dbe6f5;
  border-radius: 22px;
  padding: 36px 40px;
  margin-bottom: 18px;
  background:
    linear-gradient(125deg, rgba(255, 255, 255, 0.98), rgba(248, 251, 255, 0.96)),
    radial-gradient(circle at 82% 20%, rgba(47, 125, 246, 0.16), transparent 34%),
    radial-gradient(circle at 10% 90%, rgba(245, 159, 0, 0.1), transparent 28%);
  box-shadow: var(--shadow);
}

.signalforge-hero h2 {
  max-width: 780px;
  font-size: 30px;
  line-height: 1.15;
  margin: 12px 0;
}

.signalforge-hero p,
.signalforge-score p {
  color: var(--muted);
  margin-bottom: 0;
}

.signalforge-score {
  min-height: 150px;
  border: 1px solid rgba(47, 125, 246, 0.16);
  border-radius: 18px;
  padding: 20px;
  background:
    linear-gradient(180deg, #fff, #f8fbff),
    linear-gradient(#e7eef8 1px, transparent 1px),
    linear-gradient(90deg, #e7eef8 1px, transparent 1px);
  background-size: auto, 26px 26px, 26px 26px;
}

.signalforge-score span {
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.signalforge-score strong {
  display: block;
  font-size: 28px;
  margin: 12px 0 6px;
}

.signalforge-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 18px;
  margin-bottom: 18px;
}

.campaign-builder,
.signal-rules,
.signal-campaign-panel {
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.06);
}

.campaign-builder label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 850;
  margin-bottom: 14px;
}

.campaign-builder input,
.campaign-builder select,
.campaign-builder textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 12px;
  background: #fff;
  color: var(--ink);
  font: inherit;
  font-size: 14px;
  font-weight: 680;
}

.campaign-builder textarea {
  resize: vertical;
}

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

.builder-actions {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
}

.signal-rules {
  background:
    linear-gradient(180deg, #fff, #fbfcff),
    radial-gradient(circle at 88% 12%, rgba(25, 185, 111, 0.14), transparent 34%);
}

.signal-rules ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.signal-rules li {
  border: 1px solid var(--line);
  border-radius: 13px;
  padding: 13px 14px 13px 42px;
  background: rgba(255, 255, 255, 0.82);
  color: #263247;
  font-size: 13px;
  line-height: 1.45;
  font-weight: 720;
  position: relative;
}

.signal-rules li::before {
  content: "SF";
  position: absolute;
  left: 12px;
  top: 12px;
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: var(--blue-soft);
  color: var(--blue);
  font-size: 9px;
  font-weight: 950;
}

.campaign-day {
  padding: 14px;
}

.campaign-board .campaign-day {
  display: grid;
  gap: 12px;
}

.day-head {
  display: flex;
  justify-content: space-between;
  color: var(--muted);
  font-size: 13px;
  font-weight: 850;
  margin-bottom: 10px;
}

.campaign-item {
  border: 1px solid var(--line);
  border-radius: 11px;
  padding: 12px;
  margin-bottom: 9px;
  background: var(--soft);
}

.campaign-item.visual-card {
  display: grid;
  grid-template-columns: 110px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  cursor: pointer;
  background: #fff;
}

.campaign-item.visual-card:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 26px rgba(15, 23, 42, 0.08);
}

.campaign-item.visual-card img {
  width: 110px;
  aspect-ratio: 1 / 1;
  border-radius: 10px;
  object-fit: cover;
  background: var(--soft);
}

.campaign-item strong,
.campaign-item small {
  display: block;
}

.campaign-item strong {
  font-size: 14px;
}

.campaign-item small {
  color: var(--muted);
  margin: 4px 0 8px;
}

.approval-deck {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 16px;
}

.approval-card {
  padding: 16px;
  min-height: 156px;
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 14px;
  position: relative;
  overflow: hidden;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.approval-card::after {
  content: "";
  position: absolute;
  width: 130px;
  height: 130px;
  right: -70px;
  top: -70px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(47, 125, 246, 0.12), transparent 65%);
}

.approval-card:hover {
  transform: translateY(-3px);
  border-color: #cfd8e7;
  box-shadow: 0 18px 38px rgba(15, 23, 42, 0.1);
}

.approval-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: var(--blue-soft);
  color: var(--blue);
  font-size: 13px;
  font-weight: 950;
}

.approval-copy {
  min-width: 0;
}

.approval-card span,
.approval-card em {
  color: var(--muted);
  font-style: normal;
  font-size: 12px;
  font-weight: 850;
}

.approval-card strong {
  display: block;
  margin-top: 7px;
  line-height: 1.25;
}

.approval-card p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
  margin: 10px 0 0;
}

.approval-meta {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 10px;
  margin-top: 2px;
  position: relative;
  z-index: 1;
}

.launchdesk-hero {
  min-height: 246px;
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow);
  padding: 34px 38px;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.98), rgba(248, 250, 252, 0.96)),
    radial-gradient(circle at 84% 18%, rgba(47, 125, 246, 0.14), transparent 32%),
    radial-gradient(circle at 68% 88%, rgba(25, 185, 111, 0.1), transparent 28%);
}

.launchdesk-hero h2 {
  max-width: 760px;
  font-size: 28px;
  line-height: 1.18;
  margin: 10px 0;
}

.launchdesk-hero p {
  max-width: 720px;
  color: var(--muted);
  margin-bottom: 0;
}

.launchdesk-actions {
  display: flex;
  gap: 10px;
  flex: 0 0 auto;
}

.approval-summary {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 18px;
}

.approval-summary article {
  min-height: 122px;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 18px;
  background:
    linear-gradient(180deg, #fff, #fbfcff),
    radial-gradient(circle at 90% 18%, rgba(47, 125, 246, 0.11), transparent 36%);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.approval-summary article::after {
  content: "";
  position: absolute;
  width: 86px;
  height: 86px;
  right: -42px;
  bottom: -42px;
  border-radius: 50%;
  background: rgba(47, 125, 246, 0.08);
}

.approval-summary span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.approval-summary strong {
  display: block;
  font-size: 31px;
  margin: 12px 0 4px;
}

.approval-summary p {
  color: var(--muted);
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}

.launchdesk-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.75fr);
  gap: 18px;
}

.approval-main {
  min-height: 420px;
}

.review-rules {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 250, 252, 0.98)),
    radial-gradient(circle at 88% 10%, rgba(245, 159, 0, 0.2), transparent 42%);
}

.review-rules ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.review-rules li {
  padding: 14px 14px 14px 44px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.82);
  color: #273247;
  font-size: 13px;
  line-height: 1.45;
  font-weight: 720;
  position: relative;
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.04);
}

.review-rules li::before {
  content: "";
  position: absolute;
  left: 14px;
  top: 15px;
  width: 18px;
  height: 18px;
  border-radius: 7px;
  background:
    linear-gradient(135deg, rgba(47, 125, 246, 0.18), rgba(25, 185, 111, 0.18)),
    #fff;
  border: 1px solid #cfe0f7;
}

.review-rules li::after {
  content: "";
  position: absolute;
  left: 20px;
  top: 20px;
  width: 6px;
  height: 3px;
  border-left: 2px solid var(--green);
  border-bottom: 2px solid var(--green);
  transform: rotate(-45deg);
}

.approval-table td:first-child {
  font-weight: 760;
}

.brandvault-hero {
  min-height: 300px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  align-items: center;
  gap: 30px;
  border: 1px solid #dbe6f5;
  border-radius: 24px;
  padding: 42px 46px;
  margin-bottom: 16px;
  background:
    linear-gradient(125deg, rgba(255, 255, 255, 0.97), rgba(248, 251, 255, 0.95)),
    radial-gradient(circle at 80% 16%, rgba(47, 125, 246, 0.18), transparent 34%),
    radial-gradient(circle at 14% 86%, rgba(239, 61, 122, 0.1), transparent 30%);
  box-shadow: 0 24px 70px rgba(15, 23, 42, 0.08);
  overflow: hidden;
  position: relative;
}

.brandvault-hero::after {
  content: "";
  position: absolute;
  inset: auto -120px -160px auto;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(47, 125, 246, 0.12), transparent 64%);
  pointer-events: none;
}

.brandvault-hero h2 {
  max-width: 840px;
  font-size: 34px;
  line-height: 1.12;
  margin: 13px 0 12px;
}

.brandvault-hero p {
  max-width: 740px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.55;
  margin-bottom: 0;
}

.brandvault-actions {
  display: flex;
  gap: 10px;
  margin-top: 24px;
}

.brandvault-status {
  min-height: 210px;
  border: 1px solid rgba(47, 125, 246, 0.18);
  border-radius: 22px;
  padding: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(239, 246, 255, 0.92)),
    linear-gradient(#e7eef8 1px, transparent 1px),
    linear-gradient(90deg, #e7eef8 1px, transparent 1px);
  background-size: auto, 26px 26px, 26px 26px;
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.08);
  position: relative;
  z-index: 1;
}

.vault-orb {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--blue), var(--pink));
  color: #fff;
  font-weight: 950;
  box-shadow: 0 20px 38px rgba(47, 125, 246, 0.24);
  margin-bottom: 18px;
}

.brandvault-status span {
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.brandvault-status strong {
  display: block;
  font-size: 28px;
  margin: 12px 0 8px;
}

.brandvault-status p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.brandvault-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 18px;
}

.brandvault-strip article {
  min-height: 116px;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 18px;
  background:
    linear-gradient(180deg, #fff, #fbfcff),
    radial-gradient(circle at 90% 16%, rgba(47, 125, 246, 0.12), transparent 34%);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.brandvault-strip article:nth-child(2) {
  background:
    linear-gradient(180deg, #fff, #fbfffd),
    radial-gradient(circle at 90% 16%, rgba(25, 185, 111, 0.16), transparent 34%);
}

.brandvault-strip article:nth-child(3) {
  background:
    linear-gradient(180deg, #fff, #fff9fc),
    radial-gradient(circle at 90% 16%, rgba(239, 61, 122, 0.15), transparent 34%);
}

.brandvault-strip article:nth-child(4) {
  background:
    linear-gradient(180deg, #fff, #fffdf7),
    radial-gradient(circle at 90% 16%, rgba(245, 159, 0, 0.16), transparent 34%);
}

.strip-icon {
  position: absolute;
  right: 18px;
  top: 18px;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: #fff;
  color: var(--blue);
  box-shadow: 0 12px 26px rgba(15, 23, 42, 0.08);
  font-style: normal;
  font-size: 15px;
  font-weight: 950;
}

.brandvault-strip article:nth-child(2) .strip-icon { color: var(--green); }
.brandvault-strip article:nth-child(3) .strip-icon { color: var(--pink); }
.brandvault-strip article:nth-child(4) .strip-icon { color: var(--amber); }

.brandvault-strip article::after {
  content: "";
  position: absolute;
  width: 90px;
  height: 90px;
  right: -42px;
  bottom: -48px;
  border-radius: 50%;
  background: rgba(47, 125, 246, 0.08);
}

.brandvault-strip article:nth-child(2)::after { background: rgba(25, 185, 111, 0.1); }
.brandvault-strip article:nth-child(3)::after { background: rgba(239, 61, 122, 0.1); }
.brandvault-strip article:nth-child(4)::after { background: rgba(245, 159, 0, 0.1); }

.brandvault-strip span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.brandvault-strip strong {
  display: block;
  font-size: 30px;
  margin: 10px 0 4px;
}

.brandvault-strip p {
  color: var(--muted);
  margin-bottom: 0;
  font-size: 13px;
}

.brandvault-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.92fr);
  gap: 18px;
  align-items: start;
}

.brand-card {
  min-height: 230px;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.06);
}

.brand-card.wide {
  grid-column: 1 / -1;
}

.positioning-card {
  min-height: 370px;
  padding: 26px;
  background:
    linear-gradient(180deg, #fff, #fbfcff),
    radial-gradient(circle at 94% 12%, rgba(47, 125, 246, 0.14), transparent 34%);
}

.link-card,
.token-card {
  min-height: 370px;
}

.claim-card {
  min-height: 360px;
}

.brand-statement {
  max-width: 980px;
  font-size: 25px;
  line-height: 1.3;
  font-weight: 800;
  color: #142033;
}

.brand-note {
  margin-top: 22px;
  border: 1px solid #dfe8f6;
  border-radius: 16px;
  padding: 18px 20px;
  background: #f8fbff;
  color: var(--muted);
  line-height: 1.55;
  font-size: 15px;
}

.brand-link-list,
.source-list {
  display: grid;
  gap: 10px;
}

.brand-link-list a,
.source-list span {
  min-height: 52px;
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 0 15px;
  background: #f8fafc;
  color: var(--ink);
  font-size: 13px;
  font-weight: 820;
  text-decoration: none;
}

.brand-link-list i {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: var(--blue-soft);
  color: var(--blue);
  font-style: normal;
  font-size: 13px;
  font-weight: 950;
}

.brand-link-list a:nth-child(2) i {
  background: #111827;
  color: #fff;
}

.brand-link-list a:nth-child(3) i {
  background: #eaf6ff;
  color: #229ed9;
}

.brand-link-list a:nth-child(4) i {
  background: #eef2ff;
  color: #5865f2;
}

.brand-link-list a:nth-child(5) i {
  background: #fff0f0;
  color: #ff0000;
}

.brand-link-list b {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.brand-link-list a:hover {
  border-color: #c5d7f3;
  color: var(--blue);
  background: #fff;
}

.brand-link-list span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 760;
}

.source-list span {
  display: flex;
  justify-content: flex-start;
  font-family: ui-monospace, SFMono-Regular, Consolas, "Liberation Mono", monospace;
  font-size: 12px;
  overflow-wrap: anywhere;
}

.token-frame {
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 18px;
  background:
    linear-gradient(180deg, #fff, #f8fafc),
    radial-gradient(circle at 88% 18%, rgba(47, 125, 246, 0.1), transparent 34%);
}

.token-frame + .token-frame {
  margin-top: 12px;
}

.token-frame span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.token-frame strong {
  display: block;
  font-size: 25px;
  margin: 8px 0 4px;
}

.token-frame p {
  color: var(--muted);
  margin-bottom: 0;
}

.approved-claims ul,
.banned-claims ul {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.approved-claims li,
.banned-claims li {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 14px 14px 14px 44px;
  background: #f8fafc;
  color: #263247;
  font-size: 13px;
  line-height: 1.45;
  font-weight: 720;
  position: relative;
}

.approved-claims li {
  border-color: #ccefdc;
  background: var(--green-soft);
}

.approved-claims li::before,
.banned-claims li::before {
  position: absolute;
  left: 14px;
  top: 14px;
  width: 18px;
  height: 18px;
  display: grid;
  place-items: center;
  border-radius: 7px;
  color: #fff;
  font-size: 12px;
  font-weight: 900;
}

.approved-claims li::before {
  content: "✓";
  background: var(--green);
}

.banned-claims li {
  border-color: #ffd2e2;
  background: var(--pink-soft);
}

.banned-claims li::before {
  content: "!";
  background: var(--pink);
}

.social-card {
  padding: 24px;
}

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

.rule-matrix section {
  min-height: 170px;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 18px;
  background:
    linear-gradient(180deg, #fff, #f8fafc),
    radial-gradient(circle at 85% 12%, rgba(47, 125, 246, 0.1), transparent 35%);
}

.rule-matrix span {
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.rule-matrix p {
  color: #2b3548;
  font-size: 13px;
  line-height: 1.5;
  margin: 10px 0 0;
}

table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
}

th,
td {
  border-bottom: 1px solid var(--line);
  padding: 13px 14px;
  text-align: left;
}

th {
  color: var(--muted);
  background: #f8fafc;
  font-size: 12px;
  text-transform: uppercase;
}

td {
  font-size: 14px;
}

tr:last-child td {
  border-bottom: 0;
}

.empty-state {
  min-height: 320px;
  display: grid;
  place-content: center;
  text-align: center;
  border-radius: 14px;
  background: var(--soft);
  border: 1px dashed #d8dee8;
  color: var(--muted);
  padding: 24px;
}

.empty-state strong {
  color: var(--ink);
  margin-bottom: 8px;
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 20;
  display: none;
  place-items: center;
  padding: 28px;
  background: rgba(15, 23, 42, 0.42);
}

.modal-backdrop.open {
  display: grid;
}

.post-modal {
  width: min(960px, 100%);
  max-height: min(760px, 92vh);
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(320px, 1fr);
  background: #fff;
  border-radius: 18px;
  border: 1px solid var(--line);
  box-shadow: 0 28px 90px rgba(15, 23, 42, 0.28);
  overflow: hidden;
  position: relative;
}

.modal-close {
  position: absolute;
  right: 14px;
  top: 14px;
  z-index: 2;
  width: 34px;
  height: 34px;
  padding: 0;
  border-radius: 50%;
}

.modal-preview {
  min-height: 520px;
  background-size: cover;
  background-position: center;
}

.modal-body {
  padding: 28px;
  overflow: auto;
}

.modal-body h2 {
  font-size: 25px;
  margin: 12px 0 18px;
}

.modal-body label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 850;
  margin-bottom: 14px;
}

.modal-body textarea,
.modal-body input {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 12px;
  font: inherit;
  color: var(--ink);
  resize: vertical;
}

.modal-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 18px;
}

button.danger {
  color: var(--pink);
  border-color: #ffd2e2;
  background: var(--pink-soft);
}

#approvePost {
  color: var(--green);
  border-color: #bff3d7;
  background: var(--green-soft);
}

#requestEdits {
  color: var(--amber);
  border-color: #ffe3a3;
  background: var(--amber-soft);
}

.toast {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 40;
  max-width: min(420px, calc(100vw - 48px));
  border: 1px solid #cdd9ea;
  border-radius: 14px;
  padding: 13px 16px;
  background: rgba(255, 255, 255, 0.94);
  color: #172033;
  box-shadow: 0 24px 54px rgba(15, 23, 42, 0.18);
  font-size: 13px;
  font-weight: 780;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity 180ms ease, transform 180ms ease;
  backdrop-filter: blur(12px);
}

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

@media (max-width: 1400px) {
  .scheduler-grid {
    grid-template-columns: repeat(7, minmax(0, 1fr));
  }

  .schedule-thumb {
    min-height: 84px;
    padding: 10px;
  }

  .schedule-thumb strong {
    font-size: 11px;
  }

  .post-line {
    font-size: 10px;
  }
}

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

  .sidebar {
    min-height: auto;
  }

  .summary-grid,
  .dashboard-sections,
  .hero-panel,
  .brandvault-hero,
  .brandvault-strip,
  .brandvault-grid,
  .signalforge-hero,
  .signalforge-grid,
  .work-grid,
  .post-modal,
  .approval-deck,
  .approval-summary,
  .launchdesk-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .launchdesk-hero {
    align-items: flex-start;
    flex-direction: column;
  }

  .rule-matrix {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .scheduler-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .app-shell {
    padding: 18px;
  }

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

  .summary-grid,
  .dashboard-sections,
  .hero-panel,
  .brandvault-hero,
  .brandvault-strip,
  .brandvault-grid,
  .signalforge-hero,
  .signalforge-grid,
  .builder-row,
  .work-grid,
  .campaign-board,
  .post-modal,
  .approval-deck,
  .approval-summary,
  .launchdesk-grid {
    grid-template-columns: 1fr;
  }

  .launchdesk-actions {
    width: 100%;
    flex-direction: column;
  }

  .brandvault-actions {
    flex-direction: column;
  }

  .builder-actions {
    flex-direction: column;
  }

  .rule-matrix {
    grid-template-columns: 1fr;
  }
}
