html {
  background-color: var(--color-bg);
}

.voice {
  max-width: 450px;
  margin-inline: auto;
  padding: 40px 24px 24px 24px;
  border-radius: 13px;
  background-color: var(--color-white);
  position: relative;
}

.voice::before {
  content: "";
  display: block;
  width: 50px;
  height: 50px;
  background-color: var(--color-nord6);
  border-radius: 50%;
  position: absolute;
  left: 24px;
  top: calc(-50px / 2);
  background-image: url("../img/icon-quotation-marks.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 17px;
}

.voice-text {
  font-size: 16px;
}

.voice-client {
  margin-top: 24px;
  display: grid;
  grid-template-columns: 55px 1fr;
  gap: 0 12px;
}

.voice-client-img {
  grid-column: 1/2;
  grid-row: 1/3;
}

.voice-client-img img {
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.voice-client-company {
  font-size: 14px;
  grid-column: 2/3;
  grid-row: 1/2;
  align-self: end;
}

.voice-client-name {
  font-size: 16px;
  font-weight: bold;
  grid-column: 2/3;
  grid-row: 2/3;
}
