#awPageSummary {
  display: grid;
  display: -ms-grid;
  grid-template-columns: 1fr 1fr;
  -ms-grid-columns: 1fr 1fr;
  gap: 25px;
  margin-bottom: 0;
  padding: 25px;
  padding-bottom: 0 !important;
  background: var(--background);
  border-bottom: none;
}

#awPageSummary div {
  display: grid;
  display: -ms-grid;
  grid-template-rows: auto 1fr;
  -ms-grid-rows: auto 1fr;
  height: 100%;
  background: var(--secondary);
  border: 1px solid var(--border);
}

#awPageSummary div h2 {
  grid-row: 1;
  background: var(--secondary);
  color: var(--primary);
  padding: 15px 15px;
  text-transform: capitalize;
  text-align: center;
  font-size: 1.4rem;
  font-weight: 500;
  text-transform: uppercase;
  border-bottom: 1px solid var(--border);}

#awPageSummary div p {
  display: flex;
  align-items: start;
  grid-row: 2;
  background: var(--primary);
  color: var(--secondary);
  text-align: justify;
  /* font-size: 1.2rem; */
  line-height: 1.5rem;
  padding: 15px 25px; }

#pageTitle {
  /* border-bottom: none; */
}

#awContainer {
  display: grid;
  display: -ms-grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  -ms-grid-columns: repeat(auto-fit, minmax(400px, 1fr));
  grid-auto-rows: 375px;
  -ms-grid-rows: 375px;
  padding: 25px;
  gap: 25px;
}

#awContainer .awImg {
  position: relative;
  display: grid;
  display: -ms-grid;
  grid-template-rows: 305px 70px;
  -ms-grid-rows: 305px 70px;
  border: 1px solid var(--border);
  overflow: hidden;
}

#awContainer .awImg img {
  width: 100%;
  height: 305px;
  background: var(--primary);
  -o-object-fit: cover;
  object-fit: cover; }

.awFigCaption {
  display: grid;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--secondary);
  color: var(--primary);
  padding: 2px;
  position: relative;
}

.awFigCaption::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0;
  background-color: var(--accent);
  transition: 0.33s;
}

.awImg:hover .awFigCaption::before {
  width: 5px;
}

.awFigCaption.twoRowCaption {
  display: flex;
  flex-direction: column;
  align-items: space-between;
  justify-content: center;
  text-align: center;
  background: var(--secondary);
  color: var(--primary); }

.awH2Captions {
  font-size: 1.1rem;
}

.awFigCaption.twoRowCaption .awInsideSpan {
  color: var(--midlightgrey);
  text-transform: uppercase;
  font-size: 0.75rem; }

.awImg:hover .awFigCaption {
  transition: 0.33s;
  background: var(--darkblue);
}