/* Carte Objectif */
.objective-card {
    background: #EBF2FA;
    border-left: 8px solid #679436;
    padding: 30px;
    border-radius: 12px;
    margin: 30px 0;
    position: relative;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.status-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: #679436;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8em;
    font-weight: bold;
}

/* Timeline */
.timeline {
    position: relative;
    max-width: 900px;
    margin: 50px auto;
    padding: 20px 0;
}

.timeline::before {
    content: '';
    position: absolute;
    width: 3px;
    background: #427AA1;
    top: 0;
    bottom: 0;
    left: 20px;
}

.timeline-item {
    position: relative;
    padding-left: 60px;
    margin-bottom: 40px;
}

.timeline-dot {
    position: absolute;
    width: 20px;
    height: 20px;
    background: #427AA1;
    border: 4px solid #fff;
    border-radius: 50%;
    left: 11px;
    top: 5px;
    z-index: 1;
}

.timeline-content {
    background: white;
    padding: 20px;
    border-radius: 10px;
    border: 1px solid #EBF2FA;
    box-shadow: 0 2px 10px rgba(0,0,0,0.03);
    transition: 0.3s;
}

.timeline-item:hover .timeline-content {
    transform: translateX(10px);
    border-color: #679436;
}

.timeline-item.special .timeline-dot { background: #679436; }
.timeline-item.special .timeline-content { border-left: 5px solid #679436; }

.date {
    font-weight: 800;
    color: #06668C;
    display: block;
    margin-bottom: 5px;
}

.school {
    color: #427AA1;
    font-size: 0.9em;
    font-weight: bold;
    margin-bottom: 10px;
}

.badge {
    background: #06668C;
    color: white;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 0.6em;
    vertical-align: middle;
}

.mention {
    font-size: 0.8em;
    font-style: italic;
    color: #679436;
}

.details-box {
    margin-top: 15px;
    padding-top: 10px;
    border-top: 1px dashed #ddd;
    font-size: 0.9em;
}