/**
 * The sample banner.
 *
 * These pages present themselves as real businesses. Without a marker a
 * visitor, or a search engine, has no way to know Bright Dental is not a
 * dental practice. The banner is injected by the build for any site with
 * "demo": true, so it cannot be forgotten on a new sample and cannot be
 * left on a real client.
 */
.plw-sample {
  position: sticky;
  top: 0;
  z-index: 999;
  display: flex;
  gap: 0.75rem;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0.55rem 1rem;
  background: #0a0a0a;
  color: #fff;
  font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: 0.8125rem;
  line-height: 1.4;
  text-align: center;
}

.plw-sample__tag {
  display: inline-block;
  padding: 0.15em 0.5em;
  border-radius: 3px;
  background: #fcd116;
  color: #0a0a0a;
  font-weight: 700;
  font-size: 0.6875rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.plw-sample a {
  color: #fcd116;
  text-decoration: underline;
  text-underline-offset: 2px;
}

@media print { .plw-sample { display: none; } }
