blockquote,
q {
  font-size: 12px;
  font-weight: 400;
 }

/* Layout: buttons left/right, carousel centered */
.review-carousel-wrap {
  display: flex;
  align-items: center;    /* vertically center buttons relative to the quote */
  gap: 14px;
  max-width: 900px;
  margin: 24px auto;
}

/* Ensure middle carousel takes available width */
.review-carousel-wrap .carousel {
  flex: 1 1 auto;
  min-width: 0;           /* prevents overflow issues in flex */
}

/* Normalize Joomla editor wrapping (p tags adding line breaks) */
.review-carousel-wrap > * {
  margin: 0;              /* remove extra margins that cause stacking */
}

/* Button appearance */
.review-nav {
  display: inline-flex;   /* prevents full-width block behavior */
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  font-size: 22px;
  line-height: 1;
  padding: 0;
}

/* Quote styling (optional) */
.review-quote {
  font-style: normal !important;
  font-weight: normal !important;
  font-size: 1.0rem;
  color: #2a2a2a;
  margin: 0;
  padding: 20px 24px;
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid rgba(0,0,0,0.08);
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}
.review-quote p,
.review-quote div { margin: 0.35em 0; }
.review-quote footer { margin-top: 10px; text-align: right; color: #555; font-weight: 600; }

/* Mobile: stack vertically */
@media (max-width: 576px) {
  .review-carousel-wrap {
    flex-direction: column;
    gap: 8px;
  }
  .review-nav {
    width: 36px; height: 36px; font-size: 20px;
    align-self: center    align-self: center;
  }
