:root {
  --hg-green: #2f9b71;
  --hg-green-dark: #237a59;
  --hg-ink: #1f2a37;
  --hg-soft: #f5f7f9;
  --hg-border: #e3e8ee;
  --hg-preview-width: 390px;
}

html, body { min-height: 100%; }
body {
  margin: 0;
  background: #f4f6f8;
  color: var(--hg-ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.admin-header {
  min-height: 62px;
  background: #fff;
  border-bottom: 0;
}
.brand-mark {
  width: 34px;
  height: 34px;
  display: inline-grid;
  place-items: center;
  border-radius: 9px;
  background: var(--hg-green);
  color: white;
  font-weight: 800;
  box-shadow: 0 6px 18px rgba(47, 155, 113, .18);
}
.admin-nav-wrap {
  position: sticky;
  top: 0;
  z-index: 1025;
  background: rgba(255, 255, 255, .97);
  border-bottom: 1px solid var(--hg-border);
  backdrop-filter: blur(8px);
}
.admin-nav {
  display: flex;
  gap: 4px;
  overflow-x: auto;
  scrollbar-width: thin;
}
.admin-nav-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 15px;
  color: #5a6573;
  text-decoration: none;
  white-space: nowrap;
  font-weight: 600;
  font-size: 14px;
}
.admin-nav-link:hover { color: var(--hg-green-dark); }
.admin-nav-link.active { color: var(--hg-green-dark); }
.admin-nav-link.active::after {
  content: "";
  position: absolute;
  height: 3px;
  left: 12px;
  right: 12px;
  bottom: -1px;
  border-radius: 3px 3px 0 0;
  background: var(--hg-green);
}

.admin-page-container { padding-top: 20px; padding-bottom: 48px; }
.page-title { letter-spacing: -.025em; }
.guide-picker { margin-bottom: 12px; }
.guide-picker-field { min-width: 260px; }
.btn-primary {
  --tblr-btn-bg: var(--hg-green);
  --tblr-btn-border-color: var(--hg-green);
  --tblr-btn-hover-bg: var(--hg-green-dark);
  --tblr-btn-hover-border-color: var(--hg-green-dark);
  --tblr-btn-active-bg: var(--hg-green-dark);
  --tblr-btn-active-border-color: var(--hg-green-dark);
}
.compact-alert {
  min-height: auto;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 10px 13px;
  margin-bottom: 14px;
}

.admin-workspace {
  display: grid;
  grid-template-columns: minmax(0, 1fr) var(--hg-preview-width);
  gap: 20px;
  align-items: start;
}
.editor-pane { min-width: 0; }
.preview-pane {
  position: sticky;
  top: 66px;
  align-self: start;
  min-width: 0;
}
.preview-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 2px 9px;
}
.preview-kicker {
  color: #7a8592;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.phone-shell {
  position: relative;
  width: 100%;
  height: min(740px, calc(100vh - 150px));
  min-height: 560px;
  padding: 13px;
  border: 8px solid #171b22;
  border-radius: 42px;
  background: #171b22;
  box-shadow: 0 18px 50px rgba(24, 36, 51, .17);
  overflow: hidden;
}
.phone-speaker {
  position: absolute;
  z-index: 4;
  top: 10px;
  left: 50%;
  width: 86px;
  height: 22px;
  border-radius: 0 0 14px 14px;
  transform: translateX(-50%);
  background: #171b22;
}
.phone-frame {
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 28px;
  background: white;
}
.preview-note { font-size: 11px; line-height: 1.45; margin: 8px 5px 0; }

.editor-layout {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
}
.editor-list {
  position: sticky;
  top: 66px;
  overflow: hidden;
}
.editor-list .list-group-item.active {
  background: #edf8f3;
  color: #1f6e51;
  border-color: #d5eee3;
}
.editor-list .list-group-item.active svg { color: var(--hg-green); }
.editor-detail { min-width: 0; }
.page-meta-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}
.page-meta-grid > div {
  padding: 10px 12px;
  border: 1px solid var(--hg-border);
  border-radius: 8px;
  background: #fafbfd;
}
.page-meta-grid span { display: block; font-size: 10px; text-transform: uppercase; letter-spacing: .06em; color: #8a95a3; margin-bottom: 2px; }
.page-meta-grid strong { font-size: 13px; }
.block-stack { display: grid; gap: 10px; }
.content-block {
  padding: 14px;
  border: 1px solid var(--hg-border);
  border-radius: 10px;
  background: #fff;
}
.content-block-topline { display: flex; justify-content: space-between; align-items: center; gap: 12px; margin-bottom: 9px; }
.content-block h3 { margin: 4px 0 8px; font-size: 16px; }
.content-text { white-space: pre-wrap; line-height: 1.58; font-size: 14px; color: #35404d; }
.asset-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  max-width: 100%;
  margin-top: 8px;
  padding: 5px 8px;
  border-radius: 6px;
  background: #f4f6f8;
  color: #677381;
  font-size: 12px;
  overflow-wrap: anywhere;
}
.empty-state { padding: 28px; border: 1px dashed #cdd5de; border-radius: 10px; color: #7c8794; text-align: center; }

.readout-grid { border: 1px solid var(--hg-border); border-radius: 9px; overflow: hidden; }
.readout-row { display: grid; grid-template-columns: minmax(160px, 34%) minmax(0, 1fr); border-bottom: 1px solid var(--hg-border); }
.readout-row:last-child { border-bottom: 0; }
.readout-key { padding: 9px 12px; background: #f8fafb; color: #657181; font-size: 12px; font-family: ui-monospace, SFMono-Regular, Menlo, monospace; overflow-wrap: anywhere; }
.readout-value { padding: 9px 12px; white-space: pre-wrap; overflow-wrap: anywhere; font-size: 13px; line-height: 1.5; }

.management-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
.management-readonly { grid-column: 1 / -1; }
.detail-list { margin: 0; }
.detail-list > div { display: grid; grid-template-columns: 160px minmax(0, 1fr); gap: 12px; padding: 8px 0; border-bottom: 1px solid var(--hg-border); }
.detail-list > div:last-child { border-bottom: 0; }
.detail-list dt { color: #768291; font-weight: 500; }
.detail-list dd { margin: 0; overflow-wrap: anywhere; }
.status-dot-row { display: flex; align-items: center; gap: 8px; margin-bottom: 10px; }
.status-dot { width: 9px; height: 9px; border-radius: 50%; background: #f59f00; box-shadow: 0 0 0 4px rgba(245, 159, 0, .12); }
.status-dot-row.is-ok .status-dot { background: #2fb344; box-shadow: 0 0 0 4px rgba(47, 179, 68, .12); }
.code-readout { padding: 9px 11px; border-radius: 7px; background: #1f2937; color: #e5e7eb; font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: 12px; overflow-wrap: anywhere; }

@media (max-width: 1180px) {
  :root { --hg-preview-width: 340px; }
  .editor-layout { grid-template-columns: 190px minmax(0, 1fr); }
  .page-meta-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 900px) {
  .admin-workspace { grid-template-columns: 1fr; }
  .preview-pane { position: static; max-width: 430px; margin: 0 auto; width: 100%; }
  .phone-shell { height: 700px; }
  .editor-list { position: static; }
}
@media (max-width: 680px) {
  .navbar-nav .badge:last-child { display: none; }
  .admin-page-container { padding-top: 14px; }
  .editor-layout { grid-template-columns: 1fr; }
  .editor-list .list-group { display: flex; flex-direction: row; overflow-x: auto; }
  .editor-list .list-group-item { min-width: 165px; border-bottom: 0; border-right: 1px solid var(--hg-border); }
  .management-grid { grid-template-columns: 1fr; }
  .management-readonly { grid-column: auto; }
  .readout-row { grid-template-columns: 1fr; }
  .readout-key { border-bottom: 1px solid var(--hg-border); }
  .page-meta-grid { grid-template-columns: 1fr 1fr; }
  .phone-shell { min-height: 520px; height: 680px; border-radius: 34px; }
}

/* V0.2 visual editing canvas ------------------------------------------------ */
.visual-editor-card { overflow: hidden; }
.visual-editor-body { padding: 0; }
.visual-editor-toolbar {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 20px 16px;
  border-bottom: 1px solid var(--hg-border);
  background: #fff;
}
.visual-settings {
  margin: 12px 20px 0;
  border: 1px solid var(--hg-border);
  border-radius: 10px;
  background: #fafbfd;
}
.visual-settings > summary,
.visual-visibility-controls > summary,
.visual-inline-settings > summary {
  cursor: pointer;
  user-select: none;
  font-weight: 650;
  color: #5e6875;
  list-style: none;
}
.visual-settings > summary::-webkit-details-marker,
.visual-visibility-controls > summary::-webkit-details-marker,
.visual-inline-settings > summary::-webkit-details-marker { display: none; }
.visual-settings > summary { padding: 10px 12px; }
.visual-settings > summary::after,
.visual-visibility-controls > summary::after,
.visual-inline-settings > summary::after { content: '⌄'; float: right; color: #9aa4af; }
.visual-settings[open] > summary::after,
.visual-visibility-controls[open] > summary::after,
.visual-inline-settings[open] > summary::after { content: '⌃'; }
.visual-settings-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 14px;
  padding: 0 12px 12px;
  border-top: 1px solid var(--hg-border);
  padding-top: 12px;
}
.visual-settings-grid label:not(.visual-switch),
.visual-inline-settings label,
.visual-two-field-grid label {
  display: grid;
  gap: 5px;
  color: #727e8b;
  font-size: 11px;
  font-weight: 650;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.visual-settings-grid input:not([type="checkbox"]),
.visual-inline-settings input,
.visual-two-field-grid label > input {
  width: 100%;
  min-width: 0;
  border: 1px solid #dbe1e7;
  border-radius: 8px;
  background: #fff;
  padding: 8px 10px;
  color: #27313d;
  font: inherit;
  text-transform: none;
  letter-spacing: normal;
}
.visual-switch { align-self: end; margin-bottom: 7px; }

.guest-edit-canvas {
  width: min(100% - 40px, 760px);
  margin: 14px auto 18px;
  padding: 18px;
  border: 1px solid #eadfcd;
  border-radius: 22px;
  background: #f8f2e7;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.8);
}
.guest-editor-breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 2px 14px;
  color: #626b73;
  font-size: 13px;
}
.guest-editor-breadcrumb span { color: #a4a9ad; }
.guest-page-content { display: grid; gap: 14px; }
.guest-edit-card {
  padding: 18px;
  border: 1px solid #eadfcd;
  border-radius: 20px;
  background: rgba(255,255,255,.92);
  box-shadow: 0 10px 25px rgba(77, 62, 37, .055);
}
.guest-edit-card h3,
.guest-section-heading {
  margin: 0 0 10px;
  color: #292723;
  font-size: 19px;
  line-height: 1.25;
  font-weight: 750;
}
.guest-section-heading { padding: 5px 4px 1px; font-size: 21px; }
.guest-paragraph,
.guest-edit-card .wysiwyg-editable {
  color: #35322e;
  font-size: 15px;
  line-height: 1.68;
  white-space: pre-wrap;
}
.guest-strong-text { font-weight: 700; font-size: 16px !important; }
.wysiwyg-editable {
  min-height: 1.35em;
  border-radius: 7px;
  outline: 0;
  transition: box-shadow .14s ease, background-color .14s ease;
}
.wysiwyg-editable:hover { background: rgba(47, 155, 113, .055); box-shadow: 0 0 0 4px rgba(47, 155, 113, .055); }
.wysiwyg-editable:focus { background: #fff; box-shadow: 0 0 0 3px rgba(47, 155, 113, .16); }
.wysiwyg-editable:empty::before { content: attr(data-placeholder); color: #9ba3aa; font-style: italic; }
.wysiwyg-input {
  width: 100%;
  min-width: 0;
  border: 0;
  border-bottom: 1px dashed transparent;
  background: transparent;
  color: inherit;
  font: inherit;
  outline: 0;
  border-radius: 4px;
  padding: 2px 3px;
}
.wysiwyg-input:hover { border-bottom-color: #9bcdb8; background: rgba(47,155,113,.04); }
.wysiwyg-input:focus { border-bottom-color: var(--hg-green); background: #fff; box-shadow: 0 0 0 3px rgba(47,155,113,.12); }
.guest-time-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
.guest-time-grid.one-time { grid-template-columns: minmax(0, 1fr); max-width: 50%; }
.guest-time-card { text-align: center; min-height: 125px; display: grid; place-content: center; }
.guest-card-label { color: #77746f; font-size: 16px; margin-bottom: 6px; }
.guest-time-value { color: #bd7b09; font-size: 24px; font-weight: 800; text-align: center; }
.guest-action-row,
.guest-contact-button {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 13px;
  border: 1px solid #eadfcd;
  border-radius: 14px;
  background: #fffefa;
  font-weight: 650;
}
.guest-action-row .wysiwyg-input { font-weight: 650; }
.guest-contact-button {
  width: fit-content;
  color: #2f5f4e;
  cursor: default;
}
.guest-contact-button .wysiwyg-input { min-width: 150px; font-weight: 750; }
.visual-two-field-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 12px; }
.visual-two-field-grid label > .wysiwyg-input { border: 1px solid #eadfcd; border-radius: 10px; padding: 9px 10px; background: #fffefa; color: #262d33; }
.guest-checklist { display: grid; gap: 9px; padding: 0; margin: 10px 0 0; list-style: none; }
.guest-checklist li { display: grid; grid-template-columns: 22px minmax(0,1fr); align-items: start; gap: 8px; }
.guest-checkmark { display: inline-grid; place-items: center; width: 22px; height: 22px; margin-top: 1px; border-radius: 50%; background: #eef8f3; color: var(--hg-green-dark); font-size: 12px; font-weight: 800; }
.guest-checklist.plain .guest-checkmark { background: transparent; color: #9a7441; }
.visual-add-item {
  margin-top: 12px;
  border: 0;
  background: transparent;
  color: var(--hg-green-dark);
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
}
.guest-numbered-list { display: grid; gap: 8px; margin: 12px 0 0; padding-left: 24px; }
.guest-numbered-list li { padding-left: 4px; }
.guest-video-card { overflow: hidden; }
.visual-video-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  margin: 8px 0 13px;
  overflow: hidden;
  border-radius: 14px;
  background: #101418;
}
.visual-video-frame iframe { width: 100%; height: 100%; border: 0; }
.visual-video-empty,
.visual-image-empty,
.visual-empty-page {
  padding: 28px;
  border: 1px dashed #d5c7b4;
  border-radius: 14px;
  color: #8a8177;
  text-align: center;
  background: rgba(255,255,255,.45);
}
.visual-inline-settings,
.visual-visibility-controls {
  margin-top: 14px;
  padding: 9px 11px;
  border: 1px solid #ece1d0;
  border-radius: 10px;
  background: #fffdfa;
}
.visual-inline-settings > summary,
.visual-visibility-controls > summary { font-size: 12px; }
.visual-inline-settings label { margin-top: 10px; }
.visual-switch-row { display: flex; flex-wrap: wrap; gap: 12px 20px; padding-top: 12px; }
.guest-image-block { overflow: hidden; border-radius: 18px; background: #fff; border: 1px solid #eadfcd; }
.guest-image-block img { width: 100%; max-height: 480px; object-fit: cover; display: block; }
.guest-image-caption { padding: 10px 13px; color: #6d6a65; font-size: 13px; }
.visual-editor-safeguard {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  margin: 0 20px 18px;
  padding: 10px 12px;
  border-radius: 9px;
  background: #fff8e6;
  color: #765b22;
  font-size: 12px;
  line-height: 1.45;
}

@media (max-width: 1180px) {
  .guest-edit-canvas { width: calc(100% - 28px); }
}
@media (max-width: 680px) {
  .visual-editor-toolbar { flex-direction: column; }
  .visual-settings-grid,
  .guest-time-grid,
  .visual-two-field-grid { grid-template-columns: 1fr; }
  .guest-time-grid.one-time { max-width: none; }
  .guest-edit-canvas { width: calc(100% - 20px); padding: 12px; border-radius: 17px; }
  .guest-edit-card { padding: 15px; border-radius: 16px; }
}

/* V0.2.1 visual-editor polish: discoverable editing + browser draft preview */
.preview-heading-polished { margin-bottom: 7px; }
.preview-mode-toggle {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
  margin: 0 2px 9px;
  padding: 3px;
  border: 1px solid var(--hg-border);
  border-radius: 10px;
  background: #eef1f4;
}
.preview-mode-toggle button {
  position: relative;
  border: 0;
  border-radius: 7px;
  background: transparent;
  color: #657180;
  padding: 7px 8px;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
}
.preview-mode-toggle button.active {
  background: #fff;
  color: var(--hg-green-dark);
  box-shadow: 0 1px 4px rgba(24,36,51,.09);
}
.preview-dirty-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-left: 6px;
  border-radius: 50%;
  background: #d99012;
  vertical-align: 1px;
}

.draft-phone-root {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 28px;
  background: #f5f2e9;
  color: #1f2924;
}
.draft-phone-brand {
  flex: 0 0 auto;
  padding: 25px 14px 11px;
  color: #fff;
}
.draft-phone-property {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 21px;
  line-height: 1.1;
  margin-bottom: 12px;
}
.draft-phone-mini-nav {
  display: grid;
  grid-template-columns: repeat(5, minmax(0,1fr));
  gap: 4px;
  font-size: 8px;
  font-weight: 700;
  text-align: center;
  opacity: .96;
}
.draft-phone-mini-nav span {
  padding: 7px 2px;
  border: 1px solid rgba(255,255,255,.6);
  border-radius: 9px;
  background: rgba(255,255,255,.08);
}
.draft-phone-scroll {
  flex: 1 1 auto;
  min-height: 0;
  overflow-y: auto;
  padding: 12px 10px 24px;
  scrollbar-width: thin;
}
.draft-phone-breadcrumb {
  display: flex;
  gap: 5px;
  align-items: center;
  flex-wrap: wrap;
  padding: 1px 3px 10px;
  font-size: 9px;
  color: #52605a;
}
.draft-phone-breadcrumb span { color: #75847d; }
.draft-phone-stack { display: grid; gap: 9px; }
.draft-phone-card {
  padding: 13px;
  border: 1px solid #e7e0d1;
  border-radius: 16px;
  background: rgba(255,255,255,.91);
  box-shadow: 0 5px 14px rgba(68,57,37,.035);
}
.draft-phone-card h4,
.draft-phone-section-heading {
  margin: 0 0 7px;
  font-size: 14px;
  line-height: 1.25;
  font-weight: 800;
  color: #1f2924;
}
.draft-phone-card p,
.draft-phone-paragraph {
  margin: 0;
  font-size: 11.5px;
  line-height: 1.52;
  white-space: pre-wrap;
}
.draft-phone-card p + p { margin-top: 7px; }
.draft-phone-card ul,
.draft-phone-card ol {
  margin: 7px 0 0;
  padding-left: 19px;
  font-size: 11px;
  line-height: 1.48;
}
.draft-phone-time-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.draft-phone-time-grid.one { grid-template-columns: 1fr; }
.draft-phone-time-grid .draft-phone-card { text-align: center; padding: 17px 7px; }
.draft-phone-time-grid span { display: block; color: #737b75; font-size: 10px; margin-bottom: 4px; }
.draft-phone-time-grid strong { font-size: 16px; color: #2c704f; }
.draft-phone-action,
.draft-phone-contact {
  display: flex;
  align-items: center;
  gap: 6px;
  width: fit-content;
  max-width: 100%;
  padding: 8px 10px;
  border: 1px solid #e6dfd1;
  border-radius: 11px;
  background: #fffefa;
  font-size: 10.5px;
  font-weight: 700;
}
.draft-phone-contact { margin-left: 2px; }
.draft-phone-detail { display: grid; gap: 2px; padding: 6px 0; border-bottom: 1px solid #eee8dc; }
.draft-phone-detail:last-child { border-bottom: 0; }
.draft-phone-detail span { color: #767f79; font-size: 9px; text-transform: uppercase; letter-spacing: .04em; }
.draft-phone-video iframe {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  margin: 7px 0 9px;
  border: 0;
  border-radius: 10px;
  background: #111;
}
.draft-phone-image { overflow: hidden; border: 1px solid #e7e0d1; border-radius: 15px; background: #fff; }
.draft-phone-image img { display: block; width: 100%; max-height: 250px; object-fit: cover; }
.draft-phone-image p { margin: 0; padding: 8px 10px; font-size: 10px; color: #66716a; }
.draft-phone-media-empty,
.draft-phone-empty { padding: 24px 12px; color: #7b837e; text-align: center; font-size: 11px; }

.wysiwyg-field {
  position: relative;
  min-width: 0;
  width: 100%;
}
.wysiwyg-edit-cue {
  position: absolute;
  z-index: 3;
  top: -10px;
  right: -6px;
  display: inline-flex;
  align-items: center;
  gap: 3px;
  padding: 3px 6px;
  border: 1px solid #bfe2d3;
  border-radius: 999px;
  background: #fff;
  color: var(--hg-green-dark);
  font-size: 9px;
  font-weight: 800;
  line-height: 1;
  opacity: 0;
  transform: translateY(2px);
  pointer-events: none;
  box-shadow: 0 2px 8px rgba(35,122,89,.10);
  transition: opacity .12s ease, transform .12s ease;
}
.wysiwyg-field:hover > .wysiwyg-edit-cue,
.wysiwyg-field:focus-within > .wysiwyg-edit-cue {
  opacity: 1;
  transform: translateY(0);
}
.wysiwyg-field:hover > .wysiwyg-editable,
.wysiwyg-field:focus-within > .wysiwyg-editable {
  box-shadow: 0 0 0 3px rgba(47,155,113,.10);
  background: rgba(47,155,113,.045);
}
.wysiwyg-editable { cursor: text; }
.wysiwyg-input-field { display: flex; align-items: center; }
.guest-action-row .wysiwyg-input-field { flex: 1 1 auto; }
.guest-contact-button .wysiwyg-input-field { min-width: 150px; }
.visual-two-field-grid label > .wysiwyg-field .wysiwyg-input {
  border: 1px solid #eadfcd;
  border-radius: 10px;
  padding: 9px 10px;
  background: #fffefa;
  color: #262d33;
}
.guest-time-card .wysiwyg-input-field { width: 100%; }

.guest-checklist li.guest-edit-list-row {
  display: grid;
  grid-template-columns: 12px minmax(0,1fr) auto;
  gap: 8px;
  align-items: start;
  margin: 0 -7px;
  padding: 7px;
  border: 1px solid transparent;
  border-radius: 9px;
  transition: background-color .12s ease, border-color .12s ease;
}
.guest-checklist li.guest-edit-list-row:hover,
.guest-checklist li.guest-edit-list-row:focus-within {
  border-color: #d4ebdf;
  background: rgba(47,155,113,.045);
}
.guest-list-dot {
  color: #7b837e;
  font-size: 18px;
  line-height: 1.05;
  text-align: center;
}
.guest-edit-list-row > .wysiwyg-edit-cue.always {
  position: static;
  align-self: center;
  opacity: .58;
  transform: none;
  border-color: transparent;
  background: transparent;
  box-shadow: none;
  padding: 3px 2px;
}
.guest-edit-list-row:hover > .wysiwyg-edit-cue.always,
.guest-edit-list-row:focus-within > .wysiwyg-edit-cue.always { opacity: 1; }
.visual-summary-action { display: inline-flex; align-items: center; gap: 6px; color: var(--hg-green-dark); }

@media (max-width: 1180px) {
  .draft-phone-property { font-size: 19px; }
}
