*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body{
  font-family: "Poppins", sans-serif;
  background: #f5f0ea;
  color: #3a2b22;
}

/* HERO */
.ts-hero{
  padding: 38px 15px 20px;
  background: #f3ece6;
  text-align: center;
}

.ts-hero-inner{
  max-width: 1100px;
  margin: auto;
}

.ts-title{
  font-size: 42px;
  font-weight: 700;
  color: #4a2c1d;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.ts-title-icon{
  font-size: 36px;
  color: #a36a3a;
}

.ts-subtitle{
  max-width: 900px;
  margin: 10px auto 0;
  font-size: 14px;
  line-height: 1.7;
  color: #5a4639;
}

/* WRAP */
.ts-wrap{
  padding: 25px 15px 70px;
}

.ts-container{
  max-width: 1100px;
  margin: auto;
}

/* GRID */
.ts-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

/* CARD */
.ts-card{
  position: relative;
  background: rgba(255,255,255,0.85);
  border-radius: 16px;
  box-shadow: 0 18px 35px rgba(0,0,0,0.18);
  border: 1px solid rgba(0,0,0,0.06);
  padding: 22px 22px 18px;
  overflow: hidden;
}

.quote-icon{
  font-size: 42px;
  color: rgba(179,118,68,0.35);
  margin-bottom: 12px;
}

.ts-text{
  font-size: 14px;
  line-height: 1.75;
  color: #4f3b30;
  min-height: 140px;
}

/* STARS */
.ts-stars{
  margin-top: 14px;
  display: flex;
  gap: 6px;
  font-size: 16px;
  color: #b27644;
}

/* FOOTER */
.ts-footer{
  margin-top: 16px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 14px;
}

.ts-user h3{
  font-size: 18px;
  font-weight: 700;
  color: #4a2c1d;
  margin-bottom: 4px;
}

.ts-user p{
  font-size: 13px;
  color: #5a4639;
  line-height: 1.4;
}

.ts-user span{
  font-weight: 600;
  color: #6b4d3c;
}

/* AVATAR */
.ts-avatar{
  width: 72px;
  height: 72px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid rgba(179,118,68,0.35);
  flex-shrink: 0;
}

.ts-avatar img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* CTA BOX */
.ts-cta{
  margin-top: 22px;
  background: rgba(255,255,255,0.85);
  border-radius: 16px;
  box-shadow: 0 18px 35px rgba(0,0,0,0.18);
  border: 1px solid rgba(0,0,0,0.06);
  padding: 18px 18px;
  text-align: center;
}

.ts-cta h2{
  font-size: 18px;
  font-weight: 700;
  color: #4a2c1d;
  margin-bottom: 12px;
}

.ts-cta-row{
  display: flex;
  justify-content: center;
  gap: 22px;
  flex-wrap: wrap;
}

.ts-cta-item{
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: #4f3b30;
}

.ts-cta-item i{
  color: #b27644;
}

/* RESPONSIVE */
@media (max-width: 900px){
  .ts-grid{
    grid-template-columns: 1fr;
  }

  .ts-title{
    font-size: 30px;
  }

  .ts-text{
    min-height: auto;
  }
}
