.cookie-consent {
  position: fixed;
  left: clamp(14px, 3vw, 32px);
  right: clamp(14px, 3vw, 32px);
  bottom: clamp(14px, 3vw, 28px);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 20px;
  border-radius: 22px;
  border: 1px solid rgba(116, 157, 173, 0.26);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 22px 60px rgba(15, 63, 87, 0.18);
}
.cookie-consent.is-visible { display: flex; }
.cookie-consent p { margin: 0; color: var(--aim-text-soft, #526271); line-height: 1.55; max-width: 76ch; font-size: 14px; }
.cookie-consent strong { color: var(--aim-text, #1e2f3a); }
.cookie-consent-actions { display: flex; flex-wrap: wrap; gap: 10px; justify-content: flex-end; }
.cookie-consent button { border: 0; cursor: pointer; border-radius: 999px; padding: 10px 14px; font-weight: 800; font-size: 13px; }
.cookie-consent .cookie-primary { background: var(--aim-blue, #0f3f57); color: #fff; }
.cookie-consent .cookie-secondary { background: var(--aim-sky-soft, #eaf6fa); color: var(--aim-blue, #0f3f57); }
.cookie-consent .cookie-link { background: transparent; color: var(--aim-blue, #0f3f57); text-decoration: underline; padding-inline: 4px; }
.cookie-settings-button { background: transparent; border: 0; color: inherit; cursor: pointer; font: inherit; padding: 0; text-decoration: underline; }
@media (max-width: 720px) {
  .cookie-consent { align-items: stretch; flex-direction: column; bottom: 86px; }
  .cookie-consent-actions { justify-content: flex-start; }
}
