/* css/scout.css — P4-05. Scout proposal popup + pin accents.
   The pin itself (dashed amber ring, '?', no fill) is defined by
   css/pins.css (.atlas-pin--scout) and reused verbatim — colour alone is
   never the marker of speculation, the SHAPE is. This file styles only
   the popup and a subtle emphasis so a proposal reads "proposed" before
   a single word is read. Tokens only from styles.css. */

/* A faint warn-tinted halo behind the dashed dot: visible at arm's length
   in sunlight, still obviously not a filled/logged pin. */
.atlas-pin--scout .atlas-pin__dot {
  box-shadow:
    0 0 0 1.5px rgba(10, 16, 19, 0.55),
    0 0 0 6px color-mix(in srgb, var(--warn) 14%, transparent),
    0 1px 4px rgba(0, 0, 0, 0.45);
}
@supports not (box-shadow: 0 0 0 1px color-mix(in srgb, red 30%, transparent)) {
  .atlas-pin--scout .atlas-pin__dot {
    box-shadow: 0 0 0 1.5px rgba(10, 16, 19, 0.55), 0 0 0 6px rgba(255, 183, 3, 0.14);
  }
}

/* ---- popup chrome (same token treatment as the wreck popup) ---- */
.atlas-scout-popwrap .leaflet-popup-content-wrapper {
  background: var(--bg-raised);
  color: var(--text);
  border: 1px solid var(--warn);
  border-radius: var(--radius);
  font-family: var(--font);
}
.atlas-scout-popwrap .leaflet-popup-tip {
  background: var(--bg-raised);
  border: 1px solid var(--warn);
}

.atlas-scout-pop { font-size: 0.75rem; line-height: 1.5; }
.atlas-scout-pop p { margin: 0 0 0.35rem; }

/* The speculation banner comes FIRST and is unmissable. */
.atlas-scout-pop__banner {
  color: var(--warn);
  font-weight: 700;
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  border-bottom: 1px dashed var(--warn);
  padding-bottom: 0.3rem;
}

.atlas-scout-pop__name {
  font-weight: 700;
  font-size: 0.8125rem;
  color: var(--text);
}

.atlas-scout-pop__conf {
  font-weight: 600;
  font-size: 0.6875rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0 0.3rem;
  white-space: nowrap;
}
.atlas-scout-pop__conf--medium { color: var(--warn); border-color: var(--warn); }
.atlas-scout-pop__conf--low { color: var(--text-dim); }

.atlas-scout-pop__why { color: var(--text); }

.atlas-scout-pop__signals {
  margin: 0.25rem 0 0;
  padding: 0 0 0 1rem;
  color: var(--text-dim);
}
.atlas-scout-pop__signal { margin-bottom: 0.15rem; }
.atlas-scout-pop__signal-kind {
  font-family: var(--mono);
  font-size: 0.6875rem;
  color: var(--warn);
}
.atlas-scout-pop__source {
  font-family: var(--mono);
  font-size: 0.625rem;
  color: var(--text-dim);
  opacity: 0.8;
}
