p {
  text-indent: 1.5rem;
  text-align: justify;
  font-stretch: semi-expanded;
  margin-bottom: 0;
}
p.dropCap:first-letter {
  font-family: "Georgia", serif;
  font-size: 5rem;
  font-style: italic;
  float: left;
  initial-letter: 2;
  color: var(--brand-accent);
  padding: 4px 3px 0 0;
  line-height: 100%;
}

dd {
  font-size: var(--font-size-sm);
  font-weight: 400;
  line-height: 130%;
  text-indent: 1.5rem;
  margin: 0.5rem 0;
}

#page_Heading {
  color: var(--brand-accent);
  font-family: "Georgia", sans-serif;
  font-size: clamp(2rem, 4vw + 1rem, 4rem);
  line-height: 100%;
  font-style: normal;
}

.panel-heading {
  margin-top: 0;
}

#anno_Ment:empty,
#come_Soon:empty,
#what_New:empty {
  display: none;
}

#anno_Ment::before {
  content: "Announcement...";
  display: block;
  color: var(--base-black);
  font-family: var(--font-family-serif);
  font-size: var(--font-size-h4);
  font-weight: 700;
  padding-bottom: 1rem;
  padding-bottom: 0;
}

#come_Soon::before {
  content: "Coming Soon...";
  display: block;
  color: var(--base-black);
  font-family: var(--font-family-serif);
  font-size: var(--font-size-h4);
  font-weight: 700;
  padding-bottom: 1rem;
  padding-bottom: 0;
}

#what_New::before {
  content: "What's New...";
  display: block;
  color: var(--base-black);
  font-family: var(--font-family-serif);
  font-size: var(--font-size-h4);
  font-weight: 700;
  padding-bottom: 1rem;
  padding-bottom: 0;
}

#anno_Ment p,
#come_Soon p,
#what_New p {
  margin: 0 0 0 1rem;
}

#anno_Ment dt,
#come_Soon dt,
#what_New dt {
  margin: 0.5rem 0 0 1rem;
}

.right {
  margin: 0.5rem 0 0.5rem 1rem;
}

#page_Wrapper {
  grid-template-areas: "col-l" "col-r" "col-w";
}

#page_Col-Left {
  grid-area: col-l;
  grid-column: col 1/span 5;
  grid-row: 1;
  height: -moz-fit-content;
  height: fit-content;
}

#page_Col-Right {
  grid-area: col-r;
  grid-column: col 6/span 5;
  grid-row: 1;
  height: -moz-fit-content;
  height: fit-content;
}

#page_Col-WhatsNew {
  grid-area: col-w;
  grid-column: col 11/span 2;
  grid-row: 1;
  height: -moz-fit-content;
  height: fit-content;
}

@media screen and (min-width: 992px) and (max-width: 1399.98px) {
  #page_Col-Left {
    grid-column: col 1/span 5;
  }
  #page_Col-Right {
    grid-column: col 6/span 5;
  }
  #page_Col-WhatsNew {
    grid-column: col 11/span 2;
  }
}
@media screen and (min-width: 772px) and (max-width: 991.98px) {
  #page_Col-Left {
    grid-column: col 1/span 5;
  }
  #page_Col-Right {
    grid-column: col 6/span 5;
  }
  #page_Col-WhatsNew {
    grid-column: col 11/span 2;
  }
}
@media screen and (min-width: 574px) and (max-width: 771.98px) {
  #page_Col-Left {
    grid-column: col 1/span 6;
  }
  #page_Col-Right {
    grid-column: col 7/span 6;
  }
  #page_Col-WhatsNew {
    display: none;
  }
}
@media screen and (min-width: 0px) and (max-width: 573.98px) {
  #page_Col-Left {
    grid-column: col 1/span 12;
    grid-row: 1;
  }
  #page_Col-Right {
    grid-column: col 1/span 12;
    grid-row: 2;
  }
  #page_Col-WhatsNew {
    display: none;
  }
}