/* Shell template components — story blocks, audio bar, map+timeline, explore bar */

.breadcrumb-bar {
  border-bottom: 1px solid var(--line);
  background: var(--paper-2);
}

/* Thin audio bar — same height band as breadcrumbs */
.audio-bar {
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}
.audio-bar__inner {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px 0;
  min-height: 44px;
}
.audio-bar__play {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--paper-2);
  color: var(--green);
  cursor: pointer;
  flex: none;
  font-size: 11px;
}
.audio-bar__meta { flex: 1; min-width: 0; }
.audio-bar__title {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
}
.audio-bar__sub {
  font-size: 12px;
  color: var(--ink-50);
  margin-top: 2px;
}
.audio-bar__link {
  font-size: 12px;
  font-weight: 600;
  color: var(--green);
  text-decoration: none;
  white-space: nowrap;
}

/* Story blocks — each story is its own card linking to /stories/ */
.story-blocks {
  display: grid;
  gap: 16px;
  margin-top: 20px;
}
.story-block {
  display: block;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--paper);
  padding: 24px;
  color: inherit;
  text-decoration: none;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.story-block:hover {
  border-color: var(--brass);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}
.story-block__eyebrow {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brass-2);
  margin-bottom: 8px;
}
.story-block__title {
  font-family: var(--serif);
  font-size: 22px;
  line-height: 1.2;
  margin-bottom: 8px;
}
.story-block__lead {
  font-size: 14px;
  color: var(--ink-70);
  line-height: 1.55;
  margin: 0 0 12px;
}
.story-block__go {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--green);
}

/* Map + timeline combined */
.map-timeline-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 20px;
}
@media (max-width: 768px) {
  .map-timeline-grid { grid-template-columns: 1fr; }
}
.map-timeline-grid__label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-50);
  margin: 0 0 12px;
}
.map-timeline-embed .tl-timeline { background: var(--paper) !important; }
.map-timeline-embed .tl-menubar { background: var(--ink) !important; }

/* Explore bar — right aligned */
.explore-bar--align-right,
.explore-bar.explore-bar--align-right {
  justify-content: flex-end;
}
.explore-bar--align-right .explore-bar__label {
  text-align: right;
  width: auto;
  margin-right: auto;
  margin-bottom: 0;
}
.explore-bar--align-right .explore-bar__actions {
  margin-left: auto;
}
