/* ============================================================
   onepager.css — the handout panel itself.
   One page, plain language, print-friendly.
   ============================================================ */

#onepager {
  width: 100%;
  max-width: 560px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 8px;
  padding: 28px;
  box-shadow: 0 2px 10px rgba(43, 38, 32, 0.06);
  display: none;
}
#onepager.active { display: block; }

.op-loading {
  color: var(--color-muted);
  font-style: italic;
}

.op-headline {
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 18px;
  color: var(--color-text);
}
.op-acres {
  color: var(--color-accent);
}

.op-callouts {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 22px;
}
.op-callouts li {
  padding-left: 20px;
  position: relative;
  font-size: 0.98rem;
  line-height: 1.55;
}
.op-callouts li::before {
  content: '🍃';
  position: absolute;
  left: 0;
  top: 0;
}

.op-footer {
  font-size: 0.8rem;
  color: var(--color-muted);
  border-top: 1px solid var(--color-border);
  padding-top: 14px;
  line-height: 1.5;
}

@media print {
  header, #map-column, #map-search, #map-hint { display: none !important; }
  #app { display: block; height: auto; }
  #onepager-column { padding: 0; }
  #onepager {
    display: block !important;
    box-shadow: none;
    border: none;
    max-width: 100%;
  }
}
