/* Cookie-consent banner (#20, AgDR-0004) */
.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 9999;
  max-width: 720px;
  margin: 0 auto;
  background: #101a29;
  color: #fff;
  border-radius: 10px;
  padding: 18px 20px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  font-family: inherit;
}

.cookie-banner__text {
  margin: 0;
  flex: 1 1 280px;
  font-size: 14px;
  line-height: 1.6;
}

.cookie-banner__text a {
  color: #fff;
  text-decoration: underline;
}

.cookie-banner__actions {
  display: flex;
  gap: 10px;
  flex: 0 0 auto;
}

.cookie-banner__btn {
  /* 2px transparent border keeps Accept the same box height as the outlined
     Decline; 4px radius sits between the site's 2px .btn and a card feel. */
  border: 2px solid transparent;
  border-radius: 4px;
  padding: 9px 18px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.cookie-banner__btn--accept {
  background: #95226c;
  color: #fff;
}

.cookie-banner__btn--accept:hover {
  background: #7a1b59; /* #95226c darkened ~15% */
}

.cookie-banner__btn--decline {
  background: transparent;
  color: #fff;
  /* 2px border matches the site's .btn-border-white outlined-button weight */
  border-color: rgba(255, 255, 255, 0.6);
}

.cookie-banner__btn--decline:hover {
  background: rgba(255, 255, 255, 0.1);
}

.cookie-banner__btn:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 2px;
}

@media (max-width: 480px) {
  .cookie-banner {
    flex-direction: column;
    align-items: stretch;
  }
  .cookie-banner__actions {
    justify-content: flex-end;
  }
}
