/* woody-consent.css
   Cookie consent banner. Forest bg, cream text, two visually equal
   buttons. Full-width on mobile, max-width 720px centered on desktop.
   Sits above everything else at the bottom of the viewport.

   Mobile (<640px): buttons stack vertically, each full-width.
   Desktop (>=640px): buttons sit side-by-side to the right of the copy,
   both with min-width 190px so they're always identically sized.

   Palette pulled from woody-tokens.css — load tokens first. */

.woody-consent-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 10000;
  background: var(--surface-dark);
  color: var(--cream);
  border-top: 2px solid var(--black);
  font-family: 'Montserrat', sans-serif;
  -webkit-font-smoothing: antialiased;
}

.woody-consent-inner {
  max-width: 720px;
  margin: 0 auto;
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.woody-consent-copy {
  min-width: 0;
}

.woody-consent-title {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: 8px;
}

.woody-consent-text {
  font-size: 13px;
  line-height: 1.5;
  color: var(--cream);
  margin: 0;
}

.woody-consent-link {
  color: var(--cream);
  text-decoration: underline;
  text-underline-offset: 3px;
  font-weight: 700;
}
.woody-consent-link:hover {
  color: var(--amber);
}

.woody-consent-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.woody-consent-btn {
  width: 100%;
  background: var(--cream);
  color: var(--forest);
  border: 2px solid var(--cream);
  border-radius: 0;
  padding: 13px 16px;
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
  text-align: center;
  line-height: 1.2;
  -webkit-appearance: none;
  appearance: none;
}

.woody-consent-btn:hover {
  background: transparent;
  color: var(--cream);
}

.woody-consent-btn:focus-visible {
  outline: 2px solid var(--amber);
  outline-offset: 2px;
}

@media (min-width: 640px) {
  .woody-consent-inner {
    flex-direction: row;
    align-items: center;
    padding: 20px 24px;
    gap: 24px;
  }
  .woody-consent-copy {
    flex: 1 1 auto;
  }
  .woody-consent-actions {
    flex: 0 0 auto;
    flex-direction: row;
    gap: 12px;
  }
  .woody-consent-btn {
    width: auto;
    padding: 12px 20px;
    min-width: 190px;
  }
}
