/* =========================================================
   REVIEWS ONLY (cs-reviews-section)
   - slider + quote + autore + dots
   ========================================================= */

:root{
  --niv-bordeaux:#a33333;
  --niv-gold:#b08d55;
  --niv-dark:#2c3e50;
  --niv-warm-bg:#fffbf5;
}

/* --- REVIEW SLIDER --- */
.cs-reviews-section{
  background-color:var(--niv-warm-bg);
  padding:60px 20px;
  margin-bottom:80px;
  text-align:center;
  border-radius:4px;
  box-shadow:0 5px 20px rgba(0,0,0,0.05);
  border-left:5px solid var(--niv-bordeaux);
}

.cs-reviews-header{
  font-size:24px;
  color:var(--niv-dark);
  text-transform:uppercase;
  letter-spacing:2px;
  margin-bottom:30px;
  font-weight:300;
}

.cs-slider-wrapper{
  position:relative;
  max-width:900px;
  margin:0 auto;
  overflow:hidden;
  min-height:220px;
}

.cs-slide{
  display:none;
  animation:csFade 1s;
}
.cs-slide.active{
  display:block;
}

.cs-quote-icon{
  font-size:50px;
  color:var(--niv-gold);
  line-height:1;
  margin-bottom:10px;
  font-family:Georgia, serif;
}

.cs-review-text{
  font-size:19px;
  font-style:italic;
  color:#555;
  max-width:800px;
  margin:0 auto 20px auto;
  line-height:1.6;
  font-family:Georgia, serif;
}

.cs-review-author{
  font-weight:700;
  color:var(--niv-dark);
  text-transform:uppercase;
  font-size:14px;
  letter-spacing:1px;
}

.cs-property-link{
  color:var(--niv-bordeaux);
  text-decoration:none;
  font-weight:600;
  border-bottom:1px dotted var(--niv-bordeaux);
  transition:all .3s ease;
}
.cs-property-link:hover{
  color:var(--niv-dark);
  border-bottom:1px solid var(--niv-dark);
}

/* dots */
.cs-dots{
  margin-top:30px;
}
.cs-dot{
  cursor:pointer;
  height:10px;
  width:10px;
  margin:0 5px;
  background-color:#ddd;
  border-radius:50%;
  display:inline-block;
  transition:background-color .3s ease;
}
.cs-dot.active,
.cs-dot:hover{
  background-color:var(--niv-gold);
}

@keyframes csFade{
  from{opacity:.4}
  to{opacity:1}
}

/* --- Mobile --- */
@media (max-width:768px){
  .cs-review-text{font-size:16px;}
}
