/* Lightweight JAM Testimonial Slider CSS */
.jam-testimonial-slider-wrapper {
  position: relative;
  max-width: 800px;
  margin: 2rem auto;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, sans-serif;
  padding: 0 55px; /* Clearance for arrows outside the main card */
  box-sizing: border-box;
}

/* Strict Clipping Window - Hides 100% of adjacent slides */
.jam-testimonial-viewport {
  overflow: hidden;
  border-radius: 12px;
  width: 100%;
}

.jam-testimonial-track {
  display: flex;
  transition: transform 0.4s ease-in-out;
  will-change: transform;
}

.jam-testimonial-card {
  min-width: 100%;
  width: 100%;
  flex-shrink: 0;
  box-sizing: border-box;
  padding: 2.5rem 2rem 2rem;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  border: 1px solid #f0f0f0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin: 0;
}

/* Centered & Enlarged Top Photo */
.jam-testimonial-top-photo {
  margin-bottom: 1.25rem;
  display: flex;
  justify-content: center;
  width: 100%;
}

.jam-testimonial-top-photo img {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #0066cc;
  box-shadow: 0 4px 12px rgba(0, 102, 204, 0.15);
  display: block;
}

/* Fallback Quote Icon */
.jam-testimonial-quote-icon {
  font-size: 3.5rem;
  line-height: 1;
  color: #0066cc;
  font-family: Georgia, serif;
  margin-bottom: -0.5rem;
  text-align: center;
}

/* Testimonial Title */
.jam-testimonial-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0.5rem 0;
  color: #1a1a1a;
  width: 100%;
  text-align: center;
}

/* Centered Testimonial Body Text */
.jam-testimonial-content {
  font-size: 1rem;
  line-height: 1.65;
  color: #4a4a4a;
  flex-grow: 1;
  text-align: center;
  width: 100%;
}

.jam-testimonial-content p {
  margin: 0 0 1rem;
  text-align: center;
}

.jam-testimonial-content p:last-child {
  margin-bottom: 0;
}

/* Author Meta Footer */
.jam-testimonial-author-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid #f5f5f5;
  width: 100%;
}

.jam-testimonial-avatar-img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
}

.jam-testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #0066cc;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
}

.jam-testimonial-author-info {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.jam-testimonial-name {
  font-weight: 600;
  color: #2c3e50;
  font-size: 0.95rem;
}

.jam-testimonial-location {
  font-size: 0.825rem;
  color: #7f8c8d;
}

/* Subtle Arrows Floating Outside */
.jam-testimonial-controls {
  display: flex;
  justify-content: space-between;
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  width: 100%;
  transform: translateY(-50%);
  pointer-events: none;
  padding: 0 5px;
  box-sizing: border-box;
}

.jam-slider-btn {
  background: rgba(0, 0, 0, 0.03);
  border: none;
  border-radius: 50%;
  width: 38px;
  height: 38px;
  color: #888888;
  font-size: 0.95rem;
  cursor: pointer;
  pointer-events: auto;
  transition: all 0.2s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.6;
}

.jam-slider-btn:hover {
  background: rgba(0, 0, 0, 0.08);
  color: #333333;
  opacity: 1;
  transform: scale(1.05);
}