body[data-screen="landing-editor"] {
  overflow-x: hidden;
  overflow-y: auto;
  background: #f4f5f7;
}

body[data-screen="landing-editor"] .page {
  height: calc(100vh + 166px);
  min-height: 886px;
}

body[data-screen="landing-editor"] #app {
  height: calc(100vh + 166px);
  min-height: 886px;
}

.landing-editor {
  --hero-height: 286px;
  --progress-height: 20px;
  --progress-opacity: 1;
  --progress-offset: 0px;
  --progress-top: 48px;
  display: grid;
  position: sticky;
  top: 0;
  height: 100vh;
  min-height: 720px;
  grid-template-rows: var(--hero-height) minmax(0, 1fr);
  background: #fff;
}

.landing-page-hero {
  display: flex;
  position: relative;
  align-items: center;
  border-bottom: 1px solid #d1d9e0;
  background: #fff;
  overflow: hidden;
}

.landing-page-hero .screen-content {
  padding: 0;
}

.landing-page-hero .progress__track {
  height: 2px;
}

.landing-page-hero .page-header {
  position: static;
  gap: 0;
}

.landing-page-hero .progress {
  position: absolute;
  z-index: 1;
  top: var(--progress-top);
  right: 0;
  left: 0;
  width: min(100% - 48px, var(--content-width));
  margin: 0 auto;
  max-height: var(--progress-height);
  opacity: var(--progress-opacity);
  overflow: hidden;
  transform: translateY(var(--progress-offset));
  transform-origin: top;
  transition: opacity 80ms linear;
}

.landing-page-hero .heading-block {
  position: absolute;
  z-index: 2;
  top: 50%;
  right: 0;
  left: 0;
  width: min(100% - 48px, var(--content-width));
  margin: 0 auto;
  opacity: 1;
  visibility: visible;
  transform: translateY(-50%);
}

.landing-page-hero .heading-block h1 {
  font-size: 30px;
  line-height: 1.25;
}

.landing-editor__actions {
  display: flex;
  align-items: center;
  gap: 6px;
}

.landing-zoom {
  display: flex;
  height: 30px;
  align-items: center;
  overflow: hidden;
  border: 1px solid #d1d9e0;
  border-radius: 8px;
  background: #fff;
}

.landing-zoom button,
.landing-zoom span {
  display: grid;
  height: 100%;
  min-width: 32px;
  padding: 0 8px;
  place-items: center;
  border-right: 1px solid #e5e8eb;
  color: #59636e;
  font-size: 11px;
  font-weight: 700;
}

.landing-zoom button:hover {
  background: #f6f8fa;
  color: #1f2328;
}

.landing-zoom span {
  min-width: 48px;
  color: #1f2328;
}

.landing-zoom button:last-child {
  min-width: 46px;
  border-right: 0;
}

.landing-editor__actions {
  justify-content: flex-end;
}

.landing-device-toggle {
  display: flex;
  padding: 2px;
  border-radius: 8px;
  background: #f2f4f6;
}

.landing-device-toggle button {
  padding: 5px 10px;
  border-radius: 6px;
  color: #818b98;
  font-size: 12px;
  font-weight: 700;
}

.landing-device-toggle button.is-active {
  background: #fff;
  color: #1f2328;
  box-shadow: 0 1px 2px rgba(31, 35, 40, 0.08);
}

.landing-editor__actions .landing-button:disabled {
  opacity: 0.6;
  cursor: wait;
}

.landing-save-status {
  max-width: 220px;
  overflow: hidden;
  font-size: 10px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.landing-save-status--error {
  color: #d1242f;
}

.landing-save-status--success {
  color: #00a661;
}

.landing-button {
  min-height: 28px;
  padding: 6px 10px;
  border: 1px solid #d1d9e0;
  border-radius: 8px;
  font-size: 11px;
  font-weight: 600;
}

.landing-button--secondary {
  background: #fff;
}

.landing-button--primary {
  border-color: #0088ff;
  background: #0088ff;
  color: #fff;
}

.landing-editor__tabs {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 8px;
  overflow-x: auto;
  background: transparent;
  scrollbar-width: none;
}

.landing-editor__tabs::-webkit-scrollbar {
  display: none;
}

.landing-persona-tab {
  min-width: max-content;
  padding: 6px 12px;
  border: 1px solid #d1d9e0;
  border-radius: 6px;
  background: transparent;
  color: #4e5968;
  font-size: 13px;
  font-weight: 600;
}

.landing-persona-tab:hover {
  background: #f9fafb;
}

.landing-persona-tab--active {
  border-color: #1f2328;
  background: #1f2328;
  color: #fff;
  box-shadow: none;
}

.landing-intent {
  display: grid;
  justify-items: start;
  gap: 4px;
  width: min(100%, var(--content-width));
  margin: 10px auto 44px;
  padding: 0;
  border-bottom: 0;
  background: transparent;
  text-align: left;
}

.landing-intent span {
  color: #0088ff;
  font-size: 10px;
  font-weight: 800;
}

.landing-intent li {
  margin: 0;
  color: #4e5968;
  font-size: 10px;
  line-height: 1.45;
  word-break: keep-all;
  overflow-wrap: break-word;
}

.landing-intent__content {
  display: grid;
  min-width: 0;
  width: 100%;
  margin: 0;
  padding-left: 16px;
  gap: 2px;
}

.landing-editor__workspace {
  display: grid;
  min-height: 0;
  grid-template-columns: 343px minmax(620px, 1fr) 340px;
  background: #f2f4f6;
}

.landing-panel {
  min-width: 0;
  overflow-y: auto;
  background: #fff;
}

.landing-panel--library {
  border-right: 1px solid #d1d9e0;
}

.landing-panel--inspector {
  border-left: 1px solid #d1d9e0;
}

.landing-panel--inspector {
  display: flex;
  width: auto;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  padding: 32px 32px 0;
  border-left: 0;
  background: #f2f4f6;
}

.landing-panel__title {
  display: grid;
  gap: 10px;
  padding: 34px 32px 26px;
  border-bottom: 0;
}

.landing-panel__title strong {
  font-size: 20px;
  font-weight: 800;
}

.landing-panel__title p {
  max-width: 250px;
  margin: 0;
  color: #4e5968;
  font-size: 12px;
  line-height: 1.45;
}

.landing-library {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  padding: 18px 32px 40px;
}

.landing-library-search {
  display: grid;
  gap: 6px;
  padding: 0 32px 18px;
  border-top: 1px solid #d1d9e0;
  padding-top: 24px;
}

.landing-library-search span {
  display: none;
  color: #8b95a1;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.landing-library-search input {
  width: 100%;
  min-height: 36px;
  padding: 8px 12px;
  border: 1px solid #d1d9e0;
  border-radius: 8px;
  color: #1f2328;
  font-size: 12px;
}

.landing-library-search input:focus {
  border-color: #1f2328;
  outline: 0;
}

.landing-library-item {
  display: flex;
  min-width: 0;
  min-height: 80px;
  padding: 10px;
  flex-direction: column;
  gap: 7px;
  border: 1px solid #d1d9e0;
  border-radius: 8px;
  background: #fff;
  text-align: left;
}

.landing-library-item:hover {
  border-color: #0088ff;
  background: #f7fbff;
}

.landing-library-item[draggable="true"] {
  cursor: grab;
}

.landing-library-item[draggable="true"]:active {
  cursor: grabbing;
}

.landing-library-item__preview {
  display: flex;
  width: 100%;
  height: 64px;
  padding: 7px;
  align-items: stretch;
  gap: 5px;
  overflow: hidden;
  border: 0;
  border-radius: 5px;
  background: #f2f4f6;
}

.landing-preview-shape,
.landing-preview-copy,
.landing-preview-heading,
.landing-preview-cards,
.landing-preview-bento {
  display: flex;
  min-width: 0;
}

.landing-preview-shape--media {
  flex: 1.2;
  border-radius: 3px;
  background: #d8dee5;
}

.landing-preview-copy {
  flex: 1;
  padding: 6px 4px;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
}

.landing-preview-copy i,
.landing-preview-heading i {
  display: block;
  width: 88%;
  height: 4px;
  border-radius: 4px;
  background: #c6cdd5;
}

.landing-preview-copy i:nth-child(2) {
  width: 68%;
  height: 3px;
  background: #d8dee5;
}

.landing-preview-copy i:nth-child(3) {
  width: 78%;
  height: 3px;
  background: #d8dee5;
}

.landing-preview-copy b,
.landing-preview-button,
.landing-preview-heading b {
  display: block;
  width: 24px;
  height: 7px;
  margin-top: 3px;
  border-radius: 5px;
  background: #0088ff;
}

.landing-preview-copy--wide {
  padding: 10px 8px;
}

.landing-library-item__preview--carousel {
  flex-direction: column;
  gap: 5px;
}

.landing-preview-heading {
  height: 9px;
  align-items: center;
  justify-content: space-between;
}

.landing-preview-heading i {
  width: 32%;
}

.landing-preview-heading b {
  width: 13px;
  height: 6px;
  margin: 0;
}

.landing-preview-cards {
  flex: 1;
  gap: 4px;
}

.landing-preview-cards i {
  flex: 1;
  border-radius: 3px;
  background: linear-gradient(#d8dee5 0 0) 0 0 / 100% 70% no-repeat,
    linear-gradient(#c6cdd5 0 0) 2px 85% / 65% 3px no-repeat;
}

.landing-preview-bento {
  width: 100%;
  display: grid;
  grid-template: repeat(2, 1fr) / 1.35fr 1fr;
  gap: 4px;
}

.landing-preview-bento i {
  border-radius: 3px;
  background: #d8dee5;
}

.landing-preview-bento i:first-child {
  grid-row: 1 / 3;
  background: #c6cdd5;
}

.landing-library-item__preview--cta {
  align-items: center;
}

.landing-library-item__preview--cta .landing-preview-copy {
  padding-left: 6px;
}

.landing-library-item__preview--cta .landing-preview-button {
  flex: 0 0 30px;
  margin: 0 5px 0 0;
}

.landing-library-item strong {
  overflow: hidden;
  font-size: 12px;
  font-weight: 700;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.landing-center {
  display: flex;
  min-width: 0;
  min-height: 0;
  flex-direction: column;
  padding: 32px 0 0;
  background: #f2f4f6;
}

.landing-center__tools {
  display: flex;
  width: min(100%, var(--content-width));
  align-items: center;
  margin: 0 auto;
}

.landing-center__tools .landing-editor__tabs {
  width: 100%;
}

.landing-export-actions {
  position: fixed;
  z-index: 60;
  right: 20px;
  bottom: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.landing-export-action {
  display: flex;
  min-height: 38px;
  align-items: center;
  gap: 7px;
  padding: 8px 14px;
  border: 1px solid #d1d9e0;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.96);
  color: #4e5968;
  box-shadow: 0 4px 16px rgba(31, 35, 40, 0.08);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.3;
}

.landing-export-action:hover {
  border-color: #0088ff;
  color: #0088ff;
}

.landing-export-action--primary {
  border-color: #0088ff;
  background: #0088ff;
  color: #fff;
}

.landing-export-action--primary:hover {
  border-color: #0077e6;
  background: #0077e6;
  color: #fff;
}

.landing-export-action__icon {
  font-size: 16px;
  font-weight: 800;
}

.landing-canvas-wrap {
  display: grid;
  flex: 1;
  min-width: 0;
  justify-content: center;
  align-content: start;
  overflow: auto;
  padding: 0 22px 90px;
  background: #f2f4f6;
}

.landing-canvas-stage {
  position: relative;
  width: calc(1080px * var(--landing-zoom));
  min-height: calc((100vh - 180px) * var(--landing-zoom));
  margin: 0 auto;
}

.landing-canvas {
  position: absolute;
  top: 0;
  left: 50%;
  width: 1080px;
  min-height: calc(100vh - 180px);
  transform: translateX(-50%) scale(var(--landing-zoom));
  transform-origin: top center;
  overflow: hidden;
  border-radius: 0;
  box-shadow: none;
  background: #fff;
}

.landing-canvas [data-component-category]:not(header) {
  width: auto !important;
  margin-inline: 46px !important;
}

.landing-component {
  position: relative;
  min-height: 48px;
  outline: 2px solid transparent;
  outline-offset: -2px;
}

.landing-component + .landing-drop-zone:not(:last-child) {
  height: 64px;
  margin: 0;
}

.landing-fixed-header {
  position: relative;
  z-index: 1;
  border-bottom: 1px solid #d1d9e0;
  background: #fff;
}

.landing-canvas__section-label {
  display: flex;
  min-height: 34px;
  align-items: center;
  gap: 8px;
  padding: 0 14px;
  border-bottom: 1px solid #e5e8eb;
  background: #f6f8fa;
}

.landing-canvas__section-label strong {
  color: #59636e;
  font-size: 10px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.landing-canvas__section-label span {
  color: #818b98;
  font-size: 10px;
}

.landing-canvas__section-label--body {
  border-top: 1px solid #d1d9e0;
}

.landing-component--fixed {
  min-height: 0;
  outline: 0;
}

.landing-component--fixed .landing-component__frame {
  min-height: 36px;
}

.landing-component--fixed:hover {
  z-index: auto;
  outline: 0;
}

.landing-component__fixed-label {
  position: absolute;
  z-index: 4;
  top: 8px;
  right: 10px;
  padding: 4px 7px;
  border-radius: 999px;
  background: rgba(31, 35, 40, 0.72);
  color: #fff;
  font-size: 9px;
  font-weight: 600;
  pointer-events: none;
}

.landing-drop-zone {
  position: relative;
  z-index: 4;
  height: 12px;
  margin: -6px 0;
  transition: height 120ms ease;
}

.landing-drop-zone span {
  position: absolute;
  inset: 50% 0 auto;
  display: none;
  height: 3px;
  align-items: center;
  justify-content: flex-end;
  transform: translateY(-50%);
  border: 0;
  border-radius: 999px;
  background: #0088ff;
  color: #0088ff;
  font-size: 0;
  font-weight: 600;
}

.landing-drop-zone span::after {
  content: "추가";
  position: absolute;
  right: 0;
  top: -11px;
  padding: 2px 6px;
  border-radius: 999px;
  background: #0088ff;
  color: #fff;
  font-size: 9px;
  font-weight: 800;
}

.landing-drop-zone--active {
  height: 18px;
  margin: 0;
}

.landing-drop-zone--active span {
  display: flex;
}

.landing-drag-active .landing-component__frame {
  pointer-events: none;
}

.landing-drag-active .landing-drop-zone {
  height: 28px;
  margin: -14px 0;
}

.landing-canvas > .landing-drop-zone:first-child:last-child {
  height: 120px;
}

.landing-canvas > .landing-drop-zone:first-child:last-child span {
  display: flex;
  border-color: #bac1c7;
  background: #f6f8fa;
  color: #818b98;
}

.landing-component:hover,
.landing-component--selected {
  z-index: 10;
  outline-color: #0088ff;
}

.landing-component__frame {
  display: block;
  width: 100%;
  min-height: 240px;
  border: 0;
  background: #fff;
}

.landing-component__label,
.landing-component__toolbar {
  position: absolute;
  z-index: 5;
  display: none;
  top: auto;
  right: 8px;
  bottom: 8px;
  background: rgba(25, 31, 40, 0.92);
  color: #fff;
  backdrop-filter: blur(4px);
}

.landing-component:hover .landing-component__toolbar,
.landing-component--selected .landing-component__toolbar {
  display: flex;
}

.landing-component__label {
  left: 0;
  min-height: 26px;
  align-items: center;
  padding: 0 9px;
  transform: translateY(-100%);
  border-radius: 5px 5px 0 0;
  font-size: 10px;
  font-weight: 600;
}

.landing-component__toolbar {
  min-height: 32px;
  align-items: center;
  gap: 2px;
  padding: 3px;
  border-radius: 7px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.14);
}

.landing-component__toolbar button {
  min-width: 24px;
  height: 24px;
  padding: 0 6px;
  border-radius: 5px;
  color: #fff;
  font-size: 10px;
  opacity: 0.88;
}

.landing-component__drag-handle {
  width: auto !important;
  cursor: grab;
  font-size: 11px !important;
  font-weight: 700;
}

.landing-component__drag-handle:active {
  cursor: grabbing;
}

.landing-component__toolbar-separator {
  width: 1px;
  height: 18px;
  margin: 0 2px;
  background: rgba(255, 255, 255, 0.22);
}

.landing-component__layout {
  display: flex;
  height: 24px;
  align-items: center;
  gap: 4px;
  padding: 0 7px;
  color: #fff;
  font-size: 10px;
}

.landing-component__layout select {
  max-width: 88px;
  height: 22px;
  padding: 0 2px;
  border: 0;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.92);
  color: #1d2834;
  font-size: 10px;
}

.landing-component__toolbar button:hover {
  background: rgba(255, 255, 255, 0.18);
  opacity: 1;
}

.landing-component__toolbar button:disabled {
  opacity: 0.45;
  cursor: default;
}

.landing-component--hidden {
  min-height: 72px;
  border: 1px dashed #bac1c7;
  background: #f6f8fa;
}

.landing-component__hidden-message,
.landing-canvas__empty,
.landing-panel__empty {
  margin: 0;
  padding: 24px;
  color: #818b98;
  font-size: 12px;
  text-align: center;
}

.landing-inspector__header button {
  display: grid;
  width: 16px;
  height: 16px;
  place-items: center;
  border-radius: 999px;
  background: #8b95a1;
  color: #fff;
  font-size: 14px;
  line-height: 1;
}

.landing-inspector__header button:hover {
  background: #4e5968;
  color: #fff;
}

.landing-inspector__body,
.landing-inspector__empty {
  display: flex;
  width: 100%;
  padding: 14px 16px 16px;
  flex-direction: column;
  gap: 12px;
  background: #fff;
}

.landing-inspector__empty {
  min-height: 0;
  justify-content: center;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #b0b8c1;
  text-align: center;
}

.landing-inspector__empty--blank {
  display: none;
}

.landing-panel--inspector > .landing-inspector__header,
.landing-panel--inspector > .landing-inspector__body {
  border-right: 1px solid #d1d9e0;
  border-left: 1px solid #d1d9e0;
}

.landing-panel--inspector > .landing-inspector__header {
  display: flex;
  width: 100%;
  min-height: 60px;
  justify-content: space-between;
  padding: 20px 15px 10px;
  border-top: 1px solid #d1d9e0;
  border-radius: 12px 12px 0 0;
  background: #fff;
}

.landing-panel--inspector > .landing-inspector__header span {
  font-size: 18px;
  font-weight: 800;
}

.landing-panel--inspector > .landing-inspector__body {
  border-bottom: 1px solid #d1d9e0;
  border-radius: 0 0 12px 12px;
}

.landing-inspector__body label {
  display: flex;
  flex-direction: column;
  gap: 7px;
  color: #b0b8c1;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.03em;
}

.landing-inspector__body textarea {
  min-height: 112px;
  padding: 9px;
  resize: vertical;
  border: 1px solid #d1d9e0;
  border-radius: 7px;
  color: #1f2328;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.5;
}

.landing-inspector__body .landing-button {
  width: 100%;
}

.landing-inspector__body .landing-button:disabled {
  opacity: 0.55;
  cursor: wait;
}

.landing-inspector__divider {
  height: 1px;
  margin: 4px 0;
  background: #f2f4f6;
}

.landing-copy-candidates {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.landing-copy-candidate {
  display: flex;
  width: 100%;
  padding: 10px;
  flex-direction: column;
  gap: 5px;
  border: 1px solid #d1d9e0;
  border-radius: 9px;
  background: #fff;
  text-align: left;
}

.landing-copy-candidate:hover {
  border-color: #0088ff;
  background: #f7fbff;
}

.landing-copy-candidate span {
  color: #0088ff;
  font-size: 9px;
  font-weight: 700;
}

.landing-copy-candidate strong {
  font-size: 11px;
  font-weight: 500;
  line-height: 1.45;
}

.landing-inspector__error {
  color: #d1242f !important;
}

.landing-current-image {
  overflow: hidden;
  border: 0;
  border-radius: 0;
  background: #f6f8fa;
}

.landing-current-image img {
  display: block;
  width: 100%;
  height: 380px;
  object-fit: cover;
}

.landing-current-image__empty {
  display: grid;
  min-height: 180px;
  place-items: center;
  color: #818b98;
  font-size: 12px;
  font-weight: 600;
}

.landing-inspector__actions {
  display: flex;
  justify-content: flex-end;
  gap: 6px;
  margin-top: auto;
}

.landing-inspector__actions .landing-button {
  min-height: 24px;
  padding: 4px 8px;
}

.landing-inspector__section-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.landing-inspector__section-title strong {
  font-size: 11px;
  font-weight: 800;
}

.landing-inspector__section-title span {
  color: #818b98;
  font-size: 9px;
}

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

.landing-asset-item {
  min-width: 0;
  overflow: hidden;
  border: 1px solid #d1d9e0;
  border-radius: 7px;
  background: #fff;
}

.landing-asset-item:hover {
  border-color: #0088ff;
}

.landing-asset-item img {
  display: block;
  width: 100%;
  height: 64px;
  object-fit: cover;
  background: #f6f8fa;
}

.landing-asset-item span {
  display: block;
  padding: 5px;
  overflow: hidden;
  color: #59636e;
  font-size: 8px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.landing-upload-button {
  display: grid !important;
  min-height: 34px;
  place-items: center;
  border: 1px dashed #0088ff;
  border-radius: 8px;
  color: #0088ff;
  cursor: pointer;
  font-size: 11px !important;
}

.landing-upload-button input {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
}

.landing-inspector__body p,
.landing-inspector__empty p {
  margin: 0;
  color: #8b95a1;
  font-size: 11px;
  line-height: 1.5;
}

.landing-inspector__empty strong {
  font-size: 13px;
}

.landing-editor-state {
  display: grid;
  min-height: max(720px, 100vh);
  padding: 40px;
  place-content: center;
  justify-items: center;
  text-align: center;
}

.landing-editor-state img {
  width: 28px;
  height: 28px;
  animation: spin 0.9s linear infinite;
}

.landing-editor-state h1 {
  margin: 16px 0 6px;
  font-size: 20px;
}

.landing-editor-state p {
  max-width: 420px;
  margin: 0 0 20px;
  color: #59636e;
  font-size: 13px;
}

.landing-preview {
  position: fixed;
  inset: 0 0 0 44px;
  z-index: 100;
  display: grid;
  grid-template-rows: 52px minmax(0, 1fr);
  background: #eef0f3;
}

.landing-preview__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  border-bottom: 1px solid #d1d9e0;
  background: #fff;
}

.landing-preview__bar > div {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.landing-preview__bar strong {
  font-size: 13px;
}

.landing-preview__bar span {
  color: #818b98;
  font-size: 10px;
}

.landing-preview__bar button {
  min-height: 32px;
  padding: 6px 12px;
  border: 1px solid #d1d9e0;
  border-radius: 7px;
  background: #fff;
  font-size: 11px;
  font-weight: 600;
}

.landing-preview__bar .landing-zoom {
  margin-left: auto;
  margin-right: 12px;
}

.landing-preview__bar .landing-zoom button,
.landing-preview__bar .landing-zoom span {
  min-height: 0;
  padding: 0 8px;
  border: 0;
  border-right: 1px solid #e5e8eb;
  border-radius: 0;
  background: transparent;
}

.landing-preview__bar .landing-zoom button:last-child {
  border-right: 0;
}

.landing-preview__viewport {
  overflow: auto;
  padding: 28px 42px 80px;
}

.landing-preview__stage {
  position: relative;
  width: calc(1440px * var(--landing-zoom));
  height: calc(100vh - 108px);
  margin: 0 auto;
}

.landing-preview iframe {
  position: absolute;
  top: 0;
  left: 50%;
  display: block;
  width: 1440px;
  height: calc(100vh - 108px);
  transform: translateX(-50%) scaleX(var(--landing-zoom)) scaleY(1);
  transform-origin: top center;
  margin: 0 auto;
  border: 0;
  background: #fff;
  box-shadow: 0 0 18px rgba(31, 35, 40, 0.12);
}

@media (max-width: 1260px) {
  .landing-editor__workspace {
    grid-template-columns: 236px minmax(500px, 1fr) 224px;
  }

  .landing-canvas-wrap {
    padding-right: 24px;
    padding-left: 24px;
  }
}

@media (max-width: 1120px) {
  .landing-flowbar__progress {
    width: 200px;
  }

  .landing-editor__actions {
    gap: 5px;
  }
}
