.tds-testimonials-grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  box-sizing: border-box;
}

.tds-testimonials-grid *,
.tds-testimonials-grid *::before,
.tds-testimonials-grid *::after {
  box-sizing: border-box;
}

.tds-testimonial-card {
  position: relative;
  min-width: 0;
  overflow: hidden;
  background: #fff;
  border: 1px solid #d8dde1;
  padding: 22px;
}

.tds-testimonial-card::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 0;
  height: 0;
  border-top: 22px solid #e2a821;
  border-left: 22px solid transparent;
  pointer-events: none;
}

.tds-hide-corner .tds-testimonial-card::before {
  display: none;
}

.tds-testimonial-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 12px;
  padding-right: 2px;
}

.tds-testimonial-person {
  min-width: 0;
}

.tds-testimonial-name {
  margin: 0;
  color: #071b2a;
  font-family: "Arial Narrow", Arial, sans-serif;
  font-size: 15px;
  font-weight: 800;
  font-style: italic;
  line-height: 1.25;
  text-transform: uppercase;
  overflow-wrap: anywhere;
}

.tds-testimonial-role {
  margin-top: 3px;
  color: #e2a821;
  font-family: Arial, sans-serif;
  font-size: 9px;
  font-weight: 800;
  line-height: 1.35;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  overflow-wrap: anywhere;
}

.tds-testimonial-stars {
  flex: 0 0 auto;
  color: #e2a821;
  font-size: 14px;
  line-height: 1;
  letter-spacing: 2px;
  white-space: nowrap;
  padding-top: 1px;
}

.tds-testimonial-text {
  color: #4d5962;
  font-family: Arial, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.65;
  overflow-wrap: anywhere;
}

.tds-testimonial-text p {
  margin: 0 0 10px;
}

.tds-testimonial-text p:last-child {
  margin-bottom: 0;
}

@media (max-width: 767px) {
  .tds-testimonials-grid {
    grid-template-columns: 1fr;
  }

  .tds-testimonial-card {
    padding: 18px;
  }

  .tds-testimonial-header {
    gap: 12px;
  }

  .tds-testimonial-name {
    font-size: 14px;
  }

  .tds-testimonial-text {
    font-size: 13px;
  }
}
