/* Cookie consent banner — Wagtail/blog surfaces.
   Visual style mirrors the SPA CookieBanner (dark slate, gold accents). */

.gw-cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1000;
  padding: 12px;
}

.gw-cookie-banner__inner {
  max-width: 720px;
  margin: 0 auto;
  background-color: #0c0f1a;
  border: 1px solid rgba(212, 165, 74, 0.35);
  border-radius: 4px;
  padding: 16px 20px;
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.gw-cookie-banner__text {
  margin: 0;
  font-family: Inter, sans-serif;
  font-size: 14px;
  line-height: 20px;
  color: #e8e4df;
}

.gw-cookie-banner__link {
  color: #d4a54a;
  text-decoration: underline;
}

.gw-cookie-banner__actions {
  display: flex;
  gap: 8px;
  justify-content: flex-end;
  flex-wrap: wrap;
}

.gw-cookie-banner__btn {
  padding: 8px 14px;
  font-size: 13px;
  font-family: Inter, sans-serif;
  border-radius: 3px;
  cursor: pointer;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.gw-cookie-banner__btn--reject {
  color: rgba(255, 255, 255, 0.6);
  background: transparent;
}

.gw-cookie-banner__btn--accept {
  color: #0c0f1a;
  background: #d4a54a;
  border-color: #d4a54a;
  font-weight: 600;
}

@media print {
  .gw-cookie-banner { display: none !important; }
}
