.Alert.Alert--primary p, .Alert.Alert--secondary p {
    margin-block-start: 0;
    margin-block-end: 0;
}
.Alert--primary.blue {
    background: var(--blue);
}
@media (max-width: calc(64em - .001px)) {
    .Alert--secondary .Alert__close {
        right:calc(1.25rem + var(--gutter))
    }
}
.Subnav__list>li ul>li>a {
    color: var(--navy);
}
.Subnav__active > a:first-of-type {
    color: var(--blue) !important;
    font-weight: 800;
}
.side-nav-active {
    font-weight: 600;
}
.wysiwyg .alignleft, .wysiwyg .alignright{
     display:table;
     float:none;
}
 @media (width >= 32em){
    .wysiwyg  .alignleft{
         margin-right:2rem !important;
         float:left;
    }
}
 @media (width >= 32em){
    .wysiwyg  .alignright{
         margin-left:2rem;
         float:right 
    }
}
.wysiwyg  .aligncenter{
     display:table;
     margin-inline:auto;
     text-align:center 
}
.wysiwyg figure>figcaption {
     display:table-caption;
     caption-side:bottom; 
}
@media (min-width: 48em) {
.VisualRouter.grid--2 {
    grid-template-columns: repeat(2, minmax(var(--grid-min), 1fr));
}
}
.text-stat span {
    white-space: pre;  
} 
/*Additional Column Styling*/
.wysiwyg .columns{
  display: grid;
  grid-template-columns: 100%;
  gap: var(--gutter, 1.5rem);
  width: 100%;
  max-width: 100%;
}
.wysiwyg .columns > *{
  min-width: 0;
}
@media (min-width: 48em){
  .wysiwyg .columns{
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }
}
.wysiwyg .columns img,
.wysiwyg .columns svg,
.wysiwyg .columns video,
.wysiwyg .columns iframe{
  max-width: 100%;
  height: auto;
}
.wysiwyg .columns p,
.wysiwyg .columns li,
.wysiwyg .columns a,
.wysiwyg .columns code,
.wysiwyg .columns pre{
  overflow-wrap: anywhere;
  word-break: break-word;
}
.wysiwyg .columns pre{
  max-width: 100%;
  overflow-x: auto;
}
.wysiwyg .columns .table-wrap{
  max-width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.wysiwyg .columns .table-wrap table,
.wysiwyg .columns table{
  max-width: 100%;
}
.wysiwyg.wysiwyg-fullwidth {
    display: block;
    width: 100vw;
    max-width: 100vw;
    margin: 0 calc(50% - 50vw);
    padding: 0;
    overflow-x: clip;
}

@media (min-width: 64em) {
    .RouterList .Router {
        grid-template-columns: 1fr 1fr;
        grid-auto-flow: column;
        column-gap: var(--gutter);
        margin-bottom: 1rem;
    }
}
@media (min-width: 80em) {
  .Header__mega .Header__group ul.chevrons {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 0 var(--gap);
  }

  .Header__mega .Header__group ul.chevrons > li {
    min-width: 0;
  }
}
.Hero__format {
    font-weight: 400;
}
@media (max-width: calc(64em - 0.001px)) {
    .ContentSidebar--faculty {
        grid-template-areas:"subnav""header""content""sidebar";
    }
}