.voice-block {
  margin-bottom: 4rem;
}
.voice-block > .message {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-areas: "title" "image" "text";
  gap: 0;
  margin-bottom: 2rem;
}
.voice-block > .message > .title {
  grid-area: title;
  margin-bottom: 2rem;
}
.voice-block > .message > .title > .name {
  color: var(--color-project-green);
  font-size: 1rem;
  font-weight: 700;
  -webkit-font-feature-settings: "palt" 1;
  font-feature-settings: "palt" 1;
  letter-spacing: 0.05em;
  line-height: 1.4;
}
.voice-block > .message > .text {
  grid-area: text;
}
.voice-block > .message > .text > .site-text-standard {
  margin-top: 2em;
}
.voice-block > .message > .image {
  grid-area: image;
  line-height: 0;
  margin: auto;
  width: 62.5%;
}
.voice-block > .message > .image img {
  border-radius: 16px;
  overflow: hidden;
}
.voice-block > .comment {
  background-color: var(--color-project-base);
  border-radius: 16px;
  display: grid;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: start;
  grid-template-areas: "image title" "description description";
  grid-template-columns: 5rem 1fr;
  gap: 1.5rem;
  padding: 2rem var(--margin-side-small);
}
.voice-block > .comment > .title {
  grid-area: title;
}
.voice-block > .comment > .description {
  grid-area: description;
}
.voice-block > .comment > .description > .site-text-standard:not(:first-child) {
  margin-top: 2em;
}
.voice-block > .comment > .image {
  border: 2px solid var(--color-project-blue);
  border-radius: 50%;
  grid-area: image;
  line-height: 0;
  overflow: hidden;
  -webkit-box-ordinal-group: 0;
  -ms-flex-order: -1;
  order: -1;
}
.voice-block > .comment.-trainer {
  margin-bottom: 2.5rem;
}
.voice-block > .comment.-trainer > .image {
  border-color: var(--color-project-green);
}