/* Travel:Card component */

/* Route connector — uses shared .itinerary-connector component (see itinerary-connector.css) */

/* Country label — show alpha-3 by default, full name on hover */

.travel-timeline .country-short,
.travel-timeline .fi,
.travel-timeline .country-full {
    transition: opacity .2s ease;
}
.travel-timeline .country-full {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
    z-index: 1;
    opacity: 0;
    pointer-events: none;
}
.travel-timeline:hover .country-short,
.travel-timeline:hover .fi { opacity: 0; }
.travel-timeline:hover .country-full { opacity: 1; }

.travel-card__seg {
    flex: 1;
    padding: 0 .5rem;
    min-width: 1.25rem;
}
