/* ================================================================== */
/*  Nos Auteurs — Frontend Shortcode Styles                           */
/* ================================================================== */

/* --- Section --- */
.nos-auteurs-section {
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 20px;
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
}

/* --- Title --- */
.nos-auteurs-title {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    color: #1d2939;
    margin-bottom: 40px;
    position: relative;
}

.nos-auteurs-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    border-radius: 2px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    margin: 12px auto 0;
}

/* --- Grid --- */
.nos-auteurs-grid {
    display: grid;
    grid-template-columns: repeat(var(--na-columns, 3), 1fr);
    gap: 32px;
}

@media (max-width: 900px) {
    .nos-auteurs-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}

@media (max-width: 540px) {
    .nos-auteurs-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* --- Card --- */
.nos-auteurs-card {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
    padding: 32px 24px 28px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.nos-auteurs-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 36px rgba(102, 126, 234, 0.18);
}

/* --- Photo --- */
.nos-auteurs-photo-wrap {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

img.nos-auteurs-photo {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #eef2ff;
    box-shadow: 0 2px 12px rgba(102, 126, 234, 0.15);
    transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

.nos-auteurs-card:hover img.nos-auteurs-photo {
    border-color: #667eea;
    box-shadow: 0 4px 20px rgba(102, 126, 234, 0.3);
}

/* Placeholder (no photo) */
.nos-auteurs-photo--placeholder {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.nos-auteurs-photo--placeholder span {
    color: #fff;
    font-size: 2.4rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* --- Info --- */
.nos-auteurs-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.nos-auteurs-prenom {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1d2939;
}

.nos-auteurs-nom {
    font-size: 1rem;
    font-weight: 400;
    color: #667085;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* --- Empty state --- */
.nos-auteurs-empty {
    text-align: center;
    color: #98a2b3;
    font-style: italic;
    font-size: 1rem;
}


/* ================================================================== */
/*  Satisfaction Auteurs — Testimonials Carousel                      */
/* ================================================================== */

/* --- Section --- */
.sat-auteurs-section {
    max-width: 800px;
    margin: 0px auto;
    padding: 0 20px;
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
}

/* --- Title --- */
.sat-auteurs-title {
    text-align: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: #1d2939;
    position: relative;
}

.sat-auteurs-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 2px;
    border-radius: 2px;
    background: #dcb64b;
    margin: 12px auto 0;
}

/* --- Carousel --- */
.sat-auteurs-carousel {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
}

/* --- Track --- */
.sat-auteurs-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- Slide --- */
.sat-auteurs-slide {
    min-width: 100%;
    box-sizing: border-box;
    padding: 0 16px;
}

/* --- Card --- */
.sat-auteurs-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 20px 16px 16px;
    text-align: center;
    position: relative;
}

/* Quote icon */
.sat-auteurs-quote-icon {
    font-size: 1.5rem;
    line-height: 1;
    color: #667eea;
    opacity: 0.25;
    margin-bottom: 8px;
}

/* Testimonial text */
.sat-auteurs-text {
    font-size: 0.875rem;
    line-height: 1.5;
    color: #344054;
    font-style: italic;
    margin: 0 0 12px;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
}

/* Author row */
.sat-auteurs-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

/* Avatar */
img.sat-auteurs-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #eef2ff;
    box-shadow: 0 2px 8px rgba(102, 126, 234, 0.15);
}

.sat-auteurs-avatar--placeholder {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.sat-auteurs-avatar--placeholder span {
    color: #fff;
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
}

.sat-auteurs-name {
    font-size: 0.875rem;
    font-weight: 600;
    color: #1d2939;
}

/* --- Navigation arrows --- */
.sat-auteurs-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid #e4e7ec;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    font-size: 18px;
    color: #344054;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: background 0.2s, box-shadow 0.2s;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.sat-auteurs-arrow:hover {
    background: #fff;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.14);
}

.sat-auteurs-arrow--prev {
    left: 8px;
}

.sat-auteurs-arrow--next {
    right: 8px;
}

/* --- Dots --- */
.sat-auteurs-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
}

.sat-auteurs-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    background: #d0d5dd;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
    padding: 0;
}

.sat-auteurs-dot:hover {
    background: #98a2b3;
}

.sat-auteurs-dot.active {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    transform: scale(1.2);
}

/* --- Empty state --- */
.sat-auteurs-empty {
    text-align: center;
    color: #98a2b3;
    font-style: italic;
    font-size: 1rem;
}

/* --- Responsive --- */
@media (max-width: 600px) {
    .sat-auteurs-card {
        padding: 16px 14px 14px;
    }

    .sat-auteurs-text {
        font-size: 0.875rem;
    }

    .sat-auteurs-arrow {
        width: 32px;
        height: 32px;
        font-size: 14px;
    }
}