.ccs-rv-section {
  --ccs-rv-navy:   #1a2a4a;
  --ccs-rv-blue:   #1E90FF;
  --ccs-rv-teal:   #32CD32;
  --ccs-rv-yellow: #FFD700;
  --ccs-rv-gray:   #6b7280;
  --ccs-rv-dark:   #333333;
  --ccs-rv-off:    #F2F2F2;
  --ccs-rv-border: #d8e8f5;
  --ccs-rv-sky:    #e0f0ff;
  --ccs-rv-white:  #FFFFFF;
  --ccs-rv-sh:     0 4px 24px rgba(15,31,23,.07);
  --ccs-rv-shm:    0 8px 40px rgba(15,31,23,.13);
  --ccs-rv-ff-h:   'Playfair Display', Georgia, serif;
  --ccs-rv-ff-b:   'DM Sans', system-ui, sans-serif;
  --ccs-rv-rl:     20px;
}
.ccs-rv-section,
.ccs-rv-section * { box-sizing: border-box; }
.ccs-rv-section a { text-decoration: none; color: inherit; }
.ccs-rv-section p { margin: 0; }
.ccs-rv-section ul { list-style: none; margin: 0; padding: 0; }

.ccs-rv-section {
  background: var(--ccs-rv-off);
  padding: 88px 0;
  font-family: var(--ccs-rv-ff-b);
  font-size: 16px;
  line-height: 1.7;
  width: 100%;
}
.ccs-rv-container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

/* HEADER */
.ccs-rv-hdr {
  text-align: center;
  max-width: 740px;
  margin: 0 auto 52px;
}
.ccs-rv-eyebrow {
  display: inline-block;
  font-size: .73rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--ccs-rv-blue);
  background: var(--ccs-rv-sky);
  padding: 4px 14px;
  border-radius: 100px;
  margin-bottom: 14px;
}
.ccs-rv-hdr h2 {
  font-family: var(--ccs-rv-ff-h);
  font-size: clamp(1.55rem, 3vw, 2.35rem);
  font-weight: 700;
  line-height: 1.22;
  letter-spacing: -.01em;
  color: var(--ccs-rv-navy);
  margin: 0 0 14px 0;
  position: relative;
  display: inline-block;
}
.ccs-rv-hdr h2::after {
  content: '';
  display: block;
  width: 48px;
  height: 3px;
  background: var(--ccs-rv-teal);
  border-radius: 2px;
  margin: 10px auto 0;
}
.ccs-rv-hdr p {
  font-size: 1.05rem;
  color: var(--ccs-rv-gray);
  line-height: 1.78;
}

/* SLIDER */
.ccs-rv-slider-wrap {
  position: relative;
  overflow: hidden;
}
.ccs-rv-track {
  display: flex;
  transition: transform .45s cubic-bezier(.4,0,.2,1);
  will-change: transform;
}

/* CARD */
.ccs-rv-card {
  background: var(--ccs-rv-white);
  border: 1px solid var(--ccs-rv-border);
  border-radius: var(--ccs-rv-rl);
  padding: 32px 28px;
  box-shadow: var(--ccs-rv-sh);
  display: flex;
  flex-direction: column;
  flex: 0 0 calc(33.333% - 16px);
  margin-right: 24px;
  box-sizing: border-box;
  position: relative;
}
.ccs-rv-card-hdr {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 14px;
}
.ccs-rv-stars {
  color: var(--ccs-rv-yellow);
  letter-spacing: 2px;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.ccs-rv-gicon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  width: 36px;
  height: 36px;
}
.ccs-rv-gicon svg { width: 100%; height: 100%; }

.ccs-rv-body {
  font-size: .9rem;
  color: var(--ccs-rv-dark);
  font-style: italic;
  line-height: 1.75;
  flex: 1;
  margin-bottom: 20px;
}
.ccs-rv-reviewer {
  display: flex;
  align-items: center;
  gap: 12px;
}
.ccs-rv-initials {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--ccs-rv-sky);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--ccs-rv-blue);
  font-size: .85rem;
  flex-shrink: 0;
}
.ccs-rv-name {
  font-weight: 700;
  font-size: .88rem;
  color: var(--ccs-rv-navy);
}
.ccs-rv-meta {
  font-size: .75rem;
  color: var(--ccs-rv-gray);
}
.ccs-rv-tag {
  display: inline-block;
  background: var(--ccs-rv-sky);
  color: var(--ccs-rv-blue);
  font-size: .7rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 100px;
  margin-top: 3px;
}

/* NAV */
.ccs-rv-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 36px;
}
.ccs-rv-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid var(--ccs-rv-border);
  background: var(--ccs-rv-white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ccs-rv-blue);
  transition: all .18s;
  box-shadow: var(--ccs-rv-sh);
  flex-shrink: 0;
  padding: 0;
}
.ccs-rv-btn:hover {
  background: var(--ccs-rv-blue);
  border-color: var(--ccs-rv-blue);
  color: #fff;
  box-shadow: var(--ccs-rv-shm);
}
.ccs-rv-btn:disabled { opacity: .35; cursor: default; pointer-events: none; }
.ccs-rv-dots { display: flex; gap: 8px; align-items: center; }
.ccs-rv-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--ccs-rv-border);
  cursor: pointer;
  transition: all .2s;
  border: none;
  padding: 0;
}
.ccs-rv-dot.active { background: var(--ccs-rv-blue); width: 24px; border-radius: 4px; }

/* RESPONSIVE */
@media (max-width: 960px) {
  .ccs-rv-card { flex: 0 0 calc(50% - 12px); }
  .ccs-rv-section { padding: 64px 0; }
}
@media (max-width: 600px) {
  .ccs-rv-card { flex: 0 0 100%; margin-right: 20px; padding: 24px 20px; }
  .ccs-rv-section { padding: 48px 0; }
  .ccs-rv-hdr { margin-bottom: 36px; }
  .ccs-rv-container { padding: 0 18px; }
}
@media (max-width: 420px) {
  .ccs-rv-section { padding: 40px 0; }
  .ccs-rv-container { padding: 0 16px; }
  .ccs-rv-body { font-size: .875rem; }
}
