.chapter-homepage {
  display: grid;
  grid-template-columns: 5fr 2fr;
  grid-template-areas: "content menu";
}

#nationalContent {
  grid-area: menu;
}

#chapterContent {
  grid-area: content;
  padding: 2rem;
}

.chapterPrimeFeature img {
  /* width: 100%;
  object-fit: cover; */
  display: block;
  max-width: 700px;
  margin: 0 auto 40px;
}

.primeFeature--textBlock {
  display: flex;
  justify-content: center;
  align-items: center;
}

.primeFeature--textBlock p {
  width: 70%;
  margin: 0 2rem 0 1rem;
}

.chapterFeature {
  display: flex;
}

.chapterFeature .featureText {
  display: flex;
  flex-direction: column;
  justify-content: stretch;
  width: 65%;
  padding: 0 2rem;
}

.chapterFeature .featureImage {
  width: 50%;
  height: 100%;
}

.chapterFeature.reversed .featureImage {
  width: 40%;
  height: 100%;
  object-fit: cover;
  order: -1;
}

.chapterHome .card--type2 {
  position: static;
}


/* CHAPTER SPECIFIC MEDIA QUERIES */
@media only screen and (max-width: 850px) {
  .primeFeature--textBlock p {
    width: 100%;
    margin: 0;
  }

  .chapterFeature {
    flex-direction: column;
  }

  .chapterFeature .featureText {
    align-items: center;
    width: 100%;
    padding: 0 1rem;
  }

  .chapterFeature .featureImage, .chapterFeature.reversed .featureImage {
    width: unset;
    max-width: 100%;
    align-self: center;
    order: -1;
    margin-bottom: 2rem;
  }
}

@media only screen and (max-width: 749px) {
  .chapter-homepage {
    display: flex;
    flex-direction: column;
  }

  .chapterFeature .featureImage, .chapterFeature.reversed .featureImage {
    width: unset;
  }
}