/* =====================================================
   Radis Single — Fiches acteur & partenaire
   ===================================================== */

/* ===================== HERO COVER ===================== */
.single-acteur .hero-cover {
    display: none;
}
.single-partenaire .hero-cover {
    height: 400px;
    background: linear-gradient(135deg, rgba(107, 200, 165, 0.2) 0%, rgba(60, 22, 62, 0.1) 100%), var(--wp--preset--color--cream-dark, #ebe4d8);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}
.single-partenaire .hero-cover {
    height: 350px;
    background: linear-gradient(135deg, rgba(111, 194, 157, 0.25) 0%, rgba(111, 194, 157, 0.08) 50%, rgba(60, 22, 62, 0.06) 100%), var(--wp--preset--color--cream-dark, #ebe4d8);
}
.hero-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.hero-cover-placeholder {
    color: var(--wp--preset--color--text-light, #6b5a6d);
    font-size: 0.95rem;
    opacity: 0.6;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}
.hero-cover-badges {
    position: absolute;
    bottom: 1.5rem;
    left: 3rem;
    display: flex;
    gap: 0.75rem;
}
.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    backdrop-filter: blur(12px);
}

/* Acteur badges */
.single-acteur .badge-member {
    background: rgba(107, 200, 165, 0.9);
    color: #fff;
}
.badge-member-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #fff;
}

/* Partenaire badges */
.single-partenaire .badge-category {
    background: rgba(111, 194, 157, 0.9);
    color: #fff;
}
.single-partenaire .badge-member {
    background: rgba(60, 22, 62, 0.85);
    color: #fff;
}
.single-partenaire .badge-member-dot {
    background: var(--wp--preset--color--green, #6fc29d);
}

/* ===================== BACK BAR ===================== */
.back-bar {
    background: #fff;
    border-bottom: 1px solid rgba(60, 22, 62, 0.06);
    padding: 0;
    padding-top: 60px;
}
.back-bar-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 3rem;
}
.back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--wp--preset--color--text-light, #6b5a6d);
    text-decoration: none;
    transition: color 0.2s, gap 0.2s;
}
.back-link:hover {
    color: var(--wp--preset--color--aubergine, #3c163e);
    gap: 0.7rem;
}
.back-link svg {
    width: 16px;
    height: 16px;
}

/* ===================== IDENTITY SECTION ===================== */
.identity {
    padding: 2rem 3rem 6rem;
}
.single-partenaire .identity {
    padding: 5rem 3rem 6rem;
}
.identity-inner {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
    align-items: start;
}

/* Left column */
.identity-main {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

/* Acteur portrait */
.identity-portrait {
    width: 100%;
    aspect-ratio: 16/10;
    background: var(--wp--preset--color--cream, #f5f0e8);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--wp--preset--color--text-light, #6b5a6d);
    font-size: 0.9rem;
    overflow: hidden;
    border: 2px solid var(--wp--preset--color--cream-dark, #ebe4d8);
}
.identity-portrait img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Partenaire logo */
.identity-logo {
    width: 120px;
    height: 120px;
    background: var(--wp--preset--color--cream, #f5f0e8);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--wp--preset--color--green, #6fc29d);
    border: 2px solid var(--wp--preset--color--cream-dark, #ebe4d8);
    overflow: hidden;
}
.identity-logo svg {
    width: 48px;
    height: 48px;
    opacity: 0.4;
}
.identity-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 12px;
}

/* Header */
.identity-header {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.identity-name {
    font-family: "atrament-web", serif;
    font-size: 3rem;
    color: var(--wp--preset--color--aubergine, #3c163e);
    line-height: 1.15;
}

/* Acteur type (orange) */
.single-acteur .identity-type {
    font-size: 1.1rem;
    color: var(--wp--preset--color--orange, #ea6741);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.single-acteur .identity-type-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--wp--preset--color--orange, #ea6741);
}

/* Partenaire type (green) */
.single-partenaire .identity-type {
    font-size: 1.1rem;
    color: var(--wp--preset--color--green, #6fc29d);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.single-partenaire .identity-type-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--wp--preset--color--green, #6fc29d);
}

/* Story */
.identity-story h2 {
    font-family: "atrament-web", serif;
    font-size: 1.6rem;
    color: var(--wp--preset--color--aubergine, #3c163e);
    margin-bottom: 1rem;
}
.identity-story p {
    font-size: 1.05rem;
    color: var(--wp--preset--color--text-light, #6b5a6d);
    line-height: 1.8;
}

/* Engagements (partenaire) */
.identity-engagements h3 {
    font-family: "atrament-web", serif;
    font-size: 1.4rem;
    color: var(--wp--preset--color--aubergine, #3c163e);
    margin-bottom: 1rem;
}
.engagement-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}
.engagement-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.5rem 1.1rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    background: rgba(111, 194, 157, 0.1);
    color: var(--wp--preset--color--green, #6fc29d);
    border: 1.5px solid rgba(111, 194, 157, 0.3);
}

/* ===================== RIGHT COLUMN — SIDEBAR ===================== */
.identity-sidebar {
    position: sticky;
    top: 100px;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.sidebar-card {
    background: var(--wp--preset--color--cream, #f5f0e8);
    border-radius: 24px;
    padding: 2rem;
}
.sidebar-card-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.2rem;
    padding-bottom: 1.2rem;
    border-bottom: 1px solid rgba(60, 22, 62, 0.08);
}
.sidebar-card-badge {
    margin-bottom: 1.2rem;
    padding-bottom: 1.2rem;
    border-bottom: 1px solid rgba(60, 22, 62, 0.08);
}
.badge-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    cursor: default;
}
.badge-icon img {
    filter: brightness(0) invert(1);
}
.badge-icon svg {
    color: #fff;
}
.badge-icon--producteur { background: var(--wp--preset--color--aubergine, #3c163e); }
.badge-icon--artisan { background: var(--wp--preset--color--orange, #ea6741); }
.badge-icon--horeca { background: var(--wp--preset--color--green, #6fc29d); }
.badge-icon--commerce { background: var(--wp--preset--color--gold, #e3b236); }
.badge-icon--commerce img { filter: none; }
.badge-icon--member { background: rgba(107, 200, 165, 0.9); }
/* Tooltip */
.badge-icon::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%);
    background: var(--wp--preset--color--aubergine, #3c163e);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 6px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.15s;
}
.badge-icon:hover::after {
    opacity: 1;
}
.sidebar-card-badge .badge-member {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.45rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    background: rgba(107, 200, 165, 0.9);
    color: #fff;
}
.sidebar-card-badge .badge-member-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #fff;
}

/* Filieres block (acteur) */
.filieres-certif-row {
    margin-bottom: 1.2rem;
    padding-bottom: 1.2rem;
    border-bottom: 1px solid rgba(60, 22, 62, 0.08);
}
.filieres-certif-row--split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}
.filieres-block {
}
/* Certifications */
.certifications-block {
}
.certifications-title {
    font-family: "atrament-web", serif;
    font-size: 1.1rem;
    color: var(--wp--preset--color--aubergine, #3c163e);
    margin-bottom: 0.6rem;
}
.certifications-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
}
.certification-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.35rem 0.8rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 500;
    background: rgba(111, 194, 157, 0.12);
    color: var(--wp--preset--color--green, #6fc29d);
}
.certification-tag svg {
    flex-shrink: 0;
}
.filieres-title {
    font-family: "atrament-web", serif;
    font-size: 1.1rem;
    color: var(--wp--preset--color--aubergine, #3c163e);
    margin-bottom: 0.8rem;
}
.filieres-icons {
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
}
.filiere-icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: default;
}
.filiere-icon img {
    opacity: 0.7;
    transition: opacity 0.2s;
}
.filiere-icon:hover img {
    opacity: 1;
}
.filiere-icon::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%) translateY(4px);
    background: var(--wp--preset--color--aubergine, #3c163e);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.35rem 0.65rem;
    border-radius: 8px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s, transform 0.2s;
}
.filiere-icon:hover::after {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

/* Mini map (acteur — Leaflet) */
#leaflet-map {
    height: 160px;
    border-radius: 16px;
    margin-bottom: 1rem;
    overflow: hidden;
    z-index: 0;
}
#leaflet-map .leaflet-control-attribution {
    font-size: 9px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 0 16px 0 0;
}

/* Mini map (partenaire — placeholder) */
.mini-map {
    aspect-ratio: 16/10;
    background: #eae6de;
    border-radius: 16px;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--wp--preset--color--text-light, #6b5a6d);
    font-size: 0.85rem;
    position: relative;
    overflow: hidden;
}
.mini-map-dot {
    position: absolute;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--wp--preset--color--green, #6fc29d);
    border: 3px solid #fff;
    box-shadow: 0 2px 12px rgba(111, 194, 157, 0.4);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.mini-map-pulse {
    position: absolute;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(111, 194, 157, 0.2);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.6; }
    50% { transform: translate(-50%, -50%) scale(1.4); opacity: 0; }
}
.mini-map-label {
    position: relative;
    z-index: 1;
    opacity: 0.4;
}

/* Location / Distance label */
.location-label,
.distance-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
    font-weight: 600;
    color: var(--wp--preset--color--green, #6fc29d);
    margin-bottom: 1.5rem;
}

/* ===================== CONTACT BUTTONS ===================== */
.contact-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    margin-top: 15px;
}
.contact-btn {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.85rem 1.2rem;
    border-radius: 14px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    transition: transform 0.2s, box-shadow 0.2s;
}
.contact-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}
.contact-btn-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* Acteur contact button colors */
.single-acteur .contact-btn-call,
.single-acteur .contact-btn-email {
    background: rgba(60, 22, 62, 0.06);
    color: var(--wp--preset--color--aubergine, #3c163e);
}
.single-acteur .contact-btn-call .contact-btn-icon,
.single-acteur .contact-btn-email .contact-btn-icon {
    background: var(--wp--preset--color--aubergine, #3c163e);
    color: #fff;
}

/* Partenaire contact button colors */
.single-partenaire .contact-btn-call {
    background: rgba(111, 194, 157, 0.1);
    color: var(--wp--preset--color--green, #6fc29d);
}
.single-partenaire .contact-btn-call .contact-btn-icon {
    background: var(--wp--preset--color--green, #6fc29d);
    color: #fff;
}
.single-partenaire .contact-btn-email {
    background: rgba(60, 22, 62, 0.06);
    color: var(--wp--preset--color--aubergine, #3c163e);
}
.single-partenaire .contact-btn-email .contact-btn-icon {
    background: var(--wp--preset--color--aubergine, #3c163e);
    color: #fff;
}
.contact-btn-web {
    background: rgba(234, 103, 65, 0.08);
    color: var(--wp--preset--color--orange, #ea6741);
}
.contact-btn-web .contact-btn-icon {
    background: var(--wp--preset--color--orange, #ea6741);
    color: #fff;
}
.contact-btn-directions {
    background: rgba(212, 168, 67, 0.1);
    color: var(--wp--preset--color--gold, #e3b236);
}
.contact-btn-directions .contact-btn-icon {
    background: var(--wp--preset--color--gold, #e3b236);
    color: #fff;
}

/* Contact button row (2 buttons side by side) */
.contact-btn-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
}
.contact-btn-row .contact-btn {
    word-break: break-all;
}

/* Address (non-clickable) */
.contact-btn-address {
    background: rgba(60, 22, 62, 0.06);
    color: var(--wp--preset--color--text, #2d1f2e);
    cursor: default;
    font-size: 0.85rem;
    line-height: 1.4;
}
.contact-btn-address:hover {
    transform: none;
    box-shadow: none;
}
.contact-btn-address .contact-btn-icon {
    background: var(--wp--preset--color--aubergine, #3c163e);
    color: #fff;
}

/* Social links */
.social-links {
    display: flex;
    gap: 0.6rem;
    margin-top: 1.2rem;
    padding-top: 1.2rem;
    border-top: 1px solid rgba(60, 22, 62, 0.08);
}
.social-link {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: var(--wp--preset--color--cream, #f5f0e8);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--wp--preset--color--aubergine, #3c163e);
    text-decoration: none;
    transition: background 0.2s, transform 0.2s;
}
.social-link:hover {
    background: var(--wp--preset--color--cream-dark, #ebe4d8);
    transform: translateY(-2px);
}

/* ===================== VISIT CARD (acteur) ===================== */
.visit-card {
    background: var(--wp--preset--color--cream, #f5f0e8);
    border-radius: 24px;
    padding: 2rem;
}
.visit-card h3 {
    font-family: "atrament-web", serif;
    font-size: 1.3rem;
    color: var(--wp--preset--color--aubergine, #3c163e);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.visit-card p {
    font-size: 0.9rem;
    color: var(--wp--preset--color--text, #2d1f2e);
    line-height: 1.7;
    margin-bottom: 0.4rem;
}
.visit-card p strong {
    color: var(--wp--preset--color--aubergine, #3c163e);
}
.visit-card .visit-note {
    margin-top: 0.8rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--wp--preset--color--orange, #ea6741);
}

/* ===================== INFO CARD (partenaire) ===================== */
.info-card {
    background: var(--wp--preset--color--cream, #f5f0e8);
    border-radius: 24px;
    padding: 2rem;
}
.info-card h3 {
    font-family: "atrament-web", serif;
    font-size: 1.2rem;
    color: var(--wp--preset--color--aubergine, #3c163e);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.info-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    font-size: 0.9rem;
    border-bottom: 1px solid rgba(60, 22, 62, 0.06);
}
.info-row:last-child {
    border-bottom: none;
}
.info-label {
    color: var(--wp--preset--color--text-light, #6b5a6d);
    font-weight: 500;
}
.info-value {
    color: var(--wp--preset--color--aubergine, #3c163e);
    font-weight: 600;
    text-align: right;
}

/* ===================== GALERIE (acteur) ===================== */
.galerie {
    background: var(--wp--preset--color--cream, #f5f0e8);
    padding: 6rem 3rem;
    position: relative;
}
.galerie::before {
    content: '';
    position: absolute;
    top: -60px;
    left: 0;
    right: 0;
    height: 60px;
    background: url("data:image/svg+xml,%3Csvg viewBox='0 0 1440 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0,60 C360,0 720,0 1440,60 L1440,60 L0,60 Z' fill='%23f5f0e8'/%3E%3C/svg%3E") no-repeat bottom;
    background-size: cover;
}
.galerie-inner {
    max-width: 1400px;
    margin: 0 auto;
}
.section-label {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--wp--preset--color--orange, #ea6741);
    margin-bottom: 1rem;
}
.section-title {
    font-family: "atrament-web", serif;
    font-size: 2.8rem;
    line-height: 1.15;
    color: var(--wp--preset--color--aubergine, #3c163e);
    margin-bottom: 3rem;
    font-weight: 400;
}
.section-title strong {
    font-family: "smoothy", sans-serif;
    color: var(--wp--preset--color--orange, #ea6741);
    font-weight: 400;
    font-style: italic;
    letter-spacing: -0.05em;
}
.galerie-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
.galerie-item {
    aspect-ratio: 4/3;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--wp--preset--color--text-light, #6b5a6d);
    font-size: 0.85rem;
    border: 2px solid var(--wp--preset--color--cream-dark, #ebe4d8);
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
}
.galerie-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(60, 22, 62, 0.1);
}
.galerie-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ===================== VIDEO (acteur) ===================== */
.acteur-video {
    background: var(--wp--preset--color--cream, #f5f0e8);
    padding: 6rem 3rem;
}
.acteur-video-inner {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}
.acteur-video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(60, 22, 62, 0.12);
}
.acteur-video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* ===================== AUTRES ACTEURS (acteur) ===================== */
.autres-acteurs {
    background: #fff;
    padding: 6rem 3rem 8rem;
}
.autres-acteurs-inner {
    max-width: 1400px;
    margin: 0 auto;
}
.acteurs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}
.acteur-card {
    background: var(--wp--preset--color--cream, #f5f0e8);
    border-radius: 24px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
}
.acteur-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(60, 22, 62, 0.1);
}
.acteur-card-image {
    height: 200px;
    background: var(--wp--preset--color--cream-dark, #ebe4d8);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--wp--preset--color--text-light, #6b5a6d);
    font-size: 0.85rem;
    position: relative;
}
.acteur-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.acteur-card-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.35rem 0.75rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    background: rgba(107, 200, 165, 0.9);
    color: #fff;
}
.acteur-card-badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #fff;
}
.acteur-card-body {
    padding: 1.5rem 2rem 2rem;
}
.acteur-card-type {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--wp--preset--color--orange, #ea6741);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.35rem;
}
.acteur-card-name {
    font-family: "atrament-web", serif;
    font-size: 1.4rem;
    color: var(--wp--preset--color--aubergine, #3c163e);
    margin-bottom: 0.5rem;
}
.acteur-card-desc {
    font-size: 0.9rem;
    color: var(--wp--preset--color--text-light, #6b5a6d);
    line-height: 1.6;
    margin-bottom: 1rem;
}
.acteur-card-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.85rem;
    color: var(--wp--preset--color--text-light, #6b5a6d);
}
.acteur-card-meta-item {
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

/* ===================== ANIMATION (single-animation) ===================== */
.hero-small {
    background: var(--wp--preset--color--cream, #f5f0e8);
    padding: 3rem 3rem 2rem;
}
.hero-small-inner {
    max-width: 1400px;
    margin: 0 auto;
}
.breadcrumb {
    font-size: 0.85rem;
    color: var(--wp--preset--color--text-light, #6b5a6d);
    margin-bottom: 1rem;
}
.breadcrumb a {
    color: var(--wp--preset--color--text-light, #6b5a6d);
    text-decoration: none;
    transition: color 0.2s;
}
.breadcrumb a:hover {
    color: var(--wp--preset--color--aubergine, #3c163e);
}
.breadcrumb-sep {
    margin: 0 0.5rem;
    opacity: 0.5;
}
.breadcrumb-current {
    color: var(--wp--preset--color--aubergine, #3c163e);
    font-weight: 600;
}
.hero-small-title {
    font-family: "atrament-web", serif;
    font-size: 3rem;
    color: var(--wp--preset--color--aubergine, #3c163e);
    line-height: 1.15;
}
.animation-content {
    padding: 4rem 3rem 6rem;
}
.animation-content-inner {
    max-width: 900px;
    margin: 0 auto;
}

/* ===================== RESPONSIVE ===================== */
@media (max-width: 1100px) {
    .identity-inner {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .identity-sidebar {
        position: static;
    }
    .identity-name {
        font-size: 2.5rem;
    }
    .section-title {
        font-size: 2.4rem;
    }
}

@media (max-width: 900px) {
    .hero-cover {
        height: 280px;
    }
    .single-partenaire .hero-cover {
        height: 260px;
    }
    .hero-cover-badges {
        left: 1.5rem;
        bottom: 1rem;
    }
    .identity {
        padding: 3rem 1.5rem 4rem;
    }
    .single-partenaire .identity {
        padding: 3rem 1.5rem 4rem;
    }
    .identity-name {
        font-size: 2.2rem;
    }
    .galerie {
        padding: 4rem 1.5rem;
    }
    .galerie-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .autres-acteurs {
        padding: 4rem 1.5rem 5rem;
    }
    .acteurs-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
    }
    .section-title {
        font-size: 2rem;
    }
    .back-bar-inner {
        padding: 1rem 1.5rem;
    }
    .hero-small {
        padding: 2rem 1.5rem 1.5rem;
    }
    .animation-content {
        padding: 3rem 1.5rem 4rem;
    }
    .hero-small-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 600px) {
    .hero-cover {
        height: 220px;
    }
    .single-partenaire .hero-cover {
        height: 200px;
    }
    .hero-cover-badges {
        left: 1rem;
        flex-wrap: wrap;
        gap: 0.5rem;
    }
    .badge {
        font-size: 0.8rem;
        padding: 0.45rem 1rem;
    }
    .identity {
        padding: 2rem 1rem 3rem;
    }
    .single-partenaire .identity {
        padding: 2rem 1rem 3rem;
    }
    .identity-name {
        font-size: 1.8rem;
    }
    .identity-logo {
        width: 90px;
        height: 90px;
        border-radius: 18px;
    }
    .galerie-grid {
        grid-template-columns: 1fr 1fr;
        gap: 0.75rem;
    }
    .back-bar-inner {
        padding: 1rem;
    }
    .hero-small {
        padding: 1.5rem 1rem 1rem;
    }
    .hero-small-title {
        font-size: 1.8rem;
    }
    .animation-content {
        padding: 2rem 1rem 3rem;
    }
}

/* ===================== ACTEUR CONTACT MODAL ===================== */
.acteur-modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(60, 22, 62, 0.5);
    backdrop-filter: blur(4px);
    z-index: 9999;
    align-items: center;
    justify-content: center;
}
.acteur-modal-overlay.is-open {
    display: flex;
}
.acteur-modal {
    background: #fff;
    border-radius: 24px;
    padding: 2.5rem;
    max-width: 520px;
    width: 90%;
    position: relative;
    box-shadow: 0 20px 60px rgba(60, 22, 62, 0.25);
    animation: modalIn 0.25s ease;
}
@keyframes modalIn {
    from { opacity: 0; transform: translateY(20px) scale(0.97); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}
.acteur-modal__close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: none;
    border: none;
    font-size: 24px;
    color: var(--wp--preset--color--text-light, #6b5a6d);
    cursor: pointer;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}
.acteur-modal__close:hover {
    background: var(--wp--preset--color--cream, #f5f0e8);
}
.acteur-modal__title {
    font-family: "atrament-web", serif;
    font-size: 1.6rem;
    color: var(--wp--preset--color--aubergine, #3c163e);
    margin: 0 0 0.25rem;
}
.acteur-modal__subtitle {
    font-size: 0.9rem;
    color: var(--wp--preset--color--text-light, #6b5a6d);
    margin: 0 0 1.5rem;
}
.acteur-modal__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}
.acteur-modal__field {
    margin-bottom: 1rem;
}
.acteur-modal__field label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--wp--preset--color--aubergine, #3c163e);
    margin-bottom: 0.35rem;
}
.acteur-modal__field .required {
    color: var(--wp--preset--color--orange, #ea6741);
}
.acteur-modal__field select {
    -webkit-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236b5a6d' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 36px;
}
.acteur-modal__field select,
.acteur-modal__field input,
.acteur-modal__field textarea {
    width: 100%;
    box-sizing: border-box;
    padding: 0.6rem 0.9rem;
    border: 1px solid #ddd;
    border-radius: 10px;
    font-size: 0.9rem;
    font-family: "DM Sans", sans-serif;
    transition: border-color 0.2s;
}
.acteur-modal__field input:focus,
.acteur-modal__field textarea:focus {
    outline: none;
    border-color: var(--wp--preset--color--green, #6fc29d);
}
.acteur-modal__actions .btn-organic {
    pointer-events: auto;
}
.acteur-modal__actions .btn-organic:disabled {
    opacity: 0.6;
    pointer-events: none;
}
.acteur-modal__success {
    text-align: center;
    padding: 1rem 0;
}
.acteur-modal__success p {
    font-size: 1rem;
    color: var(--wp--preset--color--aubergine, #3c163e);
    margin-top: 0.75rem;
}
#acteur-contact-btn {
    cursor: pointer;
    border: none;
    outline: none;
    font-family: inherit;
    font-size: inherit;
    text-align: left;
    -webkit-appearance: none;
}
@media (max-width: 600px) {
    .acteur-modal__row {
        grid-template-columns: 1fr;
    }
    .acteur-modal {
        padding: 1.5rem;
    }
}
