.leadership-container {
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 768px) {
  /* .leadership-container {
    flex-direction: row;
  } */
}

.leadership-container__header {
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 768px) {
  .leadership-container__header {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }
}

.leadership-container__header-section-1 {
}

.leadership-container__header-section-1 h1 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #2d2d2d;
}
.leadership-container__header-section-1 h2 {
  font-size: 0.727rem;
  color: var(--brandColor);
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .leadership-container__header-section-1 h1 {
    font-size: 0.83rem;
    font-weight: 600;
    color: #2d2d2d;
  }
  .leadership-container__header-section-1 h2 {
    font-size: 0.603rem;
    color: var(--brandColor);
    font-weight: 500;
  }
}

.leadership-container__header-section-2 {
  /* Section 2 of the header */
}
@media screen and (min-width: 768px) {
  .leadership-container__header-section-2 {
    width: 17.66rem;
  }
}

.leadership-container__header-section-2 p {
  font-size: 0.7rem;
  color: #2d2d2d;
  font-weight: 400;
  line-height: 160%;
  letter-spacing: -2%;
}
@media screen and (min-width: 768px) {
  .leadership-container__header-section-2 p {
    font-size: 0.41rem;
  }
}

.leadership-container__cards {
  /* Cards wrapper */
  margin-top: 0.5rem;
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 768px) {
  .leadership-container__cards {
    margin-top: 2rem;
    flex-direction: row;
    justify-content: center;
    gap: 1rem;
  }
}

.leadership-container__card {
  /* Individual card styles */
}
@media screen and (min-width: 768px) {
  .leadership-container__card {
    width: 10.56rem;
  }
}

.leadership-container__card-image-container {
  width: 16.54rem;
  height: 16.58rem;
  background-color: rgb(218, 218, 218);
}
@media screen and (min-width: 768px) {
  .leadership-container__card-image-container {
    width: 10.56rem;
    height: 10.55rem;
    background-color: rgb(218, 218, 218);
  }
}

.leadership-container__card-image-container img {
  /* Image styling */
}

.leadership-container__card-name {
  font-size: 0.9rem;
  color: #2d2d2d;
  font-weight: 500;
  margin: 0;
  padding: 0;
  margin-top: 0.3rem;
}
@media screen and (min-width: 768px) {
  .leadership-container__card-name {
    font-size: 0.603rem;
    margin-top: .2rem;
  }
}

.leadership-container__card-designation {
  font-size: 0.727rem;
  color: var(--brandColor);
  font-weight: 400;
  margin: 0;
  padding: 0;
  line-height: 95%;
  margin-bottom: 0.6rem;
}
@media screen and (min-width: 768px) {
.leadership-container__card-designation {
    font-size: 0.45rem;
    margin-bottom: .2rem;
  }
}

.leadership-container__card-description {
  margin-top: 0.5rem;
}
@media screen and (min-width: 768px) {
  .leadership-container__card-description {
    margin-top: 0.2rem;
    font-size: 0.336rem;
  }
}
