@import url("https://fonts.googleapis.com/css2?family=Gowun+Batang:wght@400;700&family=Pretendard:wght@400;500;600;700;800;900&display=swap");

:root {
  --bg: #fbfdff;
  --surface: #ffffff;
  --surface-soft: #f7faff;
  --ink: #253044;
  --muted: #718096;
  --line: #e3edf8;
  --blue: #6d9cff;
  --blue-strong: #4774df;
  --mint: #dff7ee;
  --pink: #ffe7f0;
  --peach: #ffe8d8;
  --yellow: #fff4cc;
  --danger: #ff5b5b;
  --shadow: 0 22px 58px rgba(74, 103, 150, 0.13);
  --draft-font: "Gowun Batang", "Noto Serif KR", Batang, serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  font-family: Pretendard, SUIT, "Apple SD Gothic Neo", sans-serif;
  word-break: keep-all;
  overflow-wrap: break-word;
  background:
    radial-gradient(circle at 10% 6%, rgba(223, 247, 238, 0.95), transparent 27%),
    radial-gradient(circle at 92% 10%, rgba(255, 231, 240, 0.9), transparent 25%),
    linear-gradient(135deg, #ffffff 0%, #f6f9ff 54%, #fffbf1 100%);
}

button,
input,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

button:focus-visible {
  outline: 3px solid rgba(109, 156, 255, 0.55);
  outline-offset: 3px;
}

.mobile-template-control,
.mobile-template-sheet,
.mobile-purpose-screen,
.mobile-result-screen,
.mobile-guide-top,
.mobile-editor-footer {
  display: none;
}

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

p,
li,
summary,
.topbar__copy,
.content-guide__header,
.info-section,
.example-card,
.template-card__preview,
.mail-block__content {
  word-break: keep-all;
  overflow-wrap: break-word;
}

.app-shell {
  width: min(1440px, calc(100% - 32px));
  margin: 0 auto;
  padding: 28px 0 38px;
}

.topbar {
  display: block;
  max-width: 1180px;
  margin-bottom: 22px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 8px;
  color: var(--blue-strong);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1 {
  margin-bottom: 0;
  font-size: clamp(1.8rem, 2.5vw, 2.35rem);
  line-height: 1.18;
  letter-spacing: -0.05em;
}

.topbar__copy {
  max-width: 1120px;
  margin: 16px 0 4px;
  color: var(--muted);
  line-height: 1.72;
}

.topbar__copy p {
  margin-bottom: 8px;
}

.topbar__copy p:last-child {
  margin-bottom: 0;
}

.workspace {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(360px, 0.78fr);
  gap: 20px;
  align-items: start;
}

.mail-editor,
.template-panel,
.content-guide,
.notice {
  border: 1px solid rgba(227, 237, 248, 0.95);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.mail-editor {
  padding: 22px;
}

.template-panel {
  position: sticky;
  top: 18px;
  max-height: calc(100vh - 36px);
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  overflow: hidden;
  padding: 20px;
}

.template-panel__sticky {
  position: sticky;
  top: 0;
  z-index: 2;
  padding-bottom: 16px;
  background: rgba(255, 255, 255, 0.96);
}

.editor-header {
  display: flex;
  gap: 18px;
  align-items: start;
  justify-content: space-between;
  margin-bottom: 18px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}

.editor-header h2,
.template-nav h2 {
  margin-bottom: 0;
  font-size: 1.42rem;
  letter-spacing: -0.04em;
}

.editor-actions {
  display: flex;
  gap: 8px;
  justify-content: flex-end;
  flex-wrap: wrap;
}

.mail-blocks {
  display: grid;
  gap: 8px;
}

.mail-block {
  position: relative;
  border: 1px solid rgba(227, 237, 248, 0.95);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(247, 250, 255, 0.86), rgba(255, 255, 255, 0.92));
  box-shadow: 0 10px 26px rgba(74, 103, 150, 0.06);
  transition: background 160ms ease, border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.mail-block:hover {
  border-color: rgba(109, 156, 255, 0.48);
  background: linear-gradient(180deg, rgba(247, 250, 255, 0.96), #fff);
  box-shadow: 0 14px 30px rgba(74, 103, 150, 0.1);
}

.mail-block.is-active {
  border-color: rgba(109, 156, 255, 0.9);
  background: #fff;
  box-shadow: 0 16px 34px rgba(74, 103, 150, 0.13);
}

.mail-block[draggable="true"] {
  cursor: grab;
}

.mail-block[draggable="true"]:active {
  cursor: grabbing;
}

.mail-block.is-dragging {
  opacity: 0.48;
  transform: scale(0.995);
}

.mail-block.is-drop-target {
  border-color: rgba(255, 91, 91, 0.85);
  background: rgba(255, 244, 204, 0.42);
  box-shadow: 0 0 0 4px rgba(255, 91, 91, 0.08);
}

.mail-block__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 11px 16px 0;
  opacity: 1;
  transform: translateY(0);
  transition: opacity 160ms ease, transform 160ms ease;
}

.mail-block:hover .mail-block__header,
.mail-block.is-active .mail-block__header {
  opacity: 1;
  transform: translateY(0);
}

.mail-block__label {
  color: var(--blue-strong);
  font-size: 0.82rem;
  font-weight: 900;
}

.mail-block__hint {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
}

.mail-block__content {
  min-height: 36px;
  padding: 9px 16px 13px;
  color: var(--ink);
  font-family: var(--draft-font);
  font-size: 1.04rem;
  line-height: 1.65;
  white-space: pre-wrap;
  word-break: keep-all;
  outline: 0;
}

.mail-block[data-block-id="subject"] .mail-block__content {
  min-height: 36px;
  font-size: 1.18rem;
  font-weight: 700;
}

.mail-block__content.has-placeholder {
  color: #9aa7ba;
  font-family: Pretendard, SUIT, sans-serif;
  font-size: 0.9rem;
}

.slot {
  display: inline-block;
  min-width: 96px;
  min-height: 1.8em;
  margin: 0 2px;
  padding: 0 9px;
  border: 1.5px solid rgba(255, 91, 91, 0.88);
  border-radius: 10px;
  background: rgba(255, 91, 91, 0.03);
  color: #b93b3b;
  font-family: Pretendard, SUIT, sans-serif;
  font-size: 0.94em;
  font-weight: 800;
  vertical-align: baseline;
  outline: 0;
  white-space: pre-wrap;
}

.slot.has-placeholder {
  color: #b93b3b;
  font-weight: 800;
}

.slot:focus {
  background: rgba(255, 244, 204, 0.7);
  box-shadow: 0 0 0 4px rgba(255, 91, 91, 0.13);
}

.slot.has-value,
.slot.is-editing {
  color: var(--ink);
  font-weight: 700;
}

.template-nav {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr) 44px;
  gap: 12px;
  align-items: center;
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}

#current-block-help {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.55;
}

.nav-button {
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 999px;
  background: var(--mint);
  color: #2c6b58;
  font-size: 1.65rem;
  font-weight: 900;
}

.purpose-field {
  margin-bottom: 0;
}

.field {
  display: grid;
  gap: 7px;
}

.field span {
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 900;
}

select {
  width: 100%;
  min-height: 44px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  color: var(--ink);
  outline: 0;
}

select:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(109, 156, 255, 0.14);
}

.template-list {
  display: grid;
  gap: 10px;
  min-height: 0;
  overflow: auto;
  padding-right: 4px;
}

.template-card {
  display: grid;
  gap: 8px;
  width: 100%;
  padding: 15px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: linear-gradient(180deg, #fff, rgba(247, 250, 255, 0.9));
  color: var(--ink);
  text-align: left;
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.template-card:hover,
.template-card.is-selected {
  border-color: rgba(109, 156, 255, 0.8);
  box-shadow: 0 14px 30px rgba(74, 103, 150, 0.13);
  transform: translateY(-1px);
}

.template-card.is-selected {
  background: linear-gradient(180deg, rgba(255, 244, 204, 0.68), #fff);
}

.template-card__title {
  margin: 0;
  font-weight: 900;
}

.template-card__preview {
  margin: 0;
  color: var(--muted);
  font-size: 0.91rem;
  line-height: 1.65;
  word-break: keep-all;
}

.button {
  min-height: 40px;
  padding: 0 14px;
  border: 0;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 900;
}

.button--primary {
  background: linear-gradient(135deg, var(--blue), #8fd9ff);
  color: #fff;
  box-shadow: 0 10px 24px rgba(109, 156, 255, 0.24);
}

.button--soft {
  background: var(--mint);
  color: #245d4d;
}

.button--ghost {
  border: 1px solid var(--line);
  background: #fff;
  color: var(--muted);
}

.feedback {
  min-height: 24px;
  margin: 14px 0 0;
  color: var(--blue-strong);
  font-weight: 900;
}

.seo-guide,
.content-guide {
  margin-top: 24px;
  padding: 28px;
}

.content-guide__header {
  max-width: 900px;
  margin-bottom: 24px;
}

.content-guide__header h2 {
  margin-bottom: 10px;
  font-size: 1.55rem;
}

.content-guide__header p,
.info-section p,
.ordered-list,
.tip-list,
.faq-item p {
  color: var(--muted);
  line-height: 1.78;
}

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

.seo-guide {
  border: 1px solid rgba(227, 237, 248, 0.95);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

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

.examples-block {
  margin-top: 26px;
}

.examples-block__header {
  margin-bottom: 18px;
}

.example-grid {
  grid-template-columns: repeat(3, minmax(240px, 1fr));
}

.example-card {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: linear-gradient(180deg, #fff, rgba(223, 247, 238, 0.28));
}

.example-card:nth-child(2) {
  background: linear-gradient(180deg, #fff, rgba(255, 231, 240, 0.3));
}

.example-card:nth-child(3) {
  background: linear-gradient(180deg, #fff, rgba(255, 244, 204, 0.38));
}

.example-card h3 {
  margin-bottom: 12px;
  font-size: 1.05rem;
}

.example-card p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.78;
}

.info-section {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(247, 250, 255, 0.78));
}

.info-section:nth-child(2) {
  background: linear-gradient(180deg, #fff, rgba(223, 247, 238, 0.36));
}

.info-section:nth-child(3) {
  background: linear-gradient(180deg, #fff, rgba(255, 231, 240, 0.32));
}

.info-section:nth-child(4) {
  background: linear-gradient(180deg, #fff, rgba(255, 244, 204, 0.4));
}

.info-section--wide {
  grid-column: 1 / -1;
}

.info-section h3 {
  margin-bottom: 12px;
  font-size: 1.08rem;
}

.ordered-list,
.tip-list {
  margin: 0;
  padding-left: 1.25rem;
}

.ordered-list li,
.tip-list li {
  margin: 8px 0;
}

.faq-item {
  border-top: 1px solid var(--line);
}

.faq-item:last-child {
  border-bottom: 1px solid var(--line);
}

.faq-item summary {
  padding: 13px 0;
  color: var(--ink);
  cursor: pointer;
  font-weight: 900;
}

.faq-item p {
  margin-bottom: 14px;
}

.info-section a {
  color: var(--blue-strong);
  font-weight: 900;
  text-decoration: none;
}

.info-section a:hover {
  text-decoration: underline;
}

.notice {
  margin-top: 20px;
  padding: 18px 20px;
  color: var(--muted);
  line-height: 1.7;
}

@media (max-width: 980px) {
  .topbar,
  .workspace,
  .info-grid,
  .seo-grid,
  .example-grid {
    grid-template-columns: 1fr;
  }

  .template-panel {
    position: static;
    max-height: none;
    display: block;
    overflow: visible;
  }

  .template-panel__sticky {
    position: static;
    background: transparent;
  }

  .template-list {
    overflow: visible;
    padding-right: 0;
  }

  .editor-header {
    display: grid;
  }
}

@media (max-width: 768px) {
  html,
  body {
    max-width: 100%;
    overflow-x: hidden;
  }

  body.is-mobile-sheet-open {
    overflow: hidden;
  }

  .app-shell {
    width: min(100% - 20px, 100%);
  }

  .topbar,
  .workspace,
  .mobile-result-screen,
  .mobile-guide-top,
  .seo-guide,
  .content-guide,
  .notice {
    display: none;
  }

  body[data-mobile-view="purpose"] .topbar,
  body:not([data-mobile-view]) .topbar,
  body[data-mobile-view="purpose"] .mobile-purpose-screen,
  body:not([data-mobile-view]) .mobile-purpose-screen {
    display: block;
  }

  body[data-mobile-view="editor"] .workspace {
    display: block;
  }

  body[data-mobile-view="result"] .mobile-result-screen {
    display: block;
  }

  body[data-mobile-view="guide"] .mobile-guide-top,
  body[data-mobile-view="guide"] .seo-guide,
  body[data-mobile-view="guide"] .content-guide,
  body[data-mobile-view="guide"] .notice {
    display: block;
  }

  .mobile-purpose-screen,
  .mobile-result-screen,
  .mobile-guide-top {
    width: 100%;
    min-width: 0;
    padding: 20px;
    border: 1px solid rgba(227, 237, 248, 0.95);
    border-radius: 26px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: var(--shadow);
    backdrop-filter: blur(18px);
  }

  .mobile-purpose-screen h2,
  .mobile-result-screen h2,
  .mobile-guide-top h2 {
    margin-bottom: 10px;
    font-size: 1.55rem;
    letter-spacing: -0.05em;
  }

  .mobile-purpose-screen p,
  .mobile-result-screen p,
  .mobile-guide-top p {
    color: var(--muted);
    line-height: 1.7;
  }

  body[data-mobile-view="purpose"] .topbar__copy,
  body:not([data-mobile-view]) .topbar__copy,
  .mobile-purpose-screen > p {
    display: none;
  }

  .mobile-purpose-options {
    display: grid;
    gap: 10px;
    margin: 20px 0 16px;
  }

  .mobile-purpose-card {
    display: grid;
    gap: 6px;
    width: 100%;
    min-height: 82px;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: linear-gradient(180deg, #fff, rgba(247, 250, 255, 0.92));
    color: var(--ink);
    text-align: left;
    box-shadow: 0 12px 26px rgba(74, 103, 150, 0.07);
  }

  .mobile-purpose-card.is-selected {
    border-color: rgba(109, 156, 255, 0.92);
    background: linear-gradient(135deg, rgba(223, 247, 238, 0.85), rgba(255, 255, 255, 0.95));
    box-shadow: 0 0 0 4px rgba(109, 156, 255, 0.12), 0 14px 30px rgba(74, 103, 150, 0.12);
  }

  .mobile-purpose-card strong {
    font-size: 1.05rem;
    font-weight: 900;
  }

  .mobile-purpose-card span {
    color: var(--muted);
    font-size: 0.92rem;
    line-height: 1.55;
  }

  .mobile-start-button,
  .mobile-guide-link {
    width: 100%;
    min-height: 48px;
  }

  .mobile-guide-link,
  .mobile-back-link {
    border: 0;
    background: transparent;
    color: var(--blue-strong);
    font-weight: 900;
  }

  .mobile-guide-link {
    margin-top: 10px;
  }

  .mobile-back-link {
    min-height: 44px;
    margin: -6px 0 8px;
    padding: 0;
    text-align: left;
  }

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

  .template-panel {
    display: none;
  }

  .mail-editor,
  .seo-guide,
  .content-guide,
  .notice {
    width: 100%;
    min-width: 0;
  }

  .editor-header {
    gap: 14px;
  }

  .editor-actions {
    display: none;
  }

  .editor-actions .button,
  .mobile-template-control .button,
  .mobile-template-sheet .button {
    width: 100%;
    min-height: 44px;
  }

  .mobile-template-control {
    display: grid;
    gap: 12px;
    margin: 0 0 14px;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(223, 247, 238, 0.68), rgba(255, 255, 255, 0.96));
  }

  .mobile-template-control__label {
    display: block;
    margin-bottom: 5px;
    color: var(--blue-strong);
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.04em;
  }

  #mobile-template-name {
    display: block;
    color: var(--ink);
    font-size: 1rem;
    line-height: 1.45;
  }

  .mobile-editor-footer {
    position: sticky;
    bottom: 0;
    z-index: 6;
    display: block;
    margin: 16px -15px -15px;
    padding: 12px 15px calc(12px + env(safe-area-inset-bottom));
    border-top: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(16px);
  }

  .mobile-editor-footer .button {
    width: 100%;
    min-height: 50px;
  }

  .mail-block {
    border-radius: 20px;
  }

  .mail-block__hint {
    display: none;
  }

  .mail-block__content {
    min-height: 62px;
    padding: 12px 16px 16px;
  }

  .mail-block[data-block-id="subject"] .mail-block__content {
    min-height: 58px;
  }

  .mail-block,
  .template-card,
  .example-card,
  .info-section {
    min-width: 0;
  }

  .mobile-template-sheet {
    position: fixed;
    inset: 0;
    z-index: 1000;
    width: 100%;
    height: 100dvh;
    padding-top: env(safe-area-inset-top);
    background:
      radial-gradient(circle at 6% 4%, rgba(223, 247, 238, 0.95), transparent 32%),
      radial-gradient(circle at 96% 8%, rgba(255, 231, 240, 0.92), transparent 28%),
      #fbfdff;
    overflow: hidden;
  }

  .mobile-template-sheet.is-open {
    display: grid;
    grid-template-rows: auto auto minmax(0, 1fr) auto;
  }

  .mobile-template-sheet__header {
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 12px;
    align-items: center;
    padding: 14px 16px 12px;
    border-bottom: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.82);
    backdrop-filter: blur(16px);
  }

  .mobile-template-sheet__header h2 {
    margin-bottom: 0;
    font-size: 1.28rem;
    letter-spacing: -0.04em;
  }

  .sheet-back-button {
    width: 48px;
    min-width: 48px;
    height: 48px;
    border: 0;
    border-radius: 999px;
    background: var(--mint);
    color: #2c6b58;
    font-size: 2rem;
    font-weight: 900;
    line-height: 1;
  }

  .mobile-template-sheet__meta {
    padding: 14px 16px 8px;
  }

  .mobile-template-sheet__meta strong {
    display: block;
    margin-bottom: 5px;
    color: var(--ink);
    font-size: 1.04rem;
  }

  .mobile-template-sheet__meta p {
    margin-bottom: 0;
    color: var(--muted);
    line-height: 1.55;
  }

  .mobile-template-carousel {
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr) 48px;
    gap: 7px;
    align-items: center;
    align-self: start;
    min-height: 0;
    padding: 18px 12px 16px;
  }

  .mobile-template-list {
    display: grid;
    gap: 10px;
    min-height: 0;
    overflow: visible;
    padding: 0;
  }

  .mobile-template-card {
    display: grid;
    gap: 8px;
    align-content: start;
    width: 100%;
    min-height: 220px;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: linear-gradient(180deg, #fff, rgba(247, 250, 255, 0.9));
    color: var(--ink);
    text-align: left;
    box-shadow: 0 10px 24px rgba(74, 103, 150, 0.07);
  }

  .mobile-carousel-button {
    width: 48px;
    min-width: 48px;
    height: 48px;
    border: 0;
    border-radius: 999px;
    background: var(--mint);
    color: #2c6b58;
    font-size: 2rem;
    font-weight: 900;
    line-height: 1;
  }

  .mobile-template-card.is-selected {
    border-color: rgba(109, 156, 255, 0.92);
    background: linear-gradient(180deg, rgba(255, 244, 204, 0.72), #fff);
    box-shadow: 0 0 0 4px rgba(109, 156, 255, 0.14), 0 14px 28px rgba(74, 103, 150, 0.12);
  }

  .mobile-template-card__title {
    font-weight: 900;
  }

  .mobile-template-card__preview {
    display: -webkit-box;
    overflow: hidden;
    color: var(--muted);
    font-size: 0.95rem;
    line-height: 1.62;
    white-space: pre-wrap;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 5;
  }

  .mobile-template-sheet__footer {
    padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
    border-top: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(16px);
  }

  .mobile-result-card {
    display: grid;
    gap: 8px;
    margin-top: 14px;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: linear-gradient(180deg, #fff, rgba(247, 250, 255, 0.88));
  }

  .mobile-result-card span {
    color: var(--blue-strong);
    font-size: 0.82rem;
    font-weight: 900;
  }

  .mobile-result-editable {
    min-height: 52px;
    color: var(--ink);
    font-family: var(--draft-font);
    font-size: 1.05rem;
    line-height: 1.7;
    outline: 0;
    white-space: pre-wrap;
  }

  .mobile-result-body {
    min-height: 260px;
  }

  .mobile-result-editable:focus {
    box-shadow: inset 0 0 0 2px rgba(109, 156, 255, 0.52);
    border-radius: 12px;
  }

  .mobile-result-actions {
    display: grid;
    gap: 8px;
    margin-top: 16px;
  }

  .mobile-result-actions .button {
    width: 100%;
    min-height: 48px;
  }
}

@media (max-width: 1180px) and (min-width: 981px) {
  .example-grid {
    grid-template-columns: repeat(2, minmax(260px, 1fr));
  }
}

@media (max-width: 640px) {
  .app-shell {
    width: min(100% - 20px, 100%);
    padding-top: 18px;
  }

  .mail-editor,
  .template-panel,
  .seo-guide,
  .content-guide {
    padding: 15px;
    border-radius: 22px;
  }

  .editor-actions {
    justify-content: stretch;
  }

  .button {
    flex: 1 1 44%;
  }
}
