.testimonial__inner {
  position: relative;
  display: flex;
  align-items: center;
  gap: 50px;
}

.testimonial__quote-mark {
  position: absolute;
  top: -15.5%;
  left: 16.66%;
  width: 14.5%;
  height: auto;
  opacity: 0.85;
  z-index: 0;
}

.testimonial__avatar {
  position: relative;
  z-index: 1;
  flex-shrink: 0;
  width: 300px;
  height: 300px;
}

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

.testimonial__logo {
  position: absolute;
  right: -20px;
  bottom: 23px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: var(--color-white);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.testimonial__logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 50%;
}

.testimonial__content {
  position: relative;
  z-index: 1;
  flex: 1;
}

.testimonial__quote p {
  color: var(--color-navy-footer);
  margin-bottom: 0.25rem;
}

.testimonial__author {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--color-navy-footer);
  margin: var(--space-sm) 0 0;
}

@media (max-width: 768px) {
  .testimonial__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-md);
  }

  .testimonial__quote-mark {
    position: static;
    opacity: 0.15;
    width: 90px;
    margin-bottom: 0.5rem;
  }

  .testimonial__avatar {
    width: 150px;
    height: 150px;
  }

  .testimonial__logo {
    width: 60px;
    height: 60px;
    right: -10px;
    bottom: 12px;
  }
}
