/* Cookie consent banner. Shared across slowaging.org and subdomains.
   Colours resolve from each property's own CSS variables where they exist;
   the fallback hex values are the SLOW brand colours from the April 2026 brief. */
#slow-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--burgundy, var(--slate, #384A68));
  color: var(--light-pink, var(--pale, #FADCDE));
  padding: 16px 24px;
  font-family: var(--font-main, var(--font, 'Poppins', 'Century Gothic', Futura, 'Trebuchet MS', sans-serif));
  font-size: 14px;
  line-height: 1.4;
  z-index: 9999;
  box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.15);
}
#slow-consent .slow-consent-inner {
  max-width: 1080px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  justify-content: space-between;
}
#slow-consent p {
  margin: 0;
  flex: 1 1 320px;
}
#slow-consent .slow-consent-actions {
  display: flex;
  gap: 12px;
  align-items: center;
}
#slow-consent button {
  background: var(--rose, #D15A81);
  color: #ffffff;
  border: none;
  padding: 8px 18px;
  font: inherit;
  cursor: pointer;
  border-radius: 2px;
}
#slow-consent button[data-action="decline"] {
  background: transparent;
  border: 1px solid var(--light-pink, var(--pale, #FADCDE));
  color: var(--light-pink, var(--pale, #FADCDE));
}
#slow-consent a {
  color: var(--light-pink, var(--pale, #FADCDE));
  text-decoration: underline;
}
@media (max-width: 600px) {
  #slow-consent .slow-consent-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}
