.cml-voice-wrap{
  padding: 56px 0;
  background:#fff;
  font-family: inherit;
}
.cml-voice-container{
  width: min(1100px, 92%);
  margin: 0 auto;
  text-align:center;
}

.cml-title{
  margin:0 0 8px;
  font-size: clamp(28px, 3vw, 48px);
  font-weight: 700;
  color: #1B1B1B;
  letter-spacing: -0.02em;
  font-family: Trebuchet MS;
}
.cml-subtitle{
  margin:0 auto 34px;
  max-width: 740px;
  color: #6b7280;
  font-size: 20px;
  line-height: 1.6;
  font-weight: 400;
  font-family: Trebuchet MS;
}

.cml-slider{ position:relative; }
.cml-viewport{
  overflow:hidden;
  padding: 70px 0 50px;
}
.cml-track{
  display:flex;
  align-items: center;
  gap: var(--cml-gap, 50px);
  justify-content: center;
  will-change: transform;
  transition: transform 520ms cubic-bezier(.2,.8,.2,1);
}

.cml-card{
  position: relative;
  flex: 0 0 var(--cml-card-width-computed, var(--cml-card-width, 300px));
  min-height: 215px;
  border-radius: 0 22px 0 22px;
  padding: 64px 24px 22px;
  background: #0B4F8A;
  color:#fff;
  box-shadow: 0 16px 30px rgba(11,79,138,0.16);
  overflow: visible; 
  transform: scale(var(--cml-inactive-scale, .92));
  opacity: .9;
  transition: transform 520ms cubic-bezier(.2,.8,.2,1), background 520ms;
}
.cml-card.is-active{
  transform: scale(var(--cml-active-scale, 1.16));
  background:#0A4A82;
}

.cml-plane{
  position:absolute;
  top: -16px;
  left: -24px;
  width: 150px;
  opacity: .95;
  pointer-events:none;
  z-index: 1;
}
.cml-card.is-active .cml-plane{
  top: -18px;
  left: -28px;
  width: 170px;
}
.cml-plane img{ width:100%; height:auto; display:block; }

.cml-avatar{
  position:absolute;
  top: -36px;
  left:50%;
  transform: translateX(-50%);
  width: 64px;
  height: 64px;
  border-radius: 999px;
  background:#fff;
  padding: 4px;
  box-shadow: 0 10px 18px rgba(0,0,0,.18);
  z-index: 4;
}
.cml-card.is-active .cml-avatar{
  top: -44px;
  width: 74px;
  height: 74px;
  padding: 5px;
}
.cml-avatar img{
  width:100%;
  height:100%;
  border-radius:999px;
  object-fit: cover;
  display:block;
}

.cml-name{
  margin: 0 0 6px;
  font-size: 20px;
  font-weight: 700;
  font-family: Trebuchet MS;
}
.cml-stars{
  display:inline-flex;
  gap:2px;
  margin-bottom: 12px;
  font-size: 22px;
  line-height: 1;
}

.cml-quote{
  margin:0;
  line-height: 1.2em;
  color: rgba(255,255,255,.92);
  font-size: 16px;
  font-weight: 400;
  font-family: Trebuchet MS;
}

.cml-dots{
  margin-top: 22px;
  width: 220px;
  margin-left: auto;
  margin-right: auto;
  display:flex;
  justify-content:center;
  align-items:center;
  gap: 12px;
  position: relative;
  padding: 8px 0 14px;
}
.cml-dots::after{
  content:"";
  position:absolute;
  left: 18px;
  right: 18px;
  bottom: 17px;
  height: 2px;
  background: rgba(11,79,138,0.14);
  border-radius: 999px;
}
.cml-dot{
  width: 7px;
  height: 7px;
  border-radius: 999px;
  border:0;
  padding:0;
  cursor:pointer;
  background: rgba(11,79,138,0.22);
  position: relative;
  z-index: 2;
}
.cml-dot.is-active{
  width: 9px;
  height: 9px;
  background:#0B4F8A;
  box-shadow: 0 0 0 5px rgba(11,79,138,0.10);
}

/* Responsive */
@media (max-width: 980px){
  .cml-voice-wrap{ --cml-gap: 18px; }
  .cml-card{ max-width: 360px; }
  .cml-card.is-active{ transform: scale(1.04); }
  .cml-plane{ display:none; }
}



