/* =============================================================
   Park Watch — Program pages (Mobile Pantry, Free Shuttle)
   Reuses home2.css tokens + graffiti.css section shells.
============================================================= */

/* Address / spec panels — two-column split */
.pg-address {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 1fr);
  gap: clamp(24px, 4vw, 48px);
  align-items: start;
}
.pg-address-copy h2 { margin: 6px 0 14px; }

.pg-address-card,
.pg-spec-card {
  background: #fff;
  border: 1px solid var(--ink-12);
  border-radius: 20px;
  padding: 28px 26px;
  box-shadow: 0 24px 60px -34px rgba(34,34,34,0.28);
}
.pg-address-label,
.pg-spec-badge {
  display: inline-block;
  background: var(--red);
  color: #fff;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.14em;
  padding: 6px 10px;
  border-radius: 4px;
  margin-bottom: 14px;
  text-transform: uppercase;
}
.pg-address-value {
  font-style: normal;
  font-family: 'Inter', sans-serif;
  font-size: 15.5px;
  line-height: 1.55;
  color: var(--ink);
  margin: 0 0 18px;
}
.pg-address-value strong {
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 17px;
  display: block;
  margin-bottom: 4px;
}

.pg-hours {
  border-top: 1px solid var(--ink-12);
  border-bottom: 1px solid var(--ink-12);
  padding: 14px 0;
  margin-bottom: 18px;
  display: grid; gap: 8px;
}
.pg-hours-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-family: 'Inter', sans-serif;
  font-size: 14.5px;
}
.pg-hours-row span:first-child {
  font-weight: 600;
  color: var(--ink);
}
.pg-hours-row span:last-child {
  color: var(--ink-99);
  font-variant-numeric: tabular-nums;
}

/* Spec card — dl grid for shuttle specs */
.pg-spec-grid {
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
}
.pg-spec-grid > div {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px dashed var(--ink-12);
}
.pg-spec-grid > div:last-child { border-bottom: 0; }
.pg-spec-grid dt {
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 12.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-99);
  margin: 0;
}
.pg-spec-grid dd {
  margin: 0;
  font-family: 'Inter', sans-serif;
  font-size: 14.5px;
  color: var(--ink);
  line-height: 1.5;
}

/* Slight image position tweaks per program hero */
.pg-hero-pantry .gr-hero-bg img { object-position: 50% 45%; }
.pg-hero-shuttle .gr-hero-bg img { object-position: 50% 40%; }
.pg-hero-litter .gr-hero-bg img { object-position: 50% 20%; }
.pg-hero-watch .gr-hero-bg img { object-position: 50% 50%; }
.pg-hero-about .gr-hero-bg img { object-position: 50% 65%; }
.pg-hero-homewatch .gr-hero-bg img { object-position: 50% 45%; }
.pg-hero-volunteer .gr-hero-bg img { object-position: 50% 25%; }
.pg-hero-faqs .gr-hero-bg img { object-position: 50% 50%; }

.hw-section .hw-eyebrow { margin-bottom: 12px; }

/* Nav on shuttle/pantry pages: the extra program links need to fit */
@media (min-width: 900px) and (max-width: 1200px) {
  .pw2-links { gap: clamp(12px, 1.4vw, 22px); font-size: 14px; }
}

/* Mobile: same tightening as other program pages */
@media (max-width: 800px) {
  .pg-address { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .pg-address-card,
  .pg-spec-card { padding: 22px 20px; }
  .pg-spec-grid > div { grid-template-columns: 110px 1fr; }
}
