:root {
  --ink: #18322d;
  --muted: #63756f;
  --paper: #f4f1e9;
  --surface: #fffdf8;
  --green: #1f5d4d;
  --green-dark: #164438;
  --sage: #dbe6d8;
  --gold: #d39b42;
  --danger: #a33c32;
  --line: #dfe3da;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  font-synthesis: none;
}

* { box-sizing: border-box; }
[hidden] { display: none !important; }
body { margin: 0; min-height: 100vh; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }

.topbar {
  height: 76px; padding: 0 max(24px, calc((100vw - 1180px) / 2));
  display: flex; align-items: center; justify-content: space-between;
  background: var(--surface); border-bottom: 1px solid var(--line);
}
.topbar-actions, .main-nav { display: flex; align-items: center; gap: 10px; }
.main-nav a { padding: 8px 10px; border-radius: 8px; color: var(--muted); text-decoration: none; font-size: .85rem; font-weight: 750; }
.main-nav a:hover, .main-nav a.active { color: var(--green); background: var(--sage); }
.brand { display: flex; gap: 12px; align-items: center; color: var(--ink); text-decoration: none; font-weight: 750; }
.brand small { color: var(--muted); font-size: .72rem; letter-spacing: .12em; margin-left: 4px; }
.brand-mark { width: 38px; height: 38px; display: grid; place-items: center; color: white; background: var(--green); border-radius: 50% 50% 46% 54%; font-weight: 800; }
.brand-mark.large { width: 60px; height: 60px; margin: 0 auto 28px; font-size: 1.15rem; }
.brand-mark img { width: 100%; height: 100%; border-radius: inherit; object-fit: cover; }

.shell { width: min(1180px, calc(100% - 48px)); margin: 0 auto 64px; }
.hero { display: flex; align-items: end; justify-content: space-between; gap: 24px; padding: 64px 0 40px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 10px; }
h1, h2, p { margin-top: 0; }
h1 { max-width: 720px; margin-bottom: 10px; font-family: Georgia, serif; font-size: clamp(2.4rem, 5vw, 4.25rem); line-height: 1.02; font-weight: 500; letter-spacing: -.035em; }
h2 { margin-bottom: 0; font-family: Georgia, serif; font-size: 2rem; font-weight: 500; }
.eyebrow { margin-bottom: 10px; color: var(--green); text-transform: uppercase; letter-spacing: .14em; font-size: .72rem; font-weight: 800; }
.lede { margin-bottom: 0; color: var(--muted); font-size: 1.05rem; }

.button { border: 0; border-radius: 100px; padding: 11px 18px; font-weight: 700; color: var(--ink); background: transparent; }
.button-primary { color: white; background: var(--green); box-shadow: 0 8px 22px rgba(31, 93, 77, .18); }
.button-primary:hover { background: var(--green-dark); }
.button-quiet { border: 1px solid var(--line); background: var(--surface); }
.button-danger { color: var(--danger); }

.metrics { display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px; margin-bottom: 24px; }
.metric { padding: 18px; border: 1px solid var(--line); border-radius: 16px; background: rgba(255, 253, 248, .72); }
.metric strong { display: block; font-family: Georgia, serif; font-size: 2rem; font-weight: 500; }
.metric span { color: var(--muted); font-size: .78rem; text-transform: capitalize; }

.workspace { padding: 28px; border: 1px solid var(--line); border-radius: 24px; background: var(--surface); box-shadow: 0 24px 60px rgba(24, 50, 45, .06); }
.resources-workspace, .campaigns-workspace, .deliveries-workspace, .settings-workspace { margin-top: 40px; }
.workspace-heading { display: flex; justify-content: space-between; align-items: center; gap: 24px; margin-bottom: 24px; }
.search input { width: min(320px, 45vw); }
input, select, textarea { width: 100%; border: 1px solid #ccd5cd; border-radius: 10px; padding: 11px 12px; color: var(--ink); background: white; }
input:focus, select:focus, textarea:focus { outline: 3px solid rgba(31, 93, 77, .15); border-color: var(--green); }
.contact-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.contact-card { padding: 20px; border: 1px solid var(--line); border-radius: 15px; background: white; text-align: left; color: var(--ink); transition: transform .16s, box-shadow .16s; }
.contact-card:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(24, 50, 45, .08); }
.contact-card h3 { margin: 12px 0 4px; font-size: 1.05rem; }
.contact-card p { min-height: 20px; margin: 0; color: var(--muted); }
.tag-list { display: flex; flex-wrap: wrap; gap: 5px; margin-top: 12px; }
.tag { padding: 3px 7px; border-radius: 999px; color: var(--muted); background: #eef1ec; font-size: .68rem; font-weight: 700; }
.stage { display: inline-block; padding: 5px 9px; border-radius: 100px; color: var(--green); background: var(--sage); font-size: .68rem; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }
.relationship-health { display: inline-block; margin-left: 6px; padding: 5px 9px; border-radius: 100px; font-size: .68rem; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }
.health-warm { color: #18543e; background: #d9eadf; }
.health-cooling { color: #76530f; background: #f7e8bc; }
.health-cold { color: #5f6663; background: #e7e9e7; }
.health-suppressed { color: var(--danger); background: #f8ded9; }
.empty { padding: 48px 10px; text-align: center; color: var(--muted); }
.resource-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.resource-card { padding: 20px; border: 1px solid var(--line); border-radius: 15px; background: white; }
.resource-card h3 { margin: 10px 0 5px; }
.resource-card p { color: var(--muted); }
.resource-actions { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }
.campaign-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.campaign-card { padding: 20px; border: 1px solid var(--line); border-radius: 15px; background: white; }
.campaign-card h3 { margin: 12px 0 5px; }
.campaign-card p { margin-bottom: 8px; color: var(--muted); }
.campaign-card time { color: var(--muted); font-size: .72rem; }
.campaign-card-actions, .campaign-editor-heading, .campaign-editor-actions, .campaign-editor-identity { display: flex; gap: 12px; align-items: center; }
.campaign-card-actions { margin-top: 16px; }
.template-picker { margin: 0 0 20px; padding: 0; border: 0; }
.template-picker legend { margin-bottom: 10px; color: var(--muted); font-size: .78rem; font-weight: 700; }
.template-gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.template-card { min-width: 0; padding: 10px; border: 1px solid var(--line); border-radius: 12px; color: var(--ink); background: white; text-align: left; }
.template-card:hover { border-color: #9eb8af; box-shadow: 0 7px 18px rgba(24, 50, 45, .08); }
.template-card.selected { border-color: var(--green); outline: 3px solid rgba(31, 93, 77, .12); }
.template-card > strong, .template-card > span:last-child { display: block; }
.template-card > strong { margin: 9px 0 3px; font-size: .78rem; }
.template-card > span:last-child { color: var(--muted); font-size: .64rem; line-height: 1.35; }
.template-card-preview { height: 78px; display: grid; place-items: center; align-content: center; gap: 5px; overflow: hidden; border-radius: 7px; background: #f4f1e9; }
.template-card-preview i { width: 24px; height: 24px; display: grid; place-items: center; border-radius: 50%; color: white; background: var(--green); font-size: .6rem; font-style: normal; font-weight: 800; }
.template-card-preview b, .template-card-preview em, .template-card-preview small { display: block; height: 4px; border-radius: 3px; background: #cbd4cc; }
.template-card-preview b { width: 58%; background: #18322d; }
.template-card-preview em { width: 72%; }
.template-card-preview small { width: 42%; background: #1f5d4d; }
.template-personal { justify-items: start; padding-left: 18px; background: white; }
.template-announcement { border-top: 8px solid #a86f24; }
.template-event { background: #e9f0f3; }
.template-coaching { background: #f1e9f1; }
.template-resource small { height: 8px; border-radius: 8px; }
.campaign-editor-heading { justify-content: space-between; margin-bottom: 18px; }
.campaign-editor-identity .eyebrow { margin: 0 0 3px; }
.campaign-editor-identity strong { font-family: Georgia, serif; font-size: 1.2rem; font-weight: 500; }
.campaign-metadata { margin-bottom: 8px; }
.campaign-editor-workspace { width: min(1460px, calc(100vw - 32px)); margin-left: 50%; padding: 18px; transform: translateX(-50%); }
.structured-email-editor { display: grid; grid-template-columns: minmax(360px, 470px) minmax(480px, 1fr); min-height: 720px; overflow: hidden; border: 1px solid var(--line); border-radius: 16px; background: #f0eee8; box-shadow: 0 16px 45px rgba(24, 50, 45, .08); }
.structured-email-controls { padding: 24px; border-right: 1px solid var(--line); background: #fbfaf6; }
.structured-email-controls label { margin-bottom: 16px; }
.structured-email-controls textarea { margin-top: 7px; resize: vertical; }
.email-block-picker, .campaign-tag-filter { margin: 18px 0; padding: 0; border: 0; }
.email-block-picker legend, .campaign-tag-filter legend { margin-bottom: 9px; color: var(--muted); font-size: .76rem; font-weight: 800; }
.email-block-palette { display: grid; grid-template-columns: repeat(3, 1fr); gap: 7px; }
.email-block-choice { min-height: 62px; display: grid; place-items: center; gap: 3px; padding: 7px; border: 1px solid var(--line); border-radius: 10px; color: var(--ink); background: white; font-size: .68rem; font-weight: 800; }
.email-block-choice:hover { color: var(--green); border-color: var(--green); }
.email-block-choice span { font-family: Georgia, serif; font-size: 1.1rem; }
.email-blocks-heading, .email-block-header { display: flex; align-items: center; justify-content: space-between; }
.email-blocks-heading { margin: 20px 0 9px; }
.email-blocks-heading span { color: var(--muted); font-size: .72rem; }
.email-block-list { display: grid; gap: 10px; }
.email-block-card { padding: 13px; border: 1px solid var(--line); border-radius: 12px; background: white; }
.email-block-header { margin-bottom: 10px; color: var(--ink); }
.email-block-header div { display: flex; align-items: center; }
.email-block-header .icon-button { width: 28px; height: 28px; padding: 0; font-size: 1rem; }
.email-block-card > label { margin-bottom: 9px; }
.email-block-card textarea { width: 100%; }
.editor-section-heading { margin-bottom: 22px; }
.editor-section-heading .eyebrow, .structured-preview-toolbar .eyebrow { margin-bottom: 4px; }
.editor-section-heading h3 { margin: 0 0 5px; font-family: Georgia, serif; font-size: 1.35rem; font-weight: 500; }
.editor-section-heading p { margin: 0; color: var(--muted); font-size: .78rem; line-height: 1.5; }
.structured-email-preview { min-width: 0; background: #e9e7e1; }
.structured-preview-toolbar { min-height: 68px; display: flex; gap: 12px; align-items: center; justify-content: space-between; padding: 10px 16px; border-bottom: 1px solid var(--line); background: var(--surface); }
.structured-preview-toolbar strong { font-family: Georgia, serif; font-size: 1rem; font-weight: 500; }
.preview-device-buttons { display: flex; gap: 5px; }
.email-tool { width: 38px; height: 38px; border: 1px solid var(--line); border-radius: 9px; color: var(--ink); background: white; font-size: 1.25rem; }
.email-tool:hover:not(:disabled) { color: var(--green); border-color: var(--green); }
.email-tool.active { color: white; border-color: var(--green); background: var(--green); }
.preview-device-buttons .email-tool { width: auto; padding: 0 12px; font-size: .72rem; font-weight: 800; }
.email-tool:disabled { cursor: default; opacity: .35; }
.structured-preview-frame-wrap { width: 100%; padding: 28px; transition: width .2s; }
.structured-preview-frame-wrap.mobile { width: min(403px, 100%); margin: auto; }
.structured-preview-frame-wrap iframe { display: block; width: 100%; height: 650px; border: 0; background: white; box-shadow: 0 5px 24px rgba(24, 50, 45, .14); }
.campaign-send-panel { margin-top: 20px; padding: 24px; border: 1px solid var(--line); border-radius: 16px; background: #fbfaf6; }
.campaign-send-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.campaign-send-grid > div { padding: 18px; border: 1px solid var(--line); border-radius: 13px; background: white; }
.campaign-send-grid h4 { margin: 0 0 14px; font-family: Georgia, serif; font-size: 1.05rem; font-weight: 500; }
.inline-action, .campaign-delivery-actions { display: flex; gap: 8px; align-items: center; }
.inline-action input { min-width: 0; }
.inline-action .button { white-space: nowrap; }
.campaign-stage-filters { display: grid; grid-template-columns: 1fr 1fr; gap: 7px; margin-bottom: 14px; }
.campaign-stage-filters label { display: flex; gap: 7px; align-items: center; color: var(--ink); font-weight: 500; }
.campaign-stage-filters input { width: auto; margin: 0; }
.tag-filter-options { display: flex; flex-wrap: wrap; gap: 7px; margin-bottom: 12px; }
.tag-filter-options label { display: flex; flex: none; gap: 6px; align-items: center; padding: 6px 9px; border-radius: 999px; color: var(--ink); background: var(--sage); font-size: .72rem; }
.tag-filter-options input { width: auto; margin: 0; }
.campaign-preflight-result p { margin: 5px 0; font-size: .8rem; }
.preflight-pass { color: var(--green); }
.preflight-fail { color: var(--danger); }
#campaign-audience-summary { margin-top: 14px; padding-top: 12px; border-top: 1px solid var(--line); color: var(--muted); }
.campaign-delivery-actions { justify-content: flex-end; }
.campaign-preview-dialog { width: min(760px, calc(100% - 32px)); padding: 20px; }
.campaign-preview-heading { display: flex; justify-content: space-between; align-items: center; margin-bottom: 14px; }
.campaign-preview-heading h2 { font-size: 1.5rem; }
.campaign-preview-dialog iframe { width: 100%; height: 70vh; border: 1px solid var(--line); background: white; }
.field-help { margin: -6px 0 14px; color: var(--muted); font-size: .78rem; }
.person-activity { margin-top: 22px; padding-top: 20px; border-top: 1px solid var(--line); }
.person-activity h3 { margin: 0 0 12px; font-family: Georgia, serif; font-size: 1.25rem; font-weight: 500; }
.person-health { display: grid; grid-template-columns: auto 1fr; gap: 4px 10px; align-items: center; margin-bottom: 18px; padding: 12px; border-radius: 12px; background: #f8faf6; }
.person-health .relationship-health { grid-row: 1 / 3; margin-left: 0; }
.person-health span:not(.relationship-health), .person-health small { color: var(--muted); font-size: .76rem; }
.note-composer { display: grid; grid-template-columns: 1fr auto; gap: 10px; align-items: end; margin-bottom: 8px; }
.note-composer label { margin: 0; }
.note-composer textarea { display: block; margin-top: 7px; resize: vertical; }
.timeline { position: relative; }
.activity-item { position: relative; display: grid; grid-template-columns: 12px minmax(0, 1fr) auto; gap: 12px; align-items: start; padding: 10px 0; }
.activity-item:not(:last-child)::before { content: ""; position: absolute; top: 22px; bottom: -10px; left: 5px; border-left: 2px solid var(--line); }
.activity-marker { z-index: 1; width: 12px; height: 12px; margin-top: 3px; border: 3px solid var(--surface); border-radius: 50%; background: var(--green); box-shadow: 0 0 0 1px var(--green); }
.activity-content { display: grid; gap: 2px; }
.activity-item p { margin: 0; color: var(--ink); font-size: .85rem; font-weight: 750; }
.activity-content span, .activity-item time { color: var(--muted); font-size: .75rem; }
.activity-item time { white-space: nowrap; }

.signed-out { min-height: calc(100vh - 76px); display: grid; place-items: center; padding: 40px 24px; background: radial-gradient(circle at 50% 20%, #fffdf8, var(--paper) 58%); }
.signed-out-card { max-width: 620px; text-align: center; }
.signed-out-card h1 { font-size: clamp(2.3rem, 6vw, 4rem); }
.signed-out-card p:not(.eyebrow) { color: var(--muted); font-size: 1.05rem; margin-bottom: 28px; }

dialog { width: min(620px, calc(100% - 32px)); border: 0; border-radius: 22px; padding: 0; color: var(--ink); background: var(--surface); box-shadow: 0 30px 90px rgba(12, 31, 26, .24); }
#campaign-dialog { width: min(940px, calc(100% - 32px)); }
dialog::backdrop { background: rgba(17, 36, 31, .55); backdrop-filter: blur(3px); }
form { padding: 28px; }
.dialog-heading, .dialog-actions, .form-row { display: flex; gap: 14px; }
.dialog-heading { justify-content: space-between; align-items: start; margin-bottom: 24px; }
.icon-button { border: 0; background: transparent; color: var(--muted); font-size: 1.8rem; line-height: 1; }
form > label, .form-row { margin-bottom: 16px; }
label { display: block; flex: 1; color: var(--muted); font-size: .78rem; font-weight: 700; }
label input, label select { margin-top: 7px; color: var(--ink); font-weight: 400; }
.dialog-actions { align-items: center; margin-top: 24px; }
.spacer { flex: 1; }
.error { min-height: 20px; margin: 0; color: var(--danger); font-size: .85rem; }
.suppressed-badge { align-self: start; padding: 4px 8px; border-radius: 999px; color: var(--danger); background: #f8ded9; font-size: .72rem; font-weight: 800; }
.suppression-alert { padding: 10px 12px; border-left: 4px solid var(--danger); color: var(--danger); background: #fff0ed; font-size: .85rem; }
.person-subscription { margin: 20px 0; padding: 14px; border: 1px solid var(--line); border-radius: 12px; background: #f8faf6; }
.subscription-toggle { display: flex; gap: 10px; align-items: center; color: var(--ink); font-size: .88rem; }
.subscription-toggle input { width: auto; margin: 0; }
.settings-form { padding: 0; }
.settings-actions { display: flex; justify-content: flex-end; }
.settings-subsection { display: flex; justify-content: space-between; align-items: center; gap: 20px; }
.settings-subsection h2 { margin-bottom: 5px; }
.settings-subsection p { margin: 0; color: var(--muted); font-size: .85rem; }
.logo-preview { margin: -4px 0 18px; }
.logo-preview img { width: 88px; height: 88px; border: 1px solid var(--line); border-radius: 18px; object-fit: cover; }
.import-preview { margin: 16px 0; padding: 12px; border-radius: 10px; color: var(--green); background: var(--sage); font-size: .85rem; font-weight: 750; white-space: pre-line; }
.delivery-metrics { display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px; margin-bottom: 20px; }
.attention-panel { margin-bottom: 22px; padding: 18px; border: 1px solid var(--line); border-radius: 16px; background: #f8faf6; }
.attention-heading { display: flex; justify-content: space-between; align-items: center; margin-bottom: 12px; }
.attention-heading .eyebrow { margin-bottom: 4px; }
.attention-heading h3 { margin: 0; font-family: Georgia, serif; font-size: 1.35rem; font-weight: 500; }
.attention-count { min-width: 32px; padding: 6px 10px; border-radius: 999px; color: white; background: var(--green); text-align: center; font-weight: 800; }
.attention-list { display: grid; gap: 8px; }
.attention-row { display: flex; justify-content: space-between; gap: 14px; align-items: center; padding: 10px 12px; border-radius: 10px; background: var(--surface); }
.attention-row div { display: grid; gap: 3px; }
.attention-row span, .attention-empty { margin: 0; color: var(--muted); font-size: .78rem; }
.delivery-metric { display: grid; gap: 2px; padding: 14px; border: 1px solid var(--line); border-radius: 12px; background: var(--surface); }
.delivery-metric strong { font-size: 1.5rem; }
.delivery-metric span { color: var(--muted); font-size: .78rem; font-weight: 700; }
.delivery-list { display: grid; gap: 8px; }
.delivery-activity > summary { width: fit-content; margin-bottom: 14px; color: var(--green); cursor: pointer; font-weight: 800; }
.delivery-activity:not([open]) > summary { margin-bottom: 0; }
.delivery-filters { display: grid; grid-template-columns: minmax(220px, 1fr) repeat(2, minmax(140px, 200px)); gap: 12px; margin-bottom: 18px; }
.people-filters { display: grid; grid-template-columns: minmax(220px, 1fr) repeat(2, minmax(130px, 170px)); gap: 8px; }
.people-filters label { margin: 0; }
.people-filters select { margin: 0; }
.delivery-row { border: 1px solid var(--line); border-radius: 12px; background: var(--surface); }
.delivery-row-summary { display: grid; grid-template-columns: minmax(180px, 1fr) auto minmax(150px, auto); gap: 16px; align-items: center; padding: 14px 16px; cursor: pointer; }
.delivery-row-summary::marker { color: var(--green); }
.delivery-row-summary div { display: grid; gap: 3px; }
.delivery-row-summary div span, .delivery-row-summary time { color: var(--muted); font-size: .8rem; }
.delivery-person-link { width: fit-content; padding: 0; border: 0; color: var(--green); background: transparent; font-weight: 800; text-align: left; }
.delivery-person-link:hover { text-decoration: underline; }
.delivery-status { padding: 4px 9px; border-radius: 999px; background: var(--sage); font-size: .75rem; font-weight: 800; text-transform: capitalize; }
.delivery-details { display: grid; gap: 12px; padding: 0 16px 16px 32px; border-top: 1px solid var(--line); color: var(--muted); font-size: .8rem; }
.delivery-row dl { display: grid; grid-template-columns: max-content 1fr; gap: 5px 12px; margin: 10px 0 0; }
.delivery-row dt { font-weight: 800; }
.delivery-row dd { margin: 0; overflow-wrap: anywhere; }
.status-bounced, .status-complained, .status-rejected, .status-failed { color: var(--danger); background: #f8ded9; }
.status-delayed { color: #76530f; background: #f7e8bc; }
.toast { position: fixed; right: 24px; bottom: 24px; translate: 0 120px; opacity: 0; padding: 12px 18px; border-radius: 10px; color: white; background: var(--ink); transition: .2s; }
.toast.visible { translate: 0; opacity: 1; }
.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; }

@media (max-width: 1100px) {
  .structured-email-editor { grid-template-columns: minmax(320px, 400px) minmax(440px, 1fr); }
}

@media (max-width: 760px) {
  .topbar { height: auto; min-height: 76px; flex-wrap: wrap; gap: 10px; padding-top: 12px; padding-bottom: 12px; }
  .topbar-actions { width: 100%; justify-content: space-between; }
  .main-nav { gap: 2px; overflow-x: auto; }
  .main-nav a { padding: 7px; font-size: .76rem; }
  .hero { align-items: start; flex-direction: column; padding-top: 40px; }
  .metrics { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .resource-grid { grid-template-columns: 1fr; }
  .campaign-grid { grid-template-columns: 1fr; }
  .template-gallery { grid-template-columns: repeat(2, 1fr); }
  .delivery-metrics { grid-template-columns: repeat(2, 1fr); }
  .delivery-filters { grid-template-columns: 1fr; }
  .delivery-row-summary { grid-template-columns: 1fr auto; }
  .delivery-row-summary time { grid-column: 1 / -1; }
  .workspace { padding: 20px; }
  .workspace-heading { align-items: start; flex-direction: column; }
  .search, .search input { width: 100%; }
  .people-filters { width: 100%; grid-template-columns: 1fr; }
  .email-block-palette { grid-template-columns: repeat(2, 1fr); }
  .form-row { flex-direction: column; }
  .note-composer { grid-template-columns: 1fr; }
  .attention-row { align-items: start; flex-direction: column; }
  .settings-subsection { align-items: start; flex-direction: column; }
  .campaign-editor-heading { align-items: stretch; flex-direction: column; }
  .campaign-editor-actions { justify-content: flex-end; }
  .campaign-editor-identity { align-items: flex-start; flex-direction: column; }
  .structured-email-editor { display: block; }
  .structured-email-controls { border-right: 0; border-bottom: 1px solid var(--line); }
  .structured-preview-frame-wrap { padding: 12px; }
  .campaign-send-grid { grid-template-columns: 1fr; }
  .campaign-stage-filters { grid-template-columns: 1fr; }
  .inline-action { align-items: stretch; flex-direction: column; }
}
