/* AIDEV-NOTE: Resume-quote banner — loaded globally on every v4 page via
   sharedCss.globalV4. DOM is rendered by v4-marketing.njk; the matching JS
   in web-src/v4/returning-user-banner.js shows/hides based on quote state. */

.v4-returning-user-banner {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 60;
  background: #e2e4d0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  padding: 0.5rem 1rem;
}
.v4-returning-user-banner[hidden] {
  display: none;
}
.v4-rub-inner {
  max-width: 80rem;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.v4-rub-text {
  display: flex;
  flex-direction: column;
  font-size: 0.875rem;
  color: #111;
}
.v4-rub-text strong {
  font-weight: 700;
}
.v4-rub-actions {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}
.v4-rub-dismiss {
  width: 2rem;
  height: 2rem;
  border-radius: 9999px;
  background: transparent;
  border: none;
  color: #111;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
}
