/* =========================
   PLEACH: TEAM SLIDER
========================= */
.pleach-team-slider{ position:relative; width:100%; }
.pleach-team-slider .swiper{ width:100%; }
.pleach-team-slider .pleach-card{
  background: var(--pleach-card-bg, #ffffff);
  border: 1px solid var(--pleach-card-border, #cfe1ea);
  border-radius: var(--pleach-card-radius, 10px);
  padding: var(--pleach-card-pad, 14px);
  transition: transform .25s ease, box-shadow .25s ease;
}
.pleach-team-slider .pleach-card:hover{
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0,0,0,.08);
}
.pleach-team-slider .pleach-imgWrap{
  border-radius: var(--pleach-img-radius, 10px);
  overflow:hidden;
  background: var(--pleach-img-bg, #97c4cf);
  aspect-ratio: 16/10;
  display:flex; align-items:center; justify-content:center;
}
.pleach-team-slider .pleach-imgWrap img{
  width:100%; height:100%; object-fit:cover; display:block;
}
.pleach-team-slider .pleach-meta{
  display:flex; align-items:center; justify-content:space-between;
  gap:10px; padding-top:10px;
}
.pleach-team-slider .pleach-name{
  font-size: var(--pleach-name-size, 14px);
  font-weight: var(--pleach-name-weight, 600);
  color: var(--pleach-name-color, #111);
  line-height:1.2;
}
.pleach-team-slider .pleach-social{ display:flex; align-items:center; gap:10px; }
.pleach-team-slider .pleach-social a{
  display:inline-flex; align-items:center; justify-content:center;
  width: var(--pleach-social-size, 18px);
  height: var(--pleach-social-size, 18px);
  color: var(--pleach-social-color, #6b6b6b);
  transition: color .2s ease, transform .2s ease;
}
.pleach-team-slider .pleach-social a:hover{
  color: var(--pleach-social-hover, #111);
  transform: translateY(-1px);
}
.pleach-team-slider .pleach-social svg{
  width: var(--pleach-social-size, 18px);
  height: var(--pleach-social-size, 18px);
}

/* arrows */
.pleach-team-slider .pleach-arrows{
  position:absolute;
  right: var(--pleach-arrow-right, 20px);
  bottom: var(--pleach-arrow-bottom, -18px);
  display:flex; gap:10px; z-index:5;
}
.pleach-team-slider .pleach-btn{
  width: var(--pleach-arrow-size, 38px);
  height: var(--pleach-arrow-size, 38px);
  border-radius: var(--pleach-arrow-radius, 999px);
  background: var(--pleach-arrow-bg, #b9d6df);
  border: 1px solid var(--pleach-arrow-border, #8fbfcb);
  color: var(--pleach-arrow-color, #1d3b44);
  display:flex; align-items:center; justify-content:center;
  cursor:pointer;
  transition: transform .15s ease, background .2s ease, color .2s ease, border-color .2s ease;
}
.pleach-team-slider .pleach-btn:hover{
  transform: translateY(-1px);
  background: var(--pleach-arrow-bg-hover, #a8cbd6);
  color: var(--pleach-arrow-color-hover, #102a31);
  border-color: var(--pleach-arrow-border-hover, #79aebb);
}
.pleach-team-slider .pleach-btn svg{
  width: calc(var(--pleach-arrow-size, 38px) * 0.45);
  height: calc(var(--pleach-arrow-size, 38px) * 0.45);
}

/* =========================
   PLEACH: TESTIMONIAL SLIDER
========================= */
.pleach-testimonial-slider{ position:relative; width:100%; }
.pleach-testimonial-slider .swiper{ width:100%; }
.pleach-testimonial-slider .pleach-tcard{
  background: var(--pleach-t-bg, #8fbfcc);
  border: 1px solid var(--pleach-t-border, #2d3b40);
  border-radius: var(--pleach-t-radius, 0px);
  padding: var(--pleach-t-pad, 28px);
  min-height: var(--pleach-t-minh, 320px);
  display:flex; flex-direction:column; justify-content:space-between;
}
.pleach-testimonial-slider .pleach-quote{
  color: var(--pleach-t-text, #0f1a1f);
  font-size: var(--pleach-t-text-size, 15px);
  line-height:1.7;
  font-weight:500;
  white-space: pre-line;
}
.pleach-testimonial-slider .pleach-foot{ padding-top:18px; }
.pleach-testimonial-slider .pleach-role{
  color: var(--pleach-t-role, #ff4b22);
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: var(--pleach-t-role-size, 11px);
  font-weight:700;
  margin-bottom:4px;
}
.pleach-testimonial-slider .pleach-person{
  color: var(--pleach-t-name, #0f1a1f);
  font-size: var(--pleach-t-name-size, 13px);
  font-weight:600;
}
.pleach-testimonial-slider .pleach-bigmark{
  position:absolute;
  right:22px; bottom:18px;
  font-size: var(--pleach-t-mark-size, 90px);
  line-height:1;
  color: var(--pleach-t-mark, rgba(0,0,0,.18));
  font-weight:900;
  user-select:none;
  pointer-events:none;
}
.pleach-testimonial-slider .pleach-arrows{
  position:absolute;
  right: var(--pleach-t-arrow-right, 24px);
  bottom: var(--pleach-t-arrow-bottom, -18px);
  display:flex; gap:14px; z-index:5;
}
.pleach-testimonial-slider .pleach-btn{
  width: var(--pleach-t-arrow-size, 44px);
  height: var(--pleach-t-arrow-size, 44px);
  border-radius: var(--pleach-t-arrow-radius, 999px);
  background: transparent;
  border:0;
  color: var(--pleach-t-arrow-color, #ff4b22);
  display:flex; align-items:center; justify-content:center;
  cursor:pointer;
  transition: transform .15s ease, color .2s ease;
}
.pleach-testimonial-slider .pleach-btn:hover{
  transform: translateY(-1px);
  color: var(--pleach-t-arrow-hover, #ff2b00);
}
.pleach-testimonial-slider .pleach-btn svg{
  width: calc(var(--pleach-t-arrow-size, 44px) * 0.55);
  height: calc(var(--pleach-t-arrow-size, 44px) * 0.55);
}
