.ch-consent {
  position: fixed;
  z-index: 10000;
  right: 1rem;
  bottom: 1rem;
  left: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  max-width: 72rem;
  margin: auto;
  padding: 1.15rem 1.25rem;
  color: #f7fbfd;
  background: #10202f;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 1rem;
  box-shadow: 0 1rem 3rem rgba(5,18,28,.32);
}
.ch-consent-copy { max-width: 48rem; }
.ch-consent-copy strong { display: block; margin-bottom: .3rem; font-size: 1.05rem; }
.ch-consent-copy p { margin: 0; color: #dce7ec; line-height: 1.5; }
.ch-consent-copy a { display: inline-block; margin-top: .45rem; color: #9be1cf; text-decoration: underline; }
.ch-consent-actions { display: flex; flex: 0 0 auto; gap: .65rem; }
.ch-consent-actions button {
  min-width: 7.5rem;
  padding: .78rem 1rem;
  color: #10202f;
  background: #d8f4ed;
  border: 2px solid #d8f4ed;
  border-radius: .7rem;
  font: inherit;
  font-weight: 750;
  cursor: pointer;
}
.ch-consent-actions button:hover,
.ch-consent-actions button:focus-visible { background: #fff; border-color: #fff; outline: 3px solid #66cdb3; outline-offset: 2px; }
.ch-consent-settings {
  grid-column: 1 / -1;
  justify-self: start;
  padding: 0;
  color: inherit;
  background: transparent;
  border: 0;
  text-decoration: underline;
  font: inherit;
  cursor: pointer;
}
@media (max-width: 720px) {
  .ch-consent { align-items: stretch; flex-direction: column; gap: 1rem; }
  .ch-consent-actions { display: grid; grid-template-columns: 1fr 1fr; }
  .ch-consent-actions button { min-width: 0; }
}
@media print { .ch-consent, .ch-consent-settings { display: none !important; } }
