/* ===============================
   Cookie Banner
   =============================== */

.btn {
	border:none;
}

body.has-cookie-banner {
  padding-bottom: 110px; /* adjust to banner height */
}

.cookie-banner {
  position: sticky;
  inset: auto 0 0 0; /* bottom full width */
  z-index: 99999;
  padding: 24px 20px;
  background: var(--panel);
  color: var(--mid);
}

.cookie-banner__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  gap: 24px;
  align-items: center;
  justify-content: space-between;
}

.cookie-banner__text {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.5;
}

.cookie-banner__link {
  color: inherit;
  text-decoration: underline;
}

.cookie-banner__actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

/* Mobile stack */
@media (max-width: 700px) {
  .cookie-banner__inner {
	flex-direction: column;
	align-items: flex-start;
  }

  .cookie-banner__actions {
	width: 100%;
  }

  .cookie-banner__actions .btn {
	flex: 1;
  }
}