.territory-explorer {
  position: relative;
  margin: 1rem 0 1.35rem;
  padding: clamp(1rem, 2vw, 1.35rem);
  overflow: hidden;
  border: 1px solid rgba(20, 63, 56, 0.14);
  border-radius: 1.2rem;
  background:
    radial-gradient(circle at 100% 0%, rgba(238, 173, 61, 0.22), transparent 36%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.9), rgba(238, 246, 236, 0.84));
  color: var(--ink, #143f38);
}

.territory-explorer__eyebrow {
  margin: 0 0 0.35rem;
  color: #bd513d;
  font-size: 0.69rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.territory-explorer__title {
  margin: 0;
  font-size: clamp(1.25rem, 3vw, 1.85rem);
  line-height: 1.08;
}

.territory-explorer__count {
  margin: 0.45rem 0 0;
  color: var(--ink-muted, #5d665e);
  font-size: 0.82rem;
}

.territory-explorer__list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.55rem;
  margin: 1rem 0;
  padding: 0;
  list-style: none;
}

.territory-explorer__item {
  display: flex;
  min-width: 0;
  align-items: center;
  justify-content: space-between;
  gap: 0.55rem;
  padding: 0.72rem 0.8rem;
  border: 1px solid rgba(20, 63, 56, 0.12);
  border-radius: 0.8rem;
  background: rgba(255, 255, 255, 0.72);
  font-size: 0.82rem;
  font-weight: 750;
}

.territory-explorer__item span {
  min-width: 0;
  overflow-wrap: anywhere;
}

.territory-explorer__item small {
  flex: 0 0 auto;
  padding: 0.2rem 0.38rem;
  border-radius: 999px;
  background: #f4b63f;
  color: #44310b;
  font-size: 0.58rem;
  font-weight: 850;
  text-transform: uppercase;
}

.territory-explorer__caution,
.territory-explorer__source {
  margin: 0;
  line-height: 1.45;
}

.territory-explorer__caution {
  font-size: 0.76rem;
  font-weight: 750;
}

.territory-explorer__source {
  margin-top: 0.3rem;
  color: var(--ink-muted, #5d665e);
  font-size: 0.68rem;
}

@media (max-width: 640px) {
  .territory-explorer__list {
    grid-template-columns: 1fr;
  }

  .territory-explorer__item {
    min-height: 2.75rem;
  }
}
