/* ============================================
   PREVIEW BANNER — TEMPORARY
   Remove this file + the .preview-banner div in
   every HTML page + the <link> tag when going live.
   ============================================ */

.preview-banner {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1001;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(90deg, #f4a91f, #ffc857);
  color: #1a1f24;
  font-family: var(--font-heading);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.78rem;
  font-weight: 600;
  text-align: center;
  padding: 0 16px;
  border-bottom: 2px solid #1a1f24;
}

.preview-banner a {
  color: #1a1f24;
  text-decoration: underline;
  margin-left: 6px;
}

/* Push the fixed nav down to clear the banner */
.nav {
  top: 36px;
}

/* Page heroes (sub-pages) need extra top padding so content
   isn't tucked under banner+nav */
.page-hero {
  padding-top: 176px;
}

@media (max-width: 640px) {
  .preview-banner {
    font-size: 0.66rem;
    letter-spacing: 1px;
    height: 32px;
    padding: 0 10px;
  }
  .nav {
    top: 32px;
  }
  .page-hero {
    padding-top: 172px;
  }
}
