/* Imported from mockup; header/nav/demo/.fiche-page layout stripped (MockupLayout provides them). */
:root {
  --max-w: 1160px;
}
.breadcrumb {
  background: var(--surface-primary-background);
  padding: 0.55rem 4rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: "Source Sans 3", sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.05em;
  flex-wrap: wrap;
}
.breadcrumb a {
  color: rgba(245, 240, 232, 0.6);
  text-decoration: none;
  transition: color 0.2s;
}
.breadcrumb-sep {
  color: rgba(245, 240, 232, 0.35);
  font-size: 0.72rem;
}
.breadcrumb-current {
  color: var(--secondary-color);
}
.addr-header {
  background: var(--surface-primary-background);
  position: relative;
  overflow: hidden;
}
.addr-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 3px,
    rgba(201, 150, 12, 0.035) 3px,
    rgba(201, 150, 12, 0.035) 4px
  );
  pointer-events: none;
}
.addr-header-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 2.5rem 4rem 2rem;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2.2rem;
  align-items: start;
  position: relative;
  z-index: 1;
}
.addr-number-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 90px;
  min-height: 90px;
  padding: 1rem 0.75rem;
  border: 1.5px solid rgba(201, 150, 12, 0.3);
  background: rgba(201, 150, 12, 0.05);
}
.addr-number-main {
  font-family: "Playfair Display", serif;
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--secondary-color);
  line-height: 1;
}
.addr-number-label {
  font-family: "Source Sans 3", sans-serif;
  font-size: 0.5rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(245, 240, 232, 0.45);
  margin-top: 0.35rem;
}
.addr-number-block.unknown .addr-number-main {
  font-size: 1.6rem;
  letter-spacing: 0.02em;
}
.addr-header.promoted {
  min-height: 340px;
  display: flex;
  align-items: flex-end;
  /* Fallback dark ground so the light header text stays legible even when no cover
     image is set yet (notices ship before the images session). Dérivé du THÈME
     (var(--primary-color)) pour s'harmoniser avec la charte (bordeaux par défaut), au lieu
     d'un bleu en dur qui jurait avec la nav. Une couverture + son overlay se posent dessus. */
  background: linear-gradient(135deg, var(--primary-color, #5a1824) 0%, #140a10 100%);
}
.addr-header.promoted .addr-header-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: sepia(30%) contrast(1.1) brightness(0.6);
}
.addr-header.promoted .addr-header-overlay {
  position: absolute;
  inset: 0;
  /* Teinte charte (noir tirant bordeaux, cf. le fond de repli #140a10) — le bleu nuit
     initial jurait avec la nav dès que les couvertures Parimage sont arrivées. */
  background: linear-gradient(
    to top,
    rgba(20, 10, 16, 0.96) 0%,
    rgba(20, 10, 16, 0.7) 45%,
    rgba(20, 10, 16, 0.25) 100%
  );
}
.addr-header.promoted .addr-header-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-bottom: 2.5rem;
}
.addr-meta {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.addr-type-badge {
  font-family: "Cinzel", serif;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(245, 240, 232, 0.55);
  position: relative;
  padding-left: 1rem;
}
.addr-type-badge::before {
  content: "◆";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-size: 0.5rem;
}
.addr-type-badge.promoted-badge {
  color: var(--secondary-color-strong);
}
.addr-type-badge.promoted-badge::before {
  color: var(--secondary-color);
}
.addr-street-name {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.5rem, 2.8vw, 2.3rem);
  font-weight: 700;
  color: var(--background-color);
  line-height: 1.15;
}
.addr-venue-name {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.8rem, 3.2vw, 2.8rem);
  font-weight: 900;
  color: var(--background-color);
  line-height: 1.1;
}
.addr-venue-aka {
  font-family: "EB Garamond", serif;
  font-size: 1rem;
  font-style: italic;
  color: rgba(245, 240, 232, 0.55);
  margin-top: 0.15rem;
}
.addr-old-name {
  font-family: "EB Garamond", serif;
  font-size: 0.95rem;
  font-style: italic;
  color: rgba(245, 240, 232, 0.55);
  margin-top: 0.15rem;
}
.addr-vitals {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.2rem;
  margin-top: 0.5rem;
  font-family: "Source Sans 3", sans-serif;
  font-size: 0.72rem;
  color: rgba(245, 240, 232, 0.6);
}
.addr-vital {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}
.addr-vital-icon {
  color: var(--secondary-color);
  font-size: 0.75rem;
}
.addr-vital strong {
  color: rgba(245, 240, 232, 0.85);
  font-weight: 600;
}
.addr-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-top: 0.7rem;
}
.ftag {
  font-family: "Source Sans 3", sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 0.22rem 0.55rem;
  text-decoration: none;
  transition: all 0.18s;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  color: rgba(245, 240, 232, 0.85);
}
.ftag-arrond {
  background: rgba(26, 61, 34, 0.4);
  border: 1px solid rgba(26, 61, 34, 0.55);
}
.ftag-arrond:hover {
  background: rgba(26, 61, 34, 0.6);
}
.ftag-quartier {
  background: rgba(42, 94, 56, 0.3);
  border: 1px solid rgba(42, 94, 56, 0.45);
}
.ftag-quartier:hover {
  background: rgba(42, 94, 56, 0.5);
}
.ftag-lieu {
  background: rgba(58, 53, 48, 0.3);
  border: 1px solid rgba(58, 53, 48, 0.45);
}
.ftag-lieu:hover {
  background: rgba(58, 53, 48, 0.5);
}
.ftag-voie { background: rgba(92,82,70,0.22); }
.ftag-voie:hover { background: rgba(92,82,70,0.38); }
.ftag-epoque {
  background: rgba(26, 42, 66, 0.45);
  border: 1px solid rgba(26, 42, 66, 0.6);
}
.ftag-epoque:hover {
  background: rgba(26, 42, 66, 0.65);
}
.ftag-theme {
  background: rgba(107, 58, 16, 0.35);
  border: 1px solid rgba(107, 58, 16, 0.5);
}
.ftag-theme:hover {
  background: rgba(107, 58, 16, 0.55);
}
.fiche-body {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 2.5rem 4rem 3rem;
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 3.5rem;
  align-items: start;
}
.fiche-main {
  min-width: 0;
}
.venue-intro {
  margin-bottom: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--surface-primary-foreground-muted);
}
.venue-intro-text {
  font-size: 1.12rem;
  line-height: 1.88;
  color: var(--text-color);
}
.venue-intro-text p {
  margin-bottom: 1.2rem;
}
.venue-intro-text p:last-child {
  margin-bottom: 0;
}
.venue-intro-text a {
  color: var(--primary-color);
  text-decoration: none;
  border-bottom: 1px solid rgba(184, 40, 28, 0.25);
}
.venue-intro-text a:hover {
  border-color: var(--primary-color);
}
.venue-intro-figure {
  float: right;
  width: 260px;
  margin: 0 0 1.5rem 2rem;
}
.venue-intro-figure img {
  width: 100%;
  display: block;
  filter: sepia(20%) contrast(1.05);
  border: 1px solid var(--surface-primary-foreground-muted);
}
.venue-intro-figure figcaption {
  font-family: "Source Sans 3", sans-serif;
  font-size: 0.72rem;
  color: var(--text-color-subtle);
  line-height: 1.4;
  padding: 0.55rem 0 0.4rem;
}
.venue-intro-figure .fig-credit {
  display: block;
  font-size: 0.72rem;
  color: var(--text-color-subtle);
  margin-top: 0.15rem;
  font-style: italic;
}
.venue-names {
  margin-top: 1rem;
  padding: 0.85rem 1rem;
  background: var(--surface-primary-foreground);
  border-left: 3px solid var(--secondary-color);
}
.venue-names-title {
  font-family: "Source Sans 3", sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-color-subtle);
  margin-bottom: 0.5rem;
}
.venue-names-list {
  list-style: none;
}
.venue-names-list li {
  display: flex;
  align-items: baseline;
  gap: 0.65rem;
  padding: 0.3rem 0;
  font-family: "EB Garamond", serif;
  font-size: 0.92rem;
  line-height: 1.4;
  color: var(--text-color);
  border-bottom: 1px dotted var(--surface-primary-foreground-muted);
}
.venue-names-list li:last-child {
  border-bottom: none;
}
.venue-name-date {
  font-family: "Source Sans 3", sans-serif;
  font-size: 0.72rem;
  color: var(--secondary-color);
  font-weight: 600;
  min-width: 80px;
  flex-shrink: 0;
}
.venue-name-current {
  font-weight: 500;
  color: var(--primary-color);
}
.toponymie {
  margin-bottom: 2.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--surface-primary-foreground-muted);
}
.section-title {
  font-family: "Cinzel", serif;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--primary-color);
  margin-bottom: 1.1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.section-title::after {
  content: "";
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, var(--surface-primary-foreground-muted), transparent);
}
.topo-timeline {
  position: relative;
  padding-left: 1.5rem;
}
.topo-timeline::before {
  content: "";
  position: absolute;
  left: 5px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: linear-gradient(to bottom, var(--secondary-color), var(--surface-primary-foreground-muted));
}
.topo-entry {
  position: relative;
  padding: 0.5rem 0 0.5rem 1rem;
}
.topo-entry::before {
  content: "";
  position: absolute;
  left: -1.5rem;
  top: 0.75rem;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--background-color);
  border: 2px solid var(--secondary-color);
}
.topo-entry.current::before {
  background: var(--primary-color);
  border-color: var(--primary-color);
}
.topo-date {
  font-family: "Source Sans 3", sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--secondary-color);
  letter-spacing: 0.03em;
}
.topo-name {
  font-family: "EB Garamond", serif;
  font-size: 1rem;
  font-style: italic;
  color: var(--text-color);
  margin-top: 0.1rem;
}
.topo-name.current-name {
  font-style: normal;
  font-weight: 500;
  color: var(--primary-color);
}
.topo-note {
  font-family: "Source Sans 3", sans-serif;
  font-size: 0.72rem;
  color: var(--text-color-subtle);
  line-height: 1.4;
  margin-top: 0.2rem;
}
.topo-source {
  font-family: "Source Sans 3", sans-serif;
  font-size: 0.72rem;
  color: var(--text-color-subtle);
  font-style: italic;
  margin-top: 0.1rem;
}
.event-list-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25rem;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.event-count {
  font-family: "Source Sans 3", sans-serif;
  font-size: 0.72rem;
  color: var(--text-color-subtle);
  letter-spacing: 0.03em;
}
.event-count strong {
  color: var(--surface-primary-background);
}
.sort-btn {
  font-family: "Source Sans 3", sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-color-subtle);
  padding: 0.3rem 0.7rem;
  border: 1px solid var(--surface-primary-foreground-muted);
  background: var(--background-color);
  cursor: pointer;
  transition: all 0.18s;
}
.sort-btn:hover {
  border-color: var(--surface-primary-foreground-strong);
  color: var(--surface-primary-background);
}
.event-row {
  display: block;
  text-decoration: none;
  color: var(--text-color);
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--surface-primary-foreground-muted);
  transition: background 0.15s;
}
.event-row:first-of-type {
  border-top: 1px solid var(--surface-primary-foreground-muted);
}
.event-row:hover {
  background: var(--background-color-muted);
  margin: 0 -0.75rem;
  padding-left: 0.75rem;
  padding-right: 0.75rem;
}
.event-row-header {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  margin-bottom: 0.35rem;
}
.event-row-date {
  font-family: "Playfair Display", serif;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--secondary-color);
  flex-shrink: 0;
  min-width: 100px;
}
.event-row-addr {
  font-family: "Source Sans 3", sans-serif;
  font-size: 0.72rem;
  color: var(--primary-color);
  margin-left: auto;
  flex-shrink: 0;
}
.event-row-addr .addr-pin {
  margin-right: 0.2rem;
}
.event-row-lieu {
  font-family: "EB Garamond", serif;
  font-size: 0.88rem;
  font-style: italic;
  color: var(--text-color-muted);
  margin-bottom: 0.2rem;
}
.event-row-title {
  font-family: "Playfair Display", serif;
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--surface-primary-background);
  line-height: 1.25;
}
.event-row-excerpt {
  font-family: "EB Garamond", serif;
  font-size: 0.95rem;
  color: var(--text-color);
  line-height: 1.6;
  margin-top: 0.4rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.event-row-histaddr {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 0.4rem;
  padding: 0.25rem 0.6rem;
  background: rgba(201, 150, 12, 0.08);
  border: 1px solid rgba(201, 150, 12, 0.15);
  font-family: "Source Sans 3", sans-serif;
  font-size: 0.72rem;
  color: var(--text-color-muted);
  letter-spacing: 0.02em;
}
.event-row-histaddr .hist-icon {
  color: var(--secondary-color);
  font-size: 0.7rem;
}
.event-row-people {
  margin-top: 0.5rem;
  font-family: "Source Sans 3", sans-serif;
  font-size: 0.78rem;
  color: var(--text-color-muted);
}
.event-row-people-label {
  color: var(--text-color-subtle);
  font-size: 0.72rem;
  margin-right: 0.3rem;
}
.event-row-people a {
  color: var(--primary-color);
  text-decoration: none;
  border-bottom: 1px solid rgba(184, 40, 28, 0.2);
  transition: border-color 0.2s;
}
.event-row-people a:hover {
  border-color: var(--primary-color);
}
.event-row-people-sep {
  color: var(--surface-primary-foreground-strong);
  margin: 0 0.25rem;
}
.event-row-readmore {
  font-family: "Source Sans 3", sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-color-subtle);
  margin-top: 0.5rem;
  transition: color 0.2s;
}
.event-row:hover .event-row-readmore {
  color: var(--primary-color);
}
.event-row-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem;
  margin-top: 0.65rem;
}
.ev-tag {
  font-family: "Source Sans 3", sans-serif;
  font-size: 11px;
  height: 22px;
  line-height: 22px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0 0.5rem;
  text-decoration: none;
  display: inline-block;
  box-sizing: border-box;
  transition: opacity 0.18s;
}
.ev-tag:hover {
  opacity: 0.8;
}
.ev-tag.epoque {
  background: var(--tag-epoque);
  color: rgba(245, 240, 232, 0.85);
}
.ev-tag.theme {
  background: var(--tag-theme);
  color: rgba(245, 240, 232, 0.85);
}
.ev-tag.quartier {
  background: var(--tag-quartier);
  color: rgba(245, 240, 232, 0.85);
}
.ev-tag.lieu {
  background: var(--tag-lieu);
  color: rgba(245, 240, 232, 0.85);
}
.aujourdhui {
  margin-top: 2rem;
  padding: 1.2rem 1.3rem;
  background: var(--surface-primary-foreground);
  border-left: 3px solid var(--primary-color);
}
.aujourdhui-title {
  font-family: "Source Sans 3", sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--primary-color);
  margin-bottom: 0.55rem;
  font-weight: 600;
}
.aujourdhui-text {
  font-family: "EB Garamond", serif;
  font-size: 0.95rem;
  color: var(--text-color);
  line-height: 1.6;
}
.aujourdhui-text a {
  color: var(--primary-color);
  text-decoration: none;
  border-bottom: 1px solid rgba(184, 40, 28, 0.25);
}
.fiche-sidebar {
  position: sticky;
  top: 126px;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.sidebar-block {
  background: var(--background-color);
  border: 1px solid var(--surface-primary-foreground-muted);
  border-top: 3px solid var(--secondary-color);
  padding: 1.1rem;
}
.sidebar-block-title {
  font-family: "Cinzel", serif;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-color-subtle);
  margin-bottom: 0.85rem;
  padding-bottom: 0.55rem;
  border-bottom: 1px solid var(--surface-primary-foreground-muted);
}
.sidebar-map {
  border: 1px solid var(--surface-primary-foreground-muted);
  overflow: hidden;
}
.sidebar-map-canvas {
  width: 100%;
  height: 200px;
  background: #0d1829;
  position: relative;
  overflow: hidden;
}
.sidebar-map-canvas svg {
  width: 100%;
  height: 100%;
}
.sidebar-map-pin {
  position: absolute;
  transform: translate(-50%, -50%);
  cursor: pointer;
  z-index: 2;
}
.sidebar-map-pin-dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--primary-color);
  border: 3px solid rgba(245, 240, 232, 0.8);
  animation: pinPulse 2.8s ease-in-out infinite;
}
@keyframes pinPulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(184, 40, 28, 0.35);
  }
  50% {
    box-shadow: 0 0 0 10px rgba(184, 40, 28, 0);
  }
}
.sidebar-map-label {
  background: var(--surface-primary-background);
  border: 1px solid rgba(201, 150, 12, 0.3);
  color: var(--background-color);
  font-family: "Source Sans 3", sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.05em;
  padding: 0.35rem 0.65rem;
  text-align: center;
}
.sidebar-map-actions {
  display: flex;
  border-top: 1px solid var(--surface-primary-foreground-muted);
}
.sidebar-map-action {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 0.5rem;
  background: var(--background-color-muted);
  font-family: "Source Sans 3", sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-color-muted);
  cursor: pointer;
  transition:
    background 0.2s,
    color 0.2s;
  text-decoration: none;
  border: none;
}
.sidebar-map-action + .sidebar-map-action {
  border-left: 1px solid var(--surface-primary-foreground-muted);
}
.sidebar-map-action:hover {
  background: var(--surface-primary-foreground);
  color: var(--surface-primary-background);
}
.sidebar-map-action.active {
  background: var(--surface-primary-background);
  color: var(--secondary-color);
}
.map-era-bar {
  display: flex;
  border-top: 1px solid var(--surface-primary-foreground-muted);
}
.map-era-label {
  display: flex;
  align-items: center;
  padding: 0 0.6rem;
  font-family: "Source Sans 3", sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-color-subtle);
  background: var(--background-color-muted);
  border-right: 1px solid var(--surface-primary-foreground-muted);
  flex-shrink: 0;
}
.map-era-btn {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.1rem;
  padding: 0.45rem 0.3rem;
  background: var(--background-color-muted);
  border: none;
  font-family: "Source Sans 3", sans-serif;
  cursor: pointer;
  transition:
    background 0.2s,
    color 0.2s;
}
.map-era-btn + .map-era-btn {
  border-left: 1px solid var(--surface-primary-foreground-muted);
}
.map-era-btn:hover {
  background: var(--surface-primary-foreground);
}
.map-era-btn.active {
  background: var(--surface-primary-background);
}
.map-era-btn .era-year {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--text-color-muted);
}
.map-era-btn.active .era-year {
  color: var(--secondary-color);
}
.map-era-btn .era-name {
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-color-subtle);
  line-height: 1;
}
.map-era-btn.active .era-name {
  color: rgba(245, 240, 232, 0.55);
}
.map-overlay-indicator {
  padding: 0.35rem 0.65rem;
  background: var(--surface-primary-background);
  font-family: "Source Sans 3", sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  color: rgba(245, 240, 232, 0.5);
  text-align: center;
  border-top: 1px solid rgba(201, 150, 12, 0.15);
  display: none;
}
.map-overlay-indicator.visible {
  display: block;
}
.map-overlay-indicator strong {
  color: var(--secondary-color);
  font-weight: 600;
}
.sidebar-list {
  list-style: none;
  display: flex;
  flex-direction: column;
}
.sidebar-list li {
  border-bottom: 1px solid var(--surface-primary-foreground-muted);
}
.sidebar-list li:last-child {
  border-bottom: none;
}
.sidebar-list a {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  text-decoration: none;
  padding: 0.55rem 0;
  font-family: "Source Sans 3", sans-serif;
  font-size: 0.76rem;
  color: var(--surface-primary-background);
  transition: color 0.2s;
  line-height: 1.3;
}
.sidebar-list a:hover {
  color: var(--primary-color);
}
.sidebar-list-num {
  font-family: "Playfair Display", serif;
  font-size: 0.72rem;
  color: var(--secondary-color);
  font-weight: 700;
  flex-shrink: 0;
  min-width: 32px;
}
.sidebar-people {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.sidebar-person {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  text-decoration: none;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--surface-primary-foreground-muted);
  transition: background 0.15s;
}
.sidebar-person:last-child {
  border-bottom: none;
}
.sidebar-person:hover {
  background: var(--background-color-muted);
  margin: 0 -0.5rem;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}
.sidebar-person-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--surface-primary-foreground);
  border: 1px solid var(--surface-primary-foreground-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Cinzel", serif;
  font-size: 0.72rem;
  color: var(--text-color-subtle);
  flex-shrink: 0;
  overflow: hidden;
}
.sidebar-person-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: sepia(20%);
}
.sidebar-person-info {
  flex: 1;
  min-width: 0;
}
.sidebar-person-name {
  font-family: "Source Sans 3", sans-serif;
  font-size: 0.76rem;
  color: var(--surface-primary-background);
  font-weight: 600;
  line-height: 1.2;
}
.sidebar-person-role {
  font-family: "Source Sans 3", sans-serif;
  font-size: 0.72rem;
  color: var(--text-color-subtle);
  line-height: 1.2;
}
.sidebar-person-count {
  font-family: "Source Sans 3", sans-serif;
  font-size: 0.72rem;
  color: var(--text-color-subtle);
  flex-shrink: 0;
}
.random-fiche {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  padding: 0.8rem 1rem;
  background: var(--surface-primary-foreground);
  border: 1px solid var(--surface-primary-foreground-strong);
  transition: background 0.2s;
}
.random-fiche:hover {
  background: var(--surface-primary-foreground-muted);
}
.random-fiche-icon {
  font-size: 1.1rem;
}
.random-fiche-text {
  font-family: "Source Sans 3", sans-serif;
  font-size: 0.72rem;
  color: var(--text-color-muted);
  line-height: 1.3;
}
.random-fiche-text strong {
  display: block;
  color: var(--surface-primary-background);
  margin-bottom: 0.1rem;
  font-size: 0.72rem;
}
.fiche-nav {
  background: var(--surface-primary-background);
  border-top: 1px solid rgba(201, 150, 12, 0.12);
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.fiche-nav-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.1rem 4rem;
  text-decoration: none;
  transition: background 0.18s;
}
.fiche-nav-item:hover {
  background: rgba(201, 150, 12, 0.05);
}
.fiche-nav-item + .fiche-nav-item {
  border-left: 1px solid rgba(201, 150, 12, 0.12);
  justify-content: flex-end;
  text-align: right;
}
.fiche-nav-dir {
  font-family: "Source Sans 3", sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-color-subtle);
  display: block;
  margin-bottom: 0.2rem;
}
.fiche-nav-title {
  font-family: "Playfair Display", serif;
  font-size: 0.88rem;
  color: var(--background-color);
  display: block;
  line-height: 1.3;
}
.fiche-nav-arrow {
  font-size: 1.1rem;
  color: var(--secondary-color);
  flex-shrink: 0;
}
@media (max-width: 900px) {
  .fiche-body {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .fiche-sidebar {
    position: static;
  }
  .addr-header-inner {
    grid-template-columns: auto 1fr;
    gap: 1.2rem;
    padding: 1.5rem 1.5rem 1.2rem;
  }
  .fiche-body {
    padding: 1.5rem;
  }
  .breadcrumb {
    padding: 0.55rem 1.5rem;
  }
  .venue-intro-figure {
    float: none;
    width: 100%;
    margin: 0 0 1rem;
  }
  .fiche-nav-item {
    padding: 1rem 1.5rem;
  }
  nav {
    display: none;
  }
}
@media (max-width: 600px) {
  .addr-header-inner {
    grid-template-columns: 1fr;
  }
  .addr-number-block {
    align-self: flex-start;
    flex-direction: row;
    gap: 0.75rem;
    min-height: auto;
    padding: 0.6rem 1rem;
  }
  .addr-number-main {
    font-size: 2rem;
  }
  .event-row-header {
    flex-direction: column;
    gap: 0.2rem;
  }
  .event-row-date {
    min-width: auto;
  }
  .event-row-addr {
    margin-left: 0;
  }
  .fiche-nav {
    grid-template-columns: 1fr;
  }
  .fiche-nav-item + .fiche-nav-item {
    border-left: none;
    border-top: 1px solid rgba(201, 150, 12, 0.12);
    justify-content: flex-start;
    text-align: left;
  }
}
