.section--chapter {
  display: grid;
  grid-template-columns: minmax(20px, 1fr) minmax(0, 749px) minmax(20px, 1fr);
  position: relative;
}
.section--chapter .section--chapter--content {
  grid-column: 2;
  grid-row: 1;
  z-index: 3;
  width: 100%;
  padding: 0;
  display: grid;
  grid-template-columns: 100%;
  gap: 20px;
  padding-block: 0;
  justify-content: center;
  min-height: 280px;
  grid-template-rows: auto 1fr;
}
.section--chapter--asset--chapter {
  max-width: fit-content;
  background-color: rgba(255,255,255,.35);
  padding: 5px 20px;
  justify-self: center;
  font-family: "Open Sans Condensed", sans-serif;
  line-height: 1.2;
  font-weight: 700;
  font-size: 20px;
  margin: 0;
  grid-row: 1;
  grid-column: 1;s  
}
.section--chapter--asset--title {
  padding-inline: 0;
  padding-block: 20px;
  margin: 0;
  font-family: "Open Sans Condensed", sans-serif;
  line-height: 1.25em;
  font-weight: 700;
  font-size: 36px;
  align-self: center;
  justify-self: center;
  grid-row: 1 / -1;
  grid-column: 1;
}
.section--chapter .overlay {
  grid-column: 1 / -1;
  grid-row: 1;
  z-index: 2;
}
.section--chapter .background-photo {
  position: relative;
  overflow: clip;
  grid-column: 1 / -1;
  grid-row: 1;
  z-index: 1;
}
.section--chapter .background-photo img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}
