.vet-testimonial-wrapper {
  padding: 40px 0;
  background-color: #f2f5f9;

  .container {
    display: flex;
    flex-direction: column;
    gap: 24px;

    @media only screen and (min-width: 768px) {
      max-width: 800px;
    }

    > h2.vet-testimonial-heading {
      margin: 0;
      font-size: 32px;
      font-weight: 600;
      line-height: 1.4;
      text-align: center;
      color: #152a49;
    }

    .inner-container {
      display: flex;
      flex-direction: column;
      gap: 42px;
      max-width: unset;

      @media only screen and (min-width: 768px) {
        flex-direction: row-reverse;
        align-items: center;
        gap: 40px;
      }

      .vet-testimonial-content {
        display: flex;
        flex-direction: column;
        gap: 16px;

        @media only screen and (min-width: 768px) {
          gap: 8px;
        }

        > p.vet-testimonial-quote {
          margin: 0;
          font-size: 22px;
          font-style: italic;
          font-weight: 400;
          line-height: 1.4;
          color: #152a49;

          @media only screen and (min-width: 768px) {
            font-size: 24px;
          }
        }

        > small.vet-testimonial-name {
          color: #505d76;
          font-size: 16px;
          font-weight: 400;
          line-height: 1.4;
          text-transform: uppercase;
        }
      }

      .vet-testimonial-image {
        flex-shrink: 0;

        img {
          display: block;
          width: 184px;
          height: 184px;
          margin: 0 auto;
          object-fit: cover;
          border-radius: 50%;
        }
      }
    }
  }
}
