/* ============================================================
   Caniguide — cg-pro-fiche.css
   Chantier AFFICHAGE — colonne vertébrale fiche pro :
   bloc localisation (gate niveau_publication) + CTA revendiquer.
   Cohérent Concept B (pro-section / pro-section-card / pro-aside).
============================================================ */

/* ---- Pastilles multi-métier (hero) ---- */
/* Étend .pro-hero-type-badge (single-professionnel.css) : principal accentué,
   secondaires sobres. Le conteneur .pro-hero-kicker est déjà flex-wrap. */
.pro-hero-type-badge.is-primary {
    background: var(--cg-bg-alt);
    border-color: transparent;
    color: var(--cg-primary);
}
.pro-hero-type-badge.is-secondary {
    background: #fff;
    color: var(--cg-text-soft);
    font-weight: 600;
}

/* ---- Bloc Présentation (intro d'ouverture, tous métiers) ---- */
/* Hérite de .pro-section ; léger accent d'ouverture, sobre (Concept B). */
.pro-presentation {
    padding-bottom: 0.25rem;
}
.pro-presentation .pro-prose {
    font-size: 1.02rem;
    line-height: 1.6;
}
.pro-presentation .pro-prose p:first-child {
    margin-top: 0;
}

/* ---- Bloc localisation ---- */
.cg-pro-loc {
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
}
.cg-pro-loc__address {
    margin: 0;
    font-weight: 600;
    color: #2b2b2b;
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    line-height: 1.4;
}
.cg-pro-loc__zone {
    margin: 0;
    color: #555;
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    line-height: 1.4;
}
.cg-pro-loc__ico {
    flex: 0 0 auto;
    display: inline-flex;
    color: #b8770f;
    margin-top: 1px;
}
.cg-pro-loc__map {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    margin-top: 0.25rem;
    font-size: 0.92rem;
    font-weight: 600;
    color: #1d6fa5;
    text-decoration: none;
    width: fit-content;
}
.cg-pro-loc__map:hover {
    text-decoration: underline;
}

/* ---- CTA revendiquer — callout (état minimal) ---- */
.cg-claim-cta--prominent {
    display: block;
    margin: 0 0 1.5rem;
    padding: 1.25rem 1.4rem;
    background: #fff8ec;
    border: 1px solid #f0d59b;
    border-left: 4px solid #f5a623;
    border-radius: 12px;
}
.cg-claim-cta--prominent .cg-claim-cta__lead {
    margin: 0 0 0.3rem;
    font-size: 1.1rem;
    font-weight: 700;
    color: #8a5a08;
}
.cg-claim-cta--prominent .cg-claim-cta__desc {
    margin: 0 0 0.9rem;
    color: #5f5440;
    line-height: 1.5;
    font-size: 0.95rem;
}
.cg-claim-cta__btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.65rem 1.1rem;
    background: #f5a623;
    color: #fff;
    font-weight: 700;
    text-decoration: none;
    border-radius: 8px;
    transition: background-color 0.15s ease;
}
.cg-claim-cta__btn:hover {
    background: #e0930f;
    color: #fff;
}

/* ---- CTA revendiquer — discret (état publier, bas d'aside) ---- */
.cg-claim-cta--discreet {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    margin-top: 0.9rem;
    padding-top: 0.9rem;
    border-top: 1px solid #ececec;
    width: 100%;
    color: #6b6b6b;
    font-size: 0.88rem;
    text-decoration: none;
}
.cg-claim-cta--discreet:hover {
    color: #b8770f;
    text-decoration: underline;
}

/* ---- États de revendication non-bouton (pending / vérifiée / propriétaire) ---- */
.cg-claim-state {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    margin-top: 0.9rem;
    padding-top: 0.9rem;
    border-top: 1px solid #ececec;
    font-size: 0.88rem;
    line-height: 1.4;
}
.cg-claim-state .pro-icon {
    flex: 0 0 auto;
}
.cg-claim-state--verified {
    color: #2e7d46;
}
.cg-claim-state--pending {
    color: #8a6d3b;
}
.cg-claim-state--owner {
    /* Le bouton porte son propre style (cg-button) : pas de bordure de séparation. */
    border-top: 1px solid #ececec;
}
.cg-claim-state--owner .cg-claim-state__btn {
    width: 100%;
    justify-content: center;
}

/* ---- Lien discret « Demander le retrait » (Flow B, bas d'aside) ---- */
.cg-pro-retrait {
    margin-top: 0.9rem;
    padding-top: 0.9rem;
    border-top: 1px solid #ececec;
    font-size: 0.82rem;
    line-height: 1.45;
    color: #8a8a8a;
}
.cg-pro-retrait__link {
    color: #6b6b6b;
    text-decoration: underline;
}
.cg-pro-retrait__link:hover {
    color: #b32d2e;
}
.cg-pro-retrait__pending {
    font-style: italic;
}
