.page-node-type-grants #page-title div {
  display: none;
}

.indiv-grant-view * {
  box-sizing: border-box;
}

.indiv-grant-view .grant-header {
  display: grid;
  width: 100%;
  height: 100%;
  grid-template-areas: "thumbnail info";
  grid-template-columns: 2fr 6fr;
  grid-template-rows: min-content;
  grid-gap: 0.5em;
}

.indiv-grant-view .grant-image {
  grid-area: thumbnail;
  height: auto;
  width: auto;
  justify-self: center;
  align-self: top;
  margin: 2px;
}

.indiv-grant-view .grant-text {
  grid-area: info;
  height: 100%;
  align-self: center;
}

.indiv-grant-view .grant-title {
  font-size: 2.5rem;
  padding-bottom: 0.5rem;
  line-height: 1.2;
}


@media only screen and (max-width: 480px) {

.indiv-grant-view .grant-header {
  grid-template-columns: 0% 100%;
}

}
