/* Timeline Active States */
#timeline-container .group {
    transition: all 0.5s ease;
}
#timeline-container .group.active .w-4.h-4 {
    background-color: #D4FF00 !important;
    border-color: #D4FF00 !important;
    box-shadow: 0 0 20px rgba(212, 255, 0, 0.6);
    transform: translateX(-50%) scale(1.5);
}
/* Mobile specific dot adjustment overrides */
@media (max-width: 768px) {
     #timeline-container .group.active .w-4.h-4 {
        transform: translateX(0) scale(1.5); /* Reset mostly, check original spacing */
        left: -6px; /* Adjusting visually if needed, but original class has specifics */
     }
}

#timeline-container .group.active h3 {
    color: #D4FF00;
    text-shadow: 0 0 20px rgba(212, 255, 0, 0.3);
}
#timeline-container .group.active p.text-brand-muted {
    color: #ececec;
}
#timeline-container .group.active .ml-12 {
    transform: scale(1.02);
    transition: transform 0.5s ease;
}
