.notification-signup{
  margin: 32px 0 0;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.notification-signup--placed{
  margin-bottom: 24px;
}

.notification-signup details{
  font-size: 14px;
  color: var(--muted);
}
.notification-signup details[data-notification-animating]{
  overflow: hidden;
}


.notification-signup summary{
  width: fit-content;
  cursor: pointer;
  color: var(--muted);
  list-style-position: outside;
}

.notification-signup summary:hover,
.notification-signup summary:focus-visible{
  color: var(--text);
}

.notification-panel{
  max-width: 520px;
  padding: 18px 0 4px;
}

.notification-panel h2{
  margin: 0 0 8px;
  font-size: 18px;
  line-height: 1.35;
  color: var(--text);
}

.notification-panel > p{
  margin: 0 0 16px;
  font-size: 14px;
  line-height: 1.55;
}

.notification-form label{
  display: block;
  margin-bottom: 6px;
  color: var(--text);
  font-size: 14px;
  font-weight: 600;
}

.notification-form-row{
  display: flex;
  gap: 8px;
}

.notification-form input[type="email"]{
  min-width: 0;
  flex: 1 1 260px;
  padding: 9px 10px;
  border: 1px solid var(--line-strong);
  border-radius: 7px;
  background: var(--bg);
  color: var(--text);
  font: inherit;
}

.notification-form button{
  flex: 0 0 auto;
  padding: 9px 12px;
  border: 1px solid var(--line-strong);
  border-radius: 7px;
  background: transparent;
  color: var(--text);
  font: inherit;
  cursor: pointer;
}

.notification-form button:hover,
.notification-form button:focus-visible{
  border-color: var(--text);
}

.notification-form button:disabled{
  cursor: wait;
  opacity: .6;
}

.notification-note,
.notification-result{
  margin: 9px 0 0;
  font-size: 13px;
  line-height: 1.5;
}

.notification-result:empty{
  display: none;
}

.notification-session-result{
  margin: 0;
  color: var(--text);
  font-size: 14px;
  line-height: 1.55;
}

.notification-signup[hidden],
.notification-session-result[hidden]{
  display: none;
}

.notification-honeypot{
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  white-space: nowrap !important;
}

.notification-action{
  max-width: 600px;
  margin-top: 24px;
}

.notification-action h1{
  margin: 0 0 14px;
  font-size: clamp(26px, 5vw, 34px);
  line-height: 1.2;
}

.notification-action p{
  font-size: 16px;
  line-height: 1.65;
}

.notification-action button{
  padding: 9px 12px;
  border: 1px solid var(--line-strong);
  border-radius: 7px;
  background: transparent;
  color: var(--text);
  font: inherit;
  cursor: pointer;
}

.notification-action button:hover,
.notification-action button:focus-visible{
  border-color: var(--text);
}

.notification-action button:disabled{
  cursor: wait;
  opacity: .6;
}

.notification-preview-note{
  margin: 10px 0 0;
  font-size: 13px;
  line-height: 1.5;
}

.notification-mail-preview{
  max-width: 760px;
}

.notification-mail-preview > h1{
  margin: 0 0 12px;
  font-size: clamp(27px, 4.5vw, 34px);
  line-height: 1.2;
  letter-spacing: -.018em;
}

.notification-mail-preview-nav{
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  margin: 22px 0 30px;
}

.notification-mail-preview section{
  margin: 0 0 42px;
}

.notification-mail-preview section h2{
  margin: 0 0 10px;
  font-size: 21px;
  line-height: 1.3;
}

.notification-mail-subject{
  margin: 0 0 12px;
  font-size: 14px;
}

.notification-mail-frame{
  width: 100%;
  min-height: 610px;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  background: #fbfbfc;
}

.notification-mail-preview details{
  margin-top: 12px;
  font-size: 13px;
  color: var(--muted);
}

.notification-mail-preview pre{
  overflow-x: auto;
  white-space: pre-wrap;
  color: var(--text);
  font: 13px/1.55 ui-monospace, SFMono-Regular, Consolas, monospace;
}

@media (max-width: 560px){
  .notification-form-row{
    align-items: stretch;
    flex-direction: column;
  }

  .notification-form input[type="email"]{
    flex-basis: auto;
    width: 100%;
  }
}

