/* Styles extraits de page-temoignages.php — servis en fichier cacheable (voir colibris_enqueue_template_css). */

/* ─────────────────────────────────────────────
   PAGE TÉMOIGNAGES,  Premium Social Proof
───────────────────────────────────────────── */

body {
    font-family: 'Montserrat', sans-serif;
}

/* ── 2. Video ── */
.temoignages-video {
    padding: 100px 24px;
    background: #faf8f5;
}
.temoignages-video__inner {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}
.temoignages-video__title {
    font-size: clamp(1.6rem, 2.8vw, 2.2rem);
    font-weight: 700;
    color: #1a1612;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin: 0 0 16px;
}
.temoignages-video__text {
    font-size: clamp(0.95rem, 1.3vw, 1.05rem);
    color: #6b6460;
    line-height: 1.7;
    max-width: 600px;
    margin: 0 auto 48px;
}
.temoignages-video__frame {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.10);
}
.temoignages-video__frame iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* ── 3. En 4 mots ── */
.temoignages-pillars {
    padding: 120px 24px;
    background: #fff;
}
.temoignages-pillars__inner {
    max-width: 1100px;
    margin: 0 auto;
}
.temoignages-pillars__header {
    text-align: center;
    margin-bottom: 64px;
}
.temoignages-pillars__title {
    font-size: clamp(1.6rem, 2.8vw, 2.2rem);
    font-weight: 700;
    color: #1a1612;
    letter-spacing: -0.02em;
    margin: 0;
}
.temoignages-pillars__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}
.temoignages-pillar {
    background: #faf8f5;
    border-radius: 20px;
    padding: 36px 28px;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.temoignages-pillar:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(0,0,0,0.06);
}
.temoignages-pillar__icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 20px;
    background: var(--pillar-color, rgba(0,0,0,0.06));
}
.temoignages-pillar__name {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a1612;
    margin: 0 0 14px;
    letter-spacing: -0.01em;
}
.temoignages-pillar__quote {
    font-size: 0.88rem;
    color: #3d3632;
    line-height: 1.65;
    font-style: italic;
    margin: 0 0 14px;
    position: relative;
    padding-left: 14px;
    border-left: 2px solid #e8e3de;
}
.temoignages-pillar__desc {
    font-size: 0.8rem;
    color: #9b9490;
    line-height: 1.6;
    margin: 0;
}

/* ── 4. Gallery ── */
.temoignages-gallery {
    padding: 120px 24px;
    background: #faf8f5;
}
.temoignages-gallery__inner {
    max-width: 1100px;
    margin: 0 auto;
}
.temoignages-gallery__header {
    text-align: center;
    margin-bottom: 48px;
}
.temoignages-gallery__title {
    font-size: clamp(1.6rem, 2.8vw, 2.2rem);
    font-weight: 700;
    color: #1a1612;
    letter-spacing: -0.02em;
    margin: 0 0 12px;
}
.temoignages-gallery__subtitle {
    font-size: 1rem;
    color: #6b6460;
    margin: 0;
}

/* Filter pills */
.temoignages-filters {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}
.temoignages-filter {
    padding: 8px 20px;
    border-radius: 100px;
    font-size: 0.82rem;
    font-weight: 500;
    border: 1.5px solid #d6d0cc;
    background: #fff;
    color: #6b6460;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
}
.temoignages-filter:hover {
    border-color: #009C8E;
    color: #009C8E;
}
.temoignages-filter.is-active {
    background: #009C8E;
    border-color: #009C8E;
    color: #fff;
}

/* Testimonial cards */
.temoignages-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}
.temoignage-card {
    background: #fff;
    border-radius: 20px;
    padding: 36px 32px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.3s ease;
    display: flex;
    flex-direction: column;
}
.temoignage-card[data-hidden="true"] {
    display: none;
}
.temoignage-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.07);
}
.temoignage-card__tag {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 100px;
    margin-bottom: 20px;
    width: fit-content;
}
.temoignage-card__tag--2-3   { background: rgba(0,156,142,0.10); color: #009C8E; }
.temoignage-card__tag--3-6   { background: rgba(255,180,21,0.12); color: #c78a00; }
.temoignage-card__tag--primary { background: rgba(72,123,255,0.10); color: #487BFF; }
.temoignage-card__tag--kidsclub { background: rgba(217,70,239,0.10); color: #d946ef; }
.temoignage-card__tag--alumni  { background: rgba(72,123,255,0.10); color: #487BFF; }
.temoignage-card__quote {
    font-size: 0.95rem;
    color: #3d3632;
    line-height: 1.75;
    margin: 0 0 20px;
    flex: 1;
    position: relative;
}
.temoignage-card__quote--clamped {
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.temoignage-card__quote--expanded {
    -webkit-line-clamp: unset;
    overflow: visible;
}
.temoignage-card__expand {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 0.78rem;
    font-weight: 500;
    color: #009C8E;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
    margin-bottom: 20px;
    transition: gap 0.2s ease;
}
.temoignage-card__expand:hover {
    gap: 8px;
}
.temoignage-card__footer {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 20px;
    border-top: 1px solid #f0ece8;
    margin-top: auto;
}
.temoignage-card__avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 600;
    color: #fff;
    flex-shrink: 0;
}
.temoignage-card__author {
    font-size: 0.85rem;
    font-weight: 600;
    color: #1a1612;
    margin: 0;
    line-height: 1.3;
}
.temoignage-card__context {
    font-size: 0.75rem;
    color: #9b9490;
    margin: 2px 0 0;
    line-height: 1.4;
}

/* ── 5. Après Colibris ── */
.temoignages-after {
    padding: 120px 24px;
    background: #fff;
}
.temoignages-after__inner {
    max-width: 900px;
    margin: 0 auto;
}
.temoignages-after__header {
    text-align: center;
    margin-bottom: 64px;
}
.temoignages-after__title {
    font-size: clamp(1.6rem, 2.8vw, 2.2rem);
    font-weight: 700;
    color: #1a1612;
    letter-spacing: -0.02em;
    margin: 0 0 12px;
}
.temoignages-after__subtitle {
    font-size: 1rem;
    color: #6b6460;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}
.temoignages-after__list {
    display: flex;
    flex-direction: column;
    gap: 32px;
}
.temoignage-after-card {
    background: #faf8f5;
    border-radius: 20px;
    padding: 40px 36px;
    border-left: 4px solid #FFB415;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.temoignage-after-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.05);
}
.temoignage-after-card__quote {
    font-size: clamp(0.95rem, 1.2vw, 1.05rem);
    color: #3d3632;
    line-height: 1.8;
    margin: 0 0 20px;
    font-style: italic;
}
.temoignage-after-card__footer {
    display: flex;
    align-items: center;
    gap: 12px;
}
.temoignage-after-card__dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #FFB415;
    flex-shrink: 0;
}
.temoignage-after-card__author {
    font-size: 0.85rem;
    font-weight: 600;
    color: #1a1612;
    margin: 0;
}
.temoignage-after-card__context {
    font-size: 0.78rem;
    color: #9b9490;
    margin: 2px 0 0;
}

/* ── Responsive ── */
@media (max-width: 968px) {
    .temoignages-pillars__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .temoignages-grid {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 640px) {
    .temoignages-pillars__grid {
        grid-template-columns: 1fr;
    }
    .temoignages-video,
    .temoignages-pillars,
    .temoignages-gallery,
    .temoignages-after {
        padding: 80px 20px;
    }
    .temoignage-card { padding: 28px 24px; }
    .temoignage-after-card { padding: 28px 24px; }
}
