.iur-carousel {
  --iur-gap: 20px;
  position: relative;
  width: 100%;
}
.iur-viewport {
  overflow: hidden;
}
.iur-track {
  display: flex;
  gap: var(--iur-gap);
  transition: transform .35s ease;
  will-change: transform;
}
.iur-card {
  box-sizing: border-box;
  flex: 0 0 calc((100% - (var(--iur-per-page, 3) - 1) * var(--iur-gap)) / var(--iur-per-page, 3));
  border: 1px solid rgba(0,0,0,.12);
  border-radius: 12px;
  padding: 22px;
  background: #fff;
  min-width: 0;
}
.iur-card-top,
.iur-meta,
.iur-controls {
  display: flex;
  align-items: center;
}
.iur-card-top {
  justify-content: space-between;
  gap: 12px;
}
.iur-stars {
  letter-spacing: 2px;
  font-size: 18px;
  line-height: 1;
}
.iur-source {
  font-size: 12px;
  opacity: .7;
}
.iur-title {
  margin: 16px 0 8px;
  font-size: 20px;
}
.iur-content {
  line-height: 1.65;
}
.iur-content > :first-child {
  margin-top: 0;
}
.iur-content > :last-child {
  margin-bottom: 0;
}
.iur-meta {
  gap: 10px;
  margin-top: 18px;
}
.iur-meta time {
  display: block;
  font-size: 12px;
  opacity: .65;
  margin-top: 2px;
}
.iur-avatar {
  width: 42px;
  height: 42px;
  object-fit: cover;
  border-radius: 50%;
}
.iur-author a {
  color: inherit;
}
.iur-review-link {
  margin: 12px 0 0;
  font-size: 13px;
}
.iur-controls {
  justify-content: center;
  gap: 14px;
  margin-top: 18px;
}
.iur-prev,
.iur-next {
  cursor: pointer;
  width: 40px;
  height: 40px;
  border: 1px solid currentColor;
  border-radius: 50%;
  background: transparent;
  font-size: 24px;
  line-height: 1;
}
.iur-prev[disabled],
.iur-next[disabled] {
  opacity: .35;
  cursor: not-allowed;
}
.iur-status {
  min-width: 64px;
  text-align: center;
  font-size: 13px;
}
@media (max-width: 900px) {
  .iur-carousel {
    --iur-responsive-per-page: 2;
  }
}
@media (max-width: 600px) {
  .iur-carousel {
    --iur-responsive-per-page: 1;
  }
}


/* v1.5.0 branding and active-theme color integration */
.iur-card,
.iur-title,
.iur-author,
.iur-author a {
  color: inherit;
}

/* Review headings intentionally inherit the active theme's heading/card context. */
.iur-title {
  color: inherit;
}

/* Authors intentionally inherit the active theme. */
.iur-author,
.iur-author a {
  color: inherit;
}

/* Google review stars use Google's familiar review-star gold. */
.iur-stars-google {
  color: #fbbc04;
}

/* Manual testimonial stars remain theme-controlled. */
.iur-stars-testimonial {
  color: #fbbc04;
}

/*
 * Google wordmark-style source label.
 * The individual letters use Google's brand palette while retaining text
 * accessibility and avoiding an external logo/image dependency.
 */
.iur-source-google {
  font-weight: 600;
  letter-spacing: 0;
}

/* Color individual Google letters where supported via generated spans below. */
.iur-google-wordmark {
  font-weight: 600;
  white-space: nowrap;
}
.iur-google-wordmark .g1,
.iur-google-wordmark .g4 { color: #4285f4; }
.iur-google-wordmark .g2,
.iur-google-wordmark .g6 { color: #ea4335; }
.iur-google-wordmark .g3 { color: #fbbc05; }
.iur-google-wordmark .g5 { color: #34a853; }

/* Testimonial source label has no plugin color; it follows theme heading color. */
.iur-source-testimonial {
  color: inherit;
  font-weight: inherit;
}


/* v1.11.0 modern Google G branding */
.iur-source-google {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
}
.iur-google-g {
  width: 18px;
  height: 18px;
  display: inline-block;
  flex: 0 0 18px;
}
