/* Modal polityki prywatności (globalnie) */
.policy-modal-overlay{
  position:fixed; inset:0;
  background:rgba(0,0,0,.55);
  display:none;
  align-items:center;
  justify-content:center;
  /* Must be above cookie wall overlay */
  z-index:2147483647;
  padding:18px;
}
.policy-modal-overlay.is-open{ display:flex; }
.policy-modal{
  width:min(920px, 100%);
  height:min(86vh, 720px);
  background:#fff;
  border-radius:16px;
  box-shadow:0 20px 60px rgba(0,0,0,.30);
  overflow:hidden;
  display:flex;
  flex-direction:column;
}
.policy-modal__bar{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  padding:10px 12px;
  border-bottom:1px solid var(--border, #e5e7eb);
  background:#fafafa;
}
.policy-modal__title{
  font-weight:700;
  font-size:14px;
}
.policy-modal__close{
  border:1px solid var(--border, #e5e7eb);
  background:#fff;
  border-radius:12px;
  padding:8px 10px;
  cursor:pointer;
  font-weight:700;
}
.policy-modal__close:focus{ outline:3px solid rgba(20,138,59,.35); outline-offset:2px; }
.policy-modal__frame{
  width:100%;
  height:100%;
  border:0;
  background:#fff;
}
