.archive-illustration figure {
  display: block;
  margin: 1rem auto;
  text-align: center;
}
.archive-illustration img {
  max-width: 100%;
  height: auto;
}
.archive-illustration figcaption {
  font-style: italic;
  color: #666;
  margin-top: 0.5rem;
}

.archive-illustration hr,
.archive-grid hr{
	margin: 30px 0;
	height: 2px;
	background: var(--tertiary);
	border: 0;
}

nav.breadcrumbs {
  margin: 30px 0;                 /* space above and below the breadcrumb bar */
  padding: 8px 12px;              /* small breathing room inside */
  border-top: 2px solid var(--tertiary);
  border-bottom: 2px solid var(--tertiary);
  background: transparent;        /* stays neutral with your theme */
  display: block;                 /* ensures consistent box behavior */
}

.archive-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 30px 0;
}

.archive-item {
  display: flex;
  align-items: center;
  text-decoration: none;
  border-bottom: 1px solid var(--tertiary);
  padding-bottom: 10px;
  transition: background 0.2s ease;
}

.archive-item:hover {
  background: rgba(255, 255, 255, 0.03);
}

.archive-thumb {
  object-fit: cover;
  margin-right: 15px;
  border-radius: 4px;
  flex-shrink: 0;
  border: 1px solid var(--tertiary);
}


.archive-info {
  flex: 1;
}

.archive-title {
  font-weight: 500;
  color: var(--primary);
  font-size: 1rem;
  line-height: 1.3;
}

.archive-title:hover {
  text-decoration: underline;
}


/* --- Breadcrumb appearance --- */
.breadcrumbs {
  font-size: 0.85em;
  color: var(--secondary);
  margin-bottom: 1.2rem;
  letter-spacing: 0.01em;
}

.breadcrumbs a {
  color: inherit;
  text-decoration: none;
  opacity: 0.8;
}

.breadcrumbs a:hover {
  text-decoration: underline;
  opacity: 1;
}

.crumb-sep {
  margin: 0 0.3em;
  opacity: 0.4;
}

.crumb-current {
  color: var(--secondary);
  opacity: 0.6;
  font-weight: normal;   /* Removes “double title” boldness */
}

/* Make breadcrumbs visually lighter than the <h1> */
.archive-illustration .breadcrumbs {
  font-weight: 400;
  line-height: 1.4;
  transform: translateY(-0.25rem);
}
