/* WO-350 isolated location-page gear styles — do not import into global site CSS */
/* WO-394 journal chrome: companion file location-journal.css (linked by renderer) */
.loc-gear-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}
.loc-gear-card {
  border: 1px solid #e2e8f0;
  border-radius: 0.75rem;
  padding: 0.85rem;
  background: #fff;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.loc-gear-thumb {
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f8fafc;
  border-radius: 0.5rem;
  overflow: hidden;
}
.loc-gear-thumb img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
.loc-gear-name {
  font-size: 0.95rem;
  font-weight: 800;
  color: #1e3a8a;
  line-height: 1.3;
}
.loc-gear-relevance {
  font-size: 0.8rem;
  color: #475569;
  line-height: 1.35;
}
.loc-gear-disclosure {
  font-size: 0.7rem;
  color: #64748b;
}
.loc-gear-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: auto;
}
.loc-gear-btn {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.35rem 0.65rem;
  border-radius: 0.35rem;
  background: #b45309;
  color: #fff;
  text-decoration: none;
}
.loc-gear-btn-secondary {
  background: #1e40af;
}
.loc-gear-section h2 {
  margin: 0;
}
