/**
 * Leadership Block Styles
 */
.leadership-block {
  margin: 0;
  padding: 0;
}

.leadership-container {
  width: 100%;
}

.leadership-block__heading {
  margin-bottom: 2rem;
  text-align: center;
}
.leadership-block__heading h2,
.leadership-block__heading h3,
.leadership-block__heading h4 {
  margin: 0;
}

.leadership-grid {
  display: grid;
  align-items: stretch;
  grid-template-columns: 1fr;
  gap: 20px;
  width: 100%;
}
@media (min-width: 768px) {
  .leadership-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}
@media (min-width: 1200px) {
  .leadership-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 1400px) {
  .leadership-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.leadership-card {
  display: flex;
  flex-direction: column;
  background: #ffffff;
  overflow: hidden;
  transition: all 0.2s ease-in-out;
  position: relative;
  width: 100%;
  max-width: 490px;
  margin-left: auto;
  margin-right: auto;
}
.leadership-card::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 166px;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  background-color: #F5F5F5;
  transition: all 0.2s ease-in-out;
}
.leadership-card__image {
  position: relative;
  z-index: 1;
  overflow: hidden;
  margin: 20px 30px;
  aspect-ratio: 279/326;
}
@media only screen and (min-width: 992px) {
  .leadership-card__image {
    aspect-ratio: 400/480;
    margin-left: 45px;
    margin-right: 45px;
  }
}
.leadership-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.leadership-card__content {
  padding: 0 20px 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: start;
}
.leadership-card__name {
  color: #000;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 28px;
  margin: 0;
}
.leadership-card__position {
  color: #E24A02;
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
}

.leadership-preview {
  padding: 2rem;
  text-align: center;
  background: #f8f9fa;
  border: 2px dashed #dee2e6;
  border-radius: 8px;
  color: #6c757d;
  font-style: italic;
}

/*# sourceMappingURL=leadership-style.css.map */
