main > .message-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  align-items: center;
  gap: 48px 64px;
  padding-inline: max(24px, calc((100% - 976px) / 2));
  background: #fff;
}
.message-section > .section-heading {
  grid-column: 1 / -1;
  width: 100%;
  margin: 0;
  text-align: center;
}
.message-section > .message-card {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  transform: none;
}
.message-section .message-card h3 {
  margin: 0 0 24px;
  font-size: 26px;
  line-height: 1.7;
  letter-spacing: 0;
}
.message-section .message-card > p {
  font-size: 16px;
  line-height: 2;
}
.message-section .signature {
  margin: 28px 0 0;
  padding: 0;
  border: 0;
}
.message-section > img {
  position: static;
  width: 100%;
  max-width: 280px;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: 45% center;
  border-radius: 43% 57% 62% 38% / 54% 42% 58% 46%;
  box-shadow: none;
  transform: none;
}
@media (max-width: 767px) {
  main > .message-section { grid-template-columns: minmax(0, 1fr); gap: 32px; }
  .message-section > img { grid-row: 2; width: 220px; justify-self: center; }
  .message-section .message-card h3 { font-size: 24px; }
}
