/* Finsweet Cookie Consent — RemotePass banner (WP parity, 2026-07-28).
   Design: navy bottom bar. Desktop = text left, [Preferences · Deny · Accept] right.
   Mobile = text stacked above the button row. No close button. Banner stays
   visible until the user Accepts or Declines (opt-in mode set in webflow-embeds.php).
   Finsweet toggles the component's inline display; these rules style the shown state. */

/* Initial hide (Finsweet reveals when it decides to show). */
[fs-cc="banner"],
[fs-cc="preferences"] { display: none; }
.cookies-root { font-size: 14px; }

/* ===== Banner bar ===== */
.fs-cc-banner_component {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 998;
  box-sizing: border-box;
  padding: 24px 40px;
  background-color: #021143;
  color: #fff;
  font-size: 15px;
  line-height: 1.5;
}
.fs-cc-banner_container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
}
.fs-cc-banner_text {
  flex: 1 1 auto;
  margin: 0;
  color: #fff;
  font-size: 15px;
  line-height: 1.5;
}
.fs-cc-banner_text strong { font-weight: 700; color: #fff; }
.fs-cc-banner_text-link {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* Buttons cluster: Preferences (link) · Deny · Accept */
.fs-cc-banner_buttons-wrapper {
  display: flex;
  flex: 0 0 auto;
  flex-direction: row;
  align-items: center;
  gap: 20px;
  white-space: nowrap;
}
.fs-cc-banner_buttons-wrapper > .fs-cc-banner_text-link {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.fs-cc-banner_button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 34px;
  border-radius: 500px;
  border: 2px solid #4353ff;
  background-color: #4353ff;
  color: #fff;
  font-size: 16px;
  line-height: 1;
  font-weight: 500;
  text-align: center;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
}
.fs-cc-banner_button.fs-cc-button-alt {
  background-color: #fff;
  color: #4353ff;
  border-color: #fff;
}

/* No close button (per design) */
.fs-cc-banner_close,
[fs-cc="close"].fs-cc-banner_close { display: none !important; }

/* ===== Manager cog (appears after a choice, to reopen preferences) ===== */
.fs-cc-manager_component-copy { position: fixed; left: 20px; bottom: 20px; z-index: 997; }
.fs-cc-manager_button {
  display: flex; align-items: center; justify-content: center;
  width: 48px; height: 48px; border-radius: 50%;
  background-color: #021143; color: #fff; cursor: pointer;
  box-shadow: 0 4px 12px rgba(0,0,0,.18);
}
.fs-cc-manager_icon { width: 24px; height: 24px; }
.fs-cc-manager_icon svg { width: 100%; height: 100%; }

/* ===== Preferences modal ===== */
.fs-cc-prefs_component {
  position: fixed; inset: 0; z-index: 999;
  align-items: center; justify-content: center;
  background-color: rgba(2,17,67,.5);
}
.fs-cc-prefs_form {
  position: relative;
  width: 90%; max-width: 480px; max-height: 85vh; overflow: auto;
  margin: auto; padding: 32px;
  background: #fff; border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0,0,0,.25);
}
.fs-cc-prefs_close { position: absolute; top: 20px; right: 20px; width: 20px; height: 20px; cursor: pointer; }
.fs-cc-prefs_close-icon svg { width: 100%; height: 100%; }
.fs-cc-prefs_title { font-size: 22px; font-weight: 700; color: #021143; margin: 0 0 8px; }
.fs-cc-prefs_text { font-size: 14px; color: #616161; margin: 0 0 16px; }
.fs-cc-prefs_option { padding: 14px 0; border-top: 1px solid #eee; }
.fs-cc-prefs_toggle-wrapper { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.fs-cc-prefs_label { font-size: 15px; font-weight: 600; color: #08080d; }
.fs-cc-prefs_buttons-wrapper { display: flex; gap: 12px; margin-top: 20px; }
.fs-cc-prefs_submit,
.fs-cc-prefs_button {
  padding: 12px 24px; border-radius: 500px;
  border: 2px solid #4353ff; background: #4353ff; color: #fff;
  font-size: 15px; font-weight: 500; cursor: pointer; text-decoration: none;
}

/* ===== Mobile: text stacked above the button row ===== */
@media (max-width: 767px) {
  .fs-cc-banner_component { padding: 20px 20px 24px; }
  .fs-cc-banner_container { flex-direction: column; align-items: flex-start; gap: 18px; }
  .fs-cc-banner_text { margin: 0; }
  .fs-cc-banner_buttons-wrapper { width: 100%; gap: 16px; align-items: center; }
  .fs-cc-banner_button { padding: 12px 28px; }
}
