/* events.html — exhibitions list */

.exhibitions-wrap {
  max-width: 720px;
  margin: 0 auto;
}

.exhibition-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.exhibition-item {
  padding: 20px 0;
  border-bottom: 1px solid var(--rule-light);
}

.exhibition-item:first-child {
  padding-top: 0;
}

.exhibition-item:last-child {
  border-bottom: none;
}

.exhibition-item time {
  display: block;
  font-size: var(--fs-small);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--cite-color);
  margin-bottom: 8px;
}

.exhibition-item h3 {
  font-family: var(--font-display);
  font-size: var(--fs-h3);
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--heading);
  margin: 0 0 8px;
}

.exhibition-meta {
  margin: 0 0 8px;
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  color: var(--text);
}

.exhibition-note {
  margin: 0;
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  color: var(--text-muted);
}

@media (max-width: 760px) {
  .exhibitions-wrap {
    padding: 0 4px;
  }
}
