/* ============================================================
   Willow & Moss - Temporary notice bar
   To remove: delete the .site-notice markup and this stylesheet's
   <link> from each page.
   ============================================================ */

:root {
  --notice-height: 36px;
}

.site-notice {
  display: flex;
  align-items: center;
  justify-content: center;
  height: var(--notice-height);
  padding: 0 var(--container-padding);
  background-color: var(--green-deep);
  color: var(--cream);
  font-family: 'Jost', sans-serif;
  font-size: 0.8125rem;
  line-height: 1.35;
  letter-spacing: 0.02em;
  text-align: center;
  overflow: hidden;
}

.site-notice p {
  margin: 0;
  max-width: none;
  color: inherit;
  font-size: inherit;
  line-height: inherit;
}

@media (max-width: 640px) {
  :root {
    --notice-height: 52px;
  }

  .site-notice {
    font-size: 0.75rem;
  }
}
