/**
 * CARexplorer - Explore Page CSS
 * SEO landing page "Voitures occasion"
 * Eldora UI effects + full-width layout
 */

/* =====================================================
   ANIMATIONS (kept: shimmer divider only)
   ===================================================== */
@keyframes exploreShimmer {
    0% { left: -100%; }
    100% { left: 200%; }
}

@keyframes heroGlow {
    0%, 100% { opacity: 0.4; }
    50% { opacity: 0.7; }
}

/* =====================================================
   LAZY-REVEAL SYSTEM (IntersectionObserver driven)
   ===================================================== */
.ce-anim-target {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.ce-anim-target.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* =====================================================
   MAIN LAYOUT
   ===================================================== */
.ce-explore-main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 32px;
    padding-top: 100px;
    position: relative;
    z-index: 2;
}

/* =====================================================
   HERO SEO SECTION
   ===================================================== */
.ce-explore-hero {
    text-align: center;
    padding: 60px 0 48px;
}

.ce-explore-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    background: rgba(210, 133, 255, 0.08);
    border: 1px solid rgba(210, 133, 255, 0.25);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    color: #D285FF;
    margin-bottom: 28px;
}

.ce-explore-badge svg {
    color: #D285FF;
}

.ce-explore-h1 {
    font-family: 'Inter', sans-serif;
    font-size: 52px;
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.1;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #ffffff 0%, rgba(210, 133, 255, 0.8) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ce-explore-subtitle {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.7;
    max-width: 620px;
    margin: 0 auto 32px;
}

.ce-explore-subtitle strong {
    color: rgba(255, 255, 255, 0.75);
}

/* Hero CTA button (kept as fallback) */
.ce-explore-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: linear-gradient(135deg, #D285FF 0%, #a855f7 100%);
    color: #000;
    font-size: 15px;
    font-weight: 700;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(210, 133, 255, 0.3);
    position: relative;
    overflow: hidden;
}

.ce-explore-cta::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -100%;
    width: 50%;
    height: 200%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transform: skewX(-20deg);
    transition: left 0.6s ease;
}

.ce-explore-cta:hover::after {
    left: 150%;
}

.ce-explore-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(210, 133, 255, 0.4);
    color: #000;
}

/* =====================================================
   HERO SEARCH BAR
   ===================================================== */
.ce-hero-search-form {
    max-width: 600px;
    margin: 0 auto 20px;
}

.ce-hero-search-bar {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(210, 133, 255, 0.3);
    border-radius: 50px;
    padding: 6px 6px 6px 24px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.ce-hero-search-bar:focus-within {
    border-color: rgba(210, 133, 255, 0.6);
    box-shadow: 0 0 24px rgba(210, 133, 255, 0.15);
}

.ce-hero-search-input {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    color: #ffffff;
    font-size: 15px;
    font-family: 'Inter', sans-serif;
    padding: 10px 0;
    min-width: 0;
}

.ce-hero-search-input::placeholder {
    color: rgba(255, 255, 255, 0.35);
}

.ce-hero-search-btn {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: linear-gradient(135deg, #D285FF 0%, #a855f7 100%);
    color: #000;
    font-size: 14px;
    font-weight: 700;
    font-family: 'Inter', sans-serif;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 12px rgba(210, 133, 255, 0.3);
}

.ce-hero-search-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 20px rgba(210, 133, 255, 0.4);
}

.ce-hero-search-btn svg {
    width: 16px;
    height: 16px;
}

/* Suggestion pills */
.ce-hero-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    margin-top: 16px;
}

.ce-hero-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 16px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    color: rgba(255, 255, 255, 0.55);
    font-size: 13px;
    text-decoration: none;
    transition: all 0.25s ease;
    cursor: pointer;
}

.ce-hero-pill:hover {
    background: rgba(210, 133, 255, 0.1);
    border-color: rgba(210, 133, 255, 0.3);
    color: #D285FF;
}

/* =====================================================
   SECTIONS
   ===================================================== */
.ce-explore-section {
    margin-bottom: 48px;
}

.ce-explore-section-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.ce-explore-section-left {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    flex: 1;
    min-width: 0;
}

.ce-explore-section-emoji {
    font-size: 28px;
    flex-shrink: 0;
    margin-top: 2px;
}

.ce-explore-section-title {
    font-size: 22px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 6px 0;
    line-height: 1.3;
}

.ce-explore-section-desc {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.45);
    margin: 0;
    line-height: 1.5;
}

.ce-explore-section-title-centered {
    font-size: 26px;
    font-weight: 700;
    color: #ffffff;
    text-align: center;
    margin: 0 0 8px 0;
}

.ce-explore-section-subtitle {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.45);
    text-align: center;
    margin: 0 0 32px 0;
}

/* =====================================================
   "VOIR TOUT" BUTTON
   ===================================================== */
.ce-explore-voir-tout {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(210, 133, 255, 0.08);
    border: 1px solid rgba(210, 133, 255, 0.25);
    border-radius: 50px;
    color: #D285FF;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
}

.ce-explore-voir-tout::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -100%;
    width: 50%;
    height: 200%;
    background: linear-gradient(90deg, transparent, rgba(210, 133, 255, 0.12), transparent);
    transform: skewX(-20deg);
    transition: left 0.5s ease;
}

.ce-explore-voir-tout:hover::after {
    left: 150%;
}

.ce-explore-voir-tout:hover {
    background: rgba(210, 133, 255, 0.15);
    border-color: rgba(210, 133, 255, 0.4);
    transform: translateX(3px);
    color: #D285FF;
}

/* =====================================================
   CARDS SCROLL CONTAINER
   ===================================================== */
.ce-explore-cards-wrapper {
    position: relative;
}

.ce-explore-cards-scroll {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 8px;
    scrollbar-width: thin;
    scrollbar-color: rgba(210, 133, 255, 0.3) transparent;
    mask-image: linear-gradient(90deg, #000 0%, #000 calc(100% - 32px), transparent);
    -webkit-mask-image: linear-gradient(90deg, #000 0%, #000 calc(100% - 32px), transparent);
}

.ce-explore-cards-scroll::-webkit-scrollbar {
    height: 4px;
}

.ce-explore-cards-scroll::-webkit-scrollbar-track {
    background: transparent;
}

.ce-explore-cards-scroll::-webkit-scrollbar-thumb {
    background: rgba(210, 133, 255, 0.3);
    border-radius: 4px;
}

/* Navigation arrows */
.ce-explore-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    background: rgba(15, 15, 26, 0.9);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.2s ease;
    color: #fff;
}

.ce-explore-nav:hover {
    background: rgba(210, 133, 255, 0.2);
    border-color: rgba(210, 133, 255, 0.4);
}

.ce-explore-nav.prev { left: -18px; }
.ce-explore-nav.next { right: -18px; }

/* =====================================================
   ANNONCE CARDS - Matching chat card design
   ===================================================== */
.ce-explore-card {
    flex: 0 0 260px;
    min-width: 260px;
    background: linear-gradient(145deg, rgba(28, 22, 50, 0.95) 0%, rgba(18, 14, 35, 0.98) 100%);
    border: 1px solid rgba(120, 100, 180, 0.2);
    border-radius: 16px;
    overflow: hidden;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.ce-explore-card:hover {
    border-color: rgba(210, 133, 255, 0.4);
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5), 0 0 24px rgba(210, 133, 255, 0.12), 0 0 0 1px rgba(210, 133, 255, 0.1);
}

.ce-explore-card-image {
    position: relative;
    height: 150px;
    background: #0a0812;
    overflow: hidden;
}

.ce-explore-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.ce-explore-card:hover .ce-explore-card-image img {
    transform: scale(1.05);
}

.ce-explore-card-noimg {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(15, 12, 30, 0.8);
}

.ce-explore-card-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    padding: 5px 10px;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    border-radius: 16px;
    font-size: 11px;
    font-weight: 500;
    color: #fff;
    text-transform: capitalize;
}

.ce-explore-card-body {
    padding: 14px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* Header: Title + Price side by side */
.ce-explore-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 8px;
}

.ce-explore-card-title-wrap {
    flex: 1;
    min-width: 0;
}

.ce-explore-card-title {
    font-size: 15px;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.3;
}

.ce-explore-card-finition {
    font-size: 12px;
    color: rgba(160, 160, 181, 0.8);
    margin: 3px 0 0 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.ce-explore-card-price {
    font-size: 16px;
    font-weight: 700;
    color: #ffffff;
    white-space: nowrap;
    flex-shrink: 0;
}

/* Specs grid 2x2 */
.ce-explore-card-specs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px 12px;
}

.ce-explore-card-spec {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: rgba(160, 160, 181, 0.8);
}

.ce-explore-card-spec svg {
    flex-shrink: 0;
    opacity: 0.5;
}

/* =====================================================
   DIVIDER WITH SHIMMER
   ===================================================== */
.ce-explore-divider {
    height: 1px;
    margin: 48px 0;
    position: relative;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.04);
}

.ce-explore-divider::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 80%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(210, 133, 255, 0.4), rgba(0, 229, 255, 0.3), transparent);
    animation: exploreShimmer 5s ease-in-out infinite;
}

/* =====================================================
   BRANDS GRID
   ===================================================== */
.ce-explore-brands-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 12px;
}

.ce-explore-brand-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 20px 12px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 14px;
    text-decoration: none;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.ce-explore-brand-card:hover {
    background: rgba(210, 133, 255, 0.06);
    border-color: rgba(210, 133, 255, 0.25);
    transform: translateY(-3px);
}

.ce-explore-brand-name {
    font-size: 15px;
    font-weight: 700;
    color: #ffffff;
}

.ce-explore-brand-count {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.35);
}

/* =====================================================
   VIBES GRID
   ===================================================== */
.ce-explore-vibes-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

.ce-explore-vibe-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 24px 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 16px;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.ce-explore-vibe-card:hover {
    background: rgba(210, 133, 255, 0.08);
    border-color: rgba(210, 133, 255, 0.3);
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(210, 133, 255, 0.1);
}

.ce-explore-vibe-emoji {
    font-size: 28px;
}

.ce-explore-vibe-title {
    font-size: 15px;
    font-weight: 700;
    color: #ffffff;
}

.ce-explore-vibe-desc {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.4);
}

/* =====================================================
   MID-PAGE CTA (between categories 4 and 5)
   ===================================================== */
.ce-explore-midcta {
    margin: 48px 0;
    padding: 40px 32px;
    background: linear-gradient(145deg, rgba(210, 133, 255, 0.06) 0%, rgba(168, 85, 247, 0.04) 100%);
    border: 1px solid rgba(210, 133, 255, 0.2);
    border-radius: 24px;
    text-align: center;
}

.ce-midcta-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    background: rgba(210, 133, 255, 0.1);
    border: 1px solid rgba(210, 133, 255, 0.25);
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    color: #D285FF;
    margin-bottom: 16px;
}

.ce-midcta-title {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 10px 0;
}

.ce-midcta-desc {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.5);
    margin: 0 auto 24px;
    max-width: 500px;
    line-height: 1.6;
}

.ce-midcta-form {
    max-width: 560px;
    margin: 0 auto 16px;
}

.ce-midcta-input-wrap {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(210, 133, 255, 0.25);
    border-radius: 50px;
    padding: 5px 5px 5px 20px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.ce-midcta-input-wrap:focus-within {
    border-color: rgba(210, 133, 255, 0.5);
    box-shadow: 0 0 20px rgba(210, 133, 255, 0.12);
}

.ce-midcta-input {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    color: #ffffff;
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    padding: 10px 0;
    min-width: 0;
}

.ce-midcta-input::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.ce-midcta-btn {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 11px 22px;
    background: linear-gradient(135deg, #D285FF 0%, #a855f7 100%);
    color: #000;
    font-size: 13px;
    font-weight: 700;
    font-family: 'Inter', sans-serif;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.ce-midcta-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(210, 133, 255, 0.35);
}

.ce-midcta-btn svg {
    width: 14px;
    height: 14px;
}

.ce-midcta-examples {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
}

.ce-midcta-example {
    padding: 6px 14px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 50px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 12px;
    text-decoration: none;
    transition: all 0.25s ease;
    cursor: pointer;
}

.ce-midcta-example:hover {
    background: rgba(210, 133, 255, 0.1);
    border-color: rgba(210, 133, 255, 0.25);
    color: #D285FF;
}

/* =====================================================
   SEO TEXT SECTION - full content width
   ===================================================== */
.ce-explore-seo {
    margin: 0 0 48px 0;
    padding: 32px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 20px;
}

.ce-explore-seo h2 {
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 16px 0;
}

.ce-explore-seo h3 {
    font-size: 17px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.85);
    margin: 24px 0 10px 0;
}

.ce-explore-seo p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.7;
    margin: 0 0 14px 0;
}

.ce-explore-seo p:last-child {
    margin-bottom: 0;
}

.ce-explore-seo strong {
    color: rgba(255, 255, 255, 0.7);
}

.ce-explore-seo a {
    color: #D285FF;
    text-decoration: none;
    transition: color 0.2s;
}

.ce-explore-seo a:hover {
    color: #c066f7;
    text-decoration: underline;
}

.ce-explore-seo ul {
    margin: 0 0 14px 0;
    padding-left: 20px;
}

.ce-explore-seo li {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.7;
    margin-bottom: 4px;
}

.ce-explore-seo li strong {
    color: rgba(255, 255, 255, 0.7);
}

/* =====================================================
   FOOTER
   ===================================================== */
.ce-explore-footer {
    text-align: center;
    padding: 32px 0 48px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.ce-explore-footer-links {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.ce-explore-footer-links a {
    color: rgba(255, 255, 255, 0.4);
    text-decoration: none;
    font-size: 13px;
    transition: color 0.2s;
}

.ce-explore-footer-links a:hover {
    color: #D285FF;
}

.ce-explore-footer-copy {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.25);
    margin: 0;
}

/* =====================================================
   RESPONSIVE
   ===================================================== */
@media (max-width: 768px) {
    .ce-explore-main {
        padding: 0 16px;
        padding-top: 80px;
    }

    .ce-explore-hero {
        padding: 40px 0 32px;
    }

    .ce-explore-h1 {
        font-size: 34px;
    }

    .ce-explore-subtitle {
        font-size: 15px;
    }

    /* Hero search responsive */
    .ce-hero-search-bar {
        padding: 4px 4px 4px 16px;
    }

    .ce-hero-search-input {
        font-size: 14px;
    }

    .ce-hero-search-btn {
        padding: 10px 18px;
        font-size: 13px;
    }

    .ce-hero-pills {
        gap: 6px;
    }

    .ce-hero-pill {
        font-size: 12px;
        padding: 6px 12px;
    }

    .ce-explore-section-header {
        flex-direction: column;
        gap: 12px;
    }

    .ce-explore-section-title {
        font-size: 18px;
    }

    .ce-explore-section-title-centered {
        font-size: 22px;
    }

    .ce-explore-nav {
        display: none;
    }

    .ce-explore-card {
        flex: 0 0 230px;
        min-width: 230px;
    }

    .ce-explore-card-image {
        height: 130px;
    }

    .ce-explore-brands-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }

    .ce-explore-vibes-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .ce-explore-vibe-card {
        padding: 18px 12px;
    }

    .ce-explore-seo {
        padding: 24px 20px;
    }

    .ce-explore-seo h2 {
        font-size: 18px;
    }

    /* Mid-CTA responsive */
    .ce-explore-midcta {
        padding: 28px 20px;
        margin: 36px 0;
    }

    .ce-midcta-title {
        font-size: 20px;
    }

    .ce-midcta-desc {
        font-size: 14px;
    }

    .ce-midcta-input {
        font-size: 13px;
    }

    .ce-midcta-btn {
        padding: 10px 16px;
        font-size: 12px;
    }

    .ce-midcta-example {
        font-size: 11px;
        padding: 5px 12px;
    }
}

@media (max-width: 480px) {
    .ce-explore-h1 {
        font-size: 28px;
    }

    .ce-explore-brands-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .ce-explore-card {
        flex: 0 0 210px;
        min-width: 210px;
    }

    .ce-explore-card-image {
        height: 110px;
    }

    .ce-explore-card-price {
        font-size: 14px;
    }

    .ce-explore-card-specs {
        grid-template-columns: 1fr;
        gap: 4px;
    }

    .ce-hero-search-btn span {
        display: none;
    }
}

/* =====================================================
   REDUCE MOTION
   ===================================================== */
@media (prefers-reduced-motion: reduce) {
    .ce-anim-target {
        opacity: 1;
        transform: none;
        transition: none;
    }

    .ce-explore-divider::after {
        animation: none;
    }

    .ce-explore-cta::after,
    .ce-explore-voir-tout::after {
        transition: none;
    }
}
