.p-leadership-section {
  background: #e7eff5;
}

.p-leadership {
  color: var(--primary-color);
}

.p-leadership-title {
  font-size: 34px;
  line-height: 1.15;
  font-weight: 400;
  color: var(--primary-color);
  margin-bottom: 26px;
}

.p-leadership-sub-title {
  margin-bottom: 30px;
}

.p-leadership-members {
  display: grid;
  grid-template-columns: 1fr;
}

.p-leadership-member {
  padding: 50px 0px 50px 0px;
  border-bottom: 1px solid rgba(13, 55, 97, 0.18);
  transition:
    transform var(--timing-function),
    box-shadow var(--timing-function);
}

.p-leadership-member:last-child {
  border-bottom: 0;
}

.p-leadership-member-image {
  width: 260px;
  height: 260px;
  margin-bottom: 18px;
  overflow: hidden;
  border-radius: 50%;
  background: #fff;
}

.p-leadership-member-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 50%;
}

.p-leadership-member-name {
  color: var(--primary-color);
  font-size: 30px;
  line-height: 1.15;
  font-weight: 700;
  margin-bottom: 4px;
}

.p-leadership-member-position {
  color: var(--secondary-color);

  font-weight: 500;
  margin-bottom: 14px;
}

.p-leadership-member-contact {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 14px;
}

.p-leadership-member-contact a {
  color: var(--primary-color);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6.5px;
}

.p-leadership-member-icon {
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 24px;
}

.p-leadership-member-icon svg {
  width: 16px;
  height: 16px;
  display: block;
}

.p-leadership-member-bio {
  color: var(--primary-color);
}

@media only screen and (min-width: 768px) {
  .p-leadership-title {
    font-size: 44px;
    margin-bottom: 30px;
  }

  .p-leadership-sub-title {
    margin-bottom: 60px;
  }

  .p-leadership-members {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .p-leadership-member {
    padding: 28px 28px 34px 0;
    border-bottom: 0;
  }

  .p-leadership-member:nth-child(even) {
    padding-left: 32px;
    border-left: 1px solid rgba(13, 55, 97, 0.18);
  }

  .p-leadership-member-image {
    width: 126px;
    height: 126px;
    margin-bottom: 20px;
  }

  .p-leadership-member-name {
    font-size: 24px;
  }

  .p-leadership-member-position {
    font-size: 15px;
  }
}

@media only screen and (min-width: 992px) {
  .p-leadership-title {
    font-size: 48px;
    line-height: 1.12;
  }

  .p-leadership-label {
    font-size: 38px;
  }

  .p-leadership-member {
    padding: 34px 34px 40px 0;
    border-bottom: 0;
  }

  .p-leadership-member:nth-child(even) {
    padding-left: 44px;
  }

  .p-leadership-member-image {
    width: 140px;
    height: 140px;
  }

  .p-leadership-member-name {
    font-size: 26px;
  }

  .p-leadership-member-position {
    font-size: 16px;
    margin-bottom: 16px;
  }

  .p-leadership-member-contact {
    margin-bottom: 16px;
  }
}

@media only screen and (min-width: 1200px) {
  .p-leadership-title {
    font-size: 56px;
  }

  .p-leadership-label {
    font-size: 42px;
    margin-bottom: 42px;
  }

  .p-leadership-member {
    padding: 36px 48px 42px 0;
  }

  .p-leadership-member:nth-child(even) {
    padding-left: 52px;
  }

  .p-leadership-member-image {
    width: 250px;
    height: 250px;
    margin-bottom: 24px;
  }

  .p-leadership-member-name {
    font-size: 28px;
  }

  .p-leadership-member-position {
    font-size: 17px;
  }
}

.p-leadership-team-section {
  position: relative;
  background: #0d6fb3;
  overflow: hidden;
}

.p-leadership-team-background {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0.45;
}

.p-leadership-team-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.p-leadership-team {
  position: relative;
  z-index: 2;
  color: var(--white);
}

.p-leadership-team h2 {
  margin-bottom: 30px;
}

.p-leadership-team-title {
  color: var(--white);
  text-align: center;
  font-size: 28px;
  line-height: 1.15;
  font-weight: 700;
  margin-bottom: 8px;
}

.p-leadership-team-sub-title {
  color: rgba(255, 255, 255, 0.82);
  text-align: center;
  margin-bottom: 20px;
  font-size: 14px;
  line-height: 1.3;
}

.p-leadership-team-grid {
  display: flex;
  flex-direction: column;
  gap: 18px 14px;
  align-items: start;
}

.p-leadership-team-member {
  min-width: 0;
  padding: 18px 0 22px;
  transition:
    transform var(--timing-function),
    box-shadow var(--timing-function);
}

.p-leadership-team-member:last-child {
  border-bottom: 0;
}

.p-leadership-team-member-image {
  width: 260px;
  height: 260px;
  margin-bottom: 14px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
}

.p-leadership-team-member-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 50%;
}

.p-leadership-team-member-name {
  color: var(--white);
  font-size: 30px;
  line-height: 1.15;
  font-weight: 700;
  margin-bottom: 2px;
}

.p-leadership-team-member-position {
  color: var(--yellow);
  margin-bottom: 10px;
}

.p-leadership-team-member-contact {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 12px;
}

.p-leadership-team-member-contact a {
  color: var(--white);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-width: 0;
}

.p-leadership-team-member-contact a span:last-child {
  min-width: 0;
  word-break: break-word;
}

.p-leadership-team-member-icon {
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 24px;
  background-color: var(--white);
}

.p-leadership-team-member-icon svg {
  max-width: 16px;
  width: auto;
  max-height: 16px;
  height: auto;
  display: block;
}

.p-leadership-contact {
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: center;
}

.p-leadership-contact p {
  color: var(--white);
  text-align: center;
}

.p-leadership-contact-section {
  background: var(--primary-color);
}

@media only screen and (min-width: 992px) {
  .p-leadership-team-title {
    font-size: 36px;
  }

  .p-leadership-contact {
    justify-content: flex-start;
  }

  .p-leadership-contact p {
    text-align: left;
  }

  .p-leadership-team-sub-title {
    font-size: 15px;
    margin-bottom: 28px;
  }

  .p-leadership-team-background {
    top: 10%;
    left: 10%;
    width: 80%;
    height: 80%;
  }

  .p-leadership-team-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .p-leadership-team-member {
    padding: 24px 24px 28px 0;
  }

  .p-leadership-team-member-image {
    width: 130px;
    height: 130px;
  }

  .p-leadership-team-member-name {
    font-size: 22px;
  }

  .p-leadership-contact {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 80px;
    width: 90%;
    margin-left: 5%;
  }

  .p-leadership-contact-link {
    width: 30%;
    display: flex;
    justify-content: flex-end;
  }

  .p-leadership-contact p {
    width: 65%;
  }

  .p-leadership-team h2 {
    margin-bottom: 60px;
  }
}

@media only screen and (min-width: 1200px) {
  .p-leadership-team-title {
    font-size: 40px;
    margin-bottom: 10px;
  }

  .p-leadership-team-sub-title {
    font-size: 16px;
    margin-bottom: 32px;
  }

  .p-leadership-contact-link {
    width: 35%;
    display: flex;
    justify-content: flex-end;
  }

  .p-leadership-contact {
    width: 80%;
    margin-left: 10%;
  }

  .p-leadership-team-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .p-leadership-team-background {
    top: 18%;
    left: 10%;
    width: 70%;
    height: 70%;
  }

  .p-leadership-team-member {
    padding: 26px 26px 30px 0;
    border-bottom: 0;
  }

  .p-leadership-team-member-image {
    width: 138px;
    height: 138px;
    margin-bottom: 16px;
  }

  .p-leadership-team-member-name {
    font-size: 24px;
  }
}

@media only screen and (min-width: 2000px) {
  .p-leadership-team-background {
    left: 20%;
    top: 15%;
    width: 50%;
    height: 100%;
  }

  .p-leadership-team-background img {
    object-fit: contain;
    max-width: 100%;
    object-position: center center;
    max-height: 90%;
    width: auto;
    height: auto;
  }
}

@media only screen and (min-width: 992px) and (hover: hover) {
  .p-leadership-member-contact a:hover,
  .p-leadership-team-member-contact a:hover {
    opacity: 0.85;
  }
}
