/*
  Jeddo George consent banner styles, 2026-07-15.
  Brand red #C54B33 taken from the site's theme-color meta (seen 2026-07-15).
  The card sits bottom-left, small and quiet, never a full-screen wall.
*/

#jg-consent {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 2147483000;
  display: flex;
  justify-content: flex-start;
  pointer-events: none;
  font-family: inherit;
}

#jg-consent .jgc-card {
  pointer-events: auto;
  max-width: 420px;
  width: 100%;
  background: #fffdf9;
  color: #2b2018;
  border: 1px solid rgba(197, 75, 51, 0.25);
  border-radius: 14px;
  box-shadow: 0 10px 34px rgba(43, 32, 24, 0.18);
  padding: 20px 20px 14px;
  font-size: 14px;
  line-height: 1.55;
}

#jg-consent .jgc-title {
  margin: 0 0 6px;
  font-size: 15px;
  font-weight: 700;
}

#jg-consent .jgc-body {
  margin: 0 0 12px;
}

#jg-consent .jgc-toggles {
  margin: 0 0 12px;
  padding: 10px 12px;
  background: rgba(197, 75, 51, 0.06);
  border-radius: 10px;
}

#jg-consent .jgc-toggle {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  margin: 6px 0;
  cursor: pointer;
}

#jg-consent .jgc-toggle input {
  margin-top: 3px;
  accent-color: #C54B33;
  flex: none;
}

#jg-consent .jgc-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 8px;
}

#jg-consent .jgc-btn {
  appearance: none;
  border-radius: 999px;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  border: 1px solid #C54B33;
  background: transparent;
  color: #C54B33;
}

#jg-consent .jgc-btn.jgc-accept {
  background: #C54B33;
  color: #fffdf9;
}

#jg-consent .jgc-btn:hover {
  filter: brightness(0.95);
}

#jg-consent .jgc-btn:focus-visible {
  outline: 2px solid #2b2018;
  outline-offset: 2px;
}

#jg-consent .jgc-foot {
  margin: 0;
  font-size: 11.5px;
  color: rgba(43, 32, 24, 0.6);
}

@media (max-width: 480px) {
  #jg-consent {
    left: 10px;
    right: 10px;
    bottom: 10px;
  }
  #jg-consent .jgc-card {
    max-width: none;
  }
}
