.manual-reviews.grey-bg {
	border-top: 1px solid #eee;
	background-color: #f2f2f2;
}

.manual-reviews.fade-sides{
  position:relative;
  margin-top:2rem;
}

.manual-reviews.fade-sides:before,
.manual-reviews.fade-sides:after
 {
  content: '';
  position: absolute;
  width: 20%;
  height: 100%;
  background: linear-gradient(90deg, rgba(255,255,255,1) 0%, rgba(255, 255, 255, 0) 100%);
  z-index: 10;
  pointer-events: none;
}
.manual-reviews.fade-sides:before{
  top: 0;
  left: 0;
}

.manual-reviews.fade-sides:after{
  top: 0;
  right: 0;
  transform:scaleX(-1);
}

.manual-reviews .title{
	text-align:center;
	margin-top:1rem;
}

.manual-reviews .title h3 { margin: 0; }

.manual-reviews .reviews-carousel {
  width: 100%;
  padding: calc(1.5rem - 15px) 0;
}

.manual-reviews .carousel-cell {
  width: 85%;
  max-width: 320px;
  margin-right: 2rem;
}

.manual-reviews .review-card {
	padding: 16px 18px;
	margin-top: 15px;
	margin-bottom: 15px;
    text-align:left;
}

.manual-reviews .review-card__header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	margin-bottom: 8px;
	flex-direction: row-reverse;
}

.manual-reviews .review-card__name {
  font-weight: 600;
  font-size: 0.95rem;
}

.manual-reviews .review-card__rating .star {
  font-size: 1.05rem;
  opacity: .28;
}

.manual-reviews .review-card__rating,
.aurora-modal__rating{
	color:var(--gold-color);
}

.manual-reviews .review-card__body {
}

.manual-reviews .review-card__excerpt {
  font-style:italic;
  margin: .5rem 0 .75rem;
}

.manual-reviews .review-card__more {
  appearance: none;
  border: none;
  background: transparent;
  color: var(--red-color);
  font-weight: 500;
  cursor: pointer;
  padding: 0;
  font-family: var(--paragraph-font);
  font-size: .875rem;
}

.manual-reviews .no-reviews { opacity: .7; }

/* Root modal container: always fixed, visually hidden by default */
.manual-reviews .aurora-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  opacity: 0;
  pointer-events: none;             /* block interaction when hidden */
}

/* When shown: fade the wrapper and allow interaction */
.manual-reviews .aurora-modal[aria-hidden="false"] {
  opacity: 1;
  pointer-events: auto;
}

/* Backdrop */
.manual-reviews .aurora-modal__backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(2px);       /* optional */
  transition: opacity .18s ease-out;
  opacity: 0;
  z-index: 1;
}
.manual-reviews .aurora-modal[aria-hidden="false"] .aurora-modal__backdrop {
  opacity: 1;
}

/* Dialog: permanently centered. Only animate a tiny vertical offset + opacity */
.manual-reviews .aurora-modal__dialog {
  position: fixed;
  top: 50%;
  left: 50%;
  /* Keep the centering transform CONSTANT; add a tiny Y offset for the entrance */
  transform: translate(-50%, -50%) translateY(8px);
  background: #fff;
  width: min(700px, 92vw);
  max-height: 85vh;
  overflow-y: auto;
  border-radius: 14px;
  box-shadow: 0 20px 40px rgba(0,0,0,.45);
  transition: transform .18s ease-out, opacity .18s ease-out;
  opacity: 0;
  z-index: 2;
}
.manual-reviews .aurora-modal[aria-hidden="false"] .aurora-modal__dialog {
  transform: translate(-50%, -50%) translateY(0);
  opacity: 1;
}

/* Close button */
.manual-reviews .aurora-modal__close {
  position: absolute;
  top: 10px;
  right: 14px;
  font-size: 1.6rem;
  color: #666;
  background: transparent;
  border: none;
  cursor: pointer;
  transition: color 0.2s;
}
.manual-reviews .aurora-modal__close:hover { color: #000; }

/* Content */

.manual-reviews .quote-icon {
}

.manual-reviews .quote-icon i {
  font-size: 3rem;
  margin-left: -.15em;

  color: var(--gold-color);
}


.manual-reviews .aurora-modal__content { padding: 24px 28px; }

.manual-reviews .aurora-modal__header {
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 1rem;
	flex-direction: column-reverse;
	gap: 10px;
	align-items: flex-start;
}

.manual-reviews .aurora-modal__name { font-weight: 700; font-size: 1rem; }

/* Paragraph formatting (we're injecting <p> via JS) */
.manual-reviews .aurora-modal__body p {
	margin: 0 0 1rem;
	/* line-height: 1.6; */
	white-space: normal;
	font-size: 0.875rem;
    text-align:left;
}

.manual-reviews .aurora-modal__body p:last-child { margin-bottom: 0; }


@media (max-width: 600px) {
  .manual-reviews.fade-sides:before,
  .manual-reviews.fade-sides:after
   {
    width: 2rem;
  }
}

