  /* LEADERSHIP HEADER */
  .leadership {
    display: flex;
    flex-direction: column;
    padding: 50px 0;
  }
  .breadcrumb {
    display: flex;
    padding-left: 25px;
    color: #D61F29;
    text-transform: uppercase;
    font-weight: 700;
  }
  .heading {
    font-weight: 600;
    font-size: 2em;
    line-height: 2rem;
    padding: 0 25px ;
  }
  /* LEADERSHIP HEADER END */

  /* GRID */
  .overview_title .photo {
    display: flex;
    flex-direction: column;
    width: calc(100vw - 50px);
    padding: 25px;
  }
  .overview_title .photo img {
/*    width: 100%;*/
    aspect-ratio: 1/1.4;
    border-radius: 25px;
    box-shadow: 5px 5px 10px 5px rgba(0, 0, 0, 0.2);
  }
  .overview_title .photo .name {
    display: flex;
    text-transform: uppercase;
    color: #D61F29;
    font-size: 1.2em;
    font-weight: 600;
    padding: 20px 0 0;
  }
  .overview_title .photo .designation {
    display: flex;
    color: black;
    font-size: 0.9em;
    font-weight: 600;
    padding: 0 0 20px; 
  }
  .overview_title .photo .longNote {
    display: none;
  }
  .overview_title .photo .longNote a:hover {
    background-color: #0b66c2;
  }
  .overview_title .photo .longNote a {
    display: flex;
    column-gap: 10px;
    font-size: 0.7em;
    font-weight: 400;
    border-radius: 10px;
    padding: 3px 10px;
    color: white;
    text-decoration: none;
    background: black;
  }

  /* OVERVIEW */
    .overview {
      display: flex;
      flex-direction: column;
    }
    .overview .overview_title {
      color: #D61F29;
      font-size: 1.5em;
      font-weight: 600;
    }
    .overview .overview_body {
      padding: 25px;
      font-size: 1.3em;
      line-height: 2.5rem;
      font-weight: 300;
    }
    .overview .overview_body p {
      padding: 0 0 25px 0;
    }
    .overview .overview_body ul, .overview .overview_body ol  {
      margin: 0 0 0 25px;
    }
    .overview .overview_body a {
      color: #D61F29;
    }

  /* OVERVIEW END */



@media only screen and (min-width: 787px) {

  /* OVERVIEW */
  .overview {
    flex-direction: row;
    padding: 25px;
    gap: 10%;
  }
  .overview .overview_title {
    width: 300px;
    padding: 0;
  }

  .overview_title .photo {
    width: 100%;
    position: sticky;
    top: 100px;
  }
  .overview_title .photo img {
    aspect-ratio: 100%;
  }
  .overview .overview_body {
    width: 65%;
    padding: 0;
  }
  /* OVERVIEW END */
}