/* Security & compliance UI */
.cookie-consent {
  position: fixed;
  left: 14px;
  right: 14px;
  bottom: 14px;
  z-index: 12000;
  background: #0f2133;
  color: #ffffff;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 14px;
  box-shadow: 0 14px 28px rgba(0,0,0,0.28);
  padding: 14px;
  display: none;
}

.cookie-consent.is-visible {
  display: block;
}

.cookie-consent__title {
  font-size: 1rem;
  font-weight: 700;
  margin: 0 0 6px;
}

.cookie-consent__text {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.45;
  opacity: 0.95;
}

.cookie-consent__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.cookie-consent__btn {
  border: 0;
  border-radius: 999px;
  padding: 9px 13px;
  cursor: pointer;
  font-weight: 600;
  min-height: 38px;
}

.cookie-consent__btn--accept {
  background: #1f9f5a;
  color: #fff;
}

.cookie-consent__btn--reject {
  background: #334f69;
  color: #fff;
}

.cookie-consent__btn--prefs {
  background: #f1f5f9;
  color: #0f2133;
}

.site-footer > .compliance-links,
#colophon > .compliance-links {
  position: relative !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  display: inline-flex !important;
  flex-wrap: nowrap !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 14px !important;
  width: max-content !important;
  max-width: calc(100% - 24px) !important;
  margin: 8px auto 0 !important;
  padding: 0 !important;
  box-sizing: border-box !important;
  font-size: 0.9rem !important;
  line-height: 1.08 !important;
  white-space: nowrap !important;
  text-align: center !important;
  overflow-x: auto !important;
  overflow-y: hidden !important;
}

.site-footer > .compliance-links a,
#colophon > .compliance-links a {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  white-space: nowrap !important;
  text-decoration: underline !important;
  margin: 0 !important;
  padding: 0 !important;
}

@media (max-width: 768px) {
  .cookie-consent {
    left: 10px;
    right: 10px;
    bottom: 10px;
    padding: 12px;
  }
}
