/* about.css — Street Art NSW About page */

.about-page {
  max-width: 800px;
  margin: 100px auto 0;
  padding: 20px 20px 60px;
}

.about-hero h1 {
  font-size: 2.2rem;
  font-weight: 800;
  margin: 0 0 8px;
  color: var(--text);
}

.about-pill-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 20px 0 0;
}
.about-pill {
  display: inline-flex;
  align-items: center;
  padding: 8px 18px;
  border-radius: 999px;
  border: 1.5px solid var(--border, #ddd);
  background: var(--card, #fff);
  color: var(--text);
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.about-pill:hover {
  border-color: var(--brand);
  color: var(--brand);
}
.about-pill.active {
  background: var(--brand);
  border-color: var(--brand);
  color: #fff;
}

/* Dark, theme-matched scrollbar for the travel map's stops sidebar. */
#travelmap-stops-list {
  scrollbar-width: thin; scrollbar-color: var(--border, #444) transparent;
}
#travelmap-stops-list::-webkit-scrollbar { width: 8px; }
#travelmap-stops-list::-webkit-scrollbar-track { background: transparent; }
#travelmap-stops-list::-webkit-scrollbar-thumb { background: var(--border, #444); border-radius: 4px; }
#travelmap-stops-list::-webkit-scrollbar-thumb:hover { background: var(--muted, #888); }

.about-section {
  margin-top: 40px;
}
.about-section h2 {
  font-size: 1.1rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--brand);
  margin: 0 0 14px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border);
}

.about-body p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text);
  margin: 0 0 16px;
}
.about-body p:last-child { margin-bottom: 0; }
.about-loading, .about-empty { color: var(--muted); font-style: italic; }

.travelmap-layout {
  display: flex;
  gap: 0;
  align-items: flex-start;
  flex-wrap: wrap;
}
.travelmap-map-col {
  flex: 1;
  min-width: 0;
}
.travelmap-sidebar-col {
  flex: 0 0 310px;
}
#about-map {
  height: 600px;
  border-radius: 12px 0 0 12px;
}
#travelmap-stops-list {
  height: 600px;
  overflow-y: auto;
  border: 1px solid var(--border, #333);
  border-left: none;
  border-radius: 0 12px 12px 0;
}

@media (max-width: 640px) {
  .about-page { margin-top: 80px; padding: 16px 16px 40px; }
  .about-hero h1 { font-size: 1.6rem; }
}

@media (max-width: 768px) {
  .travelmap-layout { flex-direction: column; align-items: stretch; }
  .travelmap-sidebar-col { flex-basis: auto; width: 100%; }
  #about-map {
    height: 360px;
    border-radius: 12px 12px 0 0;
  }
  #travelmap-stops-list {
    height: 400px;
    border-left: 1px solid var(--border, #333);
    border-top: none;
    border-radius: 0 0 12px 12px;
  }
}