.admin-draft-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin: 0 0 18px;
  padding: 15px 17px;
  background: #fff8e8;
  border: 1px solid #efd79d;
  border-radius: 13px;
}

.admin-draft-banner.is-new-draft {
  background: #eef7fb;
  border-color: #c8e2ed;
}

.admin-draft-banner strong {
  display: block;
  color: #032e4d;
  font: 600 .88rem "Barlow", sans-serif;
}

.admin-draft-banner p {
  margin: 3px 0 0;
  color: #687d87;
  font: 400 .74rem/1.45 "Work Sans", sans-serif;
}

.admin-status-dot.is-draft {
  background: #f28d01;
}

.admin-publish-status {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 5px 10px;
  border-radius: 999px;
  font: 700 .64rem "Work Sans", sans-serif;
  white-space: nowrap;
}

.admin-publish-status::before {
  width: 7px;
  height: 7px;
  margin-right: 6px;
  border-radius: 50%;
  content: "";
}

.admin-publish-status.is-published {
  color: #25704b;
  background: #e9f7ef;
}

.admin-publish-status.is-published::before {
  background: #39a96b;
}

.admin-publish-status.is-changed {
  color: #8b5d00;
  background: #fff4d8;
}

.admin-publish-status.is-changed::before {
  background: #f28d01;
}

.admin-publish-status.is-draft {
  color: #075d88;
  background: #e9f5fa;
}

.admin-publish-status.is-draft::before {
  background: #04a0dd;
}

.admin-publish-status.is-hidden {
  color: #697b84;
  background: #edf1f3;
}

.admin-publish-status.is-hidden::before {
  background: #95a4ab;
}

@media screen and (max-width: 680px) {
  .admin-draft-banner {
    align-items: stretch;
    flex-direction: column;
  }
}
