.testimonial-banner {
  padding: 4rem 0;
  background: #fff;
}

.testimonial-banner__inner {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
}

.testimonial-banner__media {
  flex: 1 1 300px;
  max-width: 500px;
}
.testimonial-banner__media img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  display: block;
}

.testimonial-banner__content {
  flex: 1 1 300px;
  max-width: 500px;
}

.testimonial-banner__title {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.testimonial-banner__subtitle {
  color: #555;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.testimonial-banner__cta {
  font-size: 1rem;
  padding: .8rem 2rem;
}
/* allow the image to overflow its container */
.testimonial-banner__media {
  overflow: visible;
  position: relative; /* so z-index works */
}

/* smooth transition */
.testimonial-banner__media img {
  transition: transform 0.3s ease;
  transform-origin: center center;
}

/* scale up on hover */
.testimonial-banner__media:hover img {
  transform: scale(1.2);
  z-index: 10;
  cursor: pointer;
}
