.lts-section{
  background: var(--lts-section-bg);
  padding: 28px 0;
}

.lts-wrapper{
  width: min(1140px, calc(100% - 32px));
  margin: 0 auto;
}

.lts-card{
  position: relative;
  background: var(--lts-card-bg);
  border-radius: var(--lts-radius);
  box-shadow: 0 18px 45px rgba(0,0,0,.12);
  overflow: hidden;
  padding-bottom: 20px;
  transition: filter .25s ease, transform .25s ease, opacity .25s ease;
}

.lts-card:hover{
  transform: translateY(-3px);
  filter: blur(calc(var(--lts-hover-blur) * 0.6px));
}

.lts-header{
  height: 120px;
  background: linear-gradient(90deg, var(--lts-header-from), var(--lts-header-to));
  border-radius: var(--lts-header-radius) var(--lts-header-radius) 0 0;
  display:flex;
  align-items:flex-start;
  justify-content:center;
  padding-top: 18px;
  position: relative;
}

.lts-wrapper[data-header-pattern="1"] .lts-header:after{
  content:"";
  position:absolute;
  inset:0;
  background-image: radial-gradient(rgba(255,255,255,.28) 1px, transparent 1px);
  background-size: 14px 14px;
  opacity:.35;
  pointer-events:none;
}

.lts-header-text{
  color:#fff;
  font-weight:800;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 20px;
}

.lts-avatar{
  width: var(--lts-avatar);
  height: var(--lts-avatar);
  border-radius: 999px;
  overflow:hidden;
  border: 6px solid #fff;
  position: relative;
  margin: -45px auto 10px;
  box-shadow: 0 12px 25px rgba(0,0,0,.18);
}

.lts-avatar img{
  width:100%;
  height:100%;
  object-fit: cover;
  display:block;
}

.lts-body{
  padding: 14px 18px 0;
}

.lts-quote{
  position: relative;
  background:#fff;
  border-radius: 16px;
  padding: 16px 14px;
  box-shadow: 0 12px 24px rgba(0,0,0,.08);
  text-align:center;
}

.lts-quote-mark{
  position:absolute;
  font-size: 38px;
  color: rgba(10,167,165,.7);
  font-weight:900;
}
.lts-quote-left{ left: 12px; top: 6px; }
.lts-quote-right{ right: 12px; bottom: -6px; }

.lts-quote-text{
  font-size: 14px;
  line-height: 1.6;
  color:#1f2937;
}

.lts-stars{
  text-align:center;
  margin-top: 12px;
}

.lts-star{
  font-size: 16px;
  opacity:.25;
  color: var(--lts-star);
}
.lts-star.is-on{
  opacity:1;
}

.lts-name-wrap{
  display:flex;
  justify-content:center;
  margin-top: 12px;
}

.lts-name-btn{
  background: var(--lts-btn);
  color: var(--lts-btn-text);
  border-radius: var(--lts-btn-radius);
  padding: 10px 18px;
  font-weight: 800;
  font-size: 14px;
  display:inline-block;
}

.lts-role{
  text-align:center;
  margin-top: 8px;
  color:#6b7280;
  font-size: 13px;
}

.lts-corner{
  position:absolute;
  right: 14px;
  bottom: 14px;
  background:#eee;
  border-radius: 10px;
  width: 34px;
  height: 26px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size: 16px;
  box-shadow: 0 10px 18px rgba(0,0,0,.12);
}

.lts-fade-in{
  animation: ltsFade .35s ease
