/* Reference-style hero artwork is swapped at the final public style layer so
 * legacy Blade templates cannot leave the old purple illustration visible. */
.deal-desk-visual img{content:url('/brand/premium-global-network.svg')}

/* DealVorio shared pagination contract.
 * Loaded by both public and Admin layouts under a new filename so stale browser
 * caches cannot leave the paginator as an unstyled wall of links. */
.dv-pagination {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  width: 100%;
  min-width: 0;
  margin: 1.4rem 0 .5rem;
  padding: .8rem 0;
  font-size: .875rem;
  line-height: 1.2;
}

.dv-pagination__summary {
  flex: 0 0 auto;
  color: #64748b;
  font-weight: 650;
  white-space: nowrap;
}

.dv-pagination__links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: .35rem;
  flex-wrap: wrap;
  min-width: 0;
}

.dv-pagination__links > a,
.dv-pagination__links > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.35rem;
  min-height: 2.35rem;
  padding: .5rem .7rem;
  border: 1px solid #d7e0ee;
  border-radius: .7rem;
  background: #fff;
  color: #123b82;
  font-weight: 750;
  text-decoration: none;
  box-sizing: border-box;
}

.dv-pagination__links > a:hover,
.dv-pagination__links > a:focus-visible {
  border-color: #1f61cf;
  box-shadow: 0 0 0 3px rgba(31, 97, 207, .12);
  outline: none;
}

.dv-pagination__links .is-current {
  border-color: #123b82;
  background: #123b82;
  color: #fff;
}

.dv-pagination__links .is-disabled {
  color: #94a3b8;
  background: #f8fafc;
  cursor: not-allowed;
}

.dv-pagination__links .is-gap {
  min-width: auto;
  padding-inline: .35rem;
  border-color: transparent;
  background: transparent;
  color: #64748b;
}

.admin-body .dv-pagination {
  border-top: 1px solid #e2e8f0;
  margin-top: 1rem;
}

.admin-body .dv-pagination__links > a,
.admin-body .dv-pagination__links > span {
  box-shadow: 0 1px 2px rgba(15, 23, 42, .04);
}

@media (max-width: 760px) {
  .dv-pagination {
    align-items: stretch;
    flex-direction: column;
    gap: .7rem;
  }

  .dv-pagination__summary {
    white-space: normal;
  }

  .dv-pagination__links {
    justify-content: flex-start;
    flex-wrap: nowrap;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scrollbar-width: thin;
    padding: .15rem .1rem .45rem;
  }

  .dv-pagination__links > a,
  .dv-pagination__links > span {
    flex: 0 0 auto;
  }
}
