/* ============================================================
   Consent banner.

   Same law as the rest of the page: flat, hairlines, no shadow, no
   buttons in appearance. The controls are real <button> elements
   because they perform an action rather than navigate — they simply
   wear the underlined-text-anchor clothes everything else wears.
   ============================================================ */

.consent {
  position: fixed;
  left: var(--margin);
  right: var(--margin);
  bottom: var(--margin);
  z-index: 70;
  background: var(--ground);
  border: 1px solid var(--rule);
  padding: 16px;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.consent-copy {
  margin: 0;
  font-size: var(--t-12);
  line-height: 1.55;
  color: var(--secondary);
  max-width: var(--measure);
}

.consent-actions {
  margin: 0;
  display: flex;
  gap: 20px;
  flex: none;
}

.consent-btn {
  appearance: none;
  background: none;
  border: 0;
  padding: 0;
  margin: 0;
  font: inherit;
  font-size: var(--t-12);
  letter-spacing: 0.02em;
  color: var(--ink-strong);
  cursor: pointer;
  transition: opacity 0.3s var(--ease);
}

.consent-btn:hover {
  opacity: 0.55;
}

.consent-btn:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 3px;
}

@media (max-width: 640px) {
  .consent {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .consent-btn { transition: none; }
}
