/* stretch hero image to fill the full width, height follows its own
   aspect ratio (1600x1040) so nothing is ever cropped */
.page__hero--overlay {
  background-size: 100% auto;
  background-color: #0b3d5c;
  aspect-ratio: 1600 / 1040;
  height: auto;
}

/* set-up for double columns */
.column1 {
  float: left;
  width: 30%;
  padding: 3px;
}
.column2 {
  float: left;
  width: 65%;
  padding: 3px;
  
}
/* Clear floats after image containers */
.row::after {
  content: "";
  clear: both;
  display: table;
}

ul#two_col{
  list-style-type: none;
  padding: 2px;
  column-count: 2;
  margin-top: 0;
  -webkit-columns: 2;
  -moz-columns: 2;
  
}
ul#two_col > li {
  display: inline-block;
  width: 100%;
  border-top: 1px;
}

ul.notice--info  {
  padding-left:20px;!important
  padding-right:20px;!important
}
li{
padding-bottom:10px;!important
}
#two_col_img {  width: 100%; border-radius: 5%;}

/* single-column profile list on the people page */
ul#profiles{
  list-style-type: none;
  padding: 2px;
  column-count: 1;
  margin-top: 0;
}
ul#profiles > li {
  display: block;
  width: 100%;
  border-top: 1px;
}
/* fixed profile photo size on the people page (125x153, 50% of 250x305) */
#profiles .column1 {
  width: 125px;
}
#profiles #two_col_img {
  width: 125px;
  height: 153px;
  object-fit: cover;
}

@media screen and (max-width: 700px) {
  ul#two_col {
    list-style-type: none;
    padding: 1px;
    columns: 1;
    -webkit-columns: 1;
    -moz-columns: 1;  
  }
}