html {
  scroll-behavior: smooth;
}

#current, #past {
	scroll-margin-top: 15rem;
}

.page-title {
  display: none;
}

.mce-content-body {
  grid-column: -1 / 1;
}

.president__initiatives {
  max-width: 1050px;
  margin: 0 auto;
  margin-bottom: 3rem;
}

@media (max-width: 768px) {
  .president__initiatives {
    margin: 0 2rem 3rem 2rem;
  }
}

.president__initiatives__button-group {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
}

.president__initiatives__button-group a {
  flex: 1;
  display: block;
  padding: .5rem 1rem;
  background: #013c65;
  color: #ffffff;
  transition: all .2s ease-in-out;
  -webkit-transition: all .2s ease-in-out;
  -moz-transition: all .2s ease-in-out;
  -ms-transition: all .2s ease-in-out;
  -o-transition: all .2s ease-in-out;
  text-transform: uppercase;
  text-align: center;
  font-weight: 500 !important;
}

.president__initiatives__button-group a:hover {
  background: #f6b000;
  color: #013c65;
}

.president__initiatives__current, .president__initiatives__past {
  position: relative;
}

.president__initiatives__current:before, .president__initiatives__past:before {
  content: '';
  display: block;
  position: absolute;
  top: 1.7rem;
  left: 0;
  width: 100%;
  height: 3px;
  background: #f6b000;
  z-index: 0;
}

.president__initiatives__current h2, .president__initiatives__past h2 {
  grid-column: -1 / 1;
  color: #013c65;
  max-width: max-content;
  background: white;
  position: relative;
  padding-right: 1rem;
  display: block;
  position: relative;
  z-index: 1;
  font-weight: 600 !important;
}

.president__initiatives__current .single-initiative, .president__initiatives__past .single-initiative {
  border: 1px solid #013c65;
  border-radius: 6px;
}

.president__initiatives__current .single-initiative__image, .president__initiatives__past .single-initiative__image {
  min-height: 150px;
  display: block;
  width: 100%;
  background-position: center;
  position: relative;
  border-bottom: 6px solid #f6b000;
}

.president__initiatives__current .single-initiative__image:after, .president__initiatives__past .single-initiative__image:after {
  display: block;
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: transparent;
  transition: all .2s ease-in-out;
  -webkit-transition: all .2s ease-in-out;
  -moz-transition: all .2s ease-in-out;
  -ms-transition: all .2s ease-in-out;
  -o-transition: all .2s ease-in-out;
}

.president__initiatives__current .single-initiative__image:hover:after, .president__initiatives__past .single-initiative__image:hover:after {
  background: rgba(0, 0, 0, 0.35);
}

.president__initiatives__current .single-initiative__content, .president__initiatives__past .single-initiative__content {
  padding: 1rem;
}

.president__initiatives__current .single-initiative__content__title, .president__initiatives__past .single-initiative__content__title {
  font-family: Arvo, sans-serif;
  font-size: 1.25rem;
  color: #013c65;
  margin-bottom: .5rem;
  display: block;
  transition: all .2s ease-in-out;
  -webkit-transition: all .2s ease-in-out;
  -moz-transition: all .2s ease-in-out;
  -ms-transition: all .2s ease-in-out;
  -o-transition: all .2s ease-in-out;
}

.president__initiatives__current .single-initiative__content__title:after, .president__initiatives__past .single-initiative__content__title:after {
  content: ' >>';
  display: inline-block;
  margin-left: 6px;
}

.president__initiatives__current .single-initiative__content__title:hover, .president__initiatives__past .single-initiative__content__title:hover {
  color: #f6b000;
}

.president__initiatives__current .single-initiative__content__copy, .president__initiatives__past .single-initiative__content__copy {
  display: block;
  margin-bottom: 1rem;
}

.president__initiatives__current .single-initiative__content__link, .president__initiatives__past .single-initiative__content__link {
  text-transform: uppercase;
  text-decoration: underline;
  transition: all .2s ease-in-out;
  -webkit-transition: all .2s ease-in-out;
  -moz-transition: all .2s ease-in-out;
  -ms-transition: all .2s ease-in-out;
  -o-transition: all .2s ease-in-out;
}

.president__initiatives__current {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-bottom: 3rem;
}

@media (max-width: 769px) {
  .president__initiatives__current {
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 1rem 0;
  }
}

.president__initiatives__past {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

@media (max-width: 769px) {
  .president__initiatives__past {
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 1rem 0;
  }
}
