.cra-testimonial-section {
  --cra-navy: #1a3557;
  --cra-navy-light: #274573;
  --cra-gold: #f59e0b;
  --cra-grey-200: #e5e7eb;
  --cra-grey-400: #9ca3af;
  --cra-grey-700: #374151;
  --cra-grey-500: #333333;
  --cra-white: #ffffff;
  --cra-blue: #4e87e8;
  --cra-radius: 6px;
  --cra-transition: 200ms ease;
}

.cra-testimonial-section {
  position: relative;
  padding: 24px 0;
}

.cra-testimonial-inner {
  max-width: 1120px;
  margin: 0 auto;
  box-sizing: border-box;
}

/* .cra-testimonial-section {
    position: relative;
    padding: 60px 0 72px;
    background: #f4f6fa;
}

.cra-testimonial-inner {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 32px;
    box-sizing: border-box;
}


.cra-testimonial-heading {
    margin-bottom: 16px;
}

.cra-testimonial-heading__title {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: #000D4B;
    margin: 0;
    line-height: 1;
} */

.cra-tc-arrow-row {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 8px;
}

.cra-tc-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #eaeaea;
  border: none;
  cursor: pointer;
  color: var(--cra-navy);
  transition:
    background var(--cra-white),
    opacity var(--cra-transition);
  flex-shrink: 0;
  padding: 0;
}

.cra-tc-arrow:hover,
.cra-tc-arrow:focus {
  outline: none;
}

.cra-tc-arrow svg {
  display: block;
  stroke: currentColor;
  flex-shrink: 0;
  width: 32px;
  height: 32px;
}

.cra-tc-loader {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 32px 0;
  gap: 16px;
}

.cra-tc-loader__spinner {
  display: flex;
  align-items: center;
  gap: 6px;
}

.cra-tc-loader__spinner span {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--cra-navy-light);
  animation: cra-bounce 1.2s ease-in-out infinite;
}

.cra-tc-loader__spinner span:nth-child(1) {
  animation-delay: 0s;
}

.cra-tc-loader__spinner span:nth-child(2) {
  animation-delay: 0.2s;
}

.cra-tc-loader__spinner span:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes cra-bounce {
  0%,
  60%,
  100% {
    transform: translateY(0);
    opacity: 0.4;
  }

  30% {
    transform: translateY(-8px);
    opacity: 1;
  }
}

.cra-tc-loader__text {
  font-size: 14px;
  color: var(--cra-grey-400);
  margin: 0;
}

.cra-testimonial-carousel-wrap {
  position: relative;
}

.cra-tc-empty {
  font-size: 15px;
  color: var(--cra-grey-400);
  padding: 24px 0;
  margin: 0;
}

.cra-tc-viewport {
  overflow: visible;
  width: 100%;
}

.cra-tc-track {
  position: relative;
  display: block;
  width: 100%;
}

.cra-tc-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 320px;
  gap: 24px;
  opacity: 0;
  pointer-events: none;
}

.cra-tc-slide:first-child {
  opacity: 1;
  pointer-events: auto;
  position: relative;
}

.cra-tc-card__body {
  /* no extra styles needed */
}

.cra-tc-card__text {
  font-family: "Source Sans 3", sans-serif !important;
  font-size: 40px !important;
  font-style: italic;
  line-height: 1.6;
  color: var(--cra-grey-700);
  margin: 0;
  max-height: 200px;
  overflow: hidden;
}

.cra-tc-full[hidden] {
  display: none;
}

.cra-tc-card__footer {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
}

.cra-tc-card__stars {
  display: flex;
  gap: 1px;
  align-items: center;
}

.cra-star {
  width: 20px;
  height: 20px;
  display: inline-block;
  flex-shrink: 0;
}

.cra-star--full {
  fill: var(--cra-blue);
}

.cra-star--empty {
  fill: var(--cra-grey-200);
}

.cra-tc-card__clinic {
  font-size: 18px;
  color: var(--cra-grey-500);
  margin: 0;
  font-style: normal;
  font-family: "Source Sans 3", sans-serif;
}

.cra-tc-card__author-name {
  font-size: 24px;
  font-weight: 700;
  color: var(--cra-grey-500);
  margin: 0;
  font-family: "Source Sans 3", sans-serif;
}

.cra-tc-arrow-row {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 8px;
}

@media (max-width: 1240px) {
  .cra-tc-arrow-row {
    justify-content: center;
  }
}

@media (max-width: 640px) {
  .cra-testimonial-inner {
    padding: 0 20px;
  }

  .cra-testimonial-section {
    padding: 40px 0 56px;
  }

  .cra-testimonial-heading__title {
    font-size: 20px;
  }

  .cra-tc-arrow {
    width: 34px;
    height: 34px;
  }

  .cra-tc-card__text {
    font-size: 16px;
  }

  .cra-tc-arrow-row {
    margin-top: 20px;
  }
}
