/**
 * @file
 * faculty styles.
 */
/**
 * @file
 * Dependencies.
 *
 * The necessary dependencies for compiling styles.
 * Nothing here should compile into CSS, helpers only.
 */
/**
 * @file
 * Color variables.
 *
 * This is imported into dependencies, therefore nothing in here should
 * output .css when compiled.
 */
/**
 * @file
 * Typography declarations.
 *
 * This is imported into dependencies, therefore nothing in here should
 * output .css when compiled.
 */
/**
 * @file
 * Custom Functions.
 *
 * This is imported into dependencies, therefore nothing in here should
 * output .css when compiled.
 */
/* Remove the unit of a length.
 * @param {Number} $number - Number to remove unit from
 * @return {Number} - Unitless number
 *
 * Reference: https://css-tricks.com/snippets/sass/strip-unit-function/
*/
/* Convert a value (raw number or pixel size) into rems. */
/**
 * @file
 * General variables.
 *
 * This is imported into dependencies, therefore nothing in here should
 * output .css when compiled.
 */
/**
 * @file
 * Custom Mixins.
 *
 * This is imported into dependencies, therefore nothing in here should
 * output .css when compiled.
 */
/**
 * Breakpoint
 *
 * usage example:
 * @include breakpoint($feature: max-width, $value: 1509px) {
 *  display: none;
 * }
 */
/* Dynamic containment mixin. */
/**
 * @file
 * Z-Indices.
 *
 * This is imported into dependencies, therefore nothing in here should
 * output .css when compiled.
 */
.faculty {
  margin: 4rem 0;
}
@media screen and (max-width: 73.0625rem) {
  .faculty {
    margin: 3rem 0;
  }
}
@media screen and (max-width: 47.9375rem) {
  .faculty {
    margin: 2rem 0;
  }
}
.faculty .faculty__group__heading {
  margin: 3.5rem 0 0.25rem;
}

.faculty__member {
  padding: 2rem 0;
  border-bottom: 1px solid #D3D3D3;
  display: flex;
}
@media screen and (max-width: 27.4375rem) {
  .faculty__member {
    display: block;
  }
}
.faculty__member .faculty__image {
  flex: 0 0 11.125rem;
}
@media screen and (max-width: 47.9375rem) {
  .faculty__member .faculty__image {
    flex: 0 0 8.125rem;
  }
}
@media screen and (max-width: 27.4375rem) {
  .faculty__member .faculty__image {
    max-width: 50%;
  }
}
.faculty__member .faculty__info {
  width: 100%;
}
.faculty__member .faculty__contact {
  padding-right: 4%;
  line-height: 1.6;
}
@media screen and (max-width: 73.0625rem) {
  .faculty__member .faculty__contact {
    width: 100%;
  }
}
@media screen and (max-width: 47.9375rem) {
  .faculty__member .faculty__contact {
    font-size: 0.875rem;
  }
}
.faculty__member .faculty__name {
  font-size: 1.375rem;
  color: #003366;
  margin-bottom: 0.25rem;
}
@media screen and (max-width: 73.0625rem) {
  .faculty__member .faculty__name {
    font-size: 1.25rem;
  }
}
@media screen and (max-width: 47.9375rem) {
  .faculty__member .faculty__name {
    font-size: 1.125rem;
  }
}
.faculty__member .faculty__title {
  color: #003366;
  font-weight: 700;
}
.faculty__member .faculty__address {
  margin-top: 1rem;
}
.faculty__member .faculty__email {
  margin-top: 1rem;
  word-wrap: break-word;
}
.faculty__member .faculty__email a {
  color: #003366;
  text-decoration: none;
  font-weight: 700;
}
.faculty__member .faculty__email a:hover {
  text-decoration: underline;
}
.faculty__member .faculty__accordions {
  width: 37.153%;
}
@media screen and (max-width: 73.0625rem) {
  .faculty__member .faculty__accordions {
    margin-top: 2rem;
    width: 100%;
  }
}
@media screen and (max-width: 47.9375rem) {
  .faculty__member .faculty__accordions {
    font-size: 0.875rem;
  }
}
@media screen and (max-width: 27.4375rem) {
  .faculty__member .faculty__accordions {
    margin-top: 1rem;
  }
}
.faculty__member .faculty__accordion {
  border: 1px solid #D3D3D3;
  border-bottom: none;
  padding: 1.25rem 1.5rem 0.125rem;
}
@media screen and (max-width: 47.9375rem) {
  .faculty__member .faculty__accordion {
    padding: 1rem 1rem 0.125rem;
  }
}
.faculty__member .faculty__accordion a {
  color: #003366;
  word-wrap: break-word;
}
.faculty__member .faculty__accordion:last-of-type {
  border-bottom: 1px solid #D3D3D3;
}
.faculty__member summary {
  outline: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #003366;
  font-weight: 700;
  padding-bottom: 1.25rem;
}
@media screen and (max-width: 47.9375rem) {
  .faculty__member summary {
    padding-bottom: 1rem;
  }
}
.faculty__member summary::-webkit-details-marker {
  display: none;
}
.faculty__member summary:after {
  content: "+";
  font-size: 1.875rem;
  font-weight: 700;
  line-height: 1.2rem;
  color: #003366;
  position: relative;
  top: -1px;
}
@media screen and (max-width: 47.9375rem) {
  .faculty__member summary:after {
    line-height: 1rem;
    position: relative;
  }
}
.faculty__member details[open] summary:after {
  content: "-";
  font-size: 3rem;
  font-weight: 400;
  top: -0.25rem;
}
.faculty__member .faculty__content {
  line-height: 1.5;
  overflow: hidden;
}
.faculty__member.faculty__member--has-accordions .faculty__info {
  display: flex;
}
@media screen and (max-width: 73.0625rem) {
  .faculty__member.faculty__member--has-accordions .faculty__info {
    display: block;
  }
}
.faculty__member.faculty__member--has-accordions .faculty__contact {
  width: 62.847%;
}
.faculty__member.faculty__member--has-image .faculty__info {
  width: calc(100% - 11.125rem);
  padding: 1rem 0 0 5%;
}
@media screen and (max-width: 73.0625rem) {
  .faculty__member.faculty__member--has-image .faculty__info {
    padding-top: 0;
  }
}
@media screen and (max-width: 47.9375rem) {
  .faculty__member.faculty__member--has-image .faculty__info {
    width: calc(100% - 8.125rem);
  }
}
@media screen and (max-width: 27.4375rem) {
  .faculty__member.faculty__member--has-image .faculty__info {
    width: 100%;
    padding: 1rem 0 0;
  }
}
.faculty__member.faculty__member--has-accordions.faculty__member--has-image .faculty__contact,
.faculty__member.faculty__member--has-accordions.faculty__member--has-image .faculty__accordions {
  width: 50%;
}
@media screen and (max-width: 73.0625rem) {
  .faculty__member.faculty__member--has-accordions.faculty__member--has-image .faculty__contact,
  .faculty__member.faculty__member--has-accordions.faculty__member--has-image .faculty__accordions {
    width: 100%;
  }
}

.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 4rem;
}
@media screen and (max-width: 47.9375rem) {
  .pagination {
    margin-top: 2rem;
  }
}
.pagination ol {
  margin: 0;
  padding: 0;
  list-style: none;
}
@media screen and (max-width: 27.4375rem) {
  .pagination ol {
    display: none;
  }
}
.pagination ol li {
  display: inline-block;
}
.pagination ol li a {
  color: #005028;
  font-weight: 700;
  text-decoration: none;
  display: block;
  width: 2.75rem;
  height: 3.5rem;
  text-align: center;
  line-height: 3.5;
}
.pagination ol li.current-page a {
  background-color: #005028;
  color: #ffffff;
}

.pagination__prev,
.pagination__next {
  padding: 0 2rem;
}

/*# sourceMappingURL=faculty.css.map*/