.evenement-container {
    max-width: 860px;
    margin: 64px auto;
    padding: 0 40px 80px;
}

/* Meta : badge type + période */
.evenement-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.evt-badge {
    display: inline-block;
    font-size: 12px; font-weight: 600;
    padding: 5px 14px;
    border-radius: 20px;
    color: var(--defi-white);
    letter-spacing: .04em;
    white-space: nowrap;
}
.evt-type-1  { background-color: #7C3AED; }
.evt-type-2  { background-color: #EA580C; }
.evt-type-3  { background-color: #2563EB; }
.evt-type-4  { background-color: #60A5FA; }
.evt-type-5  { background-color: #D97706; }
.evt-type-99 { background-color: #D1FAE5; color: var(--defi-slate); }

.evenement-periode {
    font-size: 14px;
    color: var(--defi-warm-gray);
    font-weight: 500;
}

/* Titre */
.evenement-titre {
    font-family: var(--defi-font-head);
    font-size: 34px; font-weight: 600;
    color: var(--defi-slate);
    line-height: 1.25;
    margin-bottom: 36px;
}

/* Image */
.evenement-image {
    width: 100%;
    height: 420px;
    border-radius: var(--defi-radius);
    overflow: hidden;
    margin-bottom: 48px;
    border: 1px solid var(--defi-border);
}
.evenement-image img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
}
.evenement-image-logo {
    background-color: var(--defi-slate);
    display: flex; align-items: center; justify-content: center;
    padding: 48px;
}
.evenement-image-logo img {
    object-fit: contain;
    max-width: 45%;
    opacity: .50;
    filter: brightness(0) invert(1);
}

/* Description */
.evenement-description {
    font-size: 16px;
    color: var(--defi-text-s);
    line-height: 1.9;
    margin-bottom: 56px;
}
.evenement-description p   { margin-bottom: 16px; }
.evenement-description h2,
.evenement-description h3  { font-family: var(--defi-font-head); color: var(--defi-slate); margin: 32px 0 12px; }
.evenement-description ul,
.evenement-description ol  { padding-left: 24px; margin-bottom: 16px; }
.evenement-description li  { margin-bottom: 6px; }
.evenement-description strong { color: var(--defi-text); }

/* Bouton retour */
.btn-retour {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background-color: transparent;
    color: var(--defi-terra);
    border: 1px solid var(--defi-terra);
    padding: 11px 22px;
    border-radius: 8px;
    text-decoration: none;
    font-family: var(--defi-font-body);
    font-weight: 600; font-size: 14px;
    transition: background-color .15s, color .15s;
}
.btn-retour:hover { background-color: var(--defi-terra); color: var(--defi-white); }

/* Responsive */
@media (max-width: 768px) {
    .evenement-container { margin: 40px auto; padding: 0 20px 60px; }
    .evenement-titre { font-size: 26px; }
    .evenement-image { height: 260px; }
    .evenement-description { font-size: 15px; }
}
