@font-face {
  font-family: "Real Text Web W03 Regular";
  src: url("https://db.onlinewebfonts.com/t/a5b11f3d079234b5f957fa0a522c52b4.eot");
  src: url("https://db.onlinewebfonts.com/t/a5b11f3d079234b5f957fa0a522c52b4.eot?#iefix") format("embedded-opentype"),
       url("https://db.onlinewebfonts.com/t/a5b11f3d079234b5f957fa0a522c52b4.woff2") format("woff2"),
       url("https://db.onlinewebfonts.com/t/a5b11f3d079234b5f957fa0a522c52b4.woff") format("woff"),
       url("https://db.onlinewebfonts.com/t/a5b11f3d079234b5f957fa0a522c52b4.ttf") format("truetype"),
       url("https://db.onlinewebfonts.com/t/a5b11f3d079234b5f957fa0a522c52b4.svg#Real Text Web W03 Regular") format("svg");
  font-display: swap;
}
@font-face {
  font-family: "Real Text Web W03 Light";
  src: url("https://db.onlinewebfonts.com/t/2b29f377fe8fa43d3de2237dd4d58ad9.eot");
  src: url("https://db.onlinewebfonts.com/t/2b29f377fe8fa43d3de2237dd4d58ad9.eot?#iefix") format("embedded-opentype"),
       url("https://db.onlinewebfonts.com/t/2b29f377fe8fa43d3de2237dd4d58ad9.woff2") format("woff2"),
       url("https://db.onlinewebfonts.com/t/2b29f377fe8fa43d3de2237dd4d58ad9.woff") format("woff"),
       url("https://db.onlinewebfonts.com/t/2b29f377fe8fa43d3de2237dd4d58ad9.ttf") format("truetype"),
       url("https://db.onlinewebfonts.com/t/2b29f377fe8fa43d3de2237dd4d58ad9.svg#Real Text Web W03 Light") format("svg");
  font-display: swap;
}

:root {
  --bg: #192231;
  --card: #fdfbf8;
  --text: #272d3e;
  --muted: #6b7280;
  --border: #dcdde3;
  --primary: #571B3A;
  --primary-dark: #571B3A;
  --primary-text: #fdfbf8;
}

* { box-sizing: border-box; }
body {
  margin: 0;
  padding-top: 80px;
  font-family: "Real Text Web W03 Regular", "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
}

.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0;
  border-bottom: 1px solid var(--border);
  background: var(--card);
  position: sticky;
  top: 0;
  z-index: 10;
  position: fixed;
  width: 100%;
  left: 0;
  right: 0;
  height: 70px;
}
.page {
  max-width: 960px;
  margin: 32px auto 32px;
  padding: 0 16px 48px;
}
.brand { font-weight: 700; letter-spacing: 0.01em; display: inline-flex; align-items: center; gap: 8px; }
.menu-trigger {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  background: #f8fafc;
}
.menu {
  position: absolute;
  top: 48px;
  left: 16px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  min-width: 180px;
  display: none;
  flex-direction: column;
  z-index: 20;
}
.menu.open { display: flex; }
.menu a {
  padding: 10px 14px;
  text-decoration: none;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 8px;
}
.menu a:hover { background: #f3f4f6; }
.hint { color: var(--muted); font-size: 14px; display: flex; align-items: center; gap: 10px; position: relative; }
.top-link { color:#fd588b; }
.top-sep { color:#fd588b; }
.hint .top-link { font-family: "Real Text Web W03 Light", "Real Text Web W03 Regular", sans-serif; font-weight: 300; }
.muted { font-family: "Real Text Web W03 Light", "Real Text Web W03 Regular", sans-serif; font-weight: 300; }

.page {
  max-width: 960px;
  margin: 32px auto;
  padding: 0 16px 48px;
}

.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 18px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}
.card.narrow { max-width: 420px; margin: 0 auto; }
.map-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 16px;
}
.preview-pane {
  position: sticky;
  top: 96px;
  align-self: start;
  margin-top: 14px;
}
.preview-card {
  min-height: 500px;
  background: #fcfcf9;
  border: none !important;
  border-radius: 0 !important;
  box-shadow: 0 6px 18px rgba(0,0,0,0.12);
}
.subcard.preview-card {
  font-family: 'Helvetica Neue', sans-serif;
  background: #fff !important;
  border: none !important;
  border-radius: 0 !important;
  margin: 15px 0 25px !important;
  padding: 25px !important;
}
.preview-card #live-slip {
  color: #111;
  font-size: 15px;
}

.link.disabled {
  pointer-events: none;
  color: #9ca3af;
}
.projects-table {
  width: 100%;
  border-collapse: collapse;
}
.projects-table th, .projects-table td {
  text-align: left;
  padding: 10px 8px;
}
.projects-table th { font-weight: 600; color: var(--text); font-size: 16px; }
.projects-table tbody tr:not(:last-child) {
  border-bottom: 1px solid var(--border);
}
.projects-table td.name-clip { max-width: 220px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.badge {
  display: inline-flex;
  align-items: center;
  padding: 2px 8px;
  border-radius: 999px;
  font-size: 12px;
  background: #e0f2fe;
  color: #0f172a;
  margin-right: 6px;
}
.badge-success { background: #dcfce7; color: #166534; }
.badge-neutral { background: #e5e7eb; color: #111827; }
.badge-muted { background: #f1f5f9; color: #9ca3af; }
.badge-progress { background: #dbeafe; color: #1d4ed8; }
.badges-row { display: flex; gap: 2px; align-items: center; flex-wrap: nowrap; }

.projects-table td { font-size: 14px; }

.btn-finished {
  background: #f3f4f6;
  color: #111827;
  border-color: #e5e7eb;
}
.btn-finished:hover {
  background: #e5e7eb;
  color: #111827;
  border-color: #d1d5db;
}
.btn-finished .fa-check {
  color: #16a34a;
}
.status-dot {
  display: inline-flex;
  width: 18px;
  height: 18px;
  border-radius: 9999px;
  align-items: center;
  justify-content: center;
  margin-right: 6px;
}
.status-dot.success {
  background: #dcfce7;
  color: #16a34a;
}
.status-dot .fa-check { font-size: 85%; }
.primary:disabled,
.primary[disabled],
.primary[aria-disabled="true"],
.secondary:disabled,
.secondary[disabled],
.secondary[aria-disabled="true"],
.danger:disabled,
.danger[disabled],
.danger[aria-disabled="true"] {
  background: #e8e3dc !important;
  color: #6b7280 !important;
  border: 1px solid #d4cec5 !important;
  cursor: not-allowed !important;
  box-shadow: none !important;
  opacity: 0.6 !important;
  pointer-events: none !important;
  transform: none !important;
}

.projects-table .primary.small-btn.start-continue,
.projects-table .secondary.small-btn.start-continue {
  margin-left: 32px;
}
.collapse {
  overflow: hidden;
  transition: max-height 200ms ease, opacity 200ms ease;
  max-height: 0;
  opacity: 0;
}
.collapse.open {
  max-height: 1000px;
  opacity: 1;
}

h1 { margin: 0 0 10px; letter-spacing: -0.01em; }
h2 { margin: 16px 0 0px; }
h3 { margin: 16px 0 0px; }
.stack { display: flex; flex-direction: column; gap: 12px; }
.stack.tight { gap: 8px; }
.grid.two { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 14px; }
.grid.three { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 14px; }

.subcard {
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 14px;
  background: #fff;
}
.subcard h3 { margin: 0; }
.subhead { display: flex; align-items: baseline; justify-content: space-between; gap: 10px; }
.link { color: var(--primary); text-decoration: none; font-weight: 500; font-size: 13px; }
.link:hover { text-decoration: underline; }
.link-btn {
  background: none;
  border: none;
  color: var(--primary);
  cursor: pointer;
  font-weight: 600;
  padding: 0 6px;
}
.small-text { font-size: 13px; }
.caret-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.digital-list { display: flex; flex-direction: column; gap: 10px; }
.digital-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 12px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: #f8fafc;
  position: relative;
}
.digital-row.dragging {
  opacity: 0.6;
}
.digital-row .row-head {
  display: flex;
  gap: 10px;
  align-items: center;
}
.digital-row .drag-handle {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #e0f2fe;
  border: 1px solid #bfdbfe;
  color: #0f172a;
  cursor: grab;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: -13px;
  top: 50%;
  transform: translateY(-50%);
}
.digital-row .delete-row {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 1px solid #fecdd3;
  background: #fee2e2;
  color: #b91c1c;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.digital-row .delete-row:hover {
  background: #fecdd3;
}
.digital-row .row-body {
  margin-top: 8px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.digital-row .row-body .full {
  grid-column: 1 / span 2;
}
.digital-row select {
  width: 100%;
}
.options-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 12px;
}
.sample {
  background: #eef2ff;
  border-color: #c7d2fe;
}
.sample-line {
  margin-top: 6px;
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  font-size: 15px;
  background: #fff;
  border: 1px solid #dbeafe;
  border-radius: 8px;
  padding: 10px 12px;
}
.sample-controls {
  display: inline-flex;
  gap: 8px;
  align-items: center;
}
.small {
  padding: 8px 10px;
  font-size: 14px;
}

.field { display: flex; flex-direction: column; gap: 6px; }
.field span { font-weight: 600; }
.field small { color: var(--muted); }
.field input[type="text"], 
.field input[type="email"], 
.field select {
  padding: 11px 12px;
  border: 1px solid var(--border);
  border-radius: 10px;
  font-size: 15px;
  background: #fff;
  color: var(--text);
  outline: none;
  transition: border 120ms ease, box-shadow 120ms ease;
}
.field input[type="text"]:focus,
.field select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(37,99,235,0.15);
}
.field input[type="file"] { padding: 6px 0; color: var(--muted); }

.upload {
  border: 1px dashed #b497a2; /* var(--border); */
  padding: 14px;
  border-radius: 12px;
  background: #ebebeb;
}

.actions { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; }
.actions.between { justify-content: space-between; }
.btn-group {
  display: inline-flex;
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
}
.btn-group a,
.btn-group button {
  border: none;
  border-radius: 0;
  padding: 10px 12px;
  background: #e5e7eb;
  color: #111827;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.btn-group button.active {
  background: var(--primary);
  color: var(--primary-text);
}
.btn-group a + a,
.btn-group button + a,
.btn-group a + button {
  border-left: 1px solid var(--border);
}
.btn-icon {
  padding: 8px 12px;
  min-width: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.loading { opacity: 0.6; pointer-events: none; }
.spinner-inline {
  display: inline-block;
  width: 16px;
  height: 16px;
  border: 2px solid #93c5fd;
  border-top-color: transparent;
  border-radius: 50%;
  animation: spin 0.9s linear infinite;
  margin-right: 6px;
}
@keyframes spin { to { transform: rotate(360deg); } }
.btn-group .danger {
  background: #e5e7eb;
  color: #b91c1c;
}
.btn-group .primary {
  background: #2563eb;
  color: #fff;
}
button, .secondary, .primary {
  border: none;
  border-radius: 10px;
  padding: 11px 16px;
  font-size: 15px;
  line-height: 1.5;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  vertical-align: middle;
  transition: transform 80ms ease, box-shadow 120ms ease, opacity 120ms ease, background 120ms ease;
}
button:disabled { opacity: 0.6; cursor: not-allowed; }
.primary {
  background: var(--primary);
  color: var(--primary-text);
  border: 1px solid var(--primary);
  box-shadow: 0 10px 25px rgba(234,100,139,0.25);
}
.primary:not(:disabled):not([aria-disabled="true"]):hover { background: var(--primary-dark); transform: translateY(-1px); }
.pink {
  background: #fd588b;
  color: #fff;
  box-shadow: 0 10px 25px rgba(253,88,139,0.25);
}
.pink:not(:disabled):not([aria-disabled="true"]):hover { background: #fc3575; transform: translateY(-1px); }
.secondary {
  background: #e8e3dc;
  color: #111827;
  border: 1px solid #d4cec5;
}
.danger {
  background: #dc2626;
  color: #fff;
  box-shadow: 0 10px 25px rgba(220,38,38,0.25);
}
.danger:not(:disabled):not([aria-disabled="true"]):hover { background: #b91c1c; transform: translateY(-1px); }
.btn-sm {
  padding: 6px 10px;
  font-size: 13px;
  min-width: 34px;
}
.small-btn {
  padding: 6px 10px;
  font-size: 13px;
  box-shadow: none;
}
.primary.small-btn { box-shadow: none; }
.info-btn {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: #e5e7eb;
  color: #111827;
  cursor: pointer;
  font-weight: 700;
  font-size: 12px;
  margin-left: 6px;
}
.info-inline {
  background: none;
  border: none;
  color: var(--primary);
  cursor: pointer;
  padding: 0;
  font-weight: 600;
  font-family: "Segoe UI Symbol", "Helvetica", "Arial", sans-serif;
}
.secondary:not(:disabled):not([aria-disabled="true"]):hover { background: #d4cec5; transform: translateY(-1px); }

.pillbox { display: flex; flex-wrap: wrap; gap: 8px; }
.pill {
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 6px 10px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #f8fafc;
}
.pill input { margin: 0; }
.pill.full { width: 100%; justify-content: flex-start; }

.bubble-box {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  min-height: 36px;
  padding: 6px;
  border: 1px dashed var(--border);
  border-radius: 10px;
  background: #fff;
}
.bubble-box.flat {
  border: none;
  padding: 0;
  background: transparent;
  min-height: 0;
}
.bubble-box.list {
  flex-direction: column;
  flex-wrap: nowrap;
  align-items: flex-start;
}
.bubble-box.subtle {
  background: #f8fafc;
}
.bubble {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 1px 2px 1px 7px;
  border-radius: 6px;
  background: #e0f2fe;
  border: 1px solid #bfdbfe;
  cursor: grab;
  user-select: none;
  font-size: 13px;
}
.bubble.two-line {
  align-items: flex-start;
  width: 100%;
  padding: 1px 2px 1px 7px;
  gap: 8px;
}
.bubble .bubble-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
  min-width: 0;
}
.bubble .bubble-text .friendly-input {
  border: none;
  background: transparent;
  padding: 0;
  margin: 0;
  font-weight: 500;
  font-size: 13px;
  color: #0f172a;
  min-width: 140px;
  width: 100%;
  pointer-events: none;
}
.bubble .bubble-text .friendly-input:focus {
  outline: 1px solid #bfdbfe;
  background: #fff;
}
.bubble .bubble-text .friendly-input.editing {
  pointer-events: auto;
}
.bubble .bubble-text .csv-name {
  font-size: 9px;
}
.bubble .bubble-text .tiny-input {
  margin: 0;
  margin-top: 2px;
  margin-left: -6px;
  width: 100%;
  font-size: 12px;
  padding: 1px 5px;
  border: 1px solid var(--border);
  border-radius: 6px;
  background: #fff;
}
.bubble .bubble-text .tiny-input.invalid {
  border-color: #dc2626;
  color: #dc2626;
}
.bubble .drag-handle {
  flex: 0 0 auto;
}
.bubble .drag-handle {
  font-size: 13px;
  color: #6b7280;
  cursor: grab;
}

.progress {
  margin-top: 4px;
  width: 100%;
  background: #e5e7eb;
  border-radius: 999px;
  height: 18px;
  overflow: hidden;
}
.progress .bar {
  height: 100%;
  width: 0%;
  background-color: #fd588b;
  background-image: linear-gradient(
    45deg,
    rgba(255,255,255,0.25) 25%,
    transparent 25%,
    transparent 50%,
    rgba(255,255,255,0.25) 50%,
    rgba(255,255,255,0.25) 75%,
    transparent 75%,
    transparent
  );
  background-size: 24px 24px;
  animation: prog-stripe 0.8s linear infinite;
  transition: width 500ms ease;
}
.progress .bar.done {
  background-color: #fd588b;
  background-image: none;
  animation: none;
}
@keyframes prog-stripe {
  from { background-position: 0 0; }
  to { background-position: 24px 0; }
}
.bubble-remove {
  background: transparent;
  border: none;
  color: #6b7280;
  cursor: pointer;
  padding: 2px 6px;
  border-radius: 6px;
}
.bubble-remove:hover {
  background: #f3f4f6;
}
.dual-panels {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.dual-panels .panel {
  min-width: 0;
  display: flex;
  flex-direction: column;
  max-height: calc(100vh - 135px);
}
.dual-panels .bubble-box {
  min-height: 64px;
  flex: 1;
  overflow: auto;
}
.panel { display: flex; flex-direction: column; gap: 8px; }
.panel-head { font-weight: 600; font-size: 14px; color: var(--muted); }
.bubble.placeholder {
  background: #f3f4f6;
  border: 1px dashed #9ca3af;
  color: #6b7280;
}

.modal {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  z-index: 20;
}
.modal[hidden] { display: none !important; }
.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.35);
}
.modal-card {
  position: relative;
  background: #fff;
  border-radius: 12px;
  padding: 18px;
  width: min(420px, 90vw);
  box-shadow: 0 25px 60px rgba(0,0,0,0.18);
  border: 1px solid var(--border);
}
.modal-card.modal-large {
  width: 80vw;
  max-width: 840px;
  height: 90vh;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  min-width: 640px;
}
.modal-body {
  flex: 1;
  overflow: auto;
}
.modal-card.modal-medium {
  width: 720px;
  max-width: 92vw;
  height: 80vh;
  display: flex;
  flex-direction: column;
}
.preview-split {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 12px;
  height: 100%;
}
.preview-list-panel {
  overflow: auto;
}
.preview-detail {
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 12px;
  height: 100%;
  overflow: auto;
  background: #fff;
  position: relative;
}
.preview-detail .back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--primary);
  cursor: pointer;
  margin-bottom: 8px;
}
.preview-email {
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 10px;
  background: #f8fafc;
}
.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}
.modal-frame {
  flex: 1;
  border: 1px solid var(--border);
  border-radius: 10px;
  width: 100%;
}
.modal-list {
  max-height: 260px;
  overflow: auto;
  display: grid;
  gap: 8px;
  margin: 12px 0 16px;
}

.modal-card {
  padding: 0;
  border: 1px solid #000;
}
.modal-card .stack {
  padding: 18px;
}
.modal-card .stack.tight {
  padding: 0px;
}
.modal-card .actions {
  padding: 18px;
  border-top: 1px solid var(--border);
}
.modal-header {
  background: #272d3e;
  color: #fff;
  height: 70px;
  border-radius: 10px 10px 0 0;
}
.modal-header h3 {
  margin-top: 0;
  margin-left: 18px;
}
.modal-header .bubble-remove {
  margin-right: 18px;
}
.modal-header .bubble-remove:hover {
  background: #000;
}
.modal-list {
  margin: -8px 0 0 0;
  padding: 10px 8px 10px 18px;
}
#email-step-config,
#web-step-config,
#email-step-billing,
#web-step-billing {
  margin: 0 18px;
}
/* .modal-body {
  background: red;
} */



.muted { color: var(--muted); font-size: 14px; }
.unmuted { font-family: "Real Text Web W03 Regular", "Inter", "Segoe UI", system-ui, -apple-system, sans-serif; }

.email-field {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 8px;
  background: #fff;
  font-size: 14px;
  color: #0f172a;
}
.input-append {
  display: flex;
  align-items: stretch;
  width: 100%;
}
.input-append .email-field {
  border-radius: 8px 0 0 8px;
  border-right: 0;
}
.input-append button {
  border-radius: 0 8px 8px 0;
  border: 1px solid var(--border);
  border-left: 0;
  padding: 0 14px;
  height: auto;
}
textarea.email-field { resize: vertical; }
.email-links {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 8px;
  background: #fff;
  font-size: 14px;
  color: #0f172a;
}

.slip {
  border: 1px dashed var(--border);
  border-radius: 12px;
  padding: 18px;
  background: #f8fafc;
}
.slip ul { margin: 8px 0 0 16px; }
.spacer { height: 10px; }

/* .or-connector {
  position: absolute;
  top: 0;
  right: 0;
  width: 50px;
  height: 50px;
  border-radius: 50px;
  text-align: center;
  line-height: 50px;
} */

.or-connector {
  background: var(--bg);
  color: var(--card);
  position: absolute;
  top: 50%;
  left: 66.66%;
  transform: translate(-50%, -50%);
  margin-left: 3px;
  border: 1px solid var(--bg);
  /* background: var(--card); */
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  z-index: 1;
}

.or-connector-mobile {
  display: none;
}

.or-connector-desktop {
  display: flex;
}

.campaign-card-bullets {
  min-width:385px;
  background: #fff;
  margin: 10px 10px 10px 0;
  border: 1px solid #e8e8ea;
  border-radius: 6px;
}
.campaign-card-bullets ul {
  margin: auto 0;
  padding-inline-start: 49px;
}
.landing-h1, .landing-p1 {
  text-align: justify;
}

@media (max-width: 640px) {
  .actions { width: 100%; }
  .actions button, .actions a { flex: 1; justify-content: center; }
}


@media (max-width: 900px) {
  .or-connector-desktop {
    display: none;
  }
  
  .or-connector-mobile {
    background: var(--bg);
    color: var(--card);
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translate(-50%, 0);
    margin-top: -10px;
    border: 1px solid var(--bg);
    /* background: var(--card); */
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    z-index: 1;
  }
}

@media (max-width: 768px) {
  .campaign-card {
    flex-direction: column;
  }

  /* make text sit above image and tighten padding a bit */
  .campaign-card__text {
    padding: 24px !important;
  }

  .campaign-card-bullets {
    margin: 0 10px 10px;
    min-width: auto;
    width: calc(100% - 20px);
  }
  .campaign-card-bullets ul {
    padding-inline-start: 42px;
    margin: 25px 0;
  }

  /* image should become full width of the card */
  .campaign-card__imageWrap {
    width: 100%;
    height: auto !important;
    display: block !important;
    padding: 5px;
  }
  

  .campaign-card__image {
    width: 100% !important;
    margin: 0 !important;       /* remove the desktop margins */
    display: block;
    object-fit: cover;
  }

  .landing-h1, .landing-p1 {
    text-align: center;
  }

}

/* iOS-style Toggle Switch */
.toggle-switch input:checked + .toggle-slider {
    background-color: #2563eb;
}

.toggle-slider:before {
    content: "";
    position: absolute;
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    border-radius: 50%;
    transition: 0.3s;
}

.toggle-switch input:checked + .toggle-slider:before {
    transform: translateX(20px);
}
