/* Global navigation and search */
:root {
  --rouge-nav-ink: #1d1d1f;
  --rouge-nav-muted: #6e6e73;
  --rouge-nav-accent: #922c43;
  --rouge-nav-white: #ffffff;
  --rouge-nav-hairline: rgba(0, 0, 0, .055);
}

.rouge-global-header {
  position: sticky;
  top: 0;
  z-index: 99999;
  width: 100%;
  height: 48px;
  background: rgba(255, 255, 255, .98);
  border-bottom: 1px solid var(--rouge-nav-hairline);
  -webkit-backdrop-filter: saturate(180%) blur(18px);
  backdrop-filter: saturate(180%) blur(18px);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

.rouge-global-nav-shell {
  position: relative;
  width: 100%;
  height: 100%;
}

.rouge-global-nav {
  position: relative;
  z-index: 5;
  height: 48px;
  margin: 0 auto;
  padding: 0 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(17px, 1.6vw, 27px);
  white-space: nowrap;
}

.rouge-global-nav > a:not(.rouge-global-mark),
.rouge-nav-dropdown-trigger {
  color: var(--rouge-nav-ink);
  font-family: inherit;
  font-size: 13.5px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: -.005em;
  text-decoration: none;
  transition: color .16s ease, opacity .16s ease;
}

.rouge-global-nav > a:not(.rouge-global-mark):hover,
.rouge-global-nav > a:not(.rouge-global-mark):focus-visible,
.rouge-nav-dropdown-trigger:hover,
.rouge-nav-dropdown-trigger:focus-visible,
.rouge-global-header.is-support-open .rouge-nav-dropdown-trigger {
  color: var(--rouge-nav-accent);
  text-decoration: none;
}

.rouge-global-mark {
  width: 25px;
  height: 29px;
  flex: 0 0 25px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 0;
  text-decoration: none;
}

.rouge-global-mark img {
  display: block;
  width: 25px;
  height: 25px;
  object-fit: contain;
}

.rouge-nav-dropdown {
  height: 48px;
  display: flex;
  align-items: center;
}

.rouge-nav-dropdown-trigger {
  height: 48px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.rouge-nav-dropdown-chevron {
  width: 8px;
  height: 6px;
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.35;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform .2s ease;
}

.rouge-global-header.is-support-open .rouge-nav-dropdown-chevron {
  transform: rotate(180deg);
}

/* Right-side utilities */
.rouge-header-utilities {
  position: absolute;
  z-index: 6;
  top: 0;
  right: 26px;
  height: 48px;
  display: flex;
  align-items: center;
  gap: 15px;
}

.rouge-header-search-button {
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: var(--rouge-nav-ink);
  cursor: pointer;
  transition: color .16s ease, background-color .16s ease;
}

.rouge-header-search-button:hover,
.rouge-header-search-button:focus-visible,
.rouge-global-header.is-search-open .rouge-header-search-button {
  color: var(--rouge-nav-accent);
  background: rgba(0,0,0,.035);
  outline: none;
}

.rouge-header-search-button svg {
  width: 17px;
  height: 17px;
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
}

.rouge-tax-portal-nav {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--rouge-nav-ink);
  font-family: inherit;
  font-size: 13.5px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: -.005em;
  text-decoration: none;
  transition: color .16s ease;
}

.rouge-tax-portal-nav:hover,
.rouge-tax-portal-nav:focus-visible {
  color: var(--rouge-nav-accent);
  text-decoration: none;
}

.rouge-tax-portal-nav svg {
  width: 15px;
  height: 15px;
  flex: 0 0 15px;
  display: block;
  fill: currentColor;
}

/* Support flyout */
.rouge-support-panel,
.rouge-search-panel {
  position: absolute;
  z-index: 4;
  top: 48px;
  left: 0;
  right: 0;
  width: 100%;
  background: rgba(255,255,255,.995);
  border-top: 1px solid rgba(0,0,0,.025);
  box-shadow: 0 22px 42px rgba(0,0,0,.08);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  pointer-events: none;
  transition: opacity .18s ease, transform .2s ease, visibility .18s ease;
}

.rouge-global-header.is-support-open .rouge-support-panel,
.rouge-global-header.is-search-open .rouge-search-panel {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.rouge-support-inner,
.rouge-search-inner {
  width: min(980px, calc(100% - 48px));
  margin: 0 auto;
}

.rouge-support-inner {
  display: grid;
  grid-template-columns: minmax(270px, 1.5fr) minmax(180px, .8fr);
  gap: 72px;
  padding: 34px 0 42px;
}

.rouge-support-label,
.rouge-search-label {
  margin: 0 0 11px;
  color: var(--rouge-nav-muted);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .01em;
}

.rouge-support-primary-links,
.rouge-support-quick-links,
.rouge-search-quick-links,
.rouge-search-results {
  margin: 0;
  padding: 0;
  list-style: none;
}

.rouge-support-primary-links a {
  display: inline-block;
  padding: 3px 0;
  color: var(--rouge-nav-ink);
  font-size: 26px;
  font-weight: 600;
  line-height: 1.18;
  letter-spacing: -.035em;
  text-decoration: none;
  transition: color .14s ease;
}

.rouge-support-primary-links a:hover,
.rouge-support-primary-links a:focus-visible,
.rouge-support-quick-links a:hover,
.rouge-support-quick-links a:focus-visible {
  color: var(--rouge-nav-accent);
  text-decoration: none;
}

.rouge-support-primary-links li + li {
  margin-top: 5px;
}

.rouge-support-quick-links a {
  display: inline-block;
  padding: 5px 0;
  color: var(--rouge-nav-ink);
  font-size: 13px;
  font-weight: 500;
  line-height: 1.25;
  text-decoration: none;
}

.rouge-nav-scrim {
  position: fixed;
  z-index: 2;
  top: 48px;
  left: 0;
  right: 0;
  bottom: 0;
  margin: 0;
  padding: 0;
  border: 0;
  background: rgba(0,0,0,.18);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .18s ease, visibility .18s ease;
}

.rouge-global-header.is-support-open .rouge-nav-scrim,
.rouge-global-header.is-search-open .rouge-nav-scrim {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

/* Search flyout */
.rouge-search-inner {
  padding: 29px 0 40px;
}

.rouge-search-input-row {
  display: grid;
  grid-template-columns: 30px 1fr 34px;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid rgba(0,0,0,.12);
}

.rouge-search-input-icon {
  width: 23px;
  height: 23px;
  color: var(--rouge-nav-muted);
  fill: none;
  stroke: currentColor;
  stroke-width: 1.55;
  stroke-linecap: round;
}

.rouge-search-input,
body.rouge-unified-page .rouge-search-input {
  width: 100%;
  min-width: 0;
  height: 58px;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  color: var(--rouge-nav-ink) !important;
  font-family: inherit;
  font-size: 28px;
  font-weight: 600;
  letter-spacing: -.035em;
  outline: none !important;
  -webkit-appearance: none;
  appearance: none;
}

.rouge-search-input:focus,
body.rouge-unified-page .rouge-search-input:focus {
  border: 0 !important;
  border-color: transparent !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  outline: none !important;
}

.rouge-search-input::placeholder {
  color: #8a8a8e;
  opacity: 1;
}

.rouge-search-input::-webkit-search-cancel-button,
.rouge-search-input::-webkit-search-decoration {
  -webkit-appearance: none;
  appearance: none;
  display: none;
}

.rouge-search-input::-ms-clear,
.rouge-search-input::-ms-reveal {
  display: none;
  width: 0;
  height: 0;
}

.rouge-search-close {
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 50%;
  background: #f3f3f5;
  color: #515154;
  font-size: 21px;
  line-height: 1;
  cursor: pointer;
}

.rouge-search-close:hover,
.rouge-search-close:focus-visible {
  background: #e8e8ed;
  color: var(--rouge-nav-ink);
  outline: none;
}

.rouge-search-body {
  margin-top: 22px;
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 48px;
}

.rouge-search-quick-links a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 0;
  color: var(--rouge-nav-ink);
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
}

.rouge-search-quick-links a::before {
  content: "→";
  color: var(--rouge-nav-muted);
  font-size: 12px;
}

.rouge-search-quick-links a:hover,
.rouge-search-quick-links a:focus-visible {
  color: var(--rouge-nav-accent);
  text-decoration: none;
}

.rouge-search-results-wrap[hidden] {
  display: none !important;
}

/* Keep search results compact: show roughly five results at once, then scroll. */
.rouge-search-results-wrap {
  min-width: 0;
}

.rouge-search-results {
  max-height: 372px;
  overflow-y: auto;
  overscroll-behavior: contain;
  scrollbar-width: thin;
  scrollbar-color: #c7c7cc transparent;
  padding-right: 10px;
}

.rouge-search-results::-webkit-scrollbar {
  width: 7px;
}

.rouge-search-results::-webkit-scrollbar-track {
  background: transparent;
}

.rouge-search-results::-webkit-scrollbar-thumb {
  background: #c7c7cc;
  border-radius: 999px;
}

.rouge-search-results::-webkit-scrollbar-thumb:hover {
  background: #a8a8ad;
}

.rouge-search-results li + li {
  margin-top: 3px;
}

.rouge-search-result {
  display: block;
  padding: 9px 10px;
  margin-left: -10px;
  border-radius: 8px;
  color: var(--rouge-nav-ink);
  text-decoration: none;
  transition: background-color .14s ease, color .14s ease;
}

.rouge-search-result:hover,
.rouge-search-result:focus-visible {
  background: #f5f5f7;
  color: var(--rouge-nav-accent);
  text-decoration: none;
  outline: none;
}

.rouge-search-result-title {
  display: block;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -.015em;
}

.rouge-search-result-desc {
  display: block;
  margin-top: 3px;
  color: var(--rouge-nav-muted);
  font-size: 12px;
  font-weight: 400;
  line-height: 1.35;
}

.rouge-search-empty {
  margin: 0;
  color: var(--rouge-nav-muted);
  font-size: 14px;
  line-height: 1.5;
}

/* Compact desktop navigation: keep the full menu visible on ordinary laptop widths. */
@media (min-width: 1041px) and (max-width: 1180px) {
  .rouge-global-nav {
    gap: 14px;
    padding-left: 16px;
    padding-right: 16px;
  }

  .rouge-global-nav > a:not(.rouge-global-mark),
  .rouge-nav-dropdown-trigger,
  .rouge-tax-portal-nav {
    font-size: 13px;
  }

  .rouge-header-utilities {
    right: 16px;
    gap: 10px;
  }
}

/* Mobile navigation */
.rouge-mobile-nav-bar,
.rouge-mobile-menu {
  display: none;
}

@media (max-width: 1040px) {
  .rouge-global-nav,
  .rouge-header-utilities,
  .rouge-support-panel,
  .rouge-nav-scrim {
    display: none;
  }

  .rouge-mobile-nav-bar {
    position: relative;
    z-index: 6;
    height: 48px;
    width: 100%;
    max-width: 980px;
    margin: 0 auto;
    padding-left: max(20px, env(safe-area-inset-left));
    padding-right: max(20px, env(safe-area-inset-right));
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .rouge-mobile-nav-bar .rouge-global-mark {
    width: 44px;
    height: 44px;
    flex: 0 0 44px;
  }

  .rouge-mobile-nav-bar .rouge-global-mark img {
    width: 24px;
    height: 24px;
  }

  .rouge-mobile-actions {
    display: flex;
    align-items: center;
    gap: 3px;
  }

  .rouge-mobile-nav-bar .rouge-header-search-button {
    width: 44px;
    height: 44px;
  }

  .rouge-mobile-menu-toggle {
    width: 44px;
    height: 44px;
    border: 0;
    background: transparent;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 0;
    cursor: pointer;
  }

  .rouge-mobile-menu-toggle span {
    display: block;
    width: 17px;
    height: 1px;
    background: var(--rouge-nav-ink);
    transform-origin: center;
    transition: transform .22s ease, opacity .18s ease;
  }

  .rouge-global-header.is-open .rouge-mobile-menu-toggle span:first-child {
    transform: translateY(3.5px) rotate(45deg);
  }

  .rouge-global-header.is-open .rouge-mobile-menu-toggle span:last-child {
    transform: translateY(-3.5px) rotate(-45deg);
  }

  .rouge-mobile-menu {
    position: fixed;
    z-index: 5;
    inset: 48px 0 auto 0;
    min-height: calc(100vh - 48px);
    min-height: calc(100dvh - 48px);
    max-height: calc(100vh - 48px);
    max-height: calc(100dvh - 48px);
    overflow-y: auto;
    padding: 20px 40px 38px;
    background: rgba(255,255,255,.995);
    border-top: 1px solid rgba(0,0,0,.04);
    box-shadow: 0 22px 50px rgba(0,0,0,.08);
  }

  .rouge-global-header.is-open .rouge-mobile-menu {
    display: block;
  }

  .rouge-mobile-menu > a,
  .rouge-mobile-support-main {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
    border: 0;
    background: transparent;
    color: var(--rouge-nav-ink);
    font-family: inherit;
    font-size: 27px;
    line-height: 1.2;
    font-weight: 600;
    letter-spacing: -.035em;
    text-align: left;
    text-decoration: none;
    cursor: pointer;
  }

  .rouge-mobile-menu > a:hover,
  .rouge-mobile-menu > a:focus-visible,
  .rouge-mobile-support-main:hover,
  .rouge-mobile-support-main:focus-visible {
    color: var(--rouge-nav-accent);
    text-decoration: none;
  }

  .rouge-mobile-support-chevron {
    width: 13px;
    height: 9px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.35;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: transform .18s ease;
  }

  .rouge-mobile-support-group.is-open .rouge-mobile-support-chevron {
    transform: rotate(180deg);
  }

  .rouge-mobile-support-links {
    display: none;
    margin: 0 0 12px;
    padding: 2px 0 9px 17px;
    border-left: 1px solid rgba(0,0,0,.11);
  }

  .rouge-mobile-support-group.is-open .rouge-mobile-support-links {
    display: block;
  }

  .rouge-mobile-menu .rouge-mobile-support-links a {
    display: block;
    padding: 7px 0;
    color: #545458;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.25;
    letter-spacing: -.02em;
    text-decoration: none;
  }

  .rouge-mobile-menu .rouge-mobile-support-links a:hover,
  .rouge-mobile-menu .rouge-mobile-support-links a:focus-visible {
    color: var(--rouge-nav-accent);
  }

  .rouge-search-panel {
    position: fixed;
    z-index: 8;
    top: 48px;
    bottom: 0;
    min-height: calc(100vh - 48px);
    min-height: calc(100dvh - 48px);
    max-height: calc(100vh - 48px);
    max-height: calc(100dvh - 48px);
    overflow-y: auto;
    box-shadow: 0 22px 50px rgba(0,0,0,.11);
  }

  .rouge-global-header.is-search-open .rouge-search-panel {
    display: block;
  }

  .rouge-search-inner {
    width: min(100% - 40px, 760px);
    padding: 22px 0 34px;
  }

  .rouge-search-input {
    font-size: 24px;
  }

  .rouge-search-result-desc {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
  }

  .rouge-search-body {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .rouge-search-results {
    max-height: min(420px, 52dvh);
  }

  .rouge-search-close {
    width: 44px;
    height: 44px;
  }

  .rouge-mobile-menu .rouge-mobile-support-links a {
    min-height: 44px;
    display: flex;
    align-items: center;
  }

  body.rouge-mobile-menu-open,
  body.rouge-search-open {
    overflow: hidden;
  }

  body.rouge-mobile-menu-open .rouge-contact-bubble-wrap,
  body.rouge-search-open .rouge-contact-bubble-wrap {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }
}

@media (max-width: 480px) {
  .rouge-mobile-nav-bar {
    padding-left: max(18px, env(safe-area-inset-left));
    padding-right: max(16px, env(safe-area-inset-right));
  }

  .rouge-mobile-menu {
    padding-left: 28px;
    padding-right: 28px;
  }

  .rouge-search-inner {
    width: calc(100% - 32px);
  }

  .rouge-search-input-row {
    grid-template-columns: 26px 1fr 32px;
    gap: 7px;
  }

  .rouge-search-input {
    height: 54px;
    font-size: 22px;
  }
}

/* Floating call and text control */
.rouge-contact-bubble-wrap {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 99990;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

.rouge-contact-bubble {
  width: 56px;
  height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: #922c43;
  color: #fff;
  box-shadow: 0 8px 24px rgba(0,0,0,.20);
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background-color .18s ease;
}

.rouge-contact-bubble:hover,
.rouge-contact-bubble:focus-visible {
  transform: translateY(-2px);
  background: #6f1f31;
  box-shadow: 0 11px 28px rgba(0,0,0,.24);
  outline: none;
}

.rouge-contact-bubble:focus-visible {
  box-shadow: 0 0 0 4px rgba(124,36,55,.18), 0 11px 28px rgba(0,0,0,.24);
}

.rouge-contact-bubble svg {
  width: 23px;
  height: 23px;
  display: block;
  fill: currentColor;
}

.rouge-contact-panel {
  position: absolute;
  right: 0;
  bottom: 70px;
  width: 326px;
  padding: 20px;
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 18px;
  background: rgba(255,255,255,.985);
  color: #1d1d1f;
  box-shadow: 0 18px 48px rgba(0,0,0,.16);
  -webkit-backdrop-filter: saturate(180%) blur(18px);
  backdrop-filter: saturate(180%) blur(18px);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px) scale(.985);
  transform-origin: bottom right;
  pointer-events: none;
  transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
}

.rouge-contact-bubble-wrap.is-open .rouge-contact-panel {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.rouge-contact-panel-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 50%;
  background: #f2f2f2;
  color: #424245;
  font-size: 20px;
  font-weight: 300;
  line-height: 1;
  cursor: pointer;
  transition: background-color .15s ease, color .15s ease;
}

.rouge-contact-panel-close:hover,
.rouge-contact-panel-close:focus-visible {
  background: #e8e8ed;
  color: #1d1d1f;
  outline: none;
}

.rouge-contact-panel-kicker {
  margin: 0 38px 5px 0;
  color: #922c43;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.rouge-contact-panel-title {
  margin: 0 38px 8px 0;
  color: #1d1d1f;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -.02em;
}

.rouge-contact-panel-copy {
  margin: 0 0 17px;
  color: #515154;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.45;
}

.rouge-contact-panel-number {
  color: #1d1d1f;
  font-weight: 600;
  white-space: nowrap;
}

.rouge-contact-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.rouge-contact-action {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 10px 12px;
  border-radius: 11px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  text-decoration: none !important;
  transition: transform .15s ease, background-color .15s ease, border-color .15s ease;
}

.rouge-contact-action svg {
  width: 16px;
  height: 16px;
  display: block;
  fill: currentColor;
}

.rouge-contact-action-primary {
  border: 1px solid #922c43;
  background: #922c43;
  color: #fff !important;
}

.rouge-contact-action-primary:hover,
.rouge-contact-action-primary:focus-visible {
  background: #6f1f31;
  border-color: #6f1f31;
  color: #fff !important;
  transform: translateY(-1px);
  outline: none;
}

.rouge-contact-action-secondary {
  border: 1px solid #d7d7dc;
  background: #fff;
  color: #1d1d1f !important;
}

.rouge-contact-action-secondary:hover,
.rouge-contact-action-secondary:focus-visible {
  background: #f5f5f7;
  border-color: #c8c8cc;
  color: #1d1d1f !important;
  transform: translateY(-1px);
  outline: none;
}

@media (max-width: 600px) {
  .rouge-contact-bubble-wrap {
    right: max(16px, env(safe-area-inset-right));
    bottom: max(16px, env(safe-area-inset-bottom));
  }

  .rouge-contact-bubble {
    width: 54px;
    height: 54px;
  }

  .rouge-contact-panel {
    position: fixed;
    right: 14px;
    left: 14px;
    bottom: calc(82px + env(safe-area-inset-bottom));
    width: auto;
    max-width: none;
    padding: 19px;
    border-radius: 17px;
    transform-origin: bottom center;
  }

  .rouge-contact-actions {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 360px) {
  .rouge-contact-actions {
    grid-template-columns: 1fr;
  }
}

.rouge-tax-portal-banner {
  position: relative;
  z-index: 850;
  display: none;
  border-bottom: 1px solid rgba(29, 29, 31, .08);
  background: #f5f5f7;
  color: #3a3a3c;
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.rouge-tax-portal-banner.is-visible {
  display: block;
}

.rouge-tax-portal-banner__inner {
  width: min(calc(100% - 44px), 980px);
  min-height: 50px;
  display: grid;
  grid-template-columns: 1fr 34px;
  align-items: center;
  gap: 12px;
  margin: 0 auto;
}

.rouge-tax-portal-banner p {
  margin: 0;
  text-align: center;
  font-size: 13px;
  line-height: 1.45;
}

.rouge-tax-portal-banner a {
  color: #3b6ca8;
  font-weight: 600;
  text-decoration: none;
}

.rouge-tax-portal-banner a:hover {
  text-decoration: underline;
  text-underline-offset: 2px;
}

.rouge-tax-portal-banner__close {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: #77777c;
  font: inherit;
}


.rouge-tax-portal-banner__close {
  cursor: pointer;
  font-size: 18px;
  transition: background .2s ease, color .2s ease;
}

.rouge-tax-portal-banner__close:hover {
  background: rgba(29, 29, 31, .06);
  color: #1d1d1f;
}

@media (max-width: 640px) {
  .rouge-tax-portal-banner__inner {
    width: min(calc(100% - 24px), 980px);
    grid-template-columns: 1fr 44px;
    gap: 8px;
  }

    .rouge-tax-portal-banner p {
    text-align: left;
    font-size: 12px;
  }

  .rouge-tax-portal-banner__close {
    width: 44px;
    height: 44px;
  }
}
