.ptp-consent-banner {
  position: fixed;
  z-index: 10000;
  right: max(16px, env(safe-area-inset-right));
  bottom: max(16px, env(safe-area-inset-bottom));
  left: max(16px, env(safe-area-inset-left));
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 20px;
  align-items: center;
  max-width: 980px;
  margin-inline: auto;
  padding: 18px;
  border: 1px solid #c7d1df;
  border-radius: 8px;
  background: #fff;
  color: #172033;
  box-shadow: 0 16px 48px rgb(15 31 55 / 24%);
  font: 400 14px/1.45 Inter, Arial, sans-serif;
}
.ptp-consent-copy { min-width: 0; }
.ptp-consent-copy strong { display: block; margin-bottom: 4px; font-size: 16px; }
.ptp-consent-copy p { margin: 0; }
.ptp-consent-copy a { color: #075bd8; }
.ptp-consent-actions { display: grid; grid-template-columns: repeat(2, minmax(150px, 1fr)); gap: 8px; }
.ptp-consent-actions button {
  min-height: 44px;
  padding: 9px 14px;
  border: 1px solid #245fc7;
  border-radius: 6px;
  background: #fff;
  color: #17458f;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}
.ptp-consent-actions button:focus-visible { outline: 3px solid #ffbf47; outline-offset: 2px; }
.ptp-consent-settings { border: 0; padding: 0; background: transparent; color: inherit; font: inherit; text-decoration: underline; cursor: pointer; }
@media (max-width: 720px) {
  .ptp-consent-banner { grid-template-columns: 1fr; }
  .ptp-consent-actions { grid-template-columns: 1fr; }
}
