.adbn-np-root {
  --adbn-np-width: 390px;
  --adbn-np-mobile-width: 340px;
  --adbn-np-offset-x: 24px;
  --adbn-np-offset-y: 24px;
  --adbn-np-mobile-offset-x: 12px;
  --adbn-np-mobile-offset-y: 12px;
  --adbn-np-bg: #fff;
  --adbn-np-text: #111827;
  --adbn-np-muted: #667085;
  --adbn-np-accent: #d71920;
  --adbn-np-border: #e6e8ec;
  --adbn-np-radius: 16px;
  position: fixed;
  z-index: 99998;
  width: min(var(--adbn-np-width), calc(100vw - (var(--adbn-np-offset-x) * 2)));
  max-width: calc(100vw - 16px);
  pointer-events: none;
  box-sizing: border-box;
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.4;
}

.adbn-np-root[data-position="top-left"] { top: var(--adbn-np-offset-y); left: var(--adbn-np-offset-x); }
.adbn-np-root[data-position="top-center"] { top: var(--adbn-np-offset-y); left: 50%; transform: translateX(-50%); }
.adbn-np-root[data-position="top-right"] { top: var(--adbn-np-offset-y); right: var(--adbn-np-offset-x); }
.adbn-np-root[data-position="bottom-left"] { bottom: var(--adbn-np-offset-y); left: var(--adbn-np-offset-x); }
.adbn-np-root[data-position="bottom-center"] { bottom: var(--adbn-np-offset-y); left: 50%; transform: translateX(-50%); }
.adbn-np-root[data-position="bottom-right"] { right: var(--adbn-np-offset-x); bottom: var(--adbn-np-offset-y); }

.adbn-np-root.adbn-np-inline,
.adbn-np-root[data-position="inline"] {
  position: relative;
  inset: auto;
  transform: none;
  width: min(100%, var(--adbn-np-width));
  max-width: 100%;
  z-index: 1;
  margin: 0 auto;
}

.adbn-np-card {
  position: relative;
  width: 100%;
  color: var(--adbn-np-text);
  background: var(--adbn-np-bg);
  border: 1px solid var(--adbn-np-border);
  border-radius: var(--adbn-np-radius);
  box-shadow: 0 22px 55px rgba(16, 24, 40, 0.16), 0 4px 14px rgba(16, 24, 40, 0.08);
  overflow: hidden;
  opacity: 0;
  transform: translateY(18px) scale(.975);
  transition: opacity .34s ease, transform .42s cubic-bezier(.2,.8,.2,1);
  pointer-events: auto;
  box-sizing: border-box;
  isolation: isolate;
}

.adbn-np-root[data-position^="top"] .adbn-np-card { transform: translateY(-18px) scale(.975); }
.adbn-np-root[data-position="inline"] .adbn-np-card,
.adbn-np-root.adbn-np-inline .adbn-np-card { transform: translateY(8px); }
.adbn-np-card.is-visible { opacity: 1; transform: translateY(0) scale(1); }
.adbn-np-card.is-leaving { opacity: 0; transform: translateY(10px) scale(.98); }
.adbn-np-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: var(--adbn-np-accent);
  z-index: 2;
}

.adbn-np-link {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr) 24px;
  gap: 13px;
  align-items: center;
  min-height: 94px;
  padding: 11px 33px 11px 13px;
  color: inherit !important;
  text-decoration: none !important;
  outline: none;
  box-sizing: border-box;
}

.adbn-np-link:focus-visible { box-shadow: inset 0 0 0 3px color-mix(in srgb, var(--adbn-np-accent) 28%, transparent); }

.adbn-np-thumb,
.adbn-np-brandmark {
  display: block;
  width: 72px;
  height: 72px;
  border-radius: calc(var(--adbn-np-radius) * .68);
  overflow: hidden;
  background: #f2f4f7;
}
.adbn-np-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .45s ease; }
.adbn-np-link:hover .adbn-np-thumb img { transform: scale(1.055); }
.adbn-np-brandmark {
  display: grid;
  place-items: center;
  color: #fff;
  background: linear-gradient(145deg, var(--adbn-np-accent), #8b0f16);
  font-size: 28px;
  font-weight: 850;
}

.adbn-np-copy { display: block; min-width: 0; }
.adbn-np-label {
  display: flex;
  align-items: center;
  gap: 7px;
  margin: 0 0 4px;
  color: var(--adbn-np-accent);
  font-size: 10px;
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: .075em;
  text-transform: uppercase;
}
.adbn-np-pulse { position: relative; width: 7px; height: 7px; flex: 0 0 7px; border-radius: 99px; background: currentColor; }
.adbn-np-pulse::after { content: ""; position: absolute; inset: -3px; border: 1px solid currentColor; border-radius: inherit; animation: adbn-np-pulse 1.6s ease-out infinite; }
.adbn-np-title {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  margin: 0;
  color: var(--adbn-np-text);
  font-size: 14px;
  line-height: 1.34;
  font-weight: 750;
  letter-spacing: -.012em;
}
.adbn-np-meta { display: block; overflow: hidden; margin-top: 5px; color: var(--adbn-np-muted); font-size: 10.5px; line-height: 1.25; text-overflow: ellipsis; white-space: nowrap; }
.adbn-np-meta b { color: var(--adbn-np-text); font-weight: 700; }
.adbn-np-arrow { color: var(--adbn-np-accent); font-size: 19px; font-weight: 700; transition: transform .2s ease; }
.adbn-np-link:hover .adbn-np-arrow { transform: translateX(3px); }
.adbn-np-close {
  position: absolute;
  top: 7px;
  right: 7px;
  z-index: 4;
  display: grid;
  place-items: center;
  width: 23px;
  height: 23px;
  min-width: 0;
  min-height: 0;
  padding: 0;
  border: 0;
  border-radius: 99px;
  color: var(--adbn-np-muted);
  background: color-mix(in srgb, var(--adbn-np-muted) 10%, transparent);
  box-shadow: none;
  font: 400 18px/1 Arial, sans-serif;
  cursor: pointer;
  appearance: none;
}
.adbn-np-close:hover,
.adbn-np-close:focus-visible { color: #fff; background: var(--adbn-np-accent); outline: none; }
.adbn-np-elementor-placeholder { display: flex; align-items: center; gap: 10px; min-height: 72px; padding: 16px; border: 1px dashed #b8bec8; border-radius: 8px; background: #f8f9fb; color: #364152; }
.adbn-np-elementor-placeholder span { color: #d71920; font-size: 22px; }
.adbn-np-elementor-placeholder small { display: block; margin-left: auto; color: #697386; }

@keyframes adbn-np-pulse { from { opacity: .7; transform: scale(.7); } to { opacity: 0; transform: scale(1.8); } }

@media (min-width: 768px) {
  .adbn-np-root[data-show-desktop="0"] { display: none !important; }
}

@media (max-width: 767px) {
  .adbn-np-root[data-show-mobile="0"] { display: none !important; }
  .adbn-np-root:not(.adbn-np-inline) {
    width: min(var(--adbn-np-mobile-width), calc(100vw - (var(--adbn-np-mobile-offset-x) * 2)));
  }
  .adbn-np-root[data-mobile-position="top-left"] { inset: var(--adbn-np-mobile-offset-y) auto auto var(--adbn-np-mobile-offset-x); transform: none; }
  .adbn-np-root[data-mobile-position="top-center"] { inset: var(--adbn-np-mobile-offset-y) auto auto 50%; transform: translateX(-50%); }
  .adbn-np-root[data-mobile-position="top-right"] { inset: var(--adbn-np-mobile-offset-y) var(--adbn-np-mobile-offset-x) auto auto; transform: none; }
  .adbn-np-root[data-mobile-position="bottom-left"] { inset: auto auto var(--adbn-np-mobile-offset-y) var(--adbn-np-mobile-offset-x); transform: none; }
  .adbn-np-root[data-mobile-position="bottom-center"] { inset: auto auto var(--adbn-np-mobile-offset-y) 50%; transform: translateX(-50%); }
  .adbn-np-root[data-mobile-position="bottom-right"] { inset: auto var(--adbn-np-mobile-offset-x) var(--adbn-np-mobile-offset-y) auto; transform: none; }
  .adbn-np-root[data-position="inline"], .adbn-np-root.adbn-np-inline { inset: auto; transform: none; width: 100%; }
  .adbn-np-link { grid-template-columns: 58px minmax(0, 1fr) 17px; gap: 10px; min-height: 79px; padding: 9px 30px 9px 11px; }
  .adbn-np-thumb, .adbn-np-brandmark { width: 58px; height: 58px; }
  .adbn-np-brandmark { font-size: 23px; }
  .adbn-np-label { margin-bottom: 3px; font-size: 8.5px; }
  .adbn-np-title { font-size: 12.5px; line-height: 1.3; }
  .adbn-np-meta { margin-top: 3px; font-size: 9px; }
  .adbn-np-arrow { font-size: 16px; }
  .adbn-np-close { top: 5px; right: 5px; width: 21px; height: 21px; font-size: 16px; }
}

@media (prefers-reduced-motion: reduce) {
  .adbn-np-card, .adbn-np-thumb img, .adbn-np-arrow { transition: none !important; }
  .adbn-np-pulse::after { animation: none !important; }
}

