/* Maps room layout only — uses SoR tokens from shadcn.css. No palette/font fork. */
.maps-layout {
  display: grid;
  gap: 1.25rem;
  margin-top: 1rem;
}
@media (min-width: 900px) {
  .maps-layout {
    grid-template-columns: 1fr 1.15fr;
    align-items: start;
  }
}
.atlas-frame-wrap {
  border: 1px solid hsl(var(--border));
  border-radius: var(--radius);
  overflow: hidden;
  background: hsl(var(--muted) / 0.35);
  min-height: 360px;
}
.atlas-frame {
  width: 100%;
  height: 420px;
  border: 0;
  display: block;
  background: hsl(var(--background));
}
.frame-fallback {
  font-size: 0.8rem;
  color: hsl(var(--muted-foreground));
  margin: 0;
  padding: 0.5rem 0.75rem;
  border-top: 1px solid hsl(var(--border));
}
.source-list,
.stub-list {
  margin: 0.75rem 0 1rem;
  padding-left: 1.1rem;
  color: hsl(var(--muted-foreground));
  font-size: 0.92rem;
}
.source-list li,
.stub-list li {
  margin-bottom: 0.35rem;
}
.stub-list strong {
  color: hsl(var(--foreground));
  font-weight: 600;
}
.maps-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0.75rem 0;
}
.caveat {
  font-size: 0.82rem;
  color: hsl(var(--muted-foreground));
  margin: 0.5rem 0 0;
}
.site-footer {
  margin: 2rem 0 1rem;
  font-size: 0.85rem;
  color: hsl(var(--muted-foreground));
}
.site-footer p { margin: 0 0 0.35rem; }
.section { margin-top: 1.5rem; }
.section-title { font-size: 1.05rem; font-weight: 600; margin: 0 0 0.35rem; }
.section-desc { color: hsl(var(--muted-foreground)); font-size: 0.875rem; margin: 0 0 1rem; }

/* Dish atlases hub on Maps home */
.dish-hub {
  display: grid;
  gap: 1.25rem;
  margin-top: 0.25rem;
}
@media (min-width: 720px) {
  .dish-hub {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }
}
.dish-entry {
  border: 1px solid hsl(var(--border));
  border-radius: var(--radius);
  padding: 1rem 1.1rem;
  background: hsl(var(--background));
}
.dish-entry__title {
  margin: 0 0 0.4rem;
  font-size: 1rem;
  font-weight: 600;
}
.dish-entry__title a {
  color: inherit;
  text-decoration: none;
}
.dish-entry__title a:hover { text-decoration: underline; }
.dish-entry__lede {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.45;
  color: hsl(var(--foreground));
}
.dish-entry__meta {
  margin: 0.5rem 0 0;
  font-size: 0.8rem;
  color: hsl(var(--muted-foreground));
  line-height: 1.4;
}
