.cc_9uzemnk2_wGF6p1lrwX .need-selection-popup--hidden {
  display: none;
}

.cc_9uzemnk2_wGF6p1lrwX .need-selection-popup__overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  background: var(--overlay-color, rgba(0, 0, 0, 0.5));
  backdrop-filter: blur(2px);
}

.cc_9uzemnk2_wGF6p1lrwX .need-selection-popup__modal {
  position: relative;
  width: var(--modal-width, 90%);
  max-width: var(--modal-max-width, 720px);
  max-height: calc(100vh - 32px);
  overflow-y: auto;
  padding: 32px 28px 28px;
  border-radius: var(--modal-radius, 16px);
  background: var(--modal-bg, #ffffff);
  box-shadow: var(--modal-shadow, 0 8px 32px rgba(0, 0, 0, 0.15));
}

.cc_9uzemnk2_wGF6p1lrwX .need-selection-popup__close {
  position: absolute;
  top: 16px;
  right: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: transparent;
  color: #666666;
  cursor: pointer;
  transition:
    background-color 0.2s ease,
    color 0.2s ease;
}

.cc_9uzemnk2_wGF6p1lrwX .need-selection-popup__close:hover {
  background: rgba(0, 0, 0, 0.06);
  color: #333333;
}

.cc_9uzemnk2_wGF6p1lrwX .need-selection-popup__close:focus-visible {
  outline: 2px solid #003da5;
  outline-offset: 2px;
}

.cc_9uzemnk2_wGF6p1lrwX .need-selection-popup__header {
  text-align: center;
  margin-bottom: 24px;
  padding-right: 24px;
}

.cc_9uzemnk2_wGF6p1lrwX .need-selection-popup__title {
  margin: 0 0 8px;
  font-family: var(--title-font, inherit);
  font-size: var(--title-size, 24px);
  font-weight: 700;
  color: var(--title-color, #003da5);
  line-height: 1.3;
}

.cc_9uzemnk2_wGF6p1lrwX .need-selection-popup__subtitle {
  margin: 0;
  font-size: var(--subtitle-size, 14px);
  color: var(--subtitle-color, #666666);
  line-height: 1.5;
}

.cc_9uzemnk2_wGF6p1lrwX .need-selection-popup__grid {
  display: grid;
  grid-template-columns: repeat(var(--grid-columns-mobile, 1), 1fr);
  gap: 12px;
  margin-bottom: 24px;
  max-height: 50dvh;
  overflow: auto;
}

@media (min-width: 640px) {
.cc_9uzemnk2_wGF6p1lrwX .need-selection-popup__grid {
    grid-template-columns: repeat(var(--grid-columns, 2), 1fr);
    gap: 14px;
  }
}

.cc_9uzemnk2_wGF6p1lrwX .need-selection-popup__card-slot {
  min-width: 0;
}

.cc_9uzemnk2_wGF6p1lrwX .need-selection-popup__footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.cc_9uzemnk2_wGF6p1lrwX .need-selection-popup__cta {
  width: 100%;
  max-width: 360px;
  padding: 14px 24px;
  font-size: 15px;
  font-weight: 600;
  text-align: center;
  /* Ensure links rendered as anchors don't show underline */
  text-decoration: none;
  color: var(--cta-color, #ffffff);
  background: var(--cta-bg, #003da5);
  border: var(--cta-border-width, 0) solid var(--cta-border-color, #003da5);
  border-radius: var(--cta-radius, 8px);
  cursor: pointer;
  transition:
    background-color 0.2s ease,
    color 0.2s ease,
    opacity 0.2s ease;
}

.cc_9uzemnk2_wGF6p1lrwX .need-selection-popup__cta:hover:not(:disabled) {
  background: var(--cta-hover-bg, #002d7a);
  color: var(--cta-hover-color, #ffffff);
}

/* Keep CTA anchor without underline on hover/focus */
.need-selection-popup__cta:hover,
.need-selection-popup__cta:focus,
.cc_9uzemnk2_wGF6p1lrwX .need-selection-popup__cta:focus-visible {
  text-decoration: none;
}

.cc_9uzemnk2_wGF6p1lrwX .need-selection-popup__cta:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.cc_9uzemnk2_wGF6p1lrwX .need-selection-popup__cta:focus-visible {
  outline: 2px solid var(--cta-bg, #003da5);
  outline-offset: 2px;
}

.cc_9uzemnk2_wGF6p1lrwX .need-selection-popup__secondary-link {
  font-size: 14px;
  color: var(--title-color, #003da5);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: opacity 0.2s ease;
}

.cc_9uzemnk2_wGF6p1lrwX .need-selection-popup__secondary-link:hover {
  opacity: 0.75;
}

@media (max-width: 639px) {
.cc_9uzemnk2_wGF6p1lrwX .need-selection-popup__modal {
    padding: 28px 20px 24px;
  }

.cc_9uzemnk2_wGF6p1lrwX .need-selection-popup__header {
    margin-bottom: 20px;
  }

.cc_9uzemnk2_wGF6p1lrwX .need-selection-popup__title {
    font-size: calc(var(--title-size, 24px) * 0.875);
  }
}
