/**
 * Atelier Coach Pro - Blocs CSS (Frontend + Éditeur)
 */

/* Variables par défaut */
.acp-block {
    --acp-brand: #f59e0b;
    --acp-brand-dark: color-mix(in srgb, var(--acp-brand), #000 20%);
    --acp-brand-light: color-mix(in srgb, var(--acp-brand), #fff 85%);
}

/* ──────────────────────────────────────────
   BLOC: Introduction
   ────────────────────────────────────────── */
.acp-block-intro {
    background: linear-gradient(135deg, 
        color-mix(in srgb, var(--acp-brand), transparent 85%), 
        color-mix(in srgb, var(--acp-brand), transparent 92%)
    );
    border: 1px solid color-mix(in srgb, var(--acp-brand), transparent 60%);
    border-radius: 16px;
    padding: 24px 28px;
    margin: 24px 0;
    font-size: 17px;
    line-height: 1.7;
}

.acp-block-intro p {
    margin: 0;
}

/* ──────────────────────────────────────────
   BLOC: Section
   ────────────────────────────────────────── */
.acp-block-section {
    margin: 28px 0;
    padding: 20px 24px;
    border-left: 4px solid var(--acp-brand);
    background: #f8fafc;
    border-radius: 0 12px 12px 0;
}

.acp-block-section .acp-section-heading {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 0 0 16px 0;
    font-size: 20px;
    font-weight: 700;
    color: #020617;
}

.acp-block-section .acp-section-num {
    display: inline-flex;
    width: 32px;
    height: 32px;
    background: color-mix(in srgb, var(--acp-brand), transparent 80%);
    color: var(--acp-brand);
    border-radius: 8px;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 14px;
    flex-shrink: 0;
}

.acp-block-section .acp-section-content {
    padding-left: 44px;
    color: #475569;
    line-height: 1.8;
}

.acp-block-section .acp-section-content p {
    margin-bottom: 1em;
}

.acp-block-section .acp-section-content p:last-child {
    margin-bottom: 0;
}

/* ──────────────────────────────────────────
   BLOC: Points Clés
   ────────────────────────────────────────── */
.acp-block-keypoints {
    background: #0f172a;
    border-radius: 16px;
    padding: 24px 28px;
    margin: 24px 0;
    color: #e2e8f0;
}

.acp-block-keypoints .acp-kp-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.acp-block-keypoints .acp-kp-icon {
    width: 36px;
    height: 36px;
    background: var(--acp-brand);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.acp-block-keypoints .acp-kp-title {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
}

.acp-block-keypoints .acp-kp-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.acp-block-keypoints .acp-kp-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 0;
}

.acp-block-keypoints .acp-kp-bullet {
    flex-shrink: 0;
}

/* ──────────────────────────────────────────
   BLOC: Exercice
   ────────────────────────────────────────── */
.acp-block-exercise {
    background: #ecfdf5;
    border: 1px solid #a7f3d0;
    border-radius: 16px;
    padding: 24px 28px;
    margin: 24px 0;
}

.acp-block-exercise .acp-ex-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.acp-block-exercise .acp-ex-icon {
    width: 36px;
    height: 36px;
    background: #10b981;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #fff;
}

.acp-block-exercise .acp-ex-title {
    font-size: 18px;
    font-weight: 700;
    color: #065f46;
}

.acp-block-exercise .acp-ex-desc {
    color: #065f46;
    margin-bottom: 12px;
}

.acp-block-exercise .acp-ex-steps {
    list-style: none;
    padding: 0;
    margin: 0;
}

.acp-block-exercise .acp-ex-steps li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 0;
    color: #065f46;
}

.acp-block-exercise .acp-ex-num {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #a7f3d0;
    color: #065f46;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 600;
}

/* ──────────────────────────────────────────
   BLOC: Réflexion
   ────────────────────────────────────────── */
.acp-block-reflection {
    background: #faf5ff;
    border: 1px solid #d8b4fe;
    border-radius: 16px;
    padding: 24px 28px;
    margin: 24px 0;
}

.acp-block-reflection .acp-ref-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.acp-block-reflection .acp-ref-icon {
    width: 36px;
    height: 36px;
    background: #8b5cf6;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #fff;
}

.acp-block-reflection .acp-ref-title {
    font-size: 18px;
    font-weight: 700;
    color: #581c87;
}

.acp-block-reflection .acp-ref-question {
    font-style: italic;
    font-size: 17px;
    color: #581c87;
    margin: 0;
    padding: 0;
    border: none;
    line-height: 1.7;
}

/* ──────────────────────────────────────────
   BLOC: CTA Appel Découverte
   ────────────────────────────────────────── */
.acp-block-cta {
    background: linear-gradient(135deg, #fffbeb, #fff7ed);
    border: 2px solid #fcd34d;
    border-radius: 20px;
    padding: 32px;
    margin: 32px 0;
    text-align: center;
}

.acp-block-cta .acp-cta-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.acp-block-cta .acp-cta-photo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--acp-brand);
    box-shadow: 0 4px 14px color-mix(in srgb, var(--acp-brand), transparent 60%);
}

.acp-block-cta .acp-cta-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: color-mix(in srgb, var(--acp-brand), transparent 80%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    border: 3px solid var(--acp-brand);
}

.acp-block-cta .acp-cta-label {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: var(--acp-brand);
    margin-top: 8px;
}

.acp-block-cta .acp-cta-name {
    font-size: 22px;
    font-weight: 800;
    margin: 0;
    color: #1e293b;
}

.acp-block-cta .acp-cta-title {
    font-size: 14px;
    color: #666;
    margin: 0;
}

.acp-block-cta .acp-cta-subtitle {
    font-size: 15px;
    color: #555;
    max-width: 400px;
    margin: 4px 0;
}

.acp-block-cta .acp-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: linear-gradient(135deg, var(--acp-brand), var(--acp-brand-dark));
    color: #fff;
    border-radius: 14px;
    font-weight: 700;
    font-size: 17px;
    text-decoration: none;
    margin-top: 12px;
    box-shadow: 0 6px 20px color-mix(in srgb, var(--acp-brand), transparent 60%);
    transition: all .2s;
}

.acp-block-cta .acp-cta-btn:hover {
    filter: brightness(1.1);
    transform: translateY(-2px);
    text-decoration: none;
    color: #fff;
}

/* Hide in recording mode */
.acp-cta-hidden {
    display: none !important;
}

/* ──────────────────────────────────────────
   DARK MODE
   ────────────────────────────────────────── */
.acp-dark .acp-block-intro {
    background: color-mix(in srgb, var(--acp-brand), transparent 90%);
}

.acp-dark .acp-block-section {
    background: #1e293b;
}

.acp-dark .acp-block-section .acp-section-heading {
    color: #020617;
}

.acp-dark .acp-block-section .acp-section-content {
    color: #94a3b8;
}

.acp-dark .acp-block-keypoints {
    background: #020617;
}

.acp-dark .acp-block-exercise {
    background: #064e3b;
    border-color: #065f46;
}

.acp-dark .acp-block-exercise .acp-ex-title,
.acp-dark .acp-block-exercise .acp-ex-desc,
.acp-dark .acp-block-exercise .acp-ex-steps li {
    color: #a7f3d0;
}

.acp-dark .acp-block-exercise .acp-ex-num {
    background: #065f46;
    color: #a7f3d0;
}

.acp-dark .acp-block-reflection {
    background: #3b0764;
    border-color: #581c87;
}

.acp-dark .acp-block-reflection .acp-ref-title,
.acp-dark .acp-block-reflection .acp-ref-question {
    color: #d8b4fe;
}

.acp-dark .acp-block-cta {
    background: linear-gradient(135deg, #451a03, #78350f);
    border-color: #b45309;
}

.acp-dark .acp-block-cta .acp-cta-name {
    color: #fff;
}

.acp-dark .acp-block-cta .acp-cta-title,
.acp-dark .acp-block-cta .acp-cta-subtitle {
    color: #d4d4d8;
}

/* ──────────────────────────────────────────
   RESPONSIVE
   ────────────────────────────────────────── */
@media (max-width: 600px) {
    .acp-block-intro,
    .acp-block-section,
    .acp-block-keypoints,
    .acp-block-exercise,
    .acp-block-reflection,
    .acp-block-cta {
        padding: 20px;
        margin: 16px 0;
    }
    
    .acp-block-section .acp-section-content {
        padding-left: 0;
        margin-top: 12px;
    }
    
    .acp-block-cta .acp-cta-btn {
        padding: 14px 24px;
        font-size: 15px;
    }
}

/* ──────────────────────────────────────────
   v3 — VARIANTES DE SECTION
   ────────────────────────────────────────── */
/* Variante "plain" : sans fond ni bordure, juste le titre */
.acp-block-section.acp-section--plain {
    background: transparent;
    border-left: none;
    border-radius: 0;
    padding: 16px 0;
}
.acp-block-section.acp-section--plain .acp-section-content {
    padding-left: 44px;
}

/* Variante "accent" : fond teinté marque, plus visible */
.acp-block-section.acp-section--accent {
    background: color-mix(in srgb, var(--acp-brand), transparent 92%);
    border-left-color: var(--acp-brand);
    border-radius: 12px;
}
.acp-block-section.acp-section--accent .acp-section-heading {
    color: color-mix(in srgb, var(--acp-brand), #000 30%);
}
.acp-block-section.acp-section--accent .acp-section-num {
    background: var(--acp-brand);
    color: #fff;
}

.acp-dark .acp-block-section.acp-section--plain {
    background: transparent;
}
.acp-dark .acp-block-section.acp-section--accent {
    background: color-mix(in srgb, var(--acp-brand), #000 75%);
}
.acp-dark .acp-block-section.acp-section--accent .acp-section-heading {
    color: #fff;
}

/* ──────────────────────────────────────────
   v3 — BLOC: Citation
   ────────────────────────────────────────── */
.acp-block-quote {
    position: relative;
    margin: 32px 0;
    padding: 32px 36px 28px;
    background: color-mix(in srgb, var(--acp-brand), transparent 94%);
    border-left: 4px solid var(--acp-brand);
    border-radius: 0 16px 16px 0;
}
.acp-block-quote .acp-quote-mark {
    position: absolute;
    top: 8px;
    left: 16px;
    font-size: 64px;
    line-height: 1;
    font-family: Georgia, serif;
    color: var(--acp-brand);
    opacity: 0.35;
    pointer-events: none;
    user-select: none;
}
.acp-block-quote .acp-quote-text {
    position: relative;
    z-index: 1;
    margin: 0;
    font-size: 19px;
    line-height: 1.65;
    font-style: italic;
    color: #1e293b;
    font-weight: 500;
}
.acp-block-quote .acp-quote-author {
    margin-top: 14px;
    font-size: 14px;
    font-weight: 600;
    color: var(--acp-brand);
    letter-spacing: 0.02em;
}
.acp-block-quote .acp-quote-author::before {
    content: "— ";
}
.acp-dark .acp-block-quote {
    background: color-mix(in srgb, var(--acp-brand), #000 70%);
}
.acp-dark .acp-block-quote .acp-quote-text {
    color: #e2e8f0;
}

/* ──────────────────────────────────────────
   v3 — BLOC: CTA Simple
   ────────────────────────────────────────── */
.acp-block-cta-simple {
    margin: 24px 0;
    padding: 18px 22px;
    background: #fef3c7;
    background: color-mix(in srgb, var(--acp-brand), transparent 88%);
    border: 1px dashed color-mix(in srgb, var(--acp-brand), transparent 50%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}
.acp-block-cta-simple .acp-cta-simple-text {
    flex: 1;
    margin: 0;
    font-size: 15px;
    color: #1e293b;
    line-height: 1.5;
}
.acp-block-cta-simple .acp-cta-simple-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 20px;
    background: var(--acp-brand);
    color: #fff !important;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    border-radius: 8px;
    transition: transform 0.15s, box-shadow 0.15s;
    white-space: nowrap;
}
.acp-block-cta-simple .acp-cta-simple-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px color-mix(in srgb, var(--acp-brand), transparent 60%);
}
.acp-dark .acp-block-cta-simple {
    background: color-mix(in srgb, var(--acp-brand), #000 75%);
    border-color: color-mix(in srgb, var(--acp-brand), transparent 30%);
}
.acp-dark .acp-block-cta-simple .acp-cta-simple-text {
    color: #e2e8f0;
}

/* ──────────────────────────────────────────
   v3 — BLOC: Parcours du Héros (éditeur admin)
   ────────────────────────────────────────── */
.acp-hero-editor {
    background: #fafafa;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    padding: 16px;
    margin: 8px 0;
}
.acp-hero-editor .acp-he-intro {
    margin: 0 0 12px;
    color: #555;
    font-size: 13px;
    font-style: italic;
}
.acp-hero-editor .acp-he-toolbar {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 12px;
}
.acp-hero-editor .acp-he-add {
    background: #2271b1;
    color: #fff;
    border: none;
    border-radius: 4px;
    padding: 6px 12px;
    cursor: pointer;
    font-size: 13px;
}
.acp-hero-editor .acp-he-add:hover { background: #135e96; }
.acp-hero-editor .acp-he-card {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 12px;
    margin-bottom: 10px;
}
.acp-hero-editor .acp-he-card-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
    gap: 8px;
}
.acp-hero-editor .acp-he-card-id {
    font-family: monospace;
    font-size: 11px;
    color: #888;
    background: #f3f4f6;
    padding: 2px 6px;
    border-radius: 3px;
}
.acp-hero-editor .acp-he-card-del {
    background: #fee;
    color: #c00;
    border: 1px solid #fcc;
    border-radius: 4px;
    padding: 3px 8px;
    cursor: pointer;
    font-size: 11px;
}
.acp-hero-editor .acp-he-choice {
    display: flex;
    gap: 8px;
    margin-bottom: 6px;
    align-items: center;
}
.acp-hero-editor .acp-he-choice input,
.acp-hero-editor .acp-he-choice select {
    flex: 1;
    padding: 4px 6px;
    font-size: 13px;
}
.acp-hero-editor .acp-he-milestones textarea {
    width: 100%;
    font-family: monospace;
    font-size: 12px;
    min-height: 80px;
}
.acp-hero-editor .acp-he-raw textarea {
    width: 100%;
    font-family: monospace;
    font-size: 11px;
    min-height: 140px;
    background: #1e1e1e;
    color: #e5e5e5;
}

/* ──────────────────────────────────────────
   RESPONSIVE — v3
   ────────────────────────────────────────── */
@media (max-width: 600px) {
    .acp-block-quote {
        padding: 24px 22px 22px;
    }
    .acp-block-quote .acp-quote-text {
        font-size: 16px;
    }
    .acp-block-cta-simple {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
    }
}

/* ──────────────────────────────────────────
   v3.7 — BLOC: Promesse (Point A → Point B)
   ────────────────────────────────────────── */
.acp-promise {
    margin: 28px 0;
    padding: 26px 28px;
    background: linear-gradient(180deg, #fff, color-mix(in srgb, var(--acp-brand), transparent 95%));
    border: 1px solid color-mix(in srgb, var(--acp-brand), transparent 70%);
    border-radius: 18px;
}
.acp-promise-title {
    margin: 0 0 18px;
    font-size: 18px;
    font-weight: 700;
    color: #0f172a;
    text-align: center;
}
.acp-promise-flow {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 16px;
    align-items: stretch;
}
.acp-promise-col {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 16px 18px;
}
.acp-promise-to {
    border-color: color-mix(in srgb, var(--acp-brand), transparent 60%);
    border-left: 3px solid var(--acp-brand);
}
.acp-promise-label {
    display: block;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #94a3b8;
    font-weight: 700;
    margin-bottom: 8px;
}
.acp-promise-text {
    margin: 0;
    line-height: 1.55;
    font-size: 15px;
}
.acp-promise-from .acp-promise-text { color: #475569; }
.acp-promise-to   .acp-promise-text { color: #0f172a; font-weight: 500; }
.acp-promise-arrow {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--acp-brand);
    gap: 6px;
}
.acp-promise-arrow-label {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

@media (max-width: 600px) {
    .acp-promise { padding: 20px; }
    .acp-promise-flow { grid-template-columns: 1fr; }
    .acp-promise-arrow { transform: rotate(90deg); padding: 4px 0; }
}

.acp-dark .acp-promise {
    background: linear-gradient(180deg, #1e293b, color-mix(in srgb, var(--acp-brand), #0f172a 60%));
    border-color: color-mix(in srgb, var(--acp-brand), transparent 50%);
}
.acp-dark .acp-promise-title { color: #f1f5f9; }
.acp-dark .acp-promise-col { background: #0f172a; border-color: #334155; }
.acp-dark .acp-promise-from .acp-promise-text { color: #cbd5e1; }
.acp-dark .acp-promise-to   .acp-promise-text { color: #f1f5f9; }

/* ──────────────────────────────────────────
   v3.8 — BLOC: Mon Parcours (A → B perso)
   ────────────────────────────────────────── */
.acp-journey {
    margin: 32px 0;
    padding: 28px 30px;
    background: linear-gradient(180deg, #fff, color-mix(in srgb, var(--acp-brand), transparent 94%));
    border: 2px solid color-mix(in srgb, var(--acp-brand), transparent 70%);
    border-radius: 18px;
}
.acp-journey-head {
    text-align: center;
    margin-bottom: 24px;
}
.acp-journey-title {
    margin: 0 0 6px;
    font-size: 20px;
    font-weight: 700;
    color: #0f172a;
}
.acp-journey-intro {
    margin: 0;
    color: #64748b;
    font-size: 14px;
    line-height: 1.5;
}
.acp-journey-row {
    margin-bottom: 22px;
    padding-bottom: 22px;
    border-bottom: 1px dashed color-mix(in srgb, var(--acp-brand), transparent 70%);
}
.acp-journey-row:last-child { border-bottom: none; padding-bottom: 0; }
.acp-journey-q {
    margin: 0 0 12px;
    font-weight: 700;
    color: #1e293b;
    font-size: 15px;
}
.acp-journey-cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}
.acp-journey-col {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    padding: 12px 14px;
}
.acp-journey-after {
    border-left: 3px solid var(--acp-brand);
}
.acp-journey-col-lbl {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #94a3b8;
    font-weight: 700;
    margin-bottom: 6px;
}
.acp-journey-col-val {
    color: #475569;
    line-height: 1.5;
    font-size: 14px;
    white-space: pre-wrap;
}
.acp-journey-after textarea {
    width: 100%;
    min-height: 70px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    padding: 8px 10px;
    font-family: inherit;
    font-size: 14px;
    line-height: 1.5;
    color: #0f172a;
    background: #fafafa;
    box-sizing: border-box;
    resize: vertical;
}
.acp-journey-after textarea:focus {
    outline: none;
    background: #fff;
    border-color: var(--acp-brand);
    box-shadow: 0 0 0 3px color-mix(in srgb, var(--acp-brand), transparent 80%);
}
.acp-journey-notes {
    margin-top: 24px;
    padding-top: 22px;
    border-top: 1px solid color-mix(in srgb, var(--acp-brand), transparent 70%);
}
.acp-journey-notes-label {
    display: block;
    font-weight: 700;
    font-size: 15px;
    color: #1e293b;
    margin-bottom: 4px;
}
.acp-journey-notes-hint {
    margin: 0 0 10px;
    color: #94a3b8;
    font-size: 12px;
    font-style: italic;
}
.acp-journey-notes textarea {
    width: 100%;
    min-height: 110px;
    padding: 12px 14px;
    border: 1px solid #d1d5db;
    border-radius: 10px;
    font-family: inherit;
    font-size: 15px;
    line-height: 1.55;
    color: #0f172a;
    background: #fafafa;
    box-sizing: border-box;
    resize: vertical;
}
.acp-journey-notes textarea:focus {
    outline: none;
    background: #fff;
    border-color: var(--acp-brand);
    box-shadow: 0 0 0 3px color-mix(in srgb, var(--acp-brand), transparent 80%);
}
.acp-journey-actions {
    margin-top: 22px;
    text-align: center;
}
.acp-journey-save {
    background: var(--acp-brand);
    color: #fff;
    border: none;
    padding: 12px 28px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.15s, box-shadow 0.15s, background 0.2s;
}
.acp-journey-save:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 20px color-mix(in srgb, var(--acp-brand), transparent 60%);
}
.acp-journey.is-saved .acp-journey-save {
    background: #16a34a;
}

@media (max-width: 600px) {
    .acp-journey { padding: 20px 18px; }
    .acp-journey-cols { grid-template-columns: 1fr; }
}

.acp-dark .acp-journey {
    background: linear-gradient(180deg, #1e293b, color-mix(in srgb, var(--acp-brand), #0f172a 65%));
    border-color: color-mix(in srgb, var(--acp-brand), transparent 50%);
}
.acp-dark .acp-journey-title { color: #f1f5f9; }
.acp-dark .acp-journey-intro { color: #94a3b8; }
.acp-dark .acp-journey-q { color: #e2e8f0; }
.acp-dark .acp-journey-col { background: #0f172a; border-color: #334155; }
.acp-dark .acp-journey-col-val { color: #cbd5e1; }
.acp-dark .acp-journey-after textarea,
.acp-dark .acp-journey-notes textarea {
    background: #1e293b;
    border-color: #334155;
    color: #f1f5f9;
}
.acp-dark .acp-journey-notes-label { color: #f1f5f9; }
