.img img {
  max-width: 100%;
  height: auto;
  display: block;
}

p + .img {
  margin-top: 32px;
}

.message-img_block {
  display: grid;
  align-items: center;
  grid-template-rows: 1fr;
}
@media screen and (max-width: 767px) {
  .message-img_block {
    display: flex;
    flex-direction: column;
    gap: 32px;
  }
}
.message-img_block .text-area {
  grid-column: 1/2;
  grid-row: 1/2;
  position: relative;
  z-index: 1;
  /*padding-left: 380px;
  padding-left: 26.5vw;*/
  padding-left: calc(32.5% + 40px);
  display: grid;
  width: 100%;
  height: 100%;
  grid-template-rows: 1fr 56px;
  padding-bottom: 18px;
}
@media screen and (max-width: 767px) {
  .message-img_block .text-area {
    padding-left: 0;
    padding-bottom: 0;
    display: flex;
    flex-direction: column;
    order: 2;
    height: auto;
  }
}
.message-img_block .text-area .message-copy {
  font-size: clamp(20px, 1.57143vw, 22px);
  font-weight: 500;
  line-height: 1.75;
  grid-column: 1/2;
  grid-row: 1/2;
  display: flex;
  align-items: center;
  width: 100%;
}
@media screen and (max-width: 1060px) {
  .message-img_block .text-area .message-copy {
    font-size: 2vw;
  }
}
@media screen and (max-width: 767px) {
  .message-img_block .text-area .message-copy {
    font-size: 20px;
  }
}
.message-img_block .text-area .staff-name {
  font-size: 18px;
  line-height: 1.75;
  margin-top: 0;
  font-weight: 500;
  grid-column: 1/2;
  grid-row: 2/3;
}
.message-img_block .text-area .staff-name span {
  font-size: 14px;
  font-weight: 400;
  display: block;
}
@media screen and (max-width: 1060px) {
  .message-img_block .text-area .staff-name {
    font-size: 1.6vw;
  }
}
@media screen and (max-width: 767px) {
  .message-img_block .text-area .staff-name {
    font-size: 16px;
    margin-top: 16px;
    line-height: 1.5;
  }
}
.message-img_block .img-block {
  grid-column: 1/2;
  grid-row: 1/2;
}
@media screen and (max-width: 767px) {
  .message-img_block .img-block {
    order: 1;
  }
}
.message-img_block .img-block img {
  max-width: 100%;
  height: auto;
  display: block;
}
.message-img_block + p {
  margin-top: 32px;
}


