.medvi-sc-testimonials,
.medvi-sc-footer {
  --medvi-sc-ink: #242220;
  --medvi-sc-blue: #399ded;
  --medvi-sc-card-green: #f4f7ed;
  --medvi-sc-card-gray: #fafafa;
  box-sizing: border-box;
  color: var(--medvi-sc-ink);
  font-family: "Red Hat Text", Arial, sans-serif;
}

.medvi-sc-testimonials *,
.medvi-sc-footer * {
  box-sizing: border-box;
}

.medvi-sc-testimonials {
  background: #fff;
  overflow: hidden;
  padding: 12px 0 clamp(72px, 7vw, 112px);
  width: 100%;
}

.medvi-sc-heading {
  margin: 0 auto clamp(48px, 5vw, 76px);
  max-width: 940px;
  padding: 0 24px;
  text-align: center;
}

.medvi-sc-heading .medvi-sc-eyebrow {
  color: var(--medvi-sc-ink);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .22em;
  line-height: 1.4;
  margin: 0 0 18px;
  text-transform: uppercase !important;
}

.medvi-sc-heading h2 {
  color: var(--medvi-sc-ink);
  font-family: inherit;
  font-size: clamp(37px, 4.2vw, 64px);
  font-weight: 600;
  letter-spacing: -.045em;
  line-height: .98;
  margin: 0;
  text-transform: none !important;
}

.medvi-sc-heading h2 span {
  color: var(--medvi-sc-blue);
  white-space: nowrap;
}

.medvi-sc-heading .medvi-sc-subtitle {
  color: #4b4a48;
  font-size: clamp(14px, 1.1vw, 17px);
  line-height: 1.55;
  margin: 24px auto 0;
  max-width: 720px;
}

.medvi-sc-marquee {
  overflow: hidden;
  width: 100%;
}

.medvi-sc-marquee + .medvi-sc-marquee {
  margin-top: 18px;
}

.medvi-sc-marquee-track {
  animation: medvi-sc-marquee-left var(--medvi-sc-speed, 58s) linear infinite;
  display: flex;
  width: max-content;
  will-change: transform;
}

.medvi-sc-marquee--right .medvi-sc-marquee-track {
  animation-direction: reverse;
  animation-duration: calc(var(--medvi-sc-speed, 58s) * .86);
}

.medvi-sc-marquee:hover .medvi-sc-marquee-track,
.medvi-sc-marquee:focus-within .medvi-sc-marquee-track {
  animation-play-state: paused;
}

.medvi-sc-marquee-group {
  display: flex;
  gap: 18px;
  padding-right: 18px;
}

.medvi-sc-review-card,
.medvi-sc-image-card {
  border-radius: 22px;
  flex: 0 0 clamp(310px, 23vw, 400px);
  height: 230px;
  margin: 0;
  overflow: hidden;
}

.medvi-sc-review-card {
  background: var(--medvi-sc-card-green);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 38px 40px;
}

.medvi-sc-marquee--right .medvi-sc-review-card {
  background: var(--medvi-sc-card-gray);
}

.medvi-sc-review-head {
  align-items: center;
  display: flex;
  gap: 18px;
  justify-content: space-between;
  margin-bottom: 22px;
}

.medvi-sc-review-head strong {
  color: var(--medvi-sc-ink);
  font-size: 16px;
  font-weight: 700;
}

.medvi-sc-stars {
  color: var(--medvi-sc-blue);
  font-size: 17px;
  letter-spacing: 1px;
  line-height: 1;
  white-space: nowrap;
}

.medvi-sc-review-card p {
  color: #454440;
  display: -webkit-box;
  font-size: 15px;
  line-height: 1.55;
  margin: 0;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 5;
}

.medvi-sc-image-card img {
  display: block;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.medvi-sc-footer {
  background: #fff;
  border-bottom: 1px solid #ddd;
  border-top: 1px solid #ddd;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 0;
  width: 100%;
}

.medvi-sc-footer-item {
  align-items: center;
  display: flex;
  gap: 18px;
  justify-content: center;
  min-height: 100px;
  padding: 22px 28px;
}

.medvi-sc-footer-item + .medvi-sc-footer-item {
  border-left: 1px solid #ddd;
}

.medvi-sc-footer-item img {
  flex: 0 0 auto;
  height: 38px;
  object-fit: contain;
  width: 42px;
}

.medvi-sc-footer-item strong {
  color: var(--medvi-sc-ink);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.3;
}

@keyframes medvi-sc-marquee-left {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(-50%, 0, 0); }
}

@media (max-width: 900px) {
  .medvi-sc-testimonials {
    padding: 12px 0 70px;
  }

  .medvi-sc-footer {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .medvi-sc-footer-item:nth-child(3) {
    border-left: 0;
  }

  .medvi-sc-footer-item:nth-child(n+3) {
    border-top: 1px solid #ddd;
  }
}

@media (max-width: 560px) {
  .medvi-sc-heading {
    margin-bottom: 42px;
  }

  .medvi-sc-heading h2 {
    font-size: clamp(34px, 10vw, 46px);
    line-height: 1.02;
  }

  .medvi-sc-heading h2 span {
    white-space: normal;
  }

  .medvi-sc-review-card,
  .medvi-sc-image-card {
    border-radius: 18px;
    flex-basis: min(82vw, 330px);
    height: 216px;
  }

  .medvi-sc-review-card {
    padding: 30px;
  }

  .medvi-sc-footer {
    grid-template-columns: 1fr;
  }

  .medvi-sc-footer-item {
    justify-content: flex-start;
    min-height: 82px;
    padding: 18px 24px;
  }

  .medvi-sc-footer-item + .medvi-sc-footer-item {
    border-left: 0;
    border-top: 1px solid #ddd;
  }
}

@media (prefers-reduced-motion: reduce) {
  .medvi-sc-marquee {
    overflow-x: auto;
    scrollbar-width: thin;
  }

  .medvi-sc-marquee-track {
    animation: none;
  }

  .medvi-sc-marquee-group[aria-hidden="true"] {
    display: none;
  }
}
