.legal-links {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  align-items: center;
}
.legal-links a { color: inherit; text-decoration: underline; text-underline-offset: 3px; }
.cookie-notice {
  position: fixed;
  z-index: 500;
  left: 50%;
  bottom: 18px;
  width: min(calc(100% - 28px), 760px);
  transform: translateX(-50%);
  padding: 18px;
  border: 1px solid rgba(8,124,255,.24);
  border-radius: 18px;
  background: rgba(255,255,255,.98);
  color: #162331;
  box-shadow: 0 24px 70px rgba(18,45,73,.22);
  backdrop-filter: blur(14px);
}
.cookie-notice[hidden] { display: none; }
.cookie-notice__inner { display: grid; grid-template-columns: 1fr auto; gap: 18px; align-items: center; }
.cookie-notice strong { display: block; margin-bottom: 4px; font-size: 1.05rem; }
.cookie-notice p { margin: 0; color: #526170; font-size: .94rem; line-height: 1.55; }
.cookie-notice a { color: #075fbf; font-weight: 750; }
.cookie-notice button {
  min-height: 44px;
  padding: 0 18px;
  border: 0;
  border-radius: 10px;
  background: #087cff;
  color: #fff;
  font: inherit;
  font-weight: 850;
  cursor: pointer;
}
.cookie-notice button:hover, .cookie-notice button:focus-visible { background: #076edc; }
@media (max-width: 620px) {
  .cookie-notice { bottom: 10px; padding: 16px; }
  .cookie-notice__inner { grid-template-columns: 1fr; gap: 13px; }
  .cookie-notice button { width: 100%; }
}
