/* Region-switch prompt (templates/components/region_switch.html). Shown when a
   visitor's geo-region differs from the region the page serves. Colour tokens
   come from chippie-marketing.css, which public_base.html loads on every public
   page. */
.region-switch {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  padding: 10px 18px;
  background: var(--sandstone);
  border-bottom: 1px solid var(--border);
  color: var(--black);
  font-size: 15px;
}
.region-switch__text { margin: 0; flex: 1 1 240px; }
.region-switch__link {
  font-weight: 700;
  color: var(--orange);
  text-decoration: underline;
  white-space: nowrap;
}
.region-switch__link:hover { color: var(--orange-deep); }
.region-switch__close {
  border: 0;
  background: transparent;
  font-size: 22px;
  line-height: 1;
  color: var(--text-2);
  cursor: pointer;
  padding: 0 4px;
  margin-left: auto;
}
.region-switch__close:hover { color: var(--black); }
