/**
 * Breadcrumb (component)
 * Event component used in
 * - views-view-list--events.html.twig
 */

.articles {
  position: relative;
  padding-bottom: 4rem;
}
.articles::before {
  position: absolute;
  content: '';
  height: 100%;
  max-height: 160px;
  left: 0;
  right: 0;
  top: 0;
  background-color: var(--color-primary--6);
  z-index: -1;
}
.articles-wrapper {
  margin-bottom: 4rem;
}
