/* ── WP Testimonials — Public Styles ──────────────────────────────────── */
p.wpt-avis {
  display: -webkit-box;
  -webkit-line-clamp: 8; /* limite à 5 lignes */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
	font-family:"Poppins";
}


strong.wpt-client-name{
	font-family:"Poppins";
}
/* ── Section ───────────────────────────────────────────────────────────── */
.wpt-section {
  background: var(--wpt-section-bg, #f8fafc);
  padding: var(--wpt-section-pad, 80px) 0;
  overflow: hidden;
  width: 100%;
}
.wpt-inner {
  display: flex;
  align-items: center;
  gap: 56px;
  max-width: 1280px;
  margin: 0 auto;
}

img.wpt-client-img {
    border-radius: 50px !important;
	border : solid 3px white !important;
}

/* ── Left column ───────────────────────────────────────────────────────── */
.wpt-col-left {
  flex: 0 0 36%;
  max-width: 36%;
}

/* Brand icon */
.wpt-brand-icon {
  width: 44px;
  margin-bottom: 16px;
}
.wpt-brand-icon svg { width: 100%; height: auto; }

/* Label */
.wpt-label {
  font-size: 18px;
  font-weight: 600;
	font-family:"Poppins";
  text-transform: uppercase;
  color: var(--wpt-primary, #1a2456);
  margin: 0 0 12px;
}

/* Title */
.wpt-title {
  font-family: "Poppins";
	font-size:50px;
  font-weight: 600;
  color: var(--wpt-text, #1e293b);
  line-height: 1.15;
  margin: 0 0 32px;
}

/* Stats box */
.wpt-stat-box {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--wpt-primary, #1a2456);
  border-radius: 12px;
  padding: 18px 20px;
  margin-bottom: 36px;
}
.wpt-stat-icon {
  width: 52px;
  height: 52px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.wpt-stat-icon svg { width: 100%; height: 100%; }
.wpt-stat-text {
	font-family:"Poppins";
  font-size: 14px;
  color: rgba(255,255,255,.85);
  margin: 0;
  line-height: 1.5;
}
.wpt-stat-text strong { color: #fff; font-weight: 800; }

/* Navigation arrows */
.wpt-nav {
  display: flex;
  align-items: center;
  gap: 12px;
}
.wpt-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid #e2e8f0;
/*   background: #0B385F !important;
  color: white; */
	background : white !important;
	color : #0B385F !important ; 
  cursor: pointer;
  transition: background .2s, border-color .2s, color .2s, transform .2s;
  box-shadow: 0 2px 8px rgba(0,0,0,.06);
}
.wpt-arrow svg { width: 20px; height: 20px; }
.wpt-arrow:hover {
  background: var(--wpt-primary, #1a2456);
  border-color: var(--wpt-primary, #1a2456);
  color: #fff;
  transform: scale(1.06);
}
.wpt-arrow:active { transform: scale(.95); }
.wpt-arrow.swiper-button-disabled {
  opacity: .4;
  pointer-events: none;
}

/* ── Right column ──────────────────────────────────────────────────────── */
.wpt-col-right {
  flex: 1 1 0;
  min-width: 0;
  overflow: hidden;
}
.wpt-swiper { overflow: visible; }
.wpt-swiper .swiper-wrapper { align-items: stretch; }
.wpt-swiper .swiper-slide { height: auto; }

/* ── Card ──────────────────────────────────────────────────────────────── */
/* .wpt-card:hover{
	transition: all 0.3s ease;
	border : solid 1px #0B385F !important;
} */
.wpt-card {
  background: var(--wpt-card-bg, #ffffff);
  border-radius: var(--wpt-radius, 12px);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
}

/* ── Card head (stars + corner deco) ───────────────────────────────────── */
.wpt-card-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: var(--wpt-card-pad, 32px) var(--wpt-card-pad, 32px) 0;
  position: relative;
}

/* Stars */
.wpt-stars { display: flex; gap: 3px; }
.wpt-star {
  font-size: 20px;
  color: #d1d5db;
  line-height: 1;
}
.wpt-star.active { color: var(--wpt-accent, #e8b84b); }

/* Corner decoration — navy angular bracket */
.wpt-corner-deco {
  width: 64px;
  height: 64px;
  position: relative;
  flex-shrink: 0;
  margin-top: -4px;
  margin-right: -4px;
}
.wpt-corner-deco::before,
.wpt-corner-deco::after {
  content: '';
  position: absolute;
  background: var(--wpt-primary, #1a2456);
  border-radius: 4px;
}
/* Vertical bar */
.wpt-corner-deco::before {
  top: 0;
  right: 0;
  width: 12px;
  height: 48px;
}
/* Horizontal bar */
.wpt-corner-deco::after {
  top: 0;
  right: 0;
  width: 48px;
  height: 12px;
}

/* ── Review text ───────────────────────────────────────────────────────── */
.wpt-avis {
  font-size: var(--wpt-font-text, 16px);
  color: #475569;
  line-height: 1.75;
  margin-right: 10px;
	margin-top : 20px;
	margin-bottom : 20px;
	margin-left : 20px;
  flex: 1;
}

/* ── Card footer (dark navy) ───────────────────────────────────────────── */
.wpt-card-footer {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #F1F2F3 !important;
  padding: 18px var(--wpt-card-pad, 32px);
  margin-top: auto;
}
.wpt-client-img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid rgba(255,255,255,.25);
  flex-shrink: 0;
}
.wpt-client-initials {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255,255,255,.2);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 20px;
  flex-shrink: 0;
}
.wpt-client-info {
	font-family:"Poppins";
  display: flex;
  flex-direction: column;
  gap: 3px;
  flex: 1;
}
.wpt-client-name {
  font-size: var(--wpt-font-name, 16px);
  font-weight: 700;
  color: #0B385F !important;
  display: block;
}
.wpt-client-role {
  font-size: 11px;
  font-weight: 600;
  color: #0B385F;
  display: block;
  text-transform: uppercase;
}
.wpt-company-logo {
  max-height: 28px;
  max-width: 80px;
  object-fit: contain;
}

/* ── Empty state ───────────────────────────────────────────────────────── */
.wpt-empty {
  text-align: center;
  color: #94a3b8;
  padding: 40px;
  font-style: italic;
}

/* ── Responsive ─────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .wpt-inner { gap: 36px; }
  .wpt-col-left { flex: 0 0 40%; max-width: 40%; }
  .wpt-title { font-size: clamp(28px, 4vw, 42px); }
}
@media (max-width: 768px) {
  .wpt-inner {
    flex-direction: column;
    padding: 0 20px;
    gap: 32px;
  }
  .wpt-col-left,
  .wpt-col-right {
    flex: none;
    max-width: 100%;
    width: 100%;
  }
  .wpt-title { font-size: clamp(26px, 8vw, 38px); }
}
@media (max-width: 480px) {
  .wpt-card-head,
  .wpt-avis { padding-left: 20px; padding-right: 20px; }
  .wpt-card-footer { padding: 14px 20px; }
  .wpt-corner-deco { width: 44px; height: 44px; }
  .wpt-corner-deco::before { height: 34px; width: 9px; }
  .wpt-corner-deco::after  { width: 34px; height: 9px; }
}


