/* ===============================
   MEDIUM DEVICES (≥768px)
================================ */
@media (min-width: 768px) {

  /* Hide hamburger */
  .menu-toggle {
    display: none;
  }

  /* Desktop Nav */
  header nav {
    position: static;
    display: flex !important;
    flex-direction: row;
    align-items: center;
    width: auto;
    background: none;
    box-shadow: none;
    padding: 0;
  }

  header nav a {
    border: none;
    margin-left: 20px;
    font-size: 15px;
  }

  /* Hero Scaling */
  .hero h1 {
    font-size: 32px;
  }

  .hero p {
    font-size: 16px;
  }

  section.container.py-5 {
    padding: 70px 20px;
  }

  section.container.py-5 .section-title h2 {
    font-size: 28px;
    text-align: center;
  }

  section.container.py-5 p {
    font-size: 15px;
    margin-bottom: 18px;
  }

  .editorial-role-group__header {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .editorial-role-group__count {
    align-self: center;
  }

  .editorial-member-card {
    padding: 30px 28px;
  }

  .editorial-member-card__photo,
  .editorial-member-card__avatar {
    width: 112px;
    height: 112px;
  }

  .editorial-member-card__name {
    font-size: 1.28rem;
  }

  .editorial-member-card__affiliation {
    font-size: 1rem;
  }

  .editorial-member-card__bio {
    font-size: 0.98rem;
  }
}

