header.school-header {
  background:
    linear-gradient(to right, rgba(0,0,0,0.25) 0%,rgba(0,0,0,0) 50%,rgba(0,0,0,0.25) 100%),
    url("school_generic.jpg");
  background-size: cover;
  height: 220px;
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 250px;
  width: 100vw;
  z-index: -1;

  .school-overview {
    position: absolute;
    left: 4em;
    top: 100px;

    h1, p {
      color: white;
      line-height: 1.4;
      margin: 0;
    }
  }
  
  #school_match {
    list-style-type: none;
    border: none;
    box-shadow: 0 1px 20px rgba(0,0,0,0.5);
    height: 100px;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    margin: 0;
    padding: 0 !important;
    position: absolute;
    top: 100px;
    right: 0;
    width: 400px;

    li {
      flex: 1 1 auto;
      display: grid;
      place-items: center center;
      text-align: center;
      padding: 0;
      margin: 0;

      &.stats-match {
        width: 115px;
      }

      &.stats-play-early {
        background-color: #373535;
        color: white;
        width: 115px;
      }

      &.projected-openings {
        width: 180px;

        div {
          display: flex; 
          flex-direction:row;
          flex-wrap: nowrap;
          gap: 1em;
        }

        p.po-position {

          b {
            background-color: var(--color-primary);
            border-radius: 8px;
            color: white;
            display: block;
            font-size: 2.25rem;
            line-height: 1.6;
            height: 54px;
            margin-bottom: 5px;
            width: 54px;
          }
        }
      }
    }
  }

  /* ----------------------------------------------------------------------------
  // SCHOOLS */

  &#uva {
    background-image: url("/assets/uva_photo-dd2e7dec.jpg");
  }
}

body.inverse {
  .school-overview {
    color: #fff;
    text-shadow: 0 1px 4px rgba(0,0,0,0.5);
  }
}

h2.small {
  color: var(--gray-500);
  font-size: 0.8125rem !important;
  font-weight: 400 !important;
  text-transform: uppercase;
}

ul.scorecards {
  list-style-type: none;
  margin: 0;
  padding: 0;
  margin-left: calc(4em - 20px);
  margin-top: 2em;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto;
  gap: 2em;

  li {
    height: 150px;
  }
}

.school-info {
  margin-left: calc(4em - 20px);
}

div.school-bottom {
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-template-rows: auto;
  gap: 2em;
  margin-top: 250px !important;
}