.testimonial-item {
  background: #f9f9f9;
  /* padding: 20px; */
  border-radius: 10px;
  position: relative;
}

.testimonial-item p {
  font-size: 16px;
  margin-bottom: 15px;
}

.testimonial-item h4 {
  font-weight: bold;
  color: #333;
}

.client_text {
  padding: 20px 20px 0px 20px;
}

.client_text p {
  font-size: 18px;
  font-family: 'lato', sans-serif;
  color: #030302CC;
  font-weight: 400;
  margin-bottom: 20px;
}

.client_wrapper {
  margin-top: 50px;
  /* display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: -40px;
  align-items: end; */
}

.client_name {
  background: #FFF;
  padding: 14px 30px 20px;
  width: fit-content;
}

.client_quote {
  position: absolute;
  right: 25px;
  bottom: 28px;
}

.client_name h5 {
  margin: 0px 0px 15px;
  font-family: "Lato", Sans-serif;
  font-size: 18px;
  font-weight: 700;
  font-style: normal;
  line-height: 24px;
  letter-spacing: 0px;
  color: #030302;
}

.client_name span {
  font-size: 16px;
  font-weight: 500;
  line-height: normal;
  font-family: 'lato', sans-serif;
}




/* 2 testimonials → grid */
.testimonial-slider.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  max-width: 1620px;
  margin: 0 auto;
}

.testimonial-slider.grid-2 .testimonial-item {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* 1 testimonial → center */
.testimonial-slider.single-center {
  display: flex;
  justify-content: center;
}

.testimonial-slider.single-center .testimonial-item {
  max-width: 1024px;
}

/* Responsive CSS */

@media (max-width:1024px){
  .testimonial-slider.grid-2{
    grid-template-columns: repeat(1, 1fr);
  }
}

@media (max-width:767px){
  .client_quote {
    right: 10px;
    bottom: 10px;
  }
  .client_name{
    width: 80%;
  }
}