/* Cookie consent banner - injected by assets/js/tracking.js */

#dg-consent-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2147483000; /* above the Calendly popup overlay */
  background: #002644;
  color: #fff;
  box-shadow: 0 -2px 16px rgba(0, 0, 0, 0.25);
  font-size: 0.9rem;
  line-height: 1.45;
}

#dg-consent-banner .dg-consent-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px 6.25%;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
}

#dg-consent-banner .dg-consent-text {
  margin: 0;
}

#dg-consent-banner .dg-consent-text a {
  color: #FFA500;
  text-decoration: underline;
}

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

#dg-consent-banner .dg-consent-btn {
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 9px 22px;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  white-space: nowrap;
}

#dg-consent-banner .dg-consent-accept {
  background: #FFA500;
  color: #fff;
}

#dg-consent-banner .dg-consent-accept:hover {
  background: #e69500;
}

#dg-consent-banner .dg-consent-reject {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.5);
}

#dg-consent-banner .dg-consent-reject:hover {
  background: rgba(255, 255, 255, 0.12);
}

@media (min-width: 768px) {
  #dg-consent-banner .dg-consent-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
  }
}
