/* Consent banner (see consent.js). Fixed bottom card; both choices equally prominent (GDPR:
   declining must be as easy as accepting — no dark-pattern hierarchy between the buttons). */
#kc-banner {
  position: fixed;
  left: 50%;
  bottom: 16px;
  transform: translateX(-50%);
  z-index: 1000;
  width: min(640px, calc(100vw - 24px));
  box-sizing: border-box;
  background: var(--white, #fff);
  color: var(--navy, #1f2d5c);
  border: 1px solid var(--line, #e7e9f0);
  border-radius: 14px;
  box-shadow: 0 8px 28px rgba(31, 45, 92, 0.16);
  padding: 14px 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  align-items: center;
  font-size: 0.92rem;
  line-height: 1.45;
}
#kc-banner .kc-text {
  margin: 0;
  flex: 1 1 320px;
}
#kc-banner a {
  color: var(--blue-ink, #5a6fbf);
}
#kc-banner .kc-actions {
  display: flex;
  gap: 8px;
  flex: 0 0 auto;
  margin-left: auto;
}
/* Both buttons are IDENTICAL by design — equal prominence is a legal requirement (regulators have
   treated a louder "accept" as misleading design), not a styling preference. Don't "improve" one. */
#kc-banner .kc-btn {
  font: inherit;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 10px;
  border: 1.5px solid var(--navy, #1f2d5c);
  background: var(--white, #fff);
  color: var(--navy, #1f2d5c);
  cursor: pointer;
}
#kc-banner .kc-btn:focus-visible {
  outline: 2px solid var(--blue, #7f95e4);
  outline-offset: 2px;
}
@media (max-width: 480px) {
  #kc-banner .kc-actions {
    margin-left: 0;
    width: 100%;
  }
  #kc-banner .kc-btn {
    flex: 1 1 0;
  }
}
