#ebtrustpilotreviews.ebtpr-wrapper {
  margin: 46px auto 16px;
  padding: 0 15px;
  clear: both;
  width: 100%;
}

.ebtpr-inner {
  width: 100%;
  max-width: 1040px;
  margin: 0 auto;
}

.ebtpr-header {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 38px;
  margin-bottom: 22px;
}

.ebtpr-header h3 {
  margin: 0;
  font-size: 34px;
  font-weight: 600;
  line-height: 1.15;
  text-align: center;
}

.ebtpr-top-link,
.ebtpr-bottom a {
  color: #e11b22;
}

.ebtpr-top-link {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  white-space: nowrap;
}

.ebtpr-scroller {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.ebtpr-card {
  border: 1px solid #e5e5e5;
  border-radius: 8px;
  background: #fff;
  padding: 16px;
  min-height: 275px;
  display: flex;
  flex-direction: column;
}

.ebtpr-card-featured {
  box-shadow: 0 0 0 2px rgba(0,182,122,.10);
}

.ebtpr-topline {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.ebtpr-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  overflow: hidden;
  background: #f1f1f1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  flex: 0 0 48px;
}

.ebtpr-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ebtpr-author-block {
  min-width: 0;
}

.ebtpr-author {
  font-weight: 700;
  font-size: 20px;
  line-height: 1.2;
}

.ebtpr-date {
  font-size: 14px;
  color: #666;
  margin-top: 2px;
}

.ebtpr-stars {
  margin-bottom: 10px;
  color: #00b67a;
  letter-spacing: 1px;
  font-size: 18px;
}

.ebtpr-star-off {
  color: #ddd;
}

.ebtpr-title {
  font-weight: 700;
  font-size: 18px;
  line-height: 1.25;
  margin-bottom: 10px;
  min-height: 44px;
}

.ebtpr-content {
  color: #333;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex: 1 1 auto;
}

.ebtpr-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  margin-top: 15px;
}

.ebtpr-bottom-left {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.ebtpr-badge {
  display: inline-block;
  background: #f5f5f5;
  border-radius: 12px;
  padding: 4px 10px;
  font-size: 13px;
  line-height: 1.2;
}

.ebtpr-badge-featured {
  background: #e8fff6;
  color: #008b5c;
}

@media (max-width: 1040px) {
  .ebtpr-scroller {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  #ebtrustpilotreviews.ebtpr-wrapper {
    margin-top: 34px;
  }

  .ebtpr-header {
    display: block;
    min-height: 0;
    text-align: center;
  }

  .ebtpr-header h3 {
    font-size: 28px;
  }

  .ebtpr-top-link {
    position: static;
    transform: none;
    display: inline-block;
    margin-top: 8px;
  }

  .ebtpr-scroller {
    grid-template-columns: 1fr;
  }

  .ebtpr-card {
    min-height: 0;
  }
}