.mt-consent {
  position: fixed; z-index: 99998; left: 16px; right: 16px; bottom: 16px;
  display: flex; flex-wrap: wrap; gap: 14px; align-items: center; justify-content: space-between;
  max-width: 980px; margin: auto; padding: 16px 20px; color: #172033; background: #fff;
  border: 1px solid #dce4f0; border-radius: 14px; box-shadow: 0 16px 46px rgba(0, 32, 77, .2);
  font: 14px/1.5 Inter, system-ui, sans-serif;
}
.mt-consent__text { flex: 1 1 360px; color: #526078; }
.mt-consent__text strong { color: #10264c; }
.mt-consent__text a { color: #086ad8; text-decoration: underline; }
.mt-consent__actions { display: flex; flex-wrap: wrap; gap: 8px; justify-content: flex-end; }
.mt-button {
  border: 1px solid #cbd6e5; border-radius: 9px; padding: 9px 14px; cursor: pointer;
  color: #17315e; background: #fff; font: inherit; font-weight: 600;
}
.mt-button:hover, .mt-button:focus-visible { border-color: #086ad8; outline: none; }
.mt-button--primary { color: #fff; background: #086ad8; border-color: #086ad8; }
.mt-button--primary:hover { background: #0758b5; }
.mt-consent-modal {
  position: fixed; z-index: 99999; inset: 0; display: grid; place-items: center;
  padding: 16px; background: rgba(9, 24, 52, .62); font: 14px/1.45 Inter, system-ui, sans-serif;
}
.mt-consent-modal__card {
  width: min(540px, 100%); padding: 24px; color: #172033; background: #fff;
  border-radius: 16px; box-shadow: 0 24px 70px rgba(0, 0, 0, .28);
}
.mt-consent-modal h2 { margin: 0 0 14px; font-size: 21px; }
.mt-consent-modal label {
  display: flex; gap: 10px; padding: 11px 0; border-bottom: 1px solid #e8edf4; cursor: pointer;
}
.mt-consent-modal input { margin-top: 4px; accent-color: #086ad8; }
@media (max-width: 640px) {
  .mt-consent { left: 8px; right: 8px; bottom: 8px; padding: 14px; }
  .mt-consent__actions { width: 100%; }
  .mt-button { flex: 1 1 auto; }
}

