/* Coordinator Section */
.coordinator-message {
  background-color: #fff;
  padding: 30px 30px 0;
  position: relative;
}

.coordinator-wrapper {
  margin: 0 auto;
  max-width: 1140px;
  position: relative;
}

.coordinator-title {
  color: #000;
  font-size: 62px;
  margin-bottom: 25px;
  margin-top: revert;
  text-align: center;
}

.coordinator-content {
  display: flex;
  align-items: stretch;
  position: relative;
}

.coordinator-text {
  color: #000;
  flex: 2;
  margin-left: 170px;
  padding-right: 100px;
  position: relative;
  z-index: 1;
}

.coordinator-text p {
  font-size: 16px;
  line-height: 1.8;
  margin-top: 0;
  margin-right: 30%;
}

/* Person Info */
.coordinator-person {
  margin-bottom: 50px;
}

.coordinator-person .person-name {
  color: rgb(24, 92, 44);
  font-size: 22px;
  margin-bottom: 0;
}

.coordinator-person .person-position {
  color: #161515;
  font-size: 18px;
  margin-top: 0;
}

/* Image (absolute positioned like inline version) */
.coordinator-image {
  position: absolute;
  right: -64px;
  bottom: 0;
  z-index: 0;
}

.coordinator-image img {
  max-width: 35rem;
  height: auto;
}

/* Responsive adjustments */
@media (max-width: 991.98px) {
  .coordinator-title {
    font-size: 42px;
  }

  .coordinator-text {
    margin-left: 0;
    padding-right: 0;
  }

  .coordinator-text p {
    margin-right: 0;
  }

  .coordinator-image {
    position: static;
    margin-top: 20px;
    text-align: center;
  }

  .coordinator-image img {
    max-width: 80%;
  }
}
