.attraction-details-route {
    font-family: 'Inter', sans-serif;
    padding: 20px 0;
}

.route-section-title {
    font-size: 14px;
    color: #132D2F;
    text-transform: uppercase;
    margin-bottom: 16px;
    letter-spacing: 0.5px;
}

.route-timeline {
    list-style: none;
    padding: 0;
    margin: 0;
}

.route-step-item {
    display: flex;
    position: relative;
    padding-bottom: 16px; 
}

.route-step-item:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 13px;
    top: 28px;
    width: 2px;
    height: calc(100% - 25px);
    background: var(--color-secondary);
}

.step-marker {
    min-width: 35px;
    margin-right: 15px;
}

.step-number {
    width: 28px;
    height: 28px;
    background: var(--color-secondary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.step-content {
    flex: 1;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding-top: 6px; 
}

.step-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.step-name {
    margin: 0;
    font-size: 14px;
    font-weight: 600;
    color: #132D2F;
}

.step-address {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #889596;
    font-size: 12px;
}

.view-map-link {
    color: var(--color-secondary);
    text-decoration: none;
    font-size: 12px;
    white-space: nowrap;
}

.view-map-link:hover {
    text-decoration: underline;
}