/* Exhibitions page */
.exhibitions {
  max-width: max-content;
  margin: 30px auto;
}
.exhibitions .item {
  display: flex;
  flex-flow: row nowrap;
  margin-bottom: 22px;
}
.exhibitions .item span.date {
  display: flex;
  align-self: flex-start;
  font-size: var(--font-size-8);
  color: var(--color-2);
  margin-right: 20px;
  margin-top: 1.7em;
}
.exhibitions .item a {
  font-size: var(--font-size-7);
  color: var(--color-2);
  text-decoration: none;
}
.exhibitions .item a[href] {
  color: var(--color-1);
}
.exhibitions .item a[href]:hover {
  text-decoration: underline;
  font-style: italic;
}

/* Exhibition page */
.exhibition {
  margin-top: 50px;
}
.exhibition h2 {
  font-size: var(--font-size-7);
  text-align: center;
  margin-bottom: 20px;
}
.exhibition h2 a {
  font-style: italic;
  text-decoration: none;
}
.exhibition h2 a:hover {
  text-decoration: underline;
}
.exhibition h4 {
  font-size: var(--font-size-6);
  color: var(--color-2);
  text-align: center;
  margin-bottom: 25px;
}
.exhibition h3.related-works {
  font-size: var(--font-size-2);
  color: var(--color-2);
  border-bottom: 1px solid var(--color-3);
  text-align: center;
  padding: 15px;
  margin-bottom: 20px;
  margin-top: 50px;
}