@charset "utf-8";

.ceo-profile {
  --ceo-profile-bg: #dddddd;
  --ceo-profile-text-bg: #dddddd;
  display: flex;
  align-items: stretch;
  max-width: 860px;
  height: 240px;
  margin: 30px auto;
  border-radius: 12px;
  overflow: hidden;
  background-color: var(--ceo-profile-bg);
}

.ceo-profile__text {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 68%;
  padding: 24px;
  color: #065e27;
  background-color: var(--ceo-profile-text-bg);
  box-sizing: border-box;
}

.ceo-profile__message,
.ceo-profile__name {
  margin: 0;
  font-weight: bold;
  text-align: center;
}

.ceo-profile__message {
  font-size: 2rem;
  line-height: 1.55;
}

.ceo-profile__name {
  margin-top: 18px;
  font-size: 1.6rem;
  line-height: 1.4;
}

.ceo-profile__photo {
  width: 32%;
  height: 100%;
  background-color: var(--ceo-profile-bg);
}

.ceo-profile__photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

@media only screen and (max-width: 767px) {
  .ceo-profile {
    height: 180px;
  }

  .ceo-profile__message {
    font-size: 1.5rem;
    line-height: 1.55;
  }

  .ceo-profile__name {
    margin-top: 12px;
    font-size: 1.2rem;
    line-height: 1.4;
  }

  .ceo-profile__photo img {
    object-fit: contain;
    object-position: center bottom;
  }
}