p.footpath {
  padding: 1em;
  border: .125em solid #bdbdbd;
  border-radius: 5px;
}

/* gallery styles */
.gallery {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-around;
}
.gallery a {
    border: 0;
    margin-bottom: .5em;
}
.gallery img {
    border: .125em solid #bdbdbd;
}

/* figure styles */
figure {
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 16px;
  margin: 24px 0;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  transition: all 0.2s ease;
}

@media (prefers-color-scheme: dark) {
  figure {
    border-color: #444;
    background-color: rgba(80, 80, 80, 0.4);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  }
}

/* needed for dark/night mode figcaption visibility */
body.night #baguetteBox-overlay .full-image figcaption {
  z-index:  1;
}
