.highlighted .block {
  position: relative;
  margin: 0;
  padding: 1px 0;
} 

.top-banner-grid-section {
  display: grid;
  grid-template-areas:
    "image-1"
    "title-1"
    "body-1"
    "cta-1";

  font-family: "Noto Serif", serif;
  font-optical-sizing: auto;
}

.top-banner-grid-image-div {
  grid-area: image-1;
}
.top-banner-grid-image-div .image-field {
  width: 100%;
  height: 100%; 
  object-fit: cover;
}
.top-banner-grid-overlay-div {
  grid-area: title-1;
  /* background: #3A5C71; */
  background: #223e4f;
  opacity: .78;
}
.top-banner-grid-content-div {
  grid-area: title-1;
  z-index: 2;
  margin-left: 0.9em;
  margin-top: 0.2em;
  margin-bottom: 0.5em;
}

.banner-h1-text {
  font-size: calc(18pt + 0.15vw);
  letter-spacing: 0.05em;
  font-weight: bolder;
  text-transform: none;
  color: var(--secondary-color-light);

}
.banner-body-text {
  font-size: calc(12pt + 0.15vw);
  margin-top: 0.01em;
  color: var(--secondary-color-light);
  text-decoration: none;
}

.top-banner-grid-btn-div {
  grid-area: cta-1;
  align-self: center;
  justify-self: center;
  margin-bottom: 0.9em;
  z-index: 2;
}
.top-banner-grid-btn-div a {
  font-size: calc(12pt + 0.15vw);
  margin-right: 1em;
  text-align: center;
  -webkit-border-radius: 15px;
  border-radius: 15px;
  text-decoration: none;
  background: var(--secondary-color-light);
  color: var(--primary);
  padding: 8px;

  &:link {
    text-decoration: none;
  }
  &:visited {
    text-decoration: none;
  }
}

@media (min-width: 40em) {
.top-banner-grid-section {
  display: grid;
  grid-template-areas:
     'image-1 image-2 image-3'
     'title-1 title-2 title-3'
     'body-1 body-2 body-3'
     'cta-1 cta-2 cta-3';
  }
  .top-banner-grid-btn-div {
    grid-area: cta-1 / cta-3;
    align-self: center;
    justify-self: end;
    z-index: 2;
  }
  .top-banner-grid-image-div {
      grid-area: image-1 / image-1 / cta-3 / cta-3;
  }
  .top-banner-grid-image-div .image-field {
    max-width: 100%; 
    object-fit: cover;
  }
  .top-banner-grid-overlay-div {
    grid-area: cta-1 / cta-1 / cta-3 / cta-3;
    object-fit: cover;

  }
  .top-banner-grid-content-div {
    grid-area: cta-1 / cta-1 / cta-1 / cta-2;
    z-index: 2;
  }
}