/* Lady Nicole Editor-First v3 — canonical consent layer.
   Loaded globally by the single public asset owner. */
.ln13-consent[hidden],
.ln13-consent__modal[hidden],
.ln13-consent__banner[hidden] { display: none !important; }
.ln13-consent,
.ln13-consent * { box-sizing: border-box; }
.ln13-consent {
  position: fixed;
  inset: 0;
  z-index: 100000;
  color: #12344d;
  font-family: var(--ln-font-body, Inter, Arial, sans-serif);
  pointer-events: none;
}
.ln13-consent__banner {
  position: absolute;
  right: 16px;
  bottom: 16px;
  left: 16px;
  display: grid;
  grid-template-columns: minmax(0,1fr) auto;
  gap: 24px;
  align-items: center;
  width: min(1180px, calc(100% - 32px));
  margin: auto;
  padding: 20px;
  border: 1px solid rgba(0,62,107,.16);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 30px 90px rgba(0,42,72,.25);
  pointer-events: auto;
}
.ln13-consent__banner h2,
.ln13-consent__dialog h2 {
  margin: 0;
  color: #003e6b;
  font-size: clamp(20px,2vw,24px);
  font-weight: 760;
  line-height: 1.15;
}
.ln13-consent__banner p,
.ln13-consent__dialog > p {
  margin: 8px 0 0;
  color: #4b6b7f;
  font-size: 14px;
  line-height: 1.6;
}
.ln13-consent__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}
.ln13-consent .ln13-button {
  all: unset;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 17px;
  border: 1px solid #007fa9;
  border-radius: 999px;
  background: #007fa9;
  color: #fff;
  font: inherit;
  font-size: 13px;
  font-weight: 780;
  line-height: 1;
  cursor: pointer;
}
.ln13-consent .ln13-button.is-light {
  background: #fff;
  color: #005f83;
}
.ln13-consent .ln13-button:hover,
.ln13-consent .ln13-button:focus-visible {
  outline: 3px solid rgba(0,127,169,.2);
  outline-offset: 2px;
}
.ln13-consent__modal {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 16px;
  pointer-events: auto;
}
.ln13-consent__backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(0,31,54,.64);
  cursor: pointer;
}
.ln13-consent__dialog {
  position: relative;
  width: min(680px,100%);
  max-height: min(760px,calc(100vh - 32px));
  overflow: auto;
  padding: 24px;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 30px 100px rgba(0,0,0,.3);
}
.ln13-consent__header {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: flex-start;
}
.ln13-consent__close {
  all: unset;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #edf7fb;
  color: #003e6b;
  font-size: 25px;
  cursor: pointer;
}
.ln13-consent__choices {
  display: grid;
  gap: 11px;
  margin: 20px 0;
}
.ln13-consent__choices label {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  padding: 16px;
  border: 1px solid #d5e6ee;
  border-radius: 14px;
}
.ln13-consent__choices strong,
.ln13-consent__choices small { display: block; }
.ln13-consent__choices small {
  margin-top: 4px;
  color: #607d91;
}
.ln13-consent__choices input { width: 22px; height: 22px; }
html.ln13-consent-open,
body.ln13-consent-open { overflow: hidden; }
.ln13-consent-open .ln13-consent { pointer-events: auto; }
@media (max-width: 900px) {
  .ln13-consent__banner { grid-template-columns: 1fr; }
  .ln13-consent__actions { justify-content: flex-start; }
}
@media (max-width: 640px) {
  .ln13-consent__banner {
    right: 10px;
    bottom: 10px;
    left: 10px;
    width: auto;
    padding: 16px;
  }
  .ln13-consent__actions { display: grid; grid-template-columns: 1fr 1fr; }
  .ln13-consent__actions .ln13-button:last-child { grid-column: 1 / -1; }
  .ln13-consent .ln13-button { width: auto; }
  .ln13-consent__dialog { padding: 18px; border-radius: 16px; }
}
@media (prefers-reduced-motion: reduce) {
  .ln13-consent * { transition: none !important; animation: none !important; }
}
