testimonial {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
  padding: 1.5rem;
  border-radius: 0.75rem;
  background: var(--petrol-blue-50);
  position: relative;
  overflow: hidden;

  @media (min-width: 993px) {
    flex-direction: row;
    align-items: center;
    gap: 2.5rem;
    padding: 4rem 2.5rem;
  }

  >img {
    width: 8.5rem;
    aspect-ratio: 1;
    z-index: 1;
  }

  #quotation-mark-right {
    width: 3.375rem;
    aspect-ratio: 55 / 36;
    position: absolute;
    top: 1.125rem;
    left: 1.125rem;
    z-index: 0;
    }

  #quotation-mark-left {
    width: 14.25rem;
    aspect-ratio: 229 / 145;
    object-fit: cover;
    position: absolute;
    bottom: -6.875rem;
    right: -0.625rem;
    z-index: 0;
    @media (min-width: 993px) {
      bottom: 1rem;
      right: -3.375rem;
    }
    @media (min-width: 1441px) {
      bottom: 2.375rem;
    }
  }

  >info {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    z-index: 1;
    @media (min-width: 993px) {
      max-width: 40.25rem;
      padding: 0.8675rem 1.5rem;
    }
    @media (min-width: 1441px) {
      max-width: 51.5rem;
    }

    >figure {
      display: flex;
      flex-direction: column;
      gap: 1.75rem;
      margin: 0;

      >blockquote {
        margin: 0;
      }
      > figcaption {
        >p {
          margin: 0;
        }
      }
    }
  }
}