/*!
 * SOSW cookie consent banner styles — reference v2 (HQ-1367)
 * Dependency-free, ~1KB. Pairs with consent.js.
 */
#sosw-consent-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 20px;
  padding-bottom: calc(14px + env(safe-area-inset-bottom, 0px));
  background: #1a1a1a;
  color: #f2f2f2;
  font: 14px/1.5 -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.25);
}

#sosw-consent-banner .sosw-consent-text {
  flex: 1 1 260px;
  min-width: 200px;
}

#sosw-consent-banner .sosw-consent-link {
  color: #8ab4ff;
  text-decoration: underline;
}

#sosw-consent-banner .sosw-consent-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  flex-shrink: 0;
}

#sosw-consent-banner .sosw-consent-btn {
  cursor: pointer;
  border-radius: 8px;
  padding: 8px 16px;
  min-height: 44px;
  font: inherit;
  font-weight: 600;
  border: 1px solid transparent;
}

#sosw-consent-banner .sosw-consent-btn--primary {
  background: #ffffff;
  color: #1a1a1a;
}

#sosw-consent-banner .sosw-consent-btn--primary:hover {
  background: #e6e6e6;
}

#sosw-consent-banner .sosw-consent-btn--secondary {
  background: transparent;
  color: #f2f2f2;
  border-color: #666;
}

#sosw-consent-banner .sosw-consent-btn--secondary:hover {
  background: rgba(255, 255, 255, 0.08);
}

#sosw-consent-banner .sosw-consent-btn:focus-visible {
  outline: 2px solid #8ab4ff;
  outline-offset: 2px;
}

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