/* Box Conseil - Bloc Témoignages */

/* ── Bloc testimonial ── */
.bcte-bloc-testimonial {
  background: #ffffff;
  width: 100%;
  padding: 0px;
  position: relative;
}

.bcte-bloc-testimonial-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 80px;
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 0 100px;
  align-items: start;
  position: relative;
  font-family: 'Poppins', sans-serif;
  color: #1B3D5F;
}

/* ── Pastille ── */
.bcte-pastille-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding-top: 0;
  margin-top: 80px;
}

/* ── Image badge (v1, v2) ── */
.bcte-badge-image {
  width: 260px;
  height: auto;
  max-width: 100%;
  flex-shrink: 0;
  display: block;
}

.bcte-pastille {
  width: 260px;
  height: 260px;
  border-radius: 50%;
  border: 1.5px solid #C9A250;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.bcte-pastille svg.bcte-ring-text {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.bcte-pastille-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1;
  position: relative;
  z-index: 1;
}

.bcte-pastille-inner span {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #1B3D5F;
  line-height: 1.1;
  font-family: 'Poppins', sans-serif;
}

.bcte-pastille-inner span:first-child {
  margin-bottom: 2px;
}

.bcte-pastille-inner span:last-child {
  margin-top: 2px;
}

/* ── Tag série ── */
.bcte-serie-tag {
  text-align: center;
  display: none;
}

.bcte-serie-tag .bcte-serie-sub {
  font-family: 'Raleway', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #1B3D5F;
  margin-top: 8px;
  display: block;
}

/* ── Séparateur vertical ── */
.bcte-bloc-testimonial-inner::before {
  content: '';
  position: absolute;
  left: 300px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, transparent, #C9A250 20%, #C9A250 80%, transparent);
  opacity: 0.35;
}

/* ── Contenu droite ── */
.bcte-content-right {
  padding-top: 2px;
}

.bcte-guillemet-open {
  font-family: 'Playfair Display', serif;
  font-size: 96px;
  font-weight: 400;
  color: #C9A250;
  line-height: 0.5;
  display: block;
  margin-bottom: -15px;
  opacity: 0.8;
}

.bcte-citation {
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 400;
  font-style: italic;
  line-height: 1.3;
  color: #1B3D5F;
  margin-bottom: 10px;
}

.bcte-citation::after {
  content: ' "';
  font-family: 'Playfair Display', serif;
  color: #C9A250;
  font-size: 14px;
  font-style: italic;
}

.bcte-citation strong {
  font-style: italic;
  font-weight: 600;
  color: #C9A250;
}

.bcte-guillemet-close {
  display: none;
}

.bcte-attrib-divider {
  width: 48px;
  height: 1px;
  background: #C9A250;
  margin: 12px 0 18px;
}

.bcte-auteur-nom {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #C9A250;
  margin-bottom: 2px;
  font-family: 'Poppins', sans-serif;
}

.bcte-auteur-titre {
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 1px;
  color: #1B3D5F;
  opacity: 0.75;
  line-height: 1.2;
  margin-bottom: 6px;
  font-family: 'Poppins', sans-serif;
}

.bcte-auteur-titre strong {
  font-weight: 500;
}

.bcte-auteur-depuis {
  font-family: 'Poppins', sans-serif;
  font-size: 11px;
  font-style: italic;
  color: #1B3D5F;
  opacity: 0.5;
}

/* ── Slider ── */
.bcte-slider-container {
  position: relative;
  overflow: hidden;
  min-height: 400px;
  display: flex;
  align-items: center;
}

.bcte-slide {
  display: none;
  animation: bcte-fadeIn 0.5s ease-in-out;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
}

.bcte-slide.bcte-active {
  display: block;
  position: relative;
}

@keyframes bcte-fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* ── Navigation dots ── */
.bcte-carousel-nav {
  width: 100%;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #ffffff;
  padding: 18px 0 24px;
  border-top: 1px solid rgba(201, 162, 80, 0.15);
}

.bcte-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #C9A250;
  opacity: 0.3;
  cursor: pointer;
  transition: opacity 0.3s, width 0.3s, border-radius 0.3s;
  border: none;
  padding: 0;
  font-size: 0;
}

.bcte-dot:hover {
  opacity: 0.6;
}

.bcte-dot.bcte-active {
  opacity: 1;
  width: 22px;
  border-radius: 4px;
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .bcte-bloc-testimonial-inner {
    grid-template-columns: 1fr;
    padding: 0 28px;
    gap: 28px 0;
  }

  .bcte-bloc-testimonial-inner::before {
    display: none;
  }

  .bcte-pastille-wrap {
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    gap: 20px;
    margin-top: 0;
  }

  .bcte-pastille {
    width: 140px;
    height: 140px;
  }

  .bcte-badge-image {
    width: 140px;
    height: auto;
  }

  .bcte-citation {
    font-size: 16px;
  }

  .bcte-guillemet-open,
  .bcte-guillemet-close {
    font-size: 64px;
  }
}
